/* =========================================
   PREMIUM ALERT OVERLAY
========================================= */

.premium-alert-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    animation: premiumFadeIn .25s ease;
}

.premium-alert {
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
    0 25px 70px rgba(0, 0, 0, .25),
    0 8px 25px rgba(0, 0, 0, .12);
    animation: premiumAlertIn .35s cubic-bezier(.22, 1, .36, 1);
}

.premium-alert-header {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
    radial-gradient(circle at center, rgba(239, 68, 68, .22), transparent 55%),
    linear-gradient(135deg, #111827, #1e293b);
}

.premium-alert-header::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow:
    0 0 0 30px rgba(239, 68, 68, .025),
    0 0 0 60px rgba(239, 68, 68, .02);
    animation: pulseCircle 2.5s infinite ease-in-out;
}

.premium-alert-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: 0;
    outline: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .75);
    font-size: 28px;
    line-height: 35px;
    cursor: pointer;
    transition: all .2s ease;
    z-index: 5;
}

.premium-alert-close:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff;
    transform: rotate(90deg);
}

.premium-alert-icon {
    position: relative;
    z-index: 2;
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(239, 68, 68, .12);
    box-shadow:
    0 0 0 14px rgba(239, 68, 68, .06),
    0 0 45px rgba(239, 68, 68, .28);
}

.premium-alert-icon-inner {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff5757, #dc2626);
    color: #fff;
    font-size: 42px;
    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 12px 30px rgba(220, 38, 38, .35);
}

.premium-alert-icon-inner i {
    margin-top: 2px;
}

.premium-alert-body {
    padding: 30px 28px 22px;
    text-align: center;
}

.premium-alert-title {
    color: #172033;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.5px;
}

.premium-alert-title span {
    color: #ef4444;
}

.premium-alert-line {
    display: flex;
    justify-content: center;
    margin: 16px 0 18px;
}

