.select{
  position: relative;
}
.select-input{
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.custom-select-trigger{
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 4.8rem;
}
.custom-select-trigger.placeholder{
  color: var(--gray);
}
.custom-select-trigger.show{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-select-trigger::after{
  position: absolute;
  content: "";
  right: 1.2rem;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon-arrow-down.svg);
  background-size: cover;
  background-position: center right;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-select-trigger.show::after{
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.custom-options {
  position: absolute;
  background: var(--white);
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0px 1px 2px 0px #1213140D;
  border: 1px solid var(--border-secondary);
  border-top: 0;
  display: none;
  z-index: 10;
  max-height: 20rem;
  overflow-y: auto;
}
.custom-select-trigger.show + .custom-options{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.custom-option{
  padding: 0.6rem 1.2rem;
  position: relative;
  font-size: 1.4rem;
  line-height: 2.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.option-icon{
  width: 2rem;
  object-fit: cover;
  margin-right: 0.8rem;
}
.custom-option:not(.selected):hover{
  background: var(--secondary);
}
.custom-option.selected{
  background: var(--blue);
  color: var(--white);
}
.input-columns{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}
.input-column{
  width: 50%;
}
.column-120{
  width: 12rem;
}
.column-110{
  width: 11rem;
}
.phone-input{
  display: flex;
  border: 1px solid var(--border-secondary);
  border-radius: 1rem;
}
.phone-input:has(.form-control:focus){
 border-color: var(--light-black); 
}
.phone-input:has(.show){
  border-bottom-left-radius: 0;
}
.phone-input .form-control{
  border: 0;
}
.phone-input .select{
  flex-shrink: 0;
}
.phone-input .custom-select-trigger {
  padding-right: 3rem;
}
.phone-input .custom-select-trigger::after {
  right: 0.6rem;
}
.phone-input .select + .form-control{
  padding-left: 0.8rem;
}
.phone-input .custom-options {
  left: -2px;
}
textarea.form-control{
  min-height: 16.9rem;
  padding-top: 1.2rem;
  padding-bottom: 3.6rem;
  resize: vertical;
  display: block;
  overflow: hidden;
}
.input-couter{
  position: relative;
}
.input-couter .counter{
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.2rem;
  color: #697289;
}
.upload-box{
  border: 1px dashed #BCC4D4;
  padding: 3.2rem;
  border-radius: 1.2rem;
  position: relative;
}
.upload-icon{
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.2rem;
  margin-left: auto;
  margin-right: auto;
}
.upload-box span{
  color: #697289;
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0;
  display: block;
}
.upload-box .btn{
  height: 3.2rem;
  padding: 0 1.4rem;
}
.upload-box input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.upload-card{
  background: var(--white);
  border: 1px solid var(--border-secondary);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  margin-top: 0.8rem;
  border-radius: 1.2rem;
  gap: 1.2rem;
}
.delete-file{
  margin-left: auto;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border-radius: 0.8rem;
}
.delete-file img{
  margin: 0;
}
.file-info {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.file-info-icon{
  width: 3.2rem;
}
.file-info-icon img{
  max-width: 100%;
  height: auto;
  width: auto;
}
.file-size{
  margin-left: auto;
  border: 1px solid var(--border-secondary);
  padding: 0.4rem 0.8rem;
  background: var(--secondary);
  font-size: 1.1rem;
  line-height: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 999px;
}
.chk {
  display: block;
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: -0.14px;
  font-weight: 500;
  color: #323745;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chk a{
  text-decoration: underline !important;
  text-decoration-skip-ink: none;
}
.chk a:hover{
  text-decoration: none !important;
}
.chk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.chk .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  background-image: url(../images/icon-checkbox.png);
  background-size: cover;
  background-position: center;
}
.rdo .checkmark{
  background-image: url(../images/icon-radio.png);
}
.chk .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.chk input:checked ~ .checkmark:after {
  display: block;
}
.chk .checkmark:after {
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon-checkbox-active.png);
  background-size: cover;
  background-position: center;
}
.rdo .checkmark:after{
  background-image: url(../images/icon-radio-active.png);
}
/* WPCF7 checkbox styles */
.chk .wpcf7-form-control-wrap{
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
}
.chk .wpcf7-acceptance{
  display: block;
  width: 100%;
  height: 100%;
}
.chk .wpcf7-list-item{
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.chk .wpcf7-acceptance input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  z-index: 2;
  margin: 0;
}
.chk .wpcf7-acceptance input[type="checkbox"]:checked ~ .checkmark:after,
.chk .wpcf7-acceptance input[type="checkbox"]:checked + .checkmark:after,
.chk:has(.wpcf7-acceptance input[type="checkbox"]:checked) .checkmark:after{
  display: block;
}
label.error{
  position: relative;
  display: block;
  margin: 0.8rem 0 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0;
  font-weight: normal;
  padding-left: 2rem;
  background-image: url(../images/icon-error.png);
  background-repeat: no-repeat;
  background-position: left center;
  color: #D52C2A;
}
.form-control.error,
.phone-input:has(.form-control.error),
.form-control.wpcf7-not-valid,
.phone-input:has(.form-control.wpcf7-not-valid){
  border-color: #E64A4D;
}
/* WPCF7 error styles */
.wpcf7-not-valid-tip{
  position: relative;
  display: block;
  margin: 0.8rem 0 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0;
  font-weight: normal;
  padding-left: 2rem;
  background-image: url(../images/icon-error.png);
  background-repeat: no-repeat;
  background-position: left center;
  color: #D52C2A;
}
.wpcf7-response-output{
  margin: 1.6rem 0 0 !important;
  padding: 1.2rem 1.6rem !important;
  border-radius: 0.8rem !important;
  font-size: 1.4rem;
  line-height: 2rem;
}
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-spam-blocked{
  border-color: #E64A4D !important;
  background: #FEF2F2;
  color: #D52C2A;
}
.wpcf7-response-output.wpcf7-mail-sent-ok{
  border-color: #10B981 !important;
  background: #ECFDF5;
  color: #059669;
}
.input-info{
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0;
}
.input-info img{
  width: 1.6rem;
  height: auto;
  flex-shrink: 0;
  margin-right: 0.4rem;
}
.hide{
  display: none;
}
.form-input-icon{
  position: relative;
}
.form-input-icon .form-control{
  padding-left: 3.8rem;
}
.input-password .form-control{
  padding-right: 3.6rem;
}
.input-icon,
.btnshowpsaaword{
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
}
.btnshowpsaaword{ 
  left: auto !important;
  right: 1rem;
}
.btnshowpsaaword.toggle::after {
  position: absolute;
  content: "";
  top: -0.1rem;
  left: 0.8rem;
  width: 0.2rem;
  height: 2rem;
  background: #838B9E;
  transform: rotate(45deg);
}
.input-info-list li{
  padding: 0.8rem 0 0.8rem 2.8rem;
  margin: 0;
}
.input-info-list li::after{
  top: 0.8rem;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon-check-fill-blue.png);
  background-size: cover;
  background-position: center;
}
.radio-item{
  border-bottom: 1px solid var(--border-secondary);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  gap: 1.2rem;
}
.radio-item:last-child{
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.radio-input{
  width: 2rem;
  height: 2rem;
}
.radio-img{
  flex-shrink: 0;
  width: 4.3rem;
  height: 3.2rem;
  border-radius: 0.6rem;
}
.radio-item p{
  margin-left: auto;
}
.radio-item p.fw-14:last-child{
  flex-shrink: 0;
}
@media(min-width:1360px) and (max-width:1459.98px){
}
@media(min-width:1200px) and (max-width:1359.98px){
}
@media(min-width:992px) and (max-width:1199.98px){
}
@media(min-width:768px) and (max-width:991.98px){
}
@media(max-width:767.98px){
  .input-columns {
    display: block;
  }
  .input-column {
    width: 100% !important;
  }
  .upload-box {
    padding: 1.6rem;
  }
  .chk {
    font-size: 1.3rem;
  }
  .radio-item {
    gap: 0.8rem;
  }
}

/* Contact Form 7 Loader - Button */
.input-group-btn button[type="submit"] {
  position: relative;
  transition: opacity 0.3s;
}
.input-group-btn button[type="submit"].loading {
  pointer-events: none;
  opacity: 0.7;
}
.input-group-btn button[type="submit"].loading span,
.input-group-btn button[type="submit"].loading img {
  visibility: hidden;
  opacity: 0;
}
.input-group-btn button[type="submit"].loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wpcf7-spin 0.8s linear infinite;
}
@keyframes wpcf7-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#number+.wpcf7-not-valid-tip {
  position: absolute;
}

.input-group:has( label.error) + .input-info {
  display: none;
}