

.modal.modal-bid {
  display: none;
  z-index: 2000;
}

.modal-open {
  overflow: hidden
}

.iti {
  width: 100%;
  height: 100%
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .1);
  overflow: auto
}

.modal.modal-bid .modal__dialog {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 5rem 0;
  min-height: 100%;
  width: 100%;
  color: #FFFFFF;
  background: #121212;
}

@media only screen and (min-width:768px) {
  .modal.modal-bid .modal__dialog {
    max-width: 80rem;
    min-height: auto;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
  }
}

.modal.modal-bid .modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 2.4rem;
  height: 2.4rem;
  z-index: 10;
  cursor: pointer
}

.modal.modal-bid .modal__close::after,
.modal.modal-bid .modal__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 2.4rem;
  background: #FFFFFF;
  border-radius: 10rem;
  -webkit-transition: height .15s linear;
  transition: height .15s linear
}

.modal.modal-bid .modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg)
}

.modal.modal-bid .modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg)
}

.modal.modal-bid .modal__close:hover::after,
.modal.modal-bid .modal__close:hover::before {
  height: 3px
}



.info {
  padding-top: 9rem;
  padding-bottom: 8rem;
  background: #000;
  color: #FFF;
}

.info__title {
  text-align: center
}

.info__subtitle {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 2rem;
  line-height: 125%;
  font-weight: 500
}

@media only screen and (min-width:1024px) {
  .info__subtitle {
    margin-top: 2rem;
    font-size: 2.2rem
  }
}

@media only screen and (min-width:1440px) {
  .info__subtitle {
    font-size: 2.4rem
  }
}

.info-form {
  max-width: 48rem;
  margin: 2rem auto 0
}

@media only screen and (min-width:1024px) {
  .info-form {
    margin-top: 3.2rem
  }
}

@media only screen and (min-width:1280px) {
  .info-form {
    margin-top: 5rem
  }
}

.info-form fieldset {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem
}

.info-form__desc {
  margin-left: 1rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: #484848
}

@media only screen and (min-width:1280px) {
  .info-form__desc {
    font-size: 1.8rem
  }
}

.info-form__input {
  padding: 2rem 1rem;
  position: relative;
  background: #1f1f1f;
}

.info-form__input>div,
.info-form__input>input {
  position: relative;
  z-index: 5
}

.info-form__input input {
  font-size: 1.6rem;
  line-height: 100%;
  color: #efefef
}

.info-form__input_text input {
  width: 100%;
  height: 100%;
  background: 0 0;
  outline: 0;
  border: none
}

.info-form__errors {
  display: none
}

.info-form__description {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 120%;
  text-align: center
}

.info-form__submit {
  margin: 4rem auto 0;
  padding: 1.5rem 1rem;
  display: block;
  background: #000;
  border: 1px solid #FFFFFF;
  border-radius: 24px;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #FFFFFF;
  text-transform: uppercase
}

@media only screen and (min-width:1024px) {
  .info-form__submit {
    padding: 1rem 2rem
  }
}

.phone-international {
  outline: 0;
  background: 0 0;
  border: none
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  font-size: 1.4rem
}

.iti__selected-flag {
  color: #fefeff
}

.iti__country-list {
  color: #979797;
  font-size: 14px
}

.reg-errors {
  margin-top: .5rem;
  font-size: 1.2rem;
  line-height: 120%;
  color: red
}


.app-btn {
  font-size: 20px;
}

@keyframes scale {
  from {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
  }
}

.flick-bttn {
  -webkit-animation: 1s infinite scale alternate;
  animation: 1s infinite scale alternate
}