.mt-05 {
    margin-top: 0.5px;
}

.banner-layout {
    width: 100% !important;
    height: 400px !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.showScroll {
    display: block !important;
}

.acorn-icons-search {
    /* margin-top: 10px; */
}

.active-red {
    background-color: red;
    color: white;
}

.img-logo-sekolah {
    width: 50px;
}

.img-logo-dinas {
    width: 100px;
}

.img-logo-dinas img {
    margin-left: -50px;
}
.profil-image {
    height: 60px;
}
.logo-image {
    height: 60px;
}

/* ── USER PROFIL TRIGGER (navbar button) ─────────────────── */
.user-profil-trigger {
    gap: 10px;
    padding: 4px 10px 4px 4px;
    border-radius: 40px;
    transition: background 0.25s ease;
    cursor: pointer;
    text-decoration: none !important;
    background: rgba(255,255,255,0.08);
}
.user-profil-trigger:hover {
    background: rgba(255,255,255,0.16);
}

/* Avatar ring */
.user-avatar-ring {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2.5px solid rgba(255,255,255,0.55);
    padding: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
    transition: box-shadow 0.25s ease;
}
.user-profil-trigger:hover .user-avatar-ring {
    box-shadow: 0 0 0 4px rgba(255,255,255,0.28);
}
.user-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Name + chevron */
.user-profil-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.user-profil-name {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.user-profil-chevron {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
    line-height: 1;
}

/* ── USER PROFIL DROPDOWN ────────────────────────────────── */
.user-profil-dropdown {
    min-width: 230px;
    padding: 0 !important;
    border: none !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18) !important;
    overflow: hidden;
    margin-top: 10px !important;
}

/* Card header with gradient top accent */
.user-profil-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 14px 16px;
    background: linear-gradient(135deg, #1a3a60 0%, #0f2440 100%);
    position: relative;
}
.user-profil-card-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a9bd5, #54c8e8, #3a9bd5);
}

/* Avatar in dropdown header */
.user-profil-card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    flex-shrink: 0;
    overflow: hidden;
}
.user-profil-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Name + role in dropdown header */
.user-profil-card-info {
    flex: 1;
    min-width: 0;
}
.user-profil-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}
.user-profil-card-role {
    display: inline-block;
    background: rgba(58, 155, 213, 0.3);
    color: #88d4f5;
    border: 1px solid rgba(58,155,213,0.4);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 9px;
    letter-spacing: 0.3px;
}

/* Divider */
.user-profil-divider {
    height: 1px;
    background: #edf0f5;
    margin: 0;
}

/* Menu items */
.user-profil-menu-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 11px 18px !important;
    font-size: 13px;
    font-weight: 500;
    color: #2c3e50 !important;
    text-decoration: none !important;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
    background: #ffffff;
}
.user-profil-menu-item:hover {
    background: #f0f6ff !important;
    color: #1a6db5 !important;
    padding-left: 22px !important;
}

.user-profil-menu-icon {
    font-size: 15px;
    width: 22px;
    text-align: center;
    opacity: 0.75;
}

/* Logout item */
.user-profil-menu-logout {
    color: #c0392b !important;
}
.user-profil-menu-logout:hover {
    background: #fff5f5 !important;
    color: #a93226 !important;
    padding-left: 22px !important;
}
.user-profil-menu-logout .user-profil-menu-icon {
    color: #c0392b;
}

@media screen and (max-width: 960px) {
    .img-logo-dinas img {
        margin-left: unset;
        margin-bottom: 5px;
    }
    .btn-back{
        display: block;
    }
    .sidebar-left {
        display: none;
    }
    .profil-image {
        margin-top: 10px;
    }
    .a-profil-image {
        margin-top: 5px;
    }
    .user-profil-name {
        display: none;
    }
    .user-profil-chevron {
        display: none;
    }
    .user-profil-trigger {
        padding: 3px;
        background: transparent;
    }
}


.scroll-top {
    padding: 10px 15px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 10px 1px grey;
    /* width: 30px; */
    display: none;
    position: fixed;
    bottom: 5%;
    right: 50px;
    z-index: 1;
}

.ctn-banner {
    position: relative;
    top: 100px !important;
}

.img-kota {
    width: 100px;
}