.premium-alert-line span {
    width: 45px;
    height: 4px;
    border-radius: 10px;
    background:
    linear-gradient(90deg, #ff5757, #dc2626);
}

.premium-alert-message {
    display: block;
    margin: 8px 0 0;
    padding: 14px 18px;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    background: linear-gradient(90deg, #fff1f2, #fff7f7);
    color: #b91c1c;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    line-height: 1.5;
}

.premium-alert-footer {
    padding: 0 35px 35px;
}

.premium-alert-button {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    outline: none;
    border-radius: 14px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background:
    linear-gradient(135deg, #ff5757, #e11d48);
    box-shadow: 0 10px 25px rgba(225, 29, 72, .25);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.premium-alert-button i {
    font-size: 18px;
}

.premium-alert-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 30px rgba(225, 29, 72, .35);
}

.premium-alert-button:active {
    transform: translateY(0);
}

@keyframes premiumFadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes premiumAlertIn {
    from {opacity: 0; transform: translateY(25px) scale(.96);}
    to {opacity: 1; transform: translateY(0) scale(1);}
}

@keyframes pulseCircle {
    0%,
    100% {
        transform: scale(.95);
        opacity: .7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@media (max-width: 576px) {

    .premium-alert-overlay {
        padding: 15px;
    }

    .premium-alert {
        max-width: 100%;
        border-radius: 18px;
    }

    .premium-alert-header {
        height: 205px;
    }

    .premium-alert-icon {
        width: 105px;
        height: 105px;
    }

    .premium-alert-icon-inner {
        width: 75px;
        height: 75px;
        font-size: 34px;
    }

    .premium-alert-body {
        padding: 30px 25px 25px;
    }

    .premium-alert-title {
        font-size: 24px;
    }

    .premium-alert-message {
        font-size: 15px;
    }

    .premium-alert-footer {
        padding: 0 25px 25px;
    }

    .premium-alert-button {
        height: 54px;
    }

}

/* =========================================
   END PREMIUM ALERT OVERLAY
========================================= */


/* =========================================
   SIDEBAR
========================================= */

.barka-brand {
    height: 80px;
    padding: 8px 12px !important;
    background: linear-gradient(135deg, #071923 0%, #0b2d40 60%, #07506b 100%);
    border-bottom: 3px solid #29b6f6;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
    position: relative;
    overflow: hidden;
}

.barka-brand::after {
    content: "";
    position: absolute;
    right: -25px;
    bottom: -35px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(79,195,247,.15);
    border-radius: 50%;
}

.barka-brand .site_title {
    height: auto !important;
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.barka-logo {
    width: 54px;
    height: 54px;
    object-fit: cover;
    background: #fff;
    padding: 2px;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow:
    0 0 0 2px rgba(41,182,246,.5),
    0 3px 8px rgba(0,0,0,.35);
}

.barka-title {
    line-height: 1;
    min-width: 0;
}

.barka-name {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .5px;
}

.barka-subtitle {
    color: #4fc3f7;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.barka-line {
    width: 38px;
    height: 2px;
    margin-top: 6px;
    background: #4fc3f7;
    border-radius: 2px;
}

.main_menu_side {
    background: #142b3d;
}

.main_menu {
    background: #142b3d;
}

.menu_section {
    margin-bottom: 0;
}

.side-menu {
    margin-top: 8px;
}

.side-menu a {
    font-family: "Inter", sans-serif;
}

.side-menu > li {
    margin: 3px 8px;
}

.side-menu > li > a {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 12px;
    color: #d9e5ec !important;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2px;
    border-radius: 7px;
    transition:
    background .2s ease,
    color .2s ease,
    padding-left .2s ease,
    box-shadow .2s ease;
}

.side-menu > li > a > i:first-child {
    width: 25px;
    margin-right: 8px;
    color: #8fc9e8;
    font-size: 16px;
    text-align: center;
    transition: .2s ease;
}

.side-menu > li > a > .fa-chevron-down {
    margin-left: auto;
    color: #78909c;
    font-size: 10px;
    transition: transform .2s ease;
}

.side-menu > li > a:hover {
    color: #ffffff !important;
    background: rgba(41, 182, 246, .13);
    padding-left: 16px;
    box-shadow: inset 3px 0 0 #29b6f6;
}

.side-menu > li > a:hover > i:first-child {
    color: #4fc3f7;
    transform: scale(1.08);
}

.side-menu > li.active > a {
    color: #ffffff !important;
    background: linear-gradient(90deg, rgba(41, 182, 246, .20), rgba(41, 182, 246, .06));
    box-shadow: inset 3px 0 0 #29b6f6;
}

.side-menu > li.active > a > i:first-child {
    color: #4fc3f7;
}

.side-menu .child_menu {
    background: #102333;
    margin: 0 0 4px 0;
    padding: 5px 0 5px 0;
    border-radius: 0 0 7px 7px;
}

.side-menu .child_menu li {
    margin: 1px 5px;
}

.side-menu .child_menu li a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 10px 8px 42px;
    color: #aebfc9 !important;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.side-menu .child_menu li a:hover {
    color: #ffffff !important;
    background: rgba(41, 182, 246, .10);
    padding-left: 46px;
}

.side-menu .child_menu li a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 10px;
    background: #607d8b;
    border-radius: 50%;
    transition: .2s ease;
}

.side-menu .child_menu li a:hover::before {
    background: #29b6f6;
    box-shadow: 0 0 6px rgba(41, 182, 246, .7);
}

.side-menu .child_menu .child_menu {
    background: #0d1e2c;
    margin-left: 8px;
    border-left: 1px solid rgba(79, 195, 247, .15);
    border-radius: 0;
}

.side-menu .child_menu .child_menu li a {
    padding-left: 35px;
    font-size: 11.5px;
}

.side-menu .child_menu .child_menu li a:hover {
    padding-left: 39px;
}

body.nav-sm .side-menu > li {
    margin: 3px 4px;
}

body.nav-sm .side-menu > li > a {
    width: 100% !important;
    min-height: 58px !important;
    height: auto !important;
    padding: 7px 2px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #d9e5ec !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: normal !important;
    border-radius: 7px;
}

body.nav-sm .side-menu > li > a > i:first-child {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0 4px 0 !important;
    color: #8fc9e8;
    font-size: 18px !important;
    line-height: 1 !important;
    text-align: center !important;
    transform: none !important;
}

body.nav-sm .side-menu > li > a {
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0;
}

body.nav-sm .side-menu > li > a > .fa-chevron-down {
    display: none !important;
}

body.nav-sm .side-menu > li > a:hover {
    width: 100% !important;
    padding: 7px 2px !important;
    color: #ffffff !important;
    background: rgba(41, 182, 246, .15);
    box-shadow: none;
}

body.nav-sm .side-menu > li > a:hover > i:first-child {
    color: #4fc3f7;
    transform: scale(1.08);
}

body.nav-sm .side-menu > li.active > a {
    background: linear-gradient(180deg, rgba(41, 182, 246, .20), rgba(41, 182, 246, .06));
    box-shadow: inset 0 0 0 1px rgba(41, 182, 246, .20);
}

body.nav-sm .side-menu > li.active > a > i:first-child {
    color: #4fc3f7;
}

body.nav-sm .barka-logo {
    width: 40px;
    height: 40px;
    margin-left: -6px;
}

.left_col {
    position: relative;
    background: #102B3D !important;
}

.left_col::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: radial-gradient(circle at 50% 100%, rgba(41, 182, 246, .10), transparent 70%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .barka-logo {
        width: 32px;
        height: 32px;
        margin-left: -3px;
        margin-right: 100px;
    }

}


/* =========================================
   END SIDEBAR
========================================= */


/* =========================================
   TOPBAR
========================================= */

.top_nav {
    background: #ffffff;
    border-bottom: 1px solid #e8edf1;
}

.nav_menu {
    min-height: 80px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(20, 43, 61, .06);
}

.nav.toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-left: 8px;
    border-radius: 10px;
    transition: all .2s ease;
}

.nav.toggle:hover {
    background: #f1f7fa;
}

.nav.toggle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #547083 !important;
    font-size: 22px;
    text-decoration: none;
}

.nav.toggle a:hover {
    color: #1976a8 !important;
}

.topbar-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5px;
    line-height: 1.1;
}

.topbar-brand .brand-name {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .8px;
    color: #173247;
}

.topbar-brand .brand-subtitle {
    margin-top: 4px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #78909c;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.topbar-user {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 20px;
    margin-right: 5px;
    border-left: 1px solid #edf1f3;
}

.topbar-user-info {
    text-align: right;
    line-height: 1.2;
}

.topbar-user-name {
    color: #263746;
    font-size: 13px;
    font-weight: 600;
}

.topbar-user-role {
    margin-top: 4px;
    color: #8a9aa5;
    font-size: 10px;
    letter-spacing: .5px;
}

.topbar-avatar {
    width: 36px;
    height: 36px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    background: linear-gradient(135deg, #1565c0, #29b6f6);
    box-shadow: 0 3px 8px rgba(21, 101, 192, .25);
}

.nav_menu {
    position: relative;
}

.nav_menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1565c0 0%, #29b6f6 35%, transparent 75%);
}

@media (max-width: 767px) {
    .nav_menu {
        min-height: 60px;
    }

    .topbar-brand .brand-name {
        font-size: 15px;
    }

    .topbar-brand .brand-subtitle {
        display: none;
    }

    .topbar-user {
        height: 60px;
        padding: 0 10px;
    }

    .topbar-user-info {
        display: none;
    }

    .topbar-avatar {
        margin-left: 0;
    }
}

/* =========================================
   END TOPBAR
========================================= */


/* =========================================
   END LOADERS
========================================= */

#barka-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    opacity: 1;
    transition:
    opacity .35s ease,
    visibility .35s ease;
}

#barka-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(210, 225, 232, .10);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 0;
}

