custom-popup .popup__wrapper{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
custom-popup.active .popup__wrapper{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

custom-popup .popup__bg-layer{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: 2;
}

custom-popup .popup__body{
  position: absolute;
  top: 30%;
  max-width: 490px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
  z-index: 3;
}

custom-popup .close__popup-btn{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: normal;
  cursor: pointer;
}
custom-popup form {
  justify-content: flex-start;
  height: auto;
}
custom-popup .popup__header h2{
  color: #2d2c28;
  font-weight: 800;
  font-size: 36px;
  text-align: center;
  margin-bottom: 12px;
}
custom-popup .popup__footer p{
  font-size: 16px;
  text-align: center;
  margin: 0px;
  color: #656565;
  line-height: normal;
  margin-top: 15px;
}



custom-popup .popup__body form{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
custom-popup .popup__body form select{
  width: 67%;
}
custom-popup .popup__body form .bttn-orange{
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
  min-height: auto;
  line-height: normal !important;
  border-radius: 0px 20px 20px 0px;
  width: 33%;
  cursor: pointer;
  gap: 5px;
}

custom-popup .popup__body form .bttn-orange svg{
  fill: #fff;
  width: 18px;
  height: 18px;
}
custom-popup .popup__body form .bttn-orange p{
  margin: 0px !important;
}



@media(max-width:991px){
  custom-popup .popup__body form select{
    margin-bottom: 15px !important;
  }
  custom-popup select#location.location-select {
    border-radius: 50px !important;
  }
  custom-popup .popup__body form select{
    width: 100%;
  }
  custom-popup .popup__body form .bttn-orange{
    border-radius: 20px;
    width: 100%;
    padding: 11px 10px;
  }
}
@media(max-width:767px){
  custom-popup .popup__body{
    max-width: 90%;
  }
}