/*
Author: devsoft7pm@gmail.com
File: Custom Css File
*/
.btn-custom-success {
    color: #fff;
    background-color: #0f2137;
    border-color: #0f2137;
}

.btn-custom-success:hover {
    color: #fff;
    background-color: #0f2137;
    border-color: #0f2137;
}

.avatar-xl-custom {
    height: 11.5rem;
    width: 11.5rem;
}

.avatar-xl-custom-logo {
    height: 9.5rem;
    /* width: 11.5rem; */
}

.dept-custom-list {
    margin-left: 5px;
}

.dept-custom-list-li {
    padding-left: 12px;
}

.card-custom {
    margin-bottom: 1.5rem;
    -webkit-box-shadow: 0 1px 5px rgb(56 65 74 / 15%) !important;
    box-shadow: 0 1px 5px rgb(56 65 74 / 15%) !important;
}

.auth-one-bg-custom {
    background-image: url('../images/company/auth_banner.jpeg');
    background-position: inherit;
    background-size: cover;
}

.custom-color{
    color: #0f2137 !important;
}

.badge-custome-padding{
    padding: 2px 4px 2px 4px !important;
}

.department-custom-width{
    width: 96% !important;
    max-height: 240px !important;
}

.a-none {
    text-decoration: none !important;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: #24242485;
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

.text-justify{
    text-align: justify;
}
