body {
    margin: 0;
    /* font-family: 'Poppins-Regular' !important; */
    font-family: 'Arial' !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark);
    text-align: left;
    background-color: #fff;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
}

.sidebar {
    color: var(--dark);
    position: fixed;
    top: 0;
    min-width: 230px;
    background-color: var(--bg-default-acelios) !important;
    transition: all 0.5s ease;
    padding-bottom: 48px;
}

.sidebar.active {
    margin-left: -240px;
}

.offcanvas-md.offcanvas-start.show {
    width: auto;
}

.menu>p {
    color: var(--grey);
    font-size: 14px;
    padding-left: 40px;
    margin-bottom: 12px;
}

.list-menu .form-group label {
    display: flex;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
    /* padding: 0px 18px; */
    position: relative;
    align-items: center;
    text-decoration: none;
}

.item-menu {
    display: flex;
    font-size: 15px;
    color: var(--dark) !important;
    font-weight: 500;
    padding: 18px 18px;
    position: relative;
    align-items: center;
    text-decoration: none;
}

.item-menu.active,
.item-menu:hover {
    color: var(--master-color-default) !important;
    font-weight: 600;
}

.item-menu.active::before {
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 8px;
    margin: 14px 0;
    position: absolute;
    border-radius: 4px;
    transform: translateX(-50%);
    background-color: var(--master-color-default);
}

.icon {
    /* width: 28px;
    height: 28px; */
    font-size: 20px;
    margin-right: 12px;
    background-size: cover;
    display: inline-block;
}

ul li .item-menu {
    display: flex;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
    padding: 13px 40px;
    position: relative;
    align-items: center;
    text-decoration: none;
}


.sidebar .list-menu .collapsible:after {
    content: url(https://api.iconify.design/bx/chevron-right.svg);
    font-family: 'Poppins-Regular';
    fill: var(--dark);
    position: absolute;
    right: 20px;
    -webkit-transition: .3s transform ease;
    -o-transition: .3s transform ease;
    transition: .3s transform ease;
}

.sidebar .list-menu .collapsible[aria-expanded="true"]:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar.custom-scrollbar-css {
    height: 100%;
}

.sidebar.custom-scrollbar-css {
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar.custom-scrollbar-css::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 3px;
}

.sidebar.custom-scrollbar-css::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar.custom-scrollbar-css::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    /* background-color: #00d2ff; */
    background-color: #acc6f3;
    /* background-image: linear-gradient(to top, #00d2ff 0%, #3a7bd5 100%); */
}

.sidebar.custom-scrollbar-css::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 30rem;
}

.sidebar.custom-scrollbar-css::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10rem;
}

.body-acelios {
    background-color: var(--bg-default-acelios);
}


.new-content {
    background-color: var(--bg-grey);
    min-height: 100vh;
    margin-left: 240px;
    transition: all 0.5s ease;
    border-radius: 50px 0 0 50px;
}

.new-content.active {
    margin-left: 0px;
}

.new-content .header {
    padding: 1rem;
}

.new-content .header .img-profile img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50px;
}

.new-content .header .btn-notif {
    background-color: #ffffff;
    height: 35px;
    width: 35px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #22395B;
}

@media (max-width: 480px) {
    .sidebar {
        overflow-y: scroll;
    }

    .new-content {
        /* padding: 20px 16px; */
        /* width: fit-content; */
        border-radius: 0;
    }

}

@media (max-width: 767.98px) {
    .new-content {
        margin-left: 0;
    }
}

.navbar .bx-menu-alt-left,
.navbar .bx-x {
    font-size: 25px;
}

.new-content .main-content {
    background-color: #ffffff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 50px;
    position: absolute;
    min-height: 100%;
    right: 0;
    left: 240px;
    transition: all 0.5s ease;
}

.new-content.active .main-content {
    left: 0;
}

@media (max-width: 480px) {

    .new-content .main-content {
        background-color: #ffffff;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0;
    }
}

.new-content .header .btn-notif .badge-danger-1 {
    color: #fff;
    background-color: #e74a3b;
    font-size: 9px;
    font-weight: normal;
    position: absolute;
    top: 0;
    right: -5px;
}

.new-content .header .btn-notif .badge-danger-2 {
    color: #fff;
    background-color: #e74a3b;
    font-size: 9px;
    font-weight: normal;
    position: absolute;
    top: 0;
    right:-5px;
}

.text-dark-acelios {
    color: var(--dark);
}

.text-primary {
    color: var(--primary) !important;
}

