.iti {
    display: block;
}
[data-validate-for] {
    color: red;
    font-size: 12px;
}
label.required::after {
    content: "*";
    color: red;
}
.option-input {
    top: 0 !important;
}
.gap-4 {
    gap: 20px;
}
.btn-upload,
.btn-nlb {
    border: 1px solid #26147e;
    color: #26147e;
    font-size: 14px;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    width: fit-content;
}
.btn-upload {
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 7px;
}
.btn-nlb-submit {
    border: 1px solid #26147e;
    color: #fff;
    background-color: #26147e;
    font-size: 14px;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 100px;
    border-radius: .5rem;
    font-size: 18px;
}
.btn-nlb-submit:hover {
    color: #26147e;
    background: white;
    box-shadow: 0 0 0 .2rem rgba(38,20,126,.25)
}
a.show-info {
    color: #ccc;
    transition: all .3s ease-in-out;
}
a.show-info:hover {
    color: #26147e;
}
.btn-upload:hover,
.btn-nlb:hover {
    background-color: #26147e;
    color: #fff;
}
.btn-upload:focus,
.btn-nlb:focus {
    box-shadow: 0 0 0 .2rem rgba(38,20,126,.25)
}
.remove-legal {
    gap: 5px;
    justify-self: flex-end;
}
span.large {
    font-size: 22px;
    line-height: 1;
}
span.info {
    color: #666;
    font-size: 12px;
    display: block;
    text-align: right;
}
.file-upload {
    margin-bottom: 0px;
    border: 1px solid #ced4da;
    padding: .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    border-radius: .25rem;
}
.file-upload:hover {
    border-color: #26147e;
}
.file-upload input {
    display: none;
}

.file-list {
    list-style: none;
    padding: 0;
    transition: all .3s ease-in-out;
    flex-direction: column;
    gap: 5px;
    display: none;
}
.file-list.show {
    display: flex;
    margin-top: 10px;
}
.file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 5px 7px;
}

.remove-file {
    background-color: #26147e;
    color: white;
    border: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border-radius: .25rem;
    line-height: 1;
}

.remove-file:hover {
    background-color: rgba(38,20,126,.25);
}
.backdrop {
	display: none;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 8999;
	transition: all .3s ease-in-out;
}


.backdrop.show {
	background: rgba(255, 255, 255, 0.4);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	display: block;
}
.has-open-modal {
	overflow: hidden;
}
.nlb-modal {
    position: fixed;
    z-index: 9000;
    transition: all .3s ease-in-out;
    width: 600px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #26147e;
    color: white;
    padding: 25px;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin; /* Makes scrollbar smaller */
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent; /* Thumb and track colors */
    visibility: hidden;
    opacity: 0;
}
.nlb-modal:not(:hover) {
    scrollbar-width: none; /* Hides scrollbar */
}
.nlb-modal p {
    color: white;
    font-size: 14px;
}
.nlb-modal p:last-child {
    margin-bottom: 0;
}
.nlb-modal a.close {
    color: rgba(255, 255, 255, 1);
    top: 0px;
    right: 0px;
    position: sticky;
    background-color: #26147e;
    opacity: 1;
    text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5);
}
.nlb-modal a.close:hover {
    opacity: 1;
    color: rgba(255, 255, 255, .8);
}
.nlb-modal.show {
    top: 50%;
    visibility: visible;
    opacity: 1;
}

/* Hide scrollbar by default */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

/* Show scrollbar when hovering over the container */
.nlb-modal:hover::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Style the scrollbar track */
.nlb-modal:hover::-webkit-scrollbar-track {
    background: transparent; /* Keeps the track invisible */
}

/* Style the scrollbar thumb (the draggable part) */
.nlb-modal:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3); /* Darker thumb, similar to macOS */
    border-radius: 4px;
}

/* Optional: Make scrollbar slightly rounded */
.nlb-modal:hover::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}


@media (max-width: 767px){
    #business-account .w-75,
    #business-account .w-50 {
        width: 100% !important;
    }
    .nlb-modal { 
        width: 95%;
        max-height: 90%;
    }
    .fixHead {
        z-index: 8888 !important;
    }
}