.loader-container {
    position: fixed;
    height: 100dvh;
    width: 100%;
    display: grid;
    top: 0;
    place-content: center;
    background: rgb(255, 254, 254);
    z-index: 99999;
    cursor: wait;
}

/* common */
.loading {
    font-size: 84px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-align: center;
}

.loading span {
    display: inline-block;
    margin: 0 0.05em;
}

/* code #2 */
.loading span {
    animation: loading 1.2s infinite alternate;
}

.loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading span:nth-child(3) {
    animation-delay: 0.4s;
}

.loading span:nth-child(4) {
    animation-delay: 0.6s;
}

.loading span:nth-child(5) {
    animation-delay: 0.8s;
}

.loading span:nth-child(6) {
    animation-delay: 1s;
}

.loading span:nth-child(7) {
    animation-delay: 1.2s;
}

.loading span:nth-child(8) {
    animation-delay: 1.4s;
}

.loading span:nth-child(9) {
    animation-delay: 1.6s;
}

.loading span:nth-child(10) {
    animation-delay: 1.8s;
}

.loading span:nth-child(11) {
    animation-delay: 2s;
}

.loading span:nth-child(12) {
    animation-delay: 2.2s;
}

.loading span:nth-child(13) {
    animation-delay: 2.4s;
}

.loading span:nth-child(14) {
    animation-delay: 2.6s;
}

.loading span:nth-child(15) {
    animation-delay: 2.8s;
}

.loading span:nth-child(16) {
    animation-delay: 3s;
}

.loading span:nth-child(17) {
    animation-delay: 3.2s;
}

@keyframes loading {
    0% {
        filter: blur(0);
        opacity: 1;
    }

    100% {
        filter: blur(5px);
        opacity: 0.2;
    }
}

@media only screen and (max-width: 768px) {
    .loader-container h3 {
        font-size: 22px;
    }

    .loading {
        font-size: 60px;
    }
}

@media only screen and (max-width: 480px) {
    .loader-container h3 {
        font-size: 18px;
    }

    .loading {
        font-size: 35px;
    }
}

[data-skin=dark] .loader-container {
    background: #141926;
    color: rgba(255, 255, 255, 0.6);
}

[data-skin=dark] .loader {
    background: #141926;
    color: rgba(255, 255, 255, 0.6);
}


ul.bs-autocomplete-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow: auto;
    z-index: 9999;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.4);
}

ul.bs-autocomplete-menu a {
    font-weight: normal;
    color: #333333;
}

ul.bs-autocomplete-menu li.ui-menu-item {
    width: 100%;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ui-state-active,
.ui-state-focus {
    color: #23527c;
    background-color: #eeeeee;
}

.bs-autocomplete-feedback {
    width: 1.5em;
    height: 1.5em;
    overflow: hidden;
    margin-top: .5em;
    margin-right: .5em;
}

/* Form Control Updated */
/* .form-control {
    padding: initial !important;
} */