.title-kota {
    font-size: 30px;
    margin-top: 20px;
    color: white;
    font-weight: bold;
}

.sub-title-kota {
    color: white;
}

.img-menu {
    width: 20px;
    filter: invert(100%);
}

.btn-menu {
    background: transparent;
    border: none;
}
.btn-bck{
    background: white;
    border: none;
    font-size: 15px;
    padding: 3px 9px;
    margin-right:;;
    border-radius: 20px;
}

.bx-tt {
    border-left: 1px solid grey;
}

.modal-backdrop {
    z-index: 1;
}

.bx-t h3,
.bx-tt h3 {
    color: grey;
}

.box-menu {
    padding: 10px;
    margin-top: 10px !important;
    border: 1px solid transparent;
}

.box-menu:hover, .box-menu:active, .box-menu:focus, .box-menu.active {
    background: #9dd9f53f;
    border-radius: 10px;
    border: 1px solid #1b98d0;
}

.btn-nav {
    background: none;
    border: none;
    color: white;
    font-size: 25px;
    display: none;
}

.navbar-mobile ul li {
    margin-right: 20px;
    list-style: none;
    padding-top: 10px;
    color: white !important;
}

.navbar-mobile ul li a {
    color: white !important;
}

body {
    background-color: #fff;
	font-family: 'Maison Neue';
}
.btn-back{
    display: none;
}

.navbar-mobile {
    width: 95%;
    display: none;
    z-index: 9999;
    background: white;
    position: fixed;
    padding: 20px;
    border-radius: 0px 20px 20px 0px;
    background: #1b98d0;
}

.img-logo h1 {
    color: white;
    font-weight: bold;
}

