.modal-offer {
  width: 100%;
}

.modal-offer .modal-offer__title {
  color: #c62828;
  font-size: 29px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
  padding: 0 35px;
  text-align: center;
}

.modal-offer__timer {
  margin-top: 5px;
  text-align: center;
}

.modal-offer__timer-time {
  color: #f44336;
  font-size: 35px;
  font-weight: 700;
}

.modal-offer__price {
  flex-basis: 42%;
  margin-right: 20px;
  text-align: center;
}

.modal-offer__price .__label {
  font-size: 20px;
  margin-bottom: 4px;
}

.modal-offer__price .__value {
  color: #f44336;
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
}

.modal-offer__price .__currency {
  font-size: 0.74em;
  margin-left: 4px;
  text-transform: uppercase;
}

.modal-offer__product {
  flex-basis: 42%;
  text-align: center;
}

.modal-offer__form {
  padding-left: 24px;
}

.modal-offer .modal-offer__btn-submit .__bg {
  box-sizing: border-box;
  display: inline-block;
  left: 0;
  position: absolute;
  width: 100%;
}

.modal-offer .modal-offer__btn-submit {
  background-color: #16a835 !important;
  background-image: linear-gradient(90deg, #38a22e 1%, #3ab02a) !important;
  border-radius: 4px;
  box-sizing: border-box;
  color: #fff !important;
  cursor: pointer;
  font-family: Arial, sans-serif !important;
  font-size: 23px !important;
  font-weight: 700 !important;
  height: auto;
  letter-spacing: -0.5px;
  margin-top: 6px;
  max-width: 300px;
  padding: 10px !important;
  position: relative;
  width: 100%;
}

.modal-offer .modal-offer__btn-submit .__bg {
  background-color: #16a835 !important;
  background-image: linear-gradient(90deg, #1f9913 1%, #2eae1d) !important;
  border-radius: inherit;
  height: 100%;
  top: 0;
  transition: opacity 0.3s linear;
}

.modal-offer .modal-offer__btn-submit .__text {
  position: relative;
  z-index: 1;
}

.modal-offer .modal-offer__btn-submit:hover .__bg {
  opacity: 0;
}

.popin-anim {
  animation: popin_appear 0.28s ease-out;
}

@keyframes popin_appear {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  80% {
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fadeIn-anim {
  animation: fadeIn_appear 0.28s ease-out;
}

@keyframes fadeIn_appear {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-document url-prefix()  {

}