﻿.button {
  border: none;
  font-family: 'latobold';
  font-size: 16px;
  line-height: 45px;
  height: 45px;
  width: fit-content;
  color: #fff;
  text-align: center;
  transition: background-color 0.3s;
  border-radius: 12px;
  padding: 0 24px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .button {
    font-size: 18px;
    line-height: 50px;
    height: 50px;
  }
}
.button:after {
  content: '';
  height: 6px;
  width: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(-45deg);
  margin: 0 0 0 5px;
  position: relative;
  top: -1px;
}
@media (min-width: 768px) {
  .button:after {
    height: 7px;
    width: 7px;
  }
}
.button.button__primary {
  background-color: #3dbd70;
  box-shadow: 0 5px 6px rgba(24, 106, 52, 0.35);
}
.button.button__primary:hover,
.button.button__primary:focus {
  background-color: #49a06c;
}
.button.button__primary:active {
  box-shadow: none;
}
.button.button__primary.button__orange {
  background-color: #FA8700;
  box-shadow: 0px 5px 6px 0px rgba(122, 68, 6, 0.35);
}
.button.button__secondary {
  color: #3174af;
  background-color: #fff;
  border: 1px solid #75a5cf;
  line-height: 34px;
  height: 36px;
  font-family: 'latoregular';
  font-size: 14px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .button.button__secondary {
    font-size: 16px;
  }
}
.button.button__secondary:after {
  margin: -3px 0 0 8px;
  border-color: #3174AF;
}
.button.button__tertiary {
  color: #3174AF;
  background-color: #fff;
  line-height: 32px;
  height: 32px;
  font-family: 'latobold';
  font-size: 14px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .button.button__tertiary {
    font-size: 16px;
    line-height: 34px;
    height: 34px;
  }
}
.button.button__tertiary:after {
  content: none;
}
.button[disabled],
.button.button__disabled {
  pointer-events: none !important;
  box-shadow: none !important;
  background-color: #B8B8B8 !important;
  color: #fff !important;
}
.button[disabled]:hover,
.button.button__disabled:hover,
.button[disabled]:focus,
.button.button__disabled:focus {
  background-color: #B8B8B8 !important;
  color: #fff !important;
}