.nav-marquee {
    padding: 5.5px;
    background: white !important;
    color: black !important;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

.nav-landing {
    background: white;
    padding: 19px;
}

.d-right {
    float: right;
}

.p-label {
    width: 70%;
}

.box-content-landing {
    text-align: left;

    background: white;
    width: 500px;
    margin-top: 40px;
    box-shadow: 0px 0px 2px rgb(187, 187, 187);
}

.box-content-beranda {
    text-align: left;

    background: white;
    width: 100%;
    margin-top: 40px;
    box-shadow: 0px 0px 2px rgb(187, 187, 187);
}

.header-box {
    width: 100%;
}

.ctn-header {
    padding: 20px;
}

.ctn-header h5 {
    color: white;
    font-weight: bold;
}

.content-box {
    padding: 20px;
}

.content-box h3 {
    padding: 20px 0px;
    border-bottom: 2px solid grey;
    width: 230px;
}

.list-jalur {
    margin-top: 30px !important;
}

.list-jalur a {
    padding: 10px;
    border: 1px solid rgb(122, 120, 120);

    color: rgb(48, 47, 47);
    margin-top: 10px;
}

.list-jalur a:hover {
    background: rgba(172, 172, 172, 0.164);
}

.info {
    text-align: left;
}

.ctn-info {
    padding: 20px;
}

.ctn-info h4 {
    font-weight: bold;
    padding: 20px 0px;
    border-bottom: 1px solid grey;
    width: 400px;
}

.ctn-info h5 {
    font-weight: bold;
    margin-top: 10px;
}

.ctn-footer {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
    width: 230px;
}

.three-footer {
    width: 100%;
    padding: 20px;
}

.ttl-footer {
    color: white;
}

.embed-twt {
    margin-top: 20px;
    border-radius: 10px;
    width: 80%;
    height: 300px;
    overflow: auto;
}

.img-support {
    margin-top: 10px;
}

.img-support img {
    margin-top: 10px;
}

.fade.show {
    background-color: rgba(0, 0, 0, 0.39947) !important;
}

.modal {
    opacity: unset !important;
}

.footer {
    color: white;
    padding: 10px;
    background: #868888;
    opacity: 0.7;
}

.ctn-footer a,
label {
    color: white;
}


/* css landing page */
.ctn-berita {
    margin-top: 30px !important;
}

.bg-landing {
    background: rgba(0, 0, 0, .30) url('../img/banner/classroom-g770eb2215_1920.jpg');
    background-size: cover;
    background-blend-mode: darken;
    height: 90vh;
}

.title-banner {
    margin-left: 150px;
    margin-top: 130px;
}

.text-banner-a {
    color: white;
    font-size: 40px;
}

.text-banner-b {
    color: white;
    font-size: 90px;
}

.btn-start {
    color: white;
    width: 150px;
    border-radius: 5px;
}

.header-landing {
    top: 37px !important;
}

.nav-container.d-flex.header-landing.mobile-side-ready.mobile-side-in {
    top: 38px !important;
    overflow-y: scroll;
}

.nav-container.d-flex.header-landing.mobile-side-ready.mobile-side-in .menu-container {
    display: none !important;
}
.nav-container.d-flex.header-landing.mobile-side-ready.mobile-side-in .menu-additional {
    display: unset !important;
}

.title-banner p {
    color: white !important;
}

.card-informasi {
    background: rgba(0, 0, 0, .60);
    padding: 20px;
    height: 150px;
    border-radius: 5px;
}

.ctn-informasi {
    margin-top: 20px;

}

.text-card {
    color: white !important;
    font-size: 25px;
}

.icon-informasi {
    font-size: 80px;
    color: white !important;

}

.title-section {
    padding: 10px;
    /* width: 350px; */
    margin-top: 40px !important;
}

.title-section-b {
    color: white !important;
    padding: 10px;
    border-bottom: 2px solid white;
    width: 280px;

}

.no-alur {
    font-size: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.title-alur {
    font-size: 30;
    margin-top: 30px;
    margin-bottom: 30px;
}

.card-jalur {
    box-shadow: 0px 0px 1.5px grey !important;
    padding: 10px !important;
    border-radius: 5px;
    margin-left: 10px;
    background: white !important;

}

.card-statistik-img {
    box-shadow: 0px 0px 1.5px grey !important;
    border-radius: 5px;
    background: white !important;
}

.card .card-img {
    border-radius: 5px !important;
}

.card.card-img-overlay {
    border-radius: 5px !important;
}

.card-custom {
    background: white !important;
}

.card-alur {
    box-shadow: 0px 0px 1.5px grey !important;
    border-radius: 5px;
    margin-left: 10px;
    background: #f8f8f8 !important;
}

.card-slide {
    box-shadow: 0px 0px 1.5px grey !important;
    padding: 10px !important;
    border-radius: 5px;
    background: #ffffff !important;
}

.card-berita {
    padding: 0px !important;
    border-radius: 5px;
    margin-left: 10px;
    background: white !important;
}

.icon-jalur {
    font-size: 40px;
}

.icon-statistik {
    font-size: 40px;
}


.card-body-berita {
    padding: 20px;
}


@media screen and (min-width: 1921px) and (max-width:2560px) {
    html[data-placement=horizontal] .nav-container .menu-container .menu>li>a.active, html[data-placement=horizontal] .nav-container .menu-container .menu>li>a:hover {
        /* margin-top: -5px !important; */
    }
}

@media screen and (min-width: 1401px) and (max-width:1920px) {
    html[data-placement=horizontal] .nav-container .menu-container .menu>li>a.active, html[data-placement=horizontal] .nav-container .menu-container .menu>li>a:hover {
        /* margin-top: -5px !important; */
    }
}

@media screen and (min-width: 1281px) and (max-width:1400px) {
    html[data-placement=horizontal] .nav-container .menu-container .menu>li>a.active, html[data-placement=horizontal] .nav-container .menu-container .menu>li>a:hover {
        /* margin-top: -5px !important; */
    }

    .bg-landing {
        background: rgba(0, 0, 0, .30) url('../img/banner/classroom-g770eb2215_1920.jpg');
        background-size: cover;
        background-blend-mode: darken;
        height: 100vh;
    }

    .title-banner {
        margin-left: 150px;
        margin-top: 40px;
    }

    .text-banner-a {
        color: white;
        font-size: 30px !important;
    }

    .text-banner-b {
        color: white;
        font-size: 80px !important;
    }


}

@media screen and (min-width: 721px) and (max-width:1280px) {
    html[data-placement=horizontal] .nav-container .menu-container .menu>li>a.active, html[data-placement=horizontal] .nav-container .menu-container .menu>li>a:hover {
        /* margin-top: -4px !important; */
    }
}

/* mobile */
@media screen and (max-width: 720px) {
    html[data-placement=horizontal] .nav-container .menu-container .menu>li>a.active, html[data-placement=horizontal] .nav-container .menu-container .menu>li>a:hover {
        /* margin-top: -5px !important; */
    }

    .card .card-body, .card .card-footer, .card .card-header {
        padding: 20px;
    }

    main {
        min-height: 100%;
        /* padding-left: 0px;
        padding-right: 0px; */
        padding-top: var(--main-spacing-vertical);
        padding-bottom: var(--main-spacing-vertical);
    }

    .row>* {
        padding-right: 0px;
        padding-left: 0px;
        /* margin-top: var(--bs-gutter-y); */
    }

    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        margin-right: auto;
        margin-left: auto;
    }


    .row {
        margin-top: calc(var(--bs-gutter-y) * -1);
        margin-right: 0px;
        margin-left: 0px;
    }

    .bg-landing {
        background: rgba(0, 0, 0, .30) url('../img/banner/classroom-g770eb2215_1920.jpg');
        background-blend-mode: darken;
        height: 500px;
        background-size: cover;
    }

    .card-informasi {
        padding: 20px;
        border-radius: 5px;
    }

    .sc-ctn {
        margin-top: 20px;
    }

    .text-card {
        color: white !important;
        font-size: 20px;
    }

    .icon-informasi {
        font-size: 30px;
        color: white !important;

    }

    .no-alur, .title-alur, .card-text-pj {
        margin-left: 10px;
    }

    .ctn-berita-body {
        margin-left: 5px;
    }

    html[data-placement=horizontal][data-dimension=mobile] main, html[data-placement=vertical][data-dimension=mobile] main {
        padding-top: 40px;
    }

    .ctn-informasi {
        margin-top: 150px;
        margin-right: 20px;
    }

    .ctn-jalur, .ctn-berita, .ctn-alur {
        padding: 10px;
    }

    .title-banner {
        margin-left: 20px;
        margin-top: 50px;
    }

    .text-banner-a {
        color: white;
        font-size: 15px !important;
    }

    .text-banner-b {
        color: white;
        font-size: 40px !important;
    }

    .navbar-mobile {
        display: block;
    }
    .btn-back{
        display: block;
    }

    .text-brc {
        font-size: 15px;
        position: relative;
        top: -20px;
    }

    .sidebar-left {
        display: none;
    }

    .btn-nav {
        background: none;
        border: none;
        color: white;
        font-size: 25px;
        display: block;
    }

    .img-logo {
        margin-top: 20px;
    }

    .img-menu {
        /* margin-top: 10px; */
    }

    .acorn-icons-menu {
        /* margin-top: 10px !important; */
    }

    .img-logo h1 {
        color: white;
        font-weight: bold;
    }

    .logo-dinas {
        width: 150px;
    }

    .d-right {
        position: relative;
        top: -5px;
    }

    .p-label {
        width: 100%;
    }

    .box-content-landing {
        text-align: left;
        background: white;
        width: 300px;
        margin-top: 40px;
        box-shadow: 0px 0px 2px rgb(187, 187, 187);
    }

    .ctn-info h4 {
        font-weight: bold;
        padding: 20px 0px;
        border-bottom: 1px solid grey;
        width: 300px;
    }

    .bx-tt {
        border-left: none;
        border-top: 1px solid grey;
        margin-top: 20px;
        padding-top: 20px;
    }

    .card-balasan {
        padding-left: 10px;
    }

    .ctn-header h5, h3
    .img-pesan {
        width: 40px !important;
        padding-right: 10px;
    }

    .img-balasan {
        width: 40px !important;
        padding-right: 10px;
    }

    .ctn-alur-mobile {
        display: block;
    }
}

@media screen and (max-width: 970px) {
    .btn-back{
        display: block;
    }
    html[data-placement=horizontal] .nav-container .menu-container .menu>li>a.active, html[data-placement=horizontal] .nav-container .menu-container .menu>li>a:hover {
        /* margin-top: -5px !important; */
    }

    .img-logo {
        margin-top: 15px;
    }

    .img-menu {
        /* margin-top: 15px; */
    }

    .acorn-icons-menu {
        /* margin-top: 10px !important; */
    }
}
