.ImmiCustomize .subSection{
    border: 1px solid #eee;
    background-color: #fbfafa;
    border-radius: 5px;
    margin-top: 10px;
    padding: 10px 0px;
}
.ImmiCustomize .select2.select2-container{
    width:100% !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid 1px #93a9c0;
}
.ImmiCustomize .select2-search__field{
    line-height: 14px;
}
.ImmiCustomize .select2-results__option strong{
    font-weight:700;
}
.select2-container--default .select2-results__group {
  background-color: #ddd;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 800px;
  overflow-y: auto;
}

.ImmiCustomize input[type="text"],
.ImmiCustomize input[type="file"],
.ImmiCustomize input[type="password"],
.ImmiCustomize input[type="email"],
.ImmiCustomize input[type="number"],
.ImmiCustomize input[type="date"],
.ImmiCustomize input[type="url"],
.ImmiCustomize input[type="tel"],
.ImmiCustomize textarea,
.ImmiCustomize select,
.ImmiCustomize .select2-selection{
    background: #fff;
    width: 100%;
    border: 1px solid #93a9c0;
    border-radius: 5px;
    outline: none;
    box-shadow: none;
    padding: 8px;
    font-size: 14px;
	height: 42px;
	font-weight: 400;
}
input[type="checkbox"], input[type="radio"] {
 margin-top: 0px !important;
}
.ImmiCustomize input[type="checkbox"]::before {
  content: '✔';
  position: absolute;
  right: 12px;
  top: 0px;
  color:#fff;
}
.select2-selection--multiple{
    height: auto !important;
}
.ImmiCustomize input[type="color"]{
    width: 100%;
    max-width: 107px;
}
.ImmiCustomize input[type="text"]:focus,
.ImmiCustomize input[type="file"]:focus,
.ImmiCustomize input[type="password"]:focus,
.ImmiCustomize input[type="email"]:focus,
.ImmiCustomize input[type="number"]:focus,
.ImmiCustomize input[type="date"]:focus,
.ImmiCustomize input[type="url"]:focus,
.ImmiCustomize input[type="tel"]:focus,
.ImmiCustomize textarea:focus,
.ImmiCustomize select:focus,
.ImmiCustomize .select2-selection{
    border-color: #265c6f;
    outline: none;
    box-shadow: none;
}
.ImmiCustomize label {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 0px;
  font-weight: 600;
}
.ImmiCustomize .inline-field {
    display: flex;
    align-items: center;
}

.ImmiCustomize .inline-field label {
    display: flex;
    align-items: center;
    width: 100%;
}

.ImmiCustomize .inline-field label span {
    width: 40%;
}

.ImmiCustomize .inline-field label input[type="text"] {
    width: 60%; /* Adjust the width as needed for the input */
    padding: 5px;
    margin-left: 10px; /* Space between label text and input field */
    border: 1px solid #ccc;
    border-radius: 4px;
}
.ImmiCustomize .error{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 2px 5px;
    margin-top: 2px;
    border-radius: 5px;
    max-width: 220px;
    display:none;
    opacity:0px;
}
.ImmiCustomize .error.hasError{
    display:inline;
    opacity:1;
}

.ImmiCustomize #submit-request-btn{
    border: 2px solid #2c4661;
    padding: 7px 15px;
    color: #2c4661;
    background-color: #fff;
    font-weight: 700;
    margin-top: 10px;
    transition: all .3s;
}
.ImmiCustomize #submit-request-btn:hover, .ImmiCustomize #submit-request-btn:focus{
    color: #fff;
    background-color: #2c4661;
}
.ImmiCustomize .formList{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.ImmiCustomize .formList li {
    display: inline;
}
.ImmiCustomize .formList li a{
	border-right: 2px solid #ff3838;
	padding: 0px 10px;
	color: #08394b;
}
.ImmiCustomize .formList li a:hover{
	color: #ff3838;
}
.ImmiCustomize .pickr {
	width: 100%;
	height: 40px;
	border: 0px;
	border-radius: 5px;
	background-color: #000000;
	max-width: 109px;
	overflow: hidden;
}
.pickr .pcr-button {
	position: relative;
	height: 40px;
	width: 100%;
	border-radius:5px;
}


/* Fullscreen overlay */
#formStatusPopup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#08394bb2;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup content container */
#formStatusPopup .popup-content {
    position:relative;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 80%;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
#formStatusPopup .close-btn {
    position:absolute;
    padding: 2px 10px;
    background: #ff4242;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    top: -14px;
    right: -10px;
    border-radius: 50%;
}

/* Close button hover effect */
#formStatusPopup .close-btn:hover {
    background: #9D1B20;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}