#navbar-logo {
    /*font-weight: bold;*/
    margin-top: 5px;
    font-size: 26px;
    margin-left: 20px;
}

#loginbox {
    box-shadow: 0px 0px 7px #999999;
    padding-top: 60px;
    padding-left: 40px;
    padding-bottom: 40px;
    padding-right: 40px;
    margin-top: -20px;
}

/* <Shahadat Hossen: 30-10-2023> */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* background-color: rgba(255, 255, 255, 0.6); */
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* Stack loader and text vertically */
    z-index: 9999;
}

.loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    /* Adds space between loader and text */
    animation: spin 2s linear infinite;
}

.small-loader {
    left: 50%;
    top: 44%;
    opacity: 1;
    color: white;
    position: absolute;
    font-size: 1.125rem;
}

.loadingg {
    left: 50%;
    top: 50%;
    font-size: 1.75rem;
    font-family: serif;
    font-weight: bold;
    letter-spacing: 4.4px;
    white-space: nowrap;
    /* Prevent text wrapping */
    text-transform: capitalize;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -60%);
}

.loadingg::before {
    color: #aaa;
    content: attr(data-loading-text);
}

.loadingg::after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    /* color: #444; */
    background: linear-gradient(to bottom right, #4775e6, #e95555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    animation: loadingg 5s infinite;
}

@keyframes loadingg {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cssLoader17 {
    /* position: relative; */
    width: 2.5em;
    height: 2.5em;
    transform: rotate(165deg);
}

.cssLoader17:before,
.cssLoader17:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-radius: 0.25em;
    transform: translate(-50%, -50%);
}

.cssLoader17:before {
    animation: before 2s infinite;
}

.cssLoader17:after {
    animation: after 2s infinite;
}

@keyframes before {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }

    35% {
        width: 2.5em;
        box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
    }

    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
    }

    100% {
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
}

@keyframes after {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }

    35% {
        height: 2.5em;
        box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
    }

    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
    }

    100% {
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
}

/* </Shahadat Hossen: 30-10-2023> */