.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    background-color: unset;
    height: 35px;
}
  .select2-container--default .select2-selection--single {
    /* background-color: #fff; */
    border: none !important;
    border-radius: 4px;
}
	.select2-container--default .select2-selection--single .select2-selection__clear {
	    /* cursor: pointer; */
	    /* float: right; */
	    /* font-weight: bold; */
	    display: none;
	}
	.select2-container--default .select2-selection--single .select2-selection__arrow {
	    height: 35px !important;
	    width: 27px !important;
	}
	.select2-container--default .select2-selection--single .select2-selection__arrow b {
	  border-width: 5px 5px 0 5px !important;
	  border-color: #000 transparent transparent transparent;
	}
	
	.logoleft {
	  position: absolute;
	  top: 0;
	  left: 16px;
	  width: 125px;
	}
	.logoright {
	  position: absolute;
	  top: 0;
	  right: 16px;
	  width: 125px;
	}
	select {
	  -webkit-appearance: none;
	  -moz-appearance: none;
	  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
	  background-repeat: no-repeat;
	  background-position-x: 100%;
	  background-position-y: 5px;
	}
	@media screen and (max-width: 567px) {
	  .logoleft {
	  position: absolute;
	  top: 0;
	  left: 16px;
	  width: 85px;
	}
	.logoright {
	  position: absolute;
	  top: 0;
	  right: 16px;
	  width: 85px;
	}
	}
	.btn-default:hover {
		background-color: #ffcc00 !important;
	}

	body{
		  font-family:  'Roboto', sans-serif !important;
		  /*font-family: "Kanit", sans-serif;*/
	}
    .dlab-media, .dlab-post-media {
        border: 1px solid #E9E9E9;
    }
    
    .mainHeading {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-top: 0px !important;
    text-align: center;
    line-height: 1.3;
}
    
    .subheading {
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}
    
    #cityName, #mobile, #otpValue{
    	padding: 22px 12px;
    }
    
.customBtn {
    color: #ffffff;
    background: #000000;
    width: 100%;
    padding: 14px;
    box-shadow: 0px 8px 8px rgb(40 40 40 / 20%);
    border-radius: 5px !important;
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #000;
}

.customBtn:hover {
    color: #000;
    background: #fff;
    text-decoration: none;
}
    
    
    .imageSec, .formSec{
    	padding: 0;
    }
    
    
    .formSec{
    	background: white;
    	padding: 12px 16px !important;
    	/*position: absolute;*/
    	/*top: 5%;*/
    	/*left: 5%;*/
    	/*border-radius: 12px;*/
    	/*z-index: 9;*/
    }
    
    .contactSec span{
    	font-size: 9px;
    	line-height: 6px;
    }
    
    .hide{
    	display: none !important;
    }
    
    .show{
    	display: block !important;
    }
    
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
}

.error {
    border: 1px solid red;
    animation: shake 0.3s ease-in-out;
}


.suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 0 !important;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: calc(100% - 32px);
    background: #fff;
    z-index: 1000;
    border-radius: 0px 0px 12px 12px;
}

.suggestions-list li {
    padding: 4px 10px;
    cursor: pointer;
    border-bottom: 1px solid lightgrey;
}

.suggestions-list li:hover {
    background: #f0f0f0;
}

label {
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
}

.form-control[disabled]{
	background: #f5f5f5;
}

.personalDetailSec  .form-group {
    margin-bottom: 10px;
}

.personalDetailSec  .form-control {
    padding: 8px 10px;
    height: auto;
    font-size: 14px;
    border-radius: 8px !important;
}

.radio-buttons {
    display: flex;
    gap-y: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.radio-buttons input[type="radio"] {
    margin-right: 10px;
    width: 18px;  
    height: 18px; 
}

.radio-buttons label {
    font-size: 14px;
    color: #555;
    padding: 8px 24px;
    width: 44%;
    border: 2px solid lightgrey;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-buttons input[type="radio"]:checked + label {
    background-color: #f7f7f7;
    border-color: #eb9b3b;
}

.radio-buttons label:hover {
    background-color: #f7f7f7;
    border-color: #eb9b3b;
}

.radio-buttons input[type="radio"]:focus + label {
    outline: 2px solid #eb9b3b;
}

.radio-buttons label {
    padding: 8px 16px;
    font-size: 12px;
    margin: 5px;
    cursor: pointer;
    transition: border 0.3s ease;
}

.callbackTime{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.timeField{
	width: 44%;
}

input::placeholder {
  text-align: left;
}

.form-group{
	position: relative;
}
.otpVerifyBtn{
	position: absolute;
	background: #FEC801;
	top: 0;
    /*padding: 20px 35px;*/
    right: 0;
    font-size: 12px !important;
    font-weight: bold;
    border-radius: 0px 4px 4px 0px;
    cursor: pointer;
    height: 100%;
    width: 98px;
    display: flex;
    /*padding: 9px;*/
    /*line-height: 46px;*/
    justify-content: center;
    align-items: center;
}

.sendOtpBtn{
	position: absolute;
    background: #FEC801;
    top: 0;
    /*padding: 20px 22px;*/
    right: 0;
    font-size: 12px !important;
    font-weight: bold;
    border-radius: 0px 4px 4px 0px;
    cursor: pointer;
    width: 98px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactSec .sendOtpBtn.disabled {
    pointer-events: none;
    opacity: 0.8;
    cursor: not-allowed;
}

.imageSec {
    position: relative;
    overflow: hidden; /* Ensures the overlay stays within the image bounds */
}

.disclaimer a{
	color: #FFC800;
}

.disclaimer p{
	font-size: 10px;
}

.otpMsg{
	color: green;
	font-size: 12px !important;
	margin-top: 2px;
}

.invalidotpmsg{
	color: red;
	font-size: 12px !important;
	margin-top: 2px;
}
.ThankyouSec ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ThankyouSec ul li{
	border : 1px solid lightgrey;
	width: 45%;
	padding: 10px 8px;
	gap: 12px;
}
.hidden-radio {
    display: none;
}

@media screen and (max-width: 991px) {
	.page-content{
		overflow-y: scroll;
	}
}

/* new lp css starts here */

.backImageForDesktop {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.lead-form {
    position: absolute;
    right: 50px;
    top: 51px;
    border-radius: 10px !important;
    padding: 20px 30px;
    box-shadow: 0 4.5px 11px rgb(0 0 0 / 42%) !important;
    max-width: 410px;
}

.lead-footer {
    padding: 15px 0 10px;
}

.lead-footer-box .footerLogo {
    margin: 0;
    padding-right: 40px;
    max-width: 250px;
}

.lead-footer-list {
    display: flex;
}

.lead-footer-list li {
    border-left: 1px solid #fff;
    padding-left: 40px;
    padding-right: 40px;
}

.lead-footer-list li a {
    color: #fff;
}

.lead-footer .footer_bottom {
    margin-top: 10px;
    padding-top: 10px;
}

/* new lp css ends here */