body {
    font-family: 'poppins';
    background-color: #f7f7f7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.container {
    width: 95%;
}


nav {
    background-color: transparent;
    height: unset;
    line-height: unset;
    color: red;
    padding: 20px 0;
    position: fixed;
    top: 0;
    box-shadow: unset;
    z-index: 2;
}

nav.scroll {
    background-color: #2596be;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    height: 40px;
    display: flex;
    align-items: center;
}

nav ul li a {
    display: flex;
    align-items: center;
    padding: 0 8px;
    outline: none;
}

nav ul li a i.material-icons {
    font-size: 16px;
    margin: 0 0 0 3px;
}

nav ul li:hover > a {
    background-color: unset;
    color: #ddd;
    
}

.sidenav li.active,
nav ul li.active {
    background-color: unset;
}

.sidenav .collapsible-body .collection a.collection-item.active,
.sidenav li.active a,
nav ul li.active a {
    color: #000;
}


.dropdown-content li > a {
    color: #424242 !important;
}


.sidenav {
    background-color: #2596be;
    padding: 80px 0 100px;
}

.sidenav li a {
    color: #f7f7f7;
}

.sidenav .collapsible-header {
    padding: 0px 32px;
    color: #f7f7f7;
}

.sidenav .collection {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.sidenav .collection .collection-item {
    background-color: #2596be;
    color: #f7f7f7;
    padding: 10px 50px;
    border: none;
    outline: none;
}



main {
    flex: 1 0 auto;
}


.btn-oval {
    color: #f7f7f7;
    padding: 10px 20px;
    border: 1px solid #f7f7f7;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.btn-oval.btn-hero {
    background-color: #FFF;
    color: #2596be;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 16px;
}

.btn-oval.secondary {
    background-color: #2596be;
}

.btn-oval.gainsboro {
    background-color: #E0E0E0;
    color: #424242;
}

.btn-oval.sweet-pink {
    background-color: #EF9A9A;
    color: #424242;
}

.btn-oval.orange-peel {
    background-color: #FACC80;
    color: #424242;
}

.input-field textarea,
.input-field input {
    font-family: 'poppins';
    color: #001229;
    margin: 0 0 3px;
}

.input-field textarea:focus + label,
.input-field input:focus + label {
    color: #2596be !important;
}

.input-field textarea:focus,
.input-field input:focus {
    border-bottom: 1px solid #2596be !important;
    box-shadow: 0 1px 0 0 #2596be !important;
}

.input-field input[type="number"]::-webkit-inner-spin-button,
.input-field input[type="number"]::-webkit-outer-spin-button {
    display: none;
}

.input-field span.warning {
    font-size: 11px;
    line-height: 11px;
    display: block;
    padding: 5px 10px;
    margin-top: 5px;
    background-color: wheat;
    color: #2596be;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.input-field label {
    text-transform: capitalize;
}

form .select-dropdown.dropdown-content {
    z-index: 1;
    box-shadow: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.select-dropdown.dropdown-content li > span {
    color: #2596be !important;
}

button.btn {
    color: #2596be;
    text-transform: capitalize;
    font-weight: bold;
    box-shadow: none;
    background-color: #f7f7f7;
    border: 1px solid #2596be;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

button.btn:hover {
    background-color: transparent;
    box-shadow: none;
}


.datepicker-modal .datepicker-date-display {
    background-color: #2596be;
}

.month-prev:active, 
.month-next:active {
    background-color: #777;
}

.datepicker-table td.is-today {
    color: #2596be;
    background-color: rgba(119, 119, 119, 0.158);
}


.datepicker-table td.is-selected,
.datepicker-day-button:focus {
    background-color: #2596be;
    color: #FFF;
}

.confirmation-btns .datepicker-cancel,
.confirmation-btns .datepicker-done {
    color: #2596be;
}


ul.breadcrumbs {
    display: flex;
}

ul.breadcrumbs li:last-child a {
    color: #777;
}

ul.breadcrumbs li:first-child {
    margin-right: -3px;
}

ul.breadcrumbs li a {
    color: #2596be;
}

ul.breadcrumbs li:not(:last-child) a:hover {
    text-decoration: underline;
}

ul.breadcrumbs li a .material-icons {
    font-size: 20px;
}

ul.breadcrumbs li + li::before {
    content: '\2013';
    padding: 0 5px 0 8px;
}


.message {
    position: relative;
    padding: 0 25px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    color: #fff;
    overflow: hidden;
}

.message p {
    position: relative;
    z-index: 1;
}

.message .material-icons {
    font-size: 82px;
    position: absolute;
    right: 10px;
    bottom: -10px;
}


.message.error {
    background-color: #ff3f3f;
}

.message.error .material-icons {
    color: #fd5b5b;
}

.message.success {
    background-color: #00ad0e;
}

.message.success .material-icons {
    color: #11c501;
}


/* header color */
section.dashboard-hero {
    height: 700px;
    background: linear-gradient(to bottom right, #2596be 1%, #ffffff29), url('https://web.archive.org/web/20240228222735im_/https://smkn1siakkecil.com/assets/img/sys/sekolah-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

/* section.dashboard-hero {
    height: 700px;
    background: linear-gradient(to bottom right, #162b6f 40%, #162b6f21), url('/web/20240228222735im_/https://smkn1siakkecil.com/assets/img/sys/img-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
} */

.dashboard-hero .welcome {
    width: 100%;
    padding: 0 100px;
    color: #f7f7f7;
    margin-top: -250px;
}

.dashboard-hero .welcome .row{
    /* width: 100%; */
    margin-top: 300px;
}

.dashboard-hero .welcome .row .col{
    width: 50%;
}
.dashboard-hero .welcome .header-image img{
    width: 250px;
    align-items: center;
}

.dashboard-hero .welcome .text {
    margin-bottom: 50px;
}

.dashboard-hero .welcome h5 {
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 20px;
}



section .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.title h5 {
    font-weight: bold;
}


.title a:hover {
    text-decoration: underline;
}

section.error-404,
section.content,
section.dashboard-registration,
section.dashboard-achievement,
section.dashboard-sekolah,
section.dashboard-news {
    padding: 70px 0 40px;
}

.dashboard-sekolah .image-sekolah img{
    width: 60%;
}

.dashboard-sekolah .image-sekolah-kepsek img{
    width: 60%;
}

.dashboard-sekolah .title h5{
    margin-top: 30px;
}

.dashboard-sekolah .sekolah h6{
    font-weight: bold;
    text-decoration: underline;
}

.dashboard-sekolah .sekolah p{
    font-weight: bold;
    font-size: 14px;
}

.dashboard-sekolah .about-sekolah {
    margin-top: 30px;
}

.dashboard-sekolah .about-sekolah .title-sambutan-yayasan {
    font-weight: bold;
    color: #ff9e5e;
}

.dashboard-sekolah .about-sekolah .title-sambutan-kepsek {
    font-weight: bold;
    color: #c64f00;
}

.dashboard-sekolah .about-sekolah-yayasan {
    /* margin-top: 0px; */
    margin-left: 50px;

}

.dashboard-sekolah .title h5{
    font-weight: bold;
    color: #c64f00;
} 

.dashboard-news .title h5 {
    font-weight: bold;
    color: #c64f00;
}

.dashboard-news .title a {
    color: #c64f00;
}

.dashboard-pendidik .title h5 {
    font-weight: bold;
    color: #c64f00;
}

.dashboard-pendidik .title a {
    color: #c64f00;
}

.dashboard-news .wrapper a:hover .card-content img {
    transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
}

.dashboard-news .card {
    box-shadow: none;
}

.dashboard-news .card-content {
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.dashboard-news .card-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
    filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.dashboard-news .main .card-content img {
    height: 448px;
}

.dashboard-news .card-content .description {
    position: absolute;
    bottom: 40px;
    padding: 0 20px;
    font-weight: bold;
    color: #fff;
    font-size: 13px;
}

.dashboard-news .main .card-content .description {
    bottom: 80px;
    padding: 0 40px;
}


.dashboard-news .card-content .description span {
    color: #424242;
    font-weight: bold;
    padding: 5px 15px;
    font-size: 11px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.dashboard-news .card-content .description p {
    font-weight: bold;
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
}

.dashboard-news .card-content .description p.desc {
    font-weight: normal;
    font-size: 12px;
    margin-bottom: 15px;
}

.dashboard-news .main .card-content .description p {
    font-size: 18px;
}

.dashboard-news .main .card-content .description p.desc {
    font-size: 14px;
}


section.dashboard-achievement {
    background-color: #2596be;
}

.dashboard-achievement .title h5 {
    font-weight: bold;
    color: #f7f7f7;
}

.dashboard-achievement .title a {
    color: #f7f7f7;
}

.content .wrapper-carousel,
.dashboard-achievement .wrapper-carousel {
    position: relative;
}

.content .wrapper-carousel .navigation,
.dashboard-achievement .wrapper-carousel .navigation {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.content .navigation a,
.dashboard-achievement .navigation a {
    margin: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #f7f7f7;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.content .navigation a {
    border-color: #2596be;
}

.content .navigation a .material-icons,
.dashboard-achievement .navigation a .material-icons {
    color: #f7f7f7;
    font-size: 34px;
}

.content .navigation a .material-icons {
    color: #c64f00;
}

.content .carousel,
.dashboard-achievement .carousel {
    margin-top: 20px;
}

.content .carousel,
.dashboard-achievement .carousel .carousel-item {
    height: 450px;
}

.dashboard-achievement .carousel-item p {
    color: #f7f7f7;
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    padding: 10px 30px;
    bottom: 60px;
}

.content .carousel-item img,
.dashboard-achievement .carousel-item img {
    position: relative;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.content .filter {
    margin-bottom: 30px;
    text-align: right;
}

.content .filter a {
    position: relative;
}

.content .filter a.active::before {
    content: '\2714';
    font-size: 18px;
    position: absolute;
    top: 3px;
    right: 3px;
    color: #424242;
}




section.dashboard-registration .title {
    display: block;
    color: #2596be;
    text-align: center;
}

.dashboard-registration .title h5 {
    margin-bottom: -10px;
}

.dashboard-registration .card {
    box-shadow: none;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.dashboard-registration .card .card-content {
    padding: 40px 60px;
}

section.hero {
    padding: 130px 0 100px;
}

/* hero color */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(44, 43, 43, 0.1)), url('https://web.archive.org/web/20240228222735im_/https://smkn1siakkecil.com/assets/img/sys/sekolah.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .title {
    display: block;
}


.hero .title h4 {
    width: full;
    height: 60px;
    border: 0px solid rgba(100, 100, 100, 1);
    border-radius: 48px;
    background-color: rgba(23, 141, 173, 0.4);
    box-shadow: 0px 0px 60px 21px rgba(0, 0, 0, 0.3);
    padding: 9px;
    justify-content: center;
    border-radius: 20px;
    margin-top: 60px;
    font-weight: bold;
    color: #f7f7f7;
    text-align: center;
}


section.comment .card,
section.content .card {
    box-shadow: none;
}

.content .news a:hover .card-image img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.content .card .card-image {
    overflow: hidden;
    height: 180px;
    position: relative;
}

.content .card-image span.badge-1 {
    color: #424242;
    font-weight: bold;
    position: absolute;
    font-size: 11px;
    bottom: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.content .education-staff .card {
    background-color: transparent;
}

.content .education-staff .card .card-content {
    padding: 25px;
    height: 400px;
}

.content .education-staff .card-content img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.content .education-staff .card-content h6 {
    color: #001229;
    font-weight: bold;
}

.content .education-staff .card-content p {
    margin: 0;
}

.content .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.content .elearning .card-content{
    background: url('https://web.archive.org/web/20240228222735im_/https://smkn1siakkecil.com/assets/img/elear.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.content .news .card-content {
    padding: 0 20px 20px;
    height: 130px;
    overflow: hidden;
    color: #424242;
}

.content .news .card-content p.desc {
    font-size: 12px;
    color: #777;
    margin-top: -5px;
}

.content .card.curriculum-acedemic-calendar {
    min-height: 250px;
}

.content .card.curriculum-acedemic-calendar.color {
    background-color: #2596be;
}

.content .card.curriculum-acedemic-calendar .card-content {
    overflow: hidden;
}

.content .card.curriculum-acedemic-calendar .card-content p {
    margin-top: 30px;
}


.content .card-content {
    padding: 50px;
}

.content .card-content h6.title {
    font-weight: bold !important;
    font-size: 24px;
    color: #2596be;
    display: block;
}

.content .card-content p {
    margin: 15px 0;
    word-wrap: break-word;
}

.content .card-content h7{
    font-size: 18px;
    font-weight: 500;
    color: #2596be;
    margin-top: 100px;

}

.content .collection {
    border: none;
}

.content .collection .collection-item {
    border-bottom: 1px dashed #bbb;
    display: flex;
    align-items: flex-start;
}

.content .collection-item .material-icons {
    margin-right: 10px;
    margin-top: -1px;
}


.content .card-image {
    background-color: transparent;
}

.content .card-image .card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 10px;
}

.content .card-image .card-content .description {
    width: 400px;
}

.content .card-image .card-content .description h5 {
    font-weight: bold;
    color: #2596be;
}

.content .announcement .collection-item .wrap-info span.badge-2,
.content .card-content .news-details-info span.badge-2,
.content .card-image .card-content .description span.badge-2 {
    color: #424242;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin: 0 0 15px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.content .card-image .card-content img {
    width: 350px;
    height: 200px;
    object-fit: cover;
    padding: 8px;
    background-color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.content .item .col:nth-child(even) .card-content {
    flex-direction: row-reverse;
}

.content img.w-full {
    width: 100%;
}

.content .null img {
    width: 250px;
}

.content .null h6 {
    color: #2596be;
}

.content .news-details-info {
    margin: -10px 0;
}

.content .news-details-info p {
    font-size: 12px;
}


.content .announcement .collection-item {
    padding: 0;
    margin: 20px 0 0;
}

.content .announcement .collection-item .row {
    width: 100%;
}

.content .announcement .collection-item .wrap-content {
    margin-top: -15px;
}

.content .announcement .collection-item .wrap-content h6 {
    line-height: 22px;
}

.content .announcement .collection-item .wrap-content .btn-flat {
    text-transform: capitalize;
    color: #2596be;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.content .announcement .collection-item .wrap-content .btn-flat i.material-icons {
    margin-top: 1px;
    margin-left: 5px;
}

.content .maps .card-content {
    padding: 20px 10px 10px;
}

.content .contact h5 {
    font-weight: bold;
    text-align: center;
    color: #133c76;
    text-transform: capitalize;
    margin: -10px 0 40px;
}

.content .contact .card-content .collection-item {
    padding: 10px;
    font-size: 13px;
    display: flex;
}

.content .contact .card-content .collection-item i.material-icons {
    font-size: 18px;
    margin-top: 2px;   
}

.content .contact .card-content .collection-item svg {
    margin-right: 12px;
    margin-top: 2px;
}

.content .contact .card-content .collection-item a {
    color: #424242;
}

.content .contact .card-content .collection-item a:hover {
    text-decoration: underline;
}

footer .footer-content .collection .collection-item .call,
.content .contact .card-content .collection-item .call {
    display: flex;
    flex-direction: column;
}



section.comment {
    padding: 0 0 50px;
    margin-top: -50px;
}

.comment .message {
    padding: 10px 20px;
    font-size: 12px;
}

.comment .add-comment .card-content {
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.comment .collection {
    border: none;
}

.comment .collection .collection-item {
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: flex-start;
}

.comment .collection-item img {
    background-color: #2596be;
    margin-top: 5px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    padding: 3px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.comment .comment-body .sender {
    margin-bottom: 5px;
}

.comment .comment-body .sender span.profile {
    font-size: 12px;
    color: #2596be;
}

.comment .comment-body .sender span.time {
    font-size: 12px;
    padding: 3px 10px;
    color: #f7f7f7;
    background-color: tomato;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.comment .card-content {
    padding: 20px 40px;
}

.comment .card-content h6 {
    font-weight: bold;
    color: #2596be;
}

.comment .card-content .divider {
    height: 2px;
    margin: 20px 0 30px;
    background-color: #ddd;
}


section.error-404 h4 {
    font-size: 56px;
}

section.error-404 h6 {
    font-size: 22px;
    margin-bottom: 30px;
}


footer .footer-content {
    background-color: #146c8d;
    padding: 40px 0;
    color: #f7f7f7;
}

.footer-content .divider {
    margin: 10px 0 20px;
    height: 2px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.footer-content .btn-oval {
    margin: 3px 0;
    padding: 8px 15px;
}

.footer-content .collection {
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.footer-content .contact.collection .collection-item,
.footer-content .collection .collection-item {
    background-color: transparent;
    text-align: left;
    color: #eee;
    padding: 5px 0;
}

.footer-content .collection:not(.contact) .collection-item {
    border-bottom: 1px dashed #eee;
}

.footer-content .collection:not(.contact) .collection-item span {
    padding: 0 5px;
}

.footer-content .collection .collection-item:hover,
.footer-content .collection .collection-item:hover::first-line {
    background-color: transparent !important;
}

.footer-content .collapsible .collapsible-header:hover,
.footer-content .collection:not(.contact) .collection-item:hover::first-line {
    text-decoration: underline;
}

.footer-content .contact .collection-item {
    display: flex;
    border: none;
}

.footer-content .contact .collection-item i.material-icons {
    margin-top: 2px;
    font-size: 18px;
    margin-right: 10px;
}

.footer-content .contact .collection-item svg {
    margin-top: 3px;
    margin-right: 8px;
}

.footer-content .contact .collection-item a {
    font-size: 12px;
    color: #fff;
}

.footer-content .contact .collection-item a:hover {
    text-decoration: underline;
}


.footer-content .collapsible {
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.footer-content .collapsible .collapsible-header {
    background-color: transparent;
    padding: 1px 5px;
    margin: 0;
    border: none;
}

.footer-content .collapsible .collapsible-body {
    padding: 0;
    border: none;
}

.footer-content .collapsible-body .collection-item {
    padding: 5px 25px;
}

.footer-content .collapsible-body .collection-item:first-child {
    border-top: 1px dashed #eee;
}

.footer-content .collapsible-body .collection-item:last-child {
    border-bottom: none;
}

footer .footer-bottom {
    background-color: #2596be;
    padding: 10px 0;
}

.footer-bottom p {
    font-size: 12px;
    color: #eee;
    text-align: right;
}


.fixed-action-btn {
    right: 50px;
    bottom: 50px;
    background-color: #00ad0e;
    height: 60px;
    width: 60px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.fixed-action-btn a.btn-floating {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.fixed-action-btn a.btn-floating svg {
    color: #fff;
}


.fixed-action-btn ul {
    left: -120px;
}

.fixed-action-btn ul li a.btn-floating {
    position: relative;
    text-transform: capitalize;
    margin-top: -10px;
    padding: 5px 15px;
    width: 100%;
    background-color: #07749b;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.fixed-action-btn ul li a.btn-floating:hover {
    background-color: #096e93;
}


.ping {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00ad0e50;
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@keyframes ping {
    75%, 100% {
        opacity: 1;
        transform: scale(1.3);
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
    }
}


.pagination li.active {
    background-color: #2596be !important;
}


table.cost-of-education tbody tr:first-child {
    border-bottom: 2px solid #fff;
    background-color: #fff !important;
    color: #2596be;
}


@media (max-width: 992px) {
    nav a.logo img {
        width: 250px;
    }


    .container {
        width: 90%;
    }


    .dashboard-hero .welcome {
        width: 100%;
        padding: 0;
        color: #f7f7f7;
    }


    .dashboard-news .row {
        margin-bottom: 0;
    }

    .dashboard-news .main .card-content img {
        height: 200px;
    }

    .dashboard-news .main .card-content .description {
        bottom: 40px;
        padding: 0 20px;
    }
    
    .dashboard-news .main .card-content .description p {
        font-size: 13px;
    }


    .content .wrapper-carousel .navigation,
    .dashboard-achievement .wrapper-carousel .navigation {
        justify-content: center;
    }


    section.hero {
        padding-bottom: 30px;
    }

    .hero .title h4 {
        margin-top: 0;
        
    }


    .dashboard-achievement .wrapper-carousel {
        margin-top: -30px;
    }
 
    /* .dashboard-sekolah .image-sekolah img{
        width: 180px;
        height: 350px;
        object-fit: cover;
        justify-content: center;
    } */

    .dashboard-sekolah .about-sekolah{
        margin-top: 0;
    }

    section.content .card-image .card-content {
        flex-direction: column-reverse;
        padding: 10px;
    }

    .comment .card-content,
    .content .card .card-content {
        padding: 25px;
    }

    .content .card-image .card-content .description {
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    .content .card-image .card-content img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        padding: 8px;
        background-color: #fff;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }
    
    .content .item .col:nth-child(even) .card-content {
        flex-direction: column-reverse;
    }

    .content .null img {
        width: 180px;
    }

    .comment .collection-item img {
        width: 30px;
        height: 30px;
        padding: 2px;
        margin-right: 10px;
    }

    .comment .comment-body .sender {
        display: flex;
        flex-direction: column;
    }

    .comment .comment-body .sender span.time {
        width: fit-content;
        font-size: 10px;
        padding: 0 5px;
    }


    .fixed-action-btn {
        right: 30px;
        bottom: 30px;
        width: 50px;
        height: 50px;
    }

    .fixed-action-btn ul li a.btn-floating {
        margin-top: -10px;
        padding: 2px 5px;
        font-size: 12px;
    }


    table.cost-of-education {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        display: block;
    }

    table.cost-of-education tbody {
        display: block;
        width: auto;
        position: relative;
        overflow-x: auto;
        white-space: nowrap;
    }

    .content .card.curriculum-acedemic-calendar {
        height: fit-content
    }

    .content .filter {
        text-align: center;
        margin-bottom: 10px;
    }


    .content .education-staff .card .card-content {
        height: auto;
    }
    
}
/*
     FILE ARCHIVED ON 22:27:35 Feb 28, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:37:30 Jul 10, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.735
  exclusion.robots: 0.034
  exclusion.robots.policy: 0.02
  esindex: 0.013
  cdx.remote: 40.238
  LoadShardBlock: 86.79 (3)
  PetaboxLoader3.datanode: 124.057 (5)
  load_resource: 118.96
  PetaboxLoader3.resolve: 41.785
  loaddict: 53.555
*/