.demo-button {
  padding: 15px 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin: 50px auto;
  display: block;
}

.demo-button:hover {
  opacity: 0.9;
}

.disable-scroll {
  overflow: hidden !important;
}

/* Popup Styles */
.popup-form-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 18, 0.8);
  backdrop-filter: blur(16px);
  z-index: 1001;
  overflow-y: auto;
}
.popup-form-overlay .popup-box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 950px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
.popup-form-overlay .popup-box .popup-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 16px;
}
.popup-form-overlay .popup-box .popup-content .container-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 100px;
  position: relative;
  padding: 0;
}
@media screen and (max-width: 540px) {
  .popup-form-overlay .popup-box .popup-content .container-popup {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .popup-form-overlay .popup-box {
    width: calc(100% - 40px);
    max-width: 500px;
    top: 60px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .popup-form-overlay .popup-box .popup-content .container-popup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 540px) {
  .popup-form-overlay .popup-box {
    width: calc(100% - 0px);
  }
}

/* Banner Section (Left) */
.popup-banner--form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background: linear-gradient(135deg, #FF8F4B 0%, #FE7043 50%, #8B3A9B 100%);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 16px;
}
.popup-banner--form .popup-banner-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-banner--form .popup-banner-image picture {
  width: 100%;
  height: 100%;
}
.popup-banner--form .popup-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-border-top-left-radius: 16px;
  -webkit-border-bottom-left-radius: 16px;
  -moz-border-radius-topleft: 16px;
  -moz-border-radius-bottomleft: 16px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
@media screen and (max-width: 768px) {
  .popup-banner--form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    min-height: 300px;
  }
  .popup-banner--form .popup-banner-image img {
    -webkit-border-radius: 16px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius: 16px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-radius: 16px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}
/* Form Section (Right) */
.popup-form-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background: #fff url("../images/pop-bg-form.png") center top no-repeat;
  padding: 40px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-border-top-right-radius: 16px;
  -webkit-border-bottom-right-radius: 16px;
  -moz-border-radius-topright: 16px;
  -moz-border-radius-bottomright: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .popup-form-section {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 32px 24px;
    -webkit-border-radius: 0px;
    -webkit-border-bottom-right-radius: 16px;
    -webkit-border-bottom-left-radius: 16px;
    -moz-border-radius: 0px;
    -moz-border-radius-bottomright: 16px;
    -moz-border-radius-bottomleft: 16px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
}
@media screen and (max-width: 540px) {
  .popup-form-section {
    padding: 24px 20px 16px;
    background-size: 100%;
    border-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}

.popup-free-register {
  width: 100%;
  border-radius: 0;
  text-align: left;
  position: relative;
  z-index: 1;
  overflow: visible;
  isolation: isolate;
}
.popup-free-register::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  top: 0px;
  z-index: -1;
}
.popup-free-register .popup-close {
  position: absolute;
  top: -44px;
  right: 0px;
  border: none;
  -webkit-border-radius: 8px;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius: 8px;
  -moz-border-radius-bottomright: 0;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  line-height: 22px;
  padding: 11px 44px 11px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
  /*
  custom icon 
  */
}
@media screen and (max-width: 768px) {
  .popup-free-register .popup-close {
    padding: 10px 40px 10px 12px;
    top: -42px;
  }
}
.popup-free-register .popup-close::after {
  position: absolute;
  content: "";
  background: url("../images/icons/btn-close-white.png");
  background-size: 24px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 10px;
  z-index: 0;
}
.popup-free-register .pop--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-free-register .pop--icon .icon {
  width: 88px;
  height: 88px;
}
.popup-free-register .pop--title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: #360D3A;
  margin: 0 0 4px;
}
@media screen and (max-width: 360px) {
  .popup-free-register .pop--title {
    font-size: 26px;
    line-height: 32px;
  }
}
.popup-free-register .pop--desc {
  margin: 4px 0 16px;
  color: #888888;
  font-size: 12px;
  font-weight: 400;
}
.popup-free-register .default-button-popup .button-popup {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
  border-radius: 12px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 540px) {
  .popup-free-register {
    width: calc(100% - 30px);
  }
}

/* Form Register Combo */
.form--popup-free-register {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
}
.form--popup-free-register .form-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #3D3D3D;
  margin: 0 0 16px;
  text-align: left;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.form--popup-free-register .form-title span {
  display: block;
}
@media screen and (max-width: 540px) {
  .form--popup-free-register .form-title {
    font-size: 20px;
    line-height: 30px;
  }
}
.form--popup-free-register .form-desc {
  display: none;
}
.form--popup-free-register .form-register h4 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
@media screen and (max-width: 540px) {
  .form--popup-free-register .form-register h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.form--popup-free-register .form-register input[type=text] {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
  line-height: 46px;
  height: auto;
  padding: 0 12px;
  font-size: 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 540px) {
  .form--popup-free-register .form-register input[type=text] {
    height: 44px;
    line-height: 44px;
  }
}
.form--popup-free-register .form-register .row-text {
  display: block;
  margin-top: 20px;
}
.form--popup-free-register .form-register .row-text div {
  width: 100%;
  margin-bottom: 16px;
}
.form--popup-free-register .form-register .row-text div:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 540px) {
  .form--popup-free-register .form-register .row-text {
    margin-top: 12px;
  }
  .form--popup-free-register .form-register .row-text:nth-of-type(1) {
    margin-top: 20px;
  }
}
.form--popup-free-register .form-register .rows {
  margin-top: 16px;
}
.form--popup-free-register .form-register .row-btn--popup {
  margin-top: 32px;
}
.form--popup-free-register .form-register .row-btn--popup button {
  width: 100%;
  background: #4564ED;
  border-radius: 12px;
  line-height: 48px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.form--popup-free-register .form-register .row-btn--popup button:hover {
  background: #3a54d4;
}
@media screen and (max-width: 540px) {
  .form--popup-free-register .form-register .row-btn--popup button {
    line-height: 44px;
  }
}
.form--popup-free-register .form-register .row-btn--popup .link,
.form--popup-free-register .form-register .row-btn--popup .desc-bottom {
  font-size: 12px;
  color: #888888;
  margin-top: 10px;
  margin-bottom: 0;
}
.form--popup-free-register .form-register .row-btn--popup .link {
  margin-top: 0;
  font-weight: 700;
}
.form--popup-free-register .form-register .row-btn--popup .desc-bottom {
  text-align: center;
  line-height: 15px;
  font-size: 15px;
  font-weight: 700;
  margin: 4px 0 0;
}
@media screen and (max-width: 540px) {
  .form--popup-free-register .form-register .row-btn--popup {
    margin-top: 20px;
  }
}
.form--popup-free-register .form-register label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  display: block;
}
.form--popup-free-register .form-register .note {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  margin: 0;
}
.form--popup-free-register .form-register .note.note-under-button {
  padding-top: 8px;
}

/* Form Control */
.form--popup-free-register .form-control {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

/* Error Text */
.text-err-red,
.text-error {
  font-size: 14px;
  color: #ff0000;
  padding-top: 2px;
  display: block;
}

/* Select2 Styles */
.select2-container {
  width: 100% !important;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-container--default .select2-selection--single {
  height: 48px !important;
  border: 1px solid #ccc !important;
  border-radius: 8px !important;
  padding-left: 12px !important;
  padding-right: 40px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  font-size: 15px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
@media screen and (max-width: 540px) {
  .select2-container--default .select2-selection--single {
    height: 44px !important;
  }
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  padding-right: 0 !important;
  line-height: 48px !important;
}
@media screen and (max-width: 540px) {
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
  }
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  margin-right: 4px !important;
  position: absolute !important;
  right: 30px !important;
  line-height: 48px !important;
}
@media screen and (max-width: 540px) {
  .select2-container--default .select2-selection--single .select2-selection__clear {
    line-height: 46px !important;
  }
}/*# sourceMappingURL=pop-registration-form.css.map */