/* POPUP */

/* //////////////////  FORM  //////////////////// */

.contact-form__input {
  height: 50px;
  border: 1px solid #c9c9c9;
  border-radius: 15px;
  width: 100%;
  background: none;
  background-size: 30px;
  margin-bottom: 20px;
  padding: 0 15px 0 15px;
  font-family: "Wix Madefor Display", 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(--pink);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  border-radius: 15px;
  border: none;
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 550;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  transition: 0.3s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form__button:hover {
  transition: 0.3s;
  background: var(--primary-black);
  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: "Wix Madefor Display", sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: var(--main);
  margin-bottom: 10px;
}
.contact-form__info-photo {
  position: relative;
  display: block;
  color: var(--light-gold);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  background-color: var(--main);
  padding: 15px 18px;
}
.select-css {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  padding: 13px 15px 13px 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #d9d9d9;
  box-shadow: 0 1px 0 1px rgb(0 0 0 / 4%);
  border-radius: 5px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E), linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}
.select-css::-ms-expand {
  display: none;
}
.select-css:hover {
  border-color: #d9d9d9;
}
.select-css:focus {
  border-color: #d9d9d9;
  border-color: #d9d9d9;
  color: #fff;
  outline: none;
}
.select-css option {
  font-weight: normal;
}
*[dir="rtl"] .select-css,
:root:lang(ar) .select-css,
:root:lang(iw) .select-css {
  background-position: left 0.7em top 50%, 0 0;
  padding: 0.6em 0.8em 0.5em 1.4em;
}
.form-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  display: none;
}
label {
  color: black;
  background-color: #e9e9e9;
  padding: 16px 17px;
  border-radius: 15px;
  cursor: pointer;
}
input:checked + label {
  background-color: var(--main);
  color: var(--light-gold);
}
/* //////////////////  FORM  //////////////////// */

/* //////////////////  Pop-up  //////////////////// */

.popup-fade-order:before {
  display: none;
  content: "";
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  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;
  background-color: var(--gray);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 5px;
}
.pop-up-order .close-form:hover {
  cursor: pointer;
  background-color: #000;
}
.pop-up-order.open {
  visibility: visible;
  opacity: 1;
}
.popup__heading-city {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-bottom: 17px;
}
.popup__heading-city h3 {
  font-family: "Wix Madefor Display", 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: 200px;
  padding: 25px;
  border-radius: 25px;
  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: "Wix Madefor Display", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
}
.success-send p {
  font-family: "Wix Madefor Display", sans-serif;
  color: var(--white);
  font-size: 16px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .success-send {
    width: auto;
  }
}
/* //////////////////  Pop-up  //////////////////// */