#barka-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.barka-loader-content {
    position: relative;
    z-index: 2;
    width: 90%;
    border-radius: 50%;
    max-width: 300px;
    max-height: 300px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #081c2b;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
    animation: barkaLoaderAppear .6s ease;
    background: rgba(7, 25, 38, .60);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transform: translateY(-30px);
}

.barka-loader-content::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(41, 182, 246, .18);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(41, 182, 246, .05), inset 0 0 40px rgba(41, 182, 246, .03);
    z-index: -1;
    background: radial-gradient(
        circle,
        rgba(6, 23, 34, 0.62) 0%,
        rgba(6, 23, 34, 0.55) 55%,
        rgba(6, 23, 34, 0.35) 80%,
        rgba(6, 23, 34, 0.10) 100%
    );
}

.barka-loader-spinner::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #FE0000;
    box-shadow: inset 0 0 10px rgba(0,0,0,.45);
    z-index: 1;
}

.barka-loader-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
    padding: 5px;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #29b6f6;
    box-shadow: 0 0 0 3px rgba(41, 182, 246, .12), 0 0 20px rgba(41, 182, 246, .25);
    animation: barkaLogoFloat 3s ease-in-out infinite;
}

.barka-loader-name {
    color: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 39px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.barka-loader-subtitle {
    margin-top: 5px;
    color: #29b6f6;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 6px;
    text-indent: 6px;
}

.barka-loader-line {
    width: 58px;
    height: 3px;
    margin: 10px auto 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1565c0, #29b6f6);
    box-shadow: 0 0 10px rgba(41, 182, 246, .45);
}

.barka-loader-spinner {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    position: relative;
}

.barka-spinner-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,.12);
    border-top-color: #29b6f6;
    border-right-color: #1565c0;
    animation: barkaSpinner 1.1s linear infinite;
    box-shadow: 0 0 15px rgba(41, 182, 246, .15);
}

.barka-spinner-ring::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(41, 182, 246, .08);
}

.barka-loader-status {
    color: rgba(255,255,255,.85);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .2px;
}

.barka-loader-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.barka-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.barka-feature i {
    color: #168ad0;
    font-size: 19px;
    margin-bottom: 6px;
    filter: drop-shadow(0 0 5px rgba(41,182,246,.25));
}

.barka-feature span {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: .5px;
    white-space: nowrap;
}

.barka-loader-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -120px;
    height: 260px;
    z-index: 1;
    opacity: .45;
    background-image:
    radial-gradient(circle, rgba(41,182,246,.55) 1px, transparent 1px);
    background-size: 12px 12px;
    transform: perspective(400px) rotateX(55deg);
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
    animation: barkaGridMove 8s linear infinite;
}

