/* POPUP */

/* //////////////////  FORM  //////////////////// */

.contact-form__input {
  height: 50px;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  width: 100%;
  background: none;
  background-size: 30px;
  margin-bottom: 20px;
  padding: 0 15px 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #000;
  transition: 0.3s;
}
.contact-form__input:focus {
  transition: 0.3s;
}
.contact-form__btn {
  display: flex;
  justify-content: center;
}
.contact-form__button {
  position: relative;
  background: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  border-radius: 5px;
  border: none;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  transition: 0.3s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form__button:hover {
  transition: 0.3s;
  background: #ff5055;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form__button:disabled,
.contact-form__button[disabled] {
  background-color: #bbbbbb;
}
.contact-form__header {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: var(--main);
  margin-bottom: 10px;
}
/* //////////////////  FORM  //////////////////// */

/* //////////////////  Pop-up  //////////////////// */

.popup-fade-order:before {
  display: none;
  content: "";
  background-color: rgb(0, 0, 0);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1000;
}
.popup-fade-open:before {
  display: block;
}
.open-modal {
  overflow: hidden;
  margin-right: 17px;
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
  50% {
    transform: translatey(-30px);
    transform: translatex(20px);
  }
  100% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
}
@-moz-keyframes float {
  0% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
  50% {
    transform: translatey(-30px);
    transform: translatex(20px);
  }
  100% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
}
@-o-keyframes float {
  0% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
  50% {
    transform: translatey(-30px);
    transform: translatex(20px);
  }
  100% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
}
@keyframes float {
  0% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
  50% {
    transform: translatey(-30px);
    transform: translatex(20px);
  }
  100% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
}

.pop-up-order {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1001;
  width: 100%;
  border-radius: 25px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .pop-up-order {
    width: calc(100% - 40px);
    max-height: 90%;
    max-width: 440px;
  }
}
@media (max-width: 767px) {
  .pop-up-order {
    max-height: 90%;
    width: 90%;
    border-radius: 25px;
  }
}
.pop-up-order > .pop-up__wrapper {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 30px 35px;
}
.pop-up-order .close-form {
  position: absolute;
  top: 17px;
  right: 17px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 5;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.pop-up-order .close-form:hover {
  cursor: pointer;
}
.pop-up-order .close-form:hover > path {
  cursor: pointer;
  fill: var(--red);
}
.pop-up-order.open {
  visibility: visible;
  opacity: 1;
}
.popup__heading-city {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-bottom: 17px;
}
.popup__heading-city h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-black);
}
.success-send {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 25px;
  right: 25px;
  margin: auto;
  width: 415px;
  height: fit-content;
  padding: 44px 40px;
  border-radius: 20px;
  background-color: var(--primary-black);
  text-align: center;
  box-shadow: 0 0 80px 20px #1424245e;
  z-index: 999;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.success-send-active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.success-send h4 {
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.success-send p {
  font-family: "Manrope", sans-serif;
  color: var(--white);
  font-size: 16px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .success-send {
    width: auto;
  }
  .open-modal {
    margin-right: 0;
  }
}
/* //////////////////  Pop-up  //////////////////// */
