* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.required {
    color: red;
}
/*page loader gif*/
#pgLoader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--theme-bg-clr);
    display: flex;
    justify-content: center;
    align-items: center;
}

#pgLoaderGif {
    border: 13px solid #f3f3f3;
    border-radius: 50%;
    border-top: 13px solid var(--theme-dark-clr);
    width: 90px;
    height: 90px;
    animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*common*/
body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 13rem;
}

.page-main-content {
    padding-bottom: 13rem;
}

.admin-main-content-inner ul {
    padding-left: 16px;
}

select,
input {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.custom-file-label {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 5.5rem;
}

.table-date-eye {
    cursor: pointer;
    color:  var(--theme-light-clr);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.table-date-eye:hover, .table-date-eye:focus {
    color: var(--theme-dark-clr);
}

.toggle-password {
    position: absolute;
    top: 12px;
    right: 8px;
    cursor: pointer;
    color: #5b6c7c;
}

button[disabled] {
    cursor: no-drop;
}

.btn {
    box-shadow: var(--theme-light-box-shadow);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-family: Inter,sans-serif;
    font-weight: 600;
    color: #FFF;
}

.btn:hover, .btn:focus, .btn:active {
    box-shadow: var(--theme-dark-box-shadow);
    color: #FFF;
    -ms-transform: scale(.95);
    -webkit-transform: scale(.95);
    transform: scale(.95);
}

.border-success-2x {
    border: 2px solid var(--theme-light-clr);
}

.theme-btn {
    background-color: var(--theme-light-clr);
    border: 2px solid var(--theme-light-clr);
    box-shadow: var(--theme-light-box-shadow);
    text-shadow: var(--theme-text-shadow);
}

.theme-btn:hover, .theme-btn:focus, .theme-btn:active {
    background-color: var(--theme-dark-clr);
    border-color: var(--theme-dark-clr);
}

.light-box-shadow {
    box-shadow: var(--theme-light-box-shadow);
}

.dark-box-shadow {
    box-shadow: var(--theme-dark-box-shadow);
}

.box-shadow-none {
    box-shadow: none!important;
}

.text-success {
    color: var(--theme-light-clr)!important;
}

.list-style-none {
    list-style: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

h1, .h1 {
    font-size: 40px;
}

h2, .h2 {
    font-size: 32px;
}

h3, .h3 {
    font-size: 28px;
}

h4, .h4 {
    font-size: 24px;
}

h5, .h5 {
    font-size: 20px;
}

h6, .h6 {
    font-size: 16px;
}

@media (max-width: 991px) {
    /*common*/
    h1, .h1 {
        font-size: 32px;
    }

    h2, .h2 {
        font-size: 28px;
    }

    h3, .h3 {
        font-size: 24px;
    }

    h4, .h4 {
        font-size: 22px;
    }

    h5, .h5 {
        font-size: 18px;
    }
}
.admin-panel-header #profContentBtn .profile-user-pic {
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px #00000050;
    height: 45px;
    object-fit: contain;
    padding: 2px;
    width: 45px
}

.admin-panel-header #profContentBtn:after {
    content: unset
}

.admin-panel-header #profContentBtn+.animated-dropdown {
    top: 56px!important
}

.admin-panel-header #profContentBtn+.dropdown-menu .user-name-text {
    font-family: Inter, sans-serif;
    font-size: 10px;
    padding: 4px 16px
}

.admin-panel-header #profContentBtn+.dropdown-menu .dropdown-item {
    color: unset;
    padding: 4px 16px
}

.admin-panel-header #profContentBtn+.dropdown-menu .dropdown-item:active,
.admin-panel-header #profContentBtn+.dropdown-menu .dropdown-item:focus,
.admin-panel-header #profContentBtn+.dropdown-menu .dropdown-item:hover {
    color: #358835
}

@media (max-width: 767px) {
    /*common*/
    a,
    button,
    b,
    p,
    span,
    label,
    .form-control,
    .custom-file-label,
    .custom-control-label {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    /*common*/
    h1, .h1 {
        font-size: 20px;
    }

    h2, .h2 {
        font-size: 18px;
    }

    h3, .h3 {
        font-size: 16px;
    }

    h4, h5, h6, .h4, .h5, .h6 {
        font-size: 14px;
    }
}
