/**
 * custom css
 **/

body {
    font-family: 'Helvetica', 'Verdana', 'Arial', sans-serif;
    background-color: #FFF9E9;
}

em {
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

/* nocars */

.top-menu {
    color: #000000;
    background-color: #FFF9E9;
    margin: 0;
    padding: 0;
}

.logo-header {
    height: 40px;
    width: auto;
    margin: 0;
    padding: 0;
}

.footer {
    margin-top: -24px;
    color: #000000;
    background-color: #FFF9E9;
}

.classroom-name {
    font-size: 32px;
    font-weight: bold;
}

/* Layout */

.s-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.s-layout__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

/* Sidebar */

.s-sidebar__trigger {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4em;
    background-color: #003506;
}

.s-sidebar__trigger > i {
    display: inline-block;
    margin: 1.5em 0 0 1.5em;
    color: #80df86;
}

.s-sidebar__nav {
    position: fixed;
    top: 0;
    left: -15em;
    overflow: hidden;
    transition: all 0.3s ease-in;
    width: 15em;
    height: 100%;
    background-color: #003506;
    color: #80df86;
    z-index: 10;
}

.s-sidebar__nav:hover,
.s-sidebar__nav:focus,
.s-sidebar__trigger:focus + .s-sidebar__nav,
.s-sidebar__trigger:hover + .s-sidebar__nav {
    left: 0;
}

.s-sidebar__nav ul {
    position: absolute;
    top: 4em;
    left: 0;
    margin: 0;
    padding: 0;
    width: 15em;
}

.s-sidebar__nav ul li {
    width: 100%;
}

.s-sidebar__nav-link {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 2em;
}

.s-sidebar__nav-link em {
    position: absolute;
    top: 50%;
    left: 4em;
    transform: translateY(-50%);
}

.s-sidebar__nav-link:hover {
    background-color: #e8ed09;
    color: #fff;
}

.s-sidebar__nav-link > i {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 4em;
    height: 2em;
}

.s-sidebar__nav-link > i::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dline {
    background-color: #fff;
    height: 1px;
}

/* Mobile First */

@media (min-width: 42em) {
    .s-layout__content {
        margin-left: 4em;
    }

    /* Sidebar */
    .s-sidebar__trigger {
        width: 4em;
    }

    .s-sidebar__nav {
        width: 4em;
        left: 0;
    }

    .s-sidebar__nav:hover,
    .s-sidebar__nav:focus,
    .s-sidebar__trigger:hover + .s-sidebar__nav,
    .s-sidebar__trigger:focus + .s-sidebar__nav {
        width: 15em;
    }
}

@media (min-width: 68em) {
    .s-layout__content {
        margin-left: 15em;
    }

    /* Sidebar */
    .s-sidebar__trigger {
        display: none;
    }

    .s-sidebar__nav {
        width: 15em;
    }

    .s-sidebar__nav ul {
        top: 1.3em;
    }
}

/* Input field */

.form-control {
    border: 1px solid #edff00;
}

.btn {
    color: #007c00;
}

.form-control:focus {
    border-color: #edff00;
    box-shadow: 0 0 0 2px rgba(243, 223, 46, 0.75);
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 16px;
    border-radius: 16px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 16px;
    border-radius: 16px;
    background: #16963c;
}

/* Custom */

.au-card {
    max-width: 720px;
    width: 100%;
    height: fit-content !important;
    background-color: rgba(0, 45, 19, 0.6);
    border-radius: 16px;
    margin-top: 16px;
    margin-bottom: 48px;
}

.au-card-body {
    color: white;
    width: 100%;
    max-width: 420px;
}

.au-txt-h {
    font-size: 28px;
}

.m-card {
    max-width: 980px;
    width: 100%;
    height: fit-content !important;
    margin-top: 16px;
    margin-bottom: 48px;
}

.m-card-body {
    max-width: 910px;
    width: 100%;
}

.m-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-radius: 16px 0 16px 0;
    border: 1px solid #e7e2e2;
    padding: 1rem 2rem 1rem 2rem;
    background-color: #16963c;
    box-shadow: 1px 2px 2px 2px rgb(234 234 234 / 75%);
}

.goto {
    width: 48px;
    height: 48px;
    border: 3px solid #fff;
    border-radius: 24px;
    background: #a6a63c;
    color: #fff;
    font-size: 32px;
}

.goto:hover {
    background-color: #fff;
    color: #007c00;
    cursor: pointer;
}

.m-txt-h {
    color: #fff;
    font-size: 28px;
}

.m-checkbox {
    width: 20px;
    height: 20px;
    background-color: #0f0;
}

.t-box {
    min-height: 352px;
    height: 30vh;
    overflow-y: auto;
}

.txt-l {
    font-size: 20px;
    color: #fff;
}

