﻿.select2-container--default .select2-selection--single {
    background-color: #f4f4f4;
    border: 1px solid #fff;
    /* border-radius: 0px; */
    min-height: 40px;
    border-radius: 0px;
    outline: none;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #999;
        line-height: 40px;
        float: inline-start;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 26px;
        position: absolute;
        top: 7px;
        right: 1px;
        width: 20px;
    }

.select2-selection__placeholder {
    float: inline-start;
}

.select2-dropdown {
    background-color: #f4f4f4;
    border: 1px solid #fff;
    /* border-radius: 4px; */
    /* box-sizing: border-box; */
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-search__field:focus {
    outline: none;
}

.login-container .heading .title {
    text-transform: none;
    font-weight: 600;
}

.login-container form label {
    font-size: 1em !important;
    font-weight: 600 !important;
}

.span-error {
    font-size: 0.9em;
    font-weight: 600;
}

.swal2-input {
    padding-left: 1.2rem;
    height: 46px !important;
    margin-bottom: 1rem;
    transition: all 0.3s;
    border: 1px solid #dfdfdf;
    border-radius: 0;
    background-color: #fff;
    color: #777;
    font-family: "Open Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
}

div:where(.swal2-container) input:where(.swal2-input):focus {
    box-shadow: none;
}

/* Loader */

.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loadingOverlay {
    position: fixed;
    z-index: 9999 !important; /* Higher than other content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
}
