@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display';
    font-size: 0.875rem;
    opacity: 1;
    overflow-y: scroll;
    margin: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
    font-family: 'Playfair Display';
}

li {
    list-style: none;
}

h4 {
    font-family: 'Playfair Display';
    font-size: 1.275rem;
    color: var(--bs-emphasis-color);
}
.small , small{
    font-family: 'poppins', 'sans-serif' !important;
}
/* Layout for admin dashboard skeleton */

.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}

#sidebar {
    max-width: 264px;
    min-width: 264px;
    background: #044F52;
    transition: all 0.35s ease-in-out;
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    width: 100%;
    
}

/* Sidebar Elements Style */

.sidebar-logo {
    padding: 0.5rem 1.5rem;
}

.sidebar-logo a {
    color: #e9ecef;
    font-size: 1.15rem;
    font-weight: 600;
}

.sidebar-nav {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    margin-left: 0;
}

.sidebar-header {
    color: #e9ecef;
    font-size: .75rem;
    padding: 1.5rem 1.5rem .375rem;
}
.sidebar-item{
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 2px;
    margin-top: 2px;
}

a.sidebar-link {
    padding: .825rem 1.625rem;
    color: #e9ecef;
    position: relative;
    display: block;
    font-size: 0.875rem;
}
a.sidebar-link:hover{
    background-color:rgba(255, 255, 255, 0.2) !important;
}
a.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
.sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.avatar {
    height: 40px;
    width: 40px;
}



.content {
    flex: 1;
    max-width: 100vw;
    width: 100vw;
}

@media (min-width:768px) {
    .content {
        max-width: auto;
        width: auto;
    }
}

.card {
    box-shadow: 0 0 .875rem 0 rgba(34, 46, 60, .05);
    margin-bottom: 24px;
}

.illustration {
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-emphasis-color);
}

.illustration-img {
    max-width: 150px;
    width: 100%;
}

/* Sidebar Toggle */

#sidebar.collapsed {
    margin-left: -264px;
}

/* Footer and Nav */

@media (max-width:767.98px) {

    .js-sidebar {
        margin-left: -264px;
    }

    #sidebar.collapsed {
        margin-left: 0;
    }

    .navbar,
    footer {
        width: 100vw;
    }
}

#usersTable_length , #usersTable_filter{
    margin-bottom:10px !important
}


/* select 2 */
.select2-selection.select2-selection--single{
    height:45px !important;
    border-radius: 8px;
    border-color:rgb(219, 222, 230);
}
.select2-selection.select2-selection--single:focus{
    background-color: var(--bs-body-bg);
    border-color: #b22b27;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(81, 47, 235, 0.25);
}
.select2-selection__rendered{
    line-height:40px !important;
    font-size:18px !important;
}
.select2-selection__arrow{
    top:9px !important
}

.dataTables_length , .dataTables_filter{
    margin-bottom: 10px !important;
}