.text-title {
    color: var(--title-color);
}
.text-subtitle,
.text-dark {
    color: var(--subtitle-color) !important;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: 15px;
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1rem;
}

.progress .progress-bar {
    background-color: #ced6e0;
    height: 8px;
    border-radius: 100px;
}

.icon-summary-1 {
    background-color: var(--icon-summary-1);
}
.icon-summary-2 {
    background-color: var(--icon-summary-2);
}
.icon-summary-3 {
    background-color: var(--icon-summary-3);
}
.icon-summary-4 {
    background-color: var(--icon-summary-4);
}

.test-folder .card-header {
    background-color: var(--bg-light);
    border: 0.5px solid var(--border-light);
}

.test-folder .card {
    background-color: var(--bg-light);
}

.test-folder .card .card-footer{
    background-color: var(--bg-grey);
}

.homeroom .class-content .card {
    border: 0.5px solid var(--border-light);
}

.homeroom .class-content .card .card-footer {
    background-color: var(--bg-light);
}

.homeroom .btn-action {
    background-color: var(--bg-grey);
    /* width: 30px; */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.homeroom .btn-action:hover {
    background-color: #cbdeff;
}

.btn-primary {
    color: var(--dark);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: var(--white);
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

.btn-secondary {
    color: var(--dark);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    color: var(--white);
    background-color: var(--secondary-hover-color);
    border-color: var(--secondary-hover-color);
}

.btn-success {
    color: var(--dark);
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    color: var(--white);
    background-color: var(--success-hover-color);
    border-color: var(--success-hover-color);
}



.curved-bottom-10 {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.bg-acelios-dark {
    background-color: var(--title-color) !important;
}

.icon-task img {
    width: 40px;
    height: 40px;
}

.notif-exam {
    background-color: var(--light-exam);
}
.notif-exam .icon-notif, .icon-notif-exam {
    background-color: var(--exam-color);
}
.notif-exam p,
.notif-exam h5 {
    color: var(--exam-color);
}

.notif-class-work {
    background-color: var(--light-class-work);
}
.notif-class-work .icon-notif, .icon-notif-class-work {
    background-color: var(--class-work-color);
}
.notif-class-work p,
.notif-class-work h5 {
    color: var(--class-work-color);
}

.notif-unit-test {
    background-color: var(--light-unit-test);
}
.notif-unit-test .icon-notif, .icon-notif-unit-test {
    background-color: var(--unit-test-color);
}
.notif-unit-test p,
.notif-unit-test h5 {
    color: var(--unit-test-color);
}

.notif-material {
    background-color: var(--light-material);
}
.notif-material .icon-notif, .icon-notif-material {
    background-color: var(--material-color);
}
.notif-material p,
.notif-material h5 {
    color: var(--material-color);
}

.material .card-header {
    background-color: var(--bg-material-header);
    border-bottom: 0.5px solid var(--border-light);
}

.bg-acelios-light{
    background-color: var(--bg-thead-color) !important;
    color: var(--thead-color) !important;
}
a {
    color: var(--primary) ;
}

.detail-attendance .month {
    width: 100%;
    height: 3rem;
    background-color: var(--bg-month-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #212529;
}

.menubar {
    z-index: 999;
    display: block;
    background-color: var(--bg-default-acelios);
    bottom: -3px;
    width: 100%;
    left: 0;
    right: 0;
    padding: 0.8rem 1rem;
    position: fixed;
    box-shadow: 0px 0 10px 0 rgb(0 0 0 / 20%);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.menubar .icon i {
    color:  var(--dark);;
    font-size: 24px;
}

.menubar a.active .icon i {
    color: var(--master-color-default);
}

.switch-stock {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 16px;
}

.switch-stock input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #eceef5;
    border: 1px solid #e3e6f0 !important;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 0px;
    bottom: -3px;
    background-color: var(--white);
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 0px 1px 7px 0 rgb(0 0 0 / 40%);
}

input:checked+.slider {
    background-color: #cbdeff;
    border: 1px solid #e3e6f0 !important;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-color: #4e73df;
    box-shadow: 0px 1px 7px 0 rgb(0 0 0 / 40%);
    left: 1px;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.live-score .team .card {
    background-color: var(--bg-light);
    border: 0.5px solid var(--border-light);
}

.live-score .team .card:hover {
    background-color: var(--dark);
    box-shadow: 0 0.5rem 1rem rgb(61 136 250 / 30%) !important;
    color: #fff;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}