 .custom-popup {
     position: fixed;
     z-index: 1111;
     background-color: rgba(0, 0, 0, 0.6);
     left: 0;
     right: 0;
     bottom: 0;
     top: 0;
     display: none;
     align-items: center;
     justify-content: center;
     display: none;
     padding: 30px 15px;
 }

 .custom-popup.active {
     display: flex;
 }

 .custom-popupbox {
     background-color: #fff;
     border-radius: 10px;
     width: 800px;
     max-width: 100%;
     display: flex;
     justify-content: space-between;
     position: relative;
 }

 .custom-popupbox .close_btn {
     display: flex;
     align-items: center;
     justify-content: center;
     position: absolute;
     font-style: normal;
     font-weight: 600;
     width: 35px;
     height: 35px;
     right: -15px;
     top: -15px;
     padding: 0;
     font-size: 35px;
     left: auto;
     font-family: initial;
     background-color: #ffa00a;
     color: #fff;
     border-radius: 50%;
     cursor: pointer;
 }

 .form-holder {
     margin-bottom: 15px;
 }

 .form-holder input[type="text"],
 .form-holder input[type="email"],
 .form-holder input[type="tel"],
 .form-holder textarea {
     padding: 15px 18px;
     font-size: 15px;
     width: 100%;
     box-sizing: border-box;
     border: 1px solid #ddd;
     outline: none;
     border-radius: 4px;
 }

 .form-holder .iti input[type=tel] {
     padding: 15px 18px 15px 46px;
     font-size: 15px;
     width: 100%;
     box-sizing: border-box;
     border: 1px solid #ddd;
     outline: none;
     border-radius: 4px;
 }

 .form-holder select {
     padding: 10px 0 10px 16px;
     font-size: 15px;
     width: 127px;
     box-sizing: border-box;
     border: 1px solid #ddd;
     outline: none;
     border-radius: 4px 0 0 4px;
     text-overflow: ellipsis;
 }

 .form-left {
     width: 48%;
     border-radius: 10px 0 0 10px;
     padding: 25px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .form-left img {
     max-width: 100%;
     image-rendering: -webkit-optimize-contrast;
     image-rendering: crisp-edges;
 }

 .form-right {
     padding: 35px 40px 35px 0;
     width: 48%;
 }

 .form-holder.phone-column {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
 }

 .form-holder.phone-column input[type=text] {
     width: calc(100% - 127px);
     width: -o-calc(100% - 127px);
     width: -moz-calc(100% - 127px);
     width: -webkit-calc(100% - 127px);
     border-radius: 0 4px 4px 0;
     border-left: 0;
 }

 form input[type=submit] {
     background: #ffa00a;
     color: #fff;
     font-size: 20px;
     font-weight: 600;
     padding: 12px 40px;
     border-radius: 4px;
     width: auto;
     text-transform: uppercase;
     min-height: 45px;
     line-height: 30px;
     outline: none;
     border: none;
     cursor: pointer;
 }

 form input[disable="disabled"] {
     pointer-events: none;
     opacity: 0.5;
 }

 .submitholder img {
     width: 32px;
     margin: 0 0 0 10px;
     vertical-align: middle;
     display: none;
 }

 .custom-popup h3 {
     font-size: 28px;
     font-weight: 500;
 }

 .custom-popup h3 strong {
     display: block;
     margin-bottom: 20px;
 }

 @media screen and (max-width: 767px) {
     .form-left {
         display: none;
     }

     .form-right {
         width: 100%;
         padding: 15px 20px;
     }
 }