.t-dategroup {
    background: #FFB400;
    color: #fff;
    width: 382px;
    border-radius: 0 0 18px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t-cell {
    padding: 32px 24px 32px 24px;
    background-color: #FF6C02;
}

.d-l {
    border-radius: 0 0 0 16px;
}

.d-r {
    border-radius: 0 0 16px 0;
}

.d-ct {
    font-size: 32px;
    font-weight: bold;
    color: #003506;
}

.d-cb {
    font-size: 24px;
    font-weight: bold;
    color: #007c00;
}

.t-cell:hover {
    background-color: #007c00;
    cursor: pointer;
}

.r-card {
    background: #FFB400;
    width: 100%;
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.r-cell {
    width: 96px;
    height: 96px;
    margin: 16px;
    border-radius: 16px;
    position: relative;
    z-index: 2 !important;
}

.r-cell-b {
    background: #1fdc00;
    border: 2px solid white;
    box-shadow: 2px 2px 2px 2px rgba(234 234 234 / 90%);
}

.r-cell-b:hover {
    border: 2px solid rgba(0, 60, 6, 0.6);
    box-shadow: 2px 2px 2px 2px rgba(0, 60, 6, 0.6);
    cursor: pointer;
}

.r-cell-a {
    background: #aaa;
    box-shadow: 2px 2px 2px 2px rgba(0, 60, 6, 0.6);
    cursor: pointer;
}

.r-cell-ac {
    background: #55d109;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -12px;
    bottom: -12px;
    border-radius: 24px;
}

.h-card {
    width: 100%;
}

.h-top {
    width: 160px;
    height: 160px;
    padding: 16px;
    border-radius: 32px;
    border: 4px solid #e8ed09;
    background-color: #1fdc00;
    box-shadow: 0px 0px 16px 8px rgb(220, 235, 87, 0.8);
}

.h-btg {
    width: 118px;
    margin: 16px;
    color: #fff;
}

.h-btg:hover {
    color: #e8ed09;
    cursor: pointer;
}

.h-txt-p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.travel-icons-active {
    width: 118px;
    height: 118px;
    padding: 16px;
    border-radius: 60px;
    background-color: #e8ed09;
    border: 3px solid #fff;
    box-shadow: 0px 0px 8px 4px rgba(234, 234, 234, 0.75);
}

.travel-icons-active:hover {
    background-color: #1fdc00;
    box-shadow: 0px 0px 16px 8px rgb(220, 235, 87, 0.8);
}

.travel-icons-inactive {
    width: 118px;
    height: 118px;
    padding: 16px;
    border-radius: 60px;
    background-color: #808080;
    border: 3px solid #fff;
    box-shadow: 0px 0px 8px 4px rgba(234, 234, 234, 0.75);
}

.travel-icons-inactive:hover {
    background-color: #808080;
    box-shadow: 0px 0px 16px 8px rgb(220, 235, 87, 0.8);
}

.hr {
    color: #fff;
    background: #fff;
    height: 4px;
    border-radius: 4px;
    box-shadow: 0px 0px 4px 2px;
}

.main {
    width: 100%;
    /*height: 100vh;*/
    background-color: #5A8100;
    background-position: center;
    background-size: cover;
}

.record {
    width: 100%;
    background-color: #5A8100;
    background-position: center;
    background-size: cover;
}

@media (max-width: 1180px) and (orientation: landscape) {
    .record {
        height: 100% !important;
    }
}

@media (max-width: 990px) and (orientation: landscape) {
    body,
    .login,
    .register,
    .forgot,
    .main,
    .record {
        height: 100% !important;
    }
}

@media (max-width: 769px) and (orientation: portrait) {
    body {
        height: 100% !important;
    }
}

@media (max-width: 672px) {
    .main {
        padding-top: 64px;
    }
}

@media (max-width: 567px) and (orientation: portrait) {
    .m-trh {
        display: none;
    }

    .m-tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
        border: 2px solid #e7e2e2;
        padding: 4px;
    }

    .footer {
        margin-top: -48px;
    }

    body,
    .record {
        height: 100%;
    }

    .main {
        height: 100% !important;
    }
}

@media (max-width: 567px) {
    .m-trh {
        display: none;
    }

    .m-tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
        border: 2px solid #e7e2e2;
        padding: 4px;
    }
}

.class_list-style {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
}

.class_list-style li {
    margin-top: 1rem;
    margin-left: 1rem;
}

.class_list-style li a {
    border-radius: 0.75rem;
    background-color: #79b4b7;
}

.custom-card-color {
    background-color: #FFF9E9;
    border-radius: 10px;
}

.custom-create-btn {
    color: #007c00;
}

.custom-a-text {
    color: #007c00;
}

.custom-container {
    height: 100vh !important;
}

.custom-float-right {
    float: right;
}

.notification-card-body {
    background-color: #f5deb375;
    border-radius: 8px;
    margin-bottom: 3px;
    cursor: pointer;
}

.notification-card-body .badge {
    border-radius: 8px;
}

.nowrap-column {
    white-space: nowrap;
}

.golden-boot-image {
    filter: drop-shadow(10px 10px 10px #ffff00);
}

.custom-golden-boot-text {
    margin-top: 70px;
    color: #ffff00;
    font-weight: bold;
    font-size: 20px;
    text-shadow: 10px 10px 10px #ffff00;
}

.custom-a-button {
    text-decoration: none;
}

.custom-a-button:hover,
.custom-a-button:focus,
.custom-a-button:active {
    outline: none !important;
    border: none !important;
}

.custom-style-add-pupil {
    padding-left: 0;
    cursor: pointer;
}

.custom-table-responsive-1 {
    overflow-x: scroll;
}

.unread-notification-bg-color {
    background-color: #d9d9d9;
}