html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.sk {
    display: none;
}

.rv {
    display: block;
}

html.js:not(.loaded) .sk {
    display: block;
}

html.js:not(.loaded) .rv {
    display: none;
}

.swal-ov {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(21, 37, 29, 0.35);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s;
}

.swal-ov.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.18s ease;
}

.swal-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 28px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(21, 37, 29, 0.25);
    transform: translateY(8px) scale(0.96);
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.swal-ov.show .swal-card {
    transform: none;
}

.swal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: block;
}

.swal-title {
    font-size: 17px;
    font-weight: 600;
    color: #15251d;
}

.swal-msg {
    font-size: 14px;
    color: #6d7d72;
    margin-top: 5px;
    line-height: 1.5;
}

.swal-spin {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid #e2e7dd;
    border-top-color: #10855f;
    animation: swal-rot 0.7s linear infinite;
}

@keyframes swal-rot {
    to {
        transform: rotate(360deg);
    }
}

.swal-check circle,
.swal-err circle {
    fill: none;
    stroke-width: 3;
    stroke-dasharray: 189;
    stroke-dashoffset: 189;
    animation: swal-dash 0.5s ease forwards;
}

.swal-check path,
.swal-err path {
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: swal-dash 0.35s 0.32s ease forwards;
}

.swal-check circle,
.swal-check path {
    stroke: #10855f;
}

.swal-err circle,
.swal-err path {
    stroke: #c15238;
}

@keyframes swal-dash {
    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-pulse {
        animation: none;
    }
    .swal-card {
        transition: none;
        transform: none;
    }
    .swal-spin {
        animation: none;
    }
    .swal-check circle,
    .swal-check path,
    .swal-err circle,
    .swal-err path {
        animation: none;
        stroke-dashoffset: 0;
    }
}
