/** Buttons **/
a {
  text-decoration: none;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  color: #F2989D;
}

a:hover {
  color: #F2989D;
  text-decoration: none;
}

.link {
  color: #F2989D;
}

.link:hover {
  color: #F2989D;
}

button {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
  background-color: transparent;
  cursor: pointer;
}

button:focus {
  outline: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  min-height: 34px;
  padding: 5px 20px;
  min-width: 105px;
  color: #fff;
  background-color: #F2989D;
  border-radius: 10px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
  transition: all 0.15s;
}

.btn.round {
  font-size: 14px;
  padding: 3px;
  margin: 3px 6px;
  min-width: 78px;
  min-height: auto;
}

.btn.white {
  color: #000;
  background-color: #fff;
}

.btn.gray {
  color: #000;
  background-color: #F9F9F9;
}

.btn.dark-gray {
  background-color: #666;
}

.btn.red {
  color: #fff;
  background-color: #B50E17;
}

.btn.disabled {
  opacity: 1;
  pointer-events: none;
}

.btn.white.active {
  color: #F2989D;
}

.btn.white.active:hover {
  color: #F2989D;
}

.btn.white.inactive {
  color: #666666;
}

.btn.white.inactive:hover {
  color: #666666;
}

.btn.white.active,
.btn.white.inactive {
  background-color: #fff;
  text-transform: uppercase;
  border: 1px solid #707070;
  font-weight: bold;
  font-size: 16px;
  padding: 4px 6px;
  border-radius: 13px;
  min-width: 84px;
}

.btn:hover, 
.btn:focus,
.btn.round:hover,
.btn.red:hover {
  color: #fff;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.75);
}

.btn.white:hover,
.btn.white:focus {
  color: #000;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.75);
}

.btn.gray:hover {
  color: #000;
}

@media (max-width: 767px) {
  .btn__wrapper-center {
    text-align: center;
  }
}

.btn.gradient {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0.01%, #E49E9F), color-stop(20%, #E66966), color-stop(51%, #E93732), color-stop(80%, #E66966), to(#E49E9F));
  background-image: linear-gradient(to right, #E49E9F 0.01%, #E66966 20%, #E93732 51%, #E66966 80%, #E49E9F 100%);
  background-size: 200% auto;
  width: auto;
  min-width: 160px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 20px;
  font-size: 23px;
  font-weight: bold;
  color: #ffffff;
  line-height: 26px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}

.btn.gradient:hover {
  color: #ffffff;
  background-position: right center;
}

.btn.text-sm {
  min-height: 34px;
}

.btn_remove {
  min-width: 232px;
}

.btn.card-round {
  padding: 6px;
  min-width: 105px;
  min-height: 34px;
}

.btn.card-round.offset {
  margin: 5px 9px;
}