.button {
  background-color: var(--colorMilaRed);
  color: var(--colorWhite);
  padding: var(--spacingSmaller) var(--spacingLarge);
  border: 1px solid var(--colorMilaRed);
  cursor: pointer;
  border-radius: 22px;
  font-weight: var(--fontWeightBold);
  transition: background-color 0.3s, border 0.3s, box-shadow 0.3s;
  outline: none;
  height: 45px;
  min-width: 150px;
  width: auto;
  &:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
}

.button--small {
  font-size: 0.875em;
  padding: var(--spacingSmallest) var(--spacing);
}

.button--full-width {
  width: 100%;
}

.button:hover {
  color: #ffffff;
  border: 1px solid var(--colorMilaRedDark);
  background: var(--colorMilaRedDark);
}

.button:active {
  color: #ffffff;
  border: 1px solid var(--colorMilaRedDarker);
  background: var(--colorMilaRedDarker);
}

.button--secondary {
  border: 1px solid var(--colorMilaRed);
  background-color: transparent;
  font-weight: var(--fontWeightBold);
  color: var(--colorMilaRed);
}

.button--secondary:hover {
  border: 1px solid var(--colorMilaRedDark);
  background-color: transparent;
  color: var(--colorMilaRedDark);
}

.button--secondary:active {
  border: 1px solid var(--colorMilaRedDarker);
  background-color: transparent;
  color: var(--colorMilaRedDarker);
}

.button--secondary-blue {
  border: 1px solid var(--colorMilaBlueBrighter);
  background-color: transparent;
  font-weight: var(--fontWeightBold);
  color: var(--colorMilaBlueBright);
}

.button--secondary-blue:hover {
  background: transparent;
  border: 1px solid var(--colorMilaBlue);
  color: var(--colorMilaBlue);
}

.button--secondary-blue:active {
  background: transparent;
  border: 1px solid var(--colorMilaBlueDark);
  color: var(--colorMilaBlueDark);
}

.button--tertiary {
  border: 1px solid var(--colorBlue);
  background-color: transparent;
  font-weight: var(--fontWeightBold);
  color: var(--colorBlue);
}
.button--tertiary:hover {
  border: 1px solid var(--colorBlue);
  color: var(--colorWhite);
  background-color: var(--colorBlue);
}

.button--verified {
  border: 1px solid var(--colorBlue);
  background-color: var(--colorBlue);
  font-weight: var(--fontWeightBold);
  color: var(--colorWhite);
  position: relative;
}

.button--verified:hover {
  border: 1px solid var(--colorBlue);
  background-color: var(--colorBlue);
  color: var(--colorWhite);
}

.button[disabled] {
  background-color: var(--colorGreyDarker);
  border: 1px solid var(--colorGreyDarker);
  cursor: auto;
}

.button--secondary[disabled] {
  background-color: var(--colorGreyDark);
  border: 1px solid rgb(235, 235, 235);
  cursor: auto;
  color: var(--colorWhite);
}

.button--navigation {
  border: 1px solid var(--colorWhite);
  background-color: transparent;
  font-weight: var(--fontWeightBold);
  color: var(--colorWhite);
  transition: all 0.3s;
}

.button--navigation:hover {
  border: 1px solid var(--colorMilaRedDark);
  color: var(--colorMilaRedDark);
  background-color: transparent;
}

.button--navigation:active {
  border: 1px solid var(--colorMilaRedDarker);
  color: var(--colorMilaRedDarker);
  background-color: transparent;
}

/* Loading circle */
.button__circle {
  width: 15px;
  height: 15px;
  margin-left: 15px;
  padding-top: 5px;
  display: inline-block;
  position: relative;
  top: 2px;
  line-height: 0;
}

.button__child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.button__child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: var(--colorWhite);
  border-radius: 100%;
  -webkit-animation: button__circleBounceDelay 1.2s infinite ease-in-out both;
  animation: button__circleBounceDelay 1.2s infinite ease-in-out both;
}

.button__circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.button__circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.button__circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.button__circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.button__circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
.button__circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.button__circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
.button__circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.button__circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.button__circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
.button__circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
.button__circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.button__circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.button__circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.button__circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.button__circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.button__circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.button__circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.button__circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.button__circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.button__circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.button__circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes button__circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes button-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