@keyframes barkaSpinner {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

@keyframes barkaLogoFloat {
    0%,
    100% {transform: translateY(0);}
    50% {transform: translateY(-4px);}
}


@keyframes barkaLoaderAppear {
    from {opacity: 0; transform: translateY(10px) scale(.98);}
    to {opacity: 1; transform: translateY(0) scale(1);}
}

@keyframes barkaGridMove {
    from {
        transform:
        perspective(400px)
        rotateX(55deg)
        translateY(0);
    }

    to {
        transform:
        perspective(400px)
        rotateX(55deg)
        translateY(24px);
    }
}

@media (max-width: 576px) {
    .barka-loader-content {
        padding: 20px 15px;
    }

    .barka-loader-logo {
        width: 62px;
        height: 62px;
    }

    .barka-loader-name {
        font-size: 34px;
    }

    .barka-loader-subtitle {
        font-size: 10px;
        letter-spacing: 5px;
        text-indent: 5px;
    }

    .barka-loader-line {
        margin-bottom: 18px;
    }

    .barka-loader-spinner {
        width: 56px;
        height: 56px;
    }

    .barka-loader-status {
        font-size: 13px;
    }

    .barka-loader-features {
        gap: 20px;
        margin-top: 30px;
    }

    .barka-feature i {
        font-size: 17px;
    }

    .barka-feature span {
        font-size: 11px;
        letter-spacing: .3px;
    }

}

/* =========================================
   END LOADERS
========================================= */


/* =========================================
   SUKSES SIMPAN
========================================= */

.modal-sukses, .modal-sukses * {
    box-sizing: border-box;
}

.modal-sukses {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(20, 30, 40, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
}

.modal-sukses .success-modal {
    position: relative;
    width: 480px;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow:
    0 25px 60px rgba(20, 40, 30, 0.18),
    0 8px 20px rgba(20, 40, 30, 0.08);
    padding: 42px 40px 38px;
}

.modal-sukses .success-modal::before {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -85px;
    height: 150px;
    background: #e4f8ea;
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.modal-sukses .success-modal::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -105px;
    height: 130px;
    background: #f3fcf5;
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.modal-sukses .icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-sukses .icon-glow {
    position: absolute;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #e0f7e7;
    box-shadow:
    0 0 0 14px rgba(74, 201, 116, 0.07),
    0 0 35px rgba(74, 201, 116, 0.18);
}

.modal-sukses .check-circle {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #45ce73, #25b85d);
    box-shadow:
    0 10px 25px rgba(37, 184, 93, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.modal-sukses .check {
    width: 34px;
    height: 18px;
    border-left: 7px solid #fff;
    border-bottom: 7px solid #fff;
    transform: rotate(-45deg);
    margin-top: -7px;
    border-radius: 2px;
}

.modal-sukses .dot {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
}

.modal-sukses .dot.one {
    width: 10px;
    height: 10px;
    background: #51c978;
    top: 20px;
    right: 8px;
}

.modal-sukses .dot.two {
    width: 8px;
    height: 8px;
    background: #80d99a;
    bottom: 18px;
    left: 7px;
}

.modal-sukses .dot.three {
    width: 7px;
    height: 7px;
    background: #ffd15c;
    top: 48px;
    left: 2px;
}

.modal-sukses .title {
    position: relative;
    z-index: 2;
    color: #1e2c3d;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.modal-sukses .description {
    position: relative;
    z-index: 2;
    color: #65758b;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 27px;
}

.modal-sukses .btn-ok {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 58px;
    padding: 0 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, #4bd279, #25b85d);
    box-shadow:
    0 9px 20px rgba(37, 184, 93, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
    appearance: none;
    -webkit-appearance: none;
    transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.modal-sukses .btn-ok:hover {
    transform: translateY(-2px);
    box-shadow:
    0 13px 25px rgba(37, 184, 93, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.modal-sukses .btn-ok:active {
    transform: translateY(1px);
}

.modal-sukses .btn-ok:focus {
    outline: none;
}

.modal-sukses .btn-ok:focus-visible {
    outline: 3px solid rgba(37, 184, 93, 0.25);
    outline-offset: 3px;
}

.modal-sukses .button-check {
    width: 22px;
    height: 22px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.modal-sukses .button-check::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    left: 5px;
    top: 5px;
}

@media (max-width: 520px) {

    .modal-sukses .success-modal {
        padding: 32px 25px 30px;
        border-radius: 20px;
    }

    .modal-sukses .title {
        font-size: 27px;
    }

    .modal-sukses .description {
        font-size: 15px;
    }
}

/* =========================================
   END SUKSES SIMPAN
========================================= */