@font-face {
    font-family: 'IRANSans';
    src: url('../../assets/fonts/IRANSansWeb.ttf') format('truetype');
}

body, html {
    pointer-events: auto;
    margin: 0;
    overflow: hidden;
    /* اعمال گرادینت دایره‌ای تیره از مرکز به لبه‌ها */
    background: radial-gradient(circle, #5a5a5a 0%, #212529 100%);
    /* یک لایه جایگزین برای مرورگرهای قدیمی */
    background-color: #212529;
    direction: rtl;
    font-family: 'IRANSans', sans-serif;
    /* این دستور مطمئن می‌سازد که گرادینت تمام ارتفاع صفحه را پوشش می‌دهد */
    height: 100%;
}

#canvas-container {
    position: relative;
}

canvas {
    display: block;
    pointer-events: auto;
}


/* تنظیم تراز و فاصله پالت رنگ‌ها در منوی جدید پارچه */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* افزایش فاصله بین رنگ‌ها برای زیبایی بیشتر */
    justify-content: center;
    padding: 5px;
    max-height: 40vh;
    overflow-y: auto;
}

/* تغییر شکل جعبه‌های رنگ به دایره کامل */
.color-box {
    width: 34px; /* هم‌اندازه کردن با دایره‌های بخش تنظیمات */
    height: 34px;
    cursor: pointer;
    border: 2px solid transparent; /* حذف بوردر خاکستری قدیمی و استفاده از بوردر شفاف */
    border-radius: 50% !important; /* تبدیل قطعی به دایره کامل */
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* افکت هور روی دایره رنگ‌ها */
.color-box:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* استایل آیکون تیک انتخاب رنگ وسط دایره */
.check-icon {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    /* این ترفند رنگ تیک را بر اساس رنگ پس‌زمینه معکوس یا خوانا می‌کند */
    color: #000000;
    mix-blend-mode: difference;
}

/* در صورتی که در جاوااسکریپت کلاس active یا مشابه به رنگ انتخابی می‌دهید بوردر آبی بگیرد */
.color-box.active {
    border-color: #0d6efd !important;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.4);
}

.color-box.active .check-icon {
    display: block;
}

/* ---- استایل جدیدباکس‌های انتخاب سایز مدرن و دورگرد ---- */
.size-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 5px;
}

.size-badge-box {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #dee2e6;
    border-radius: 10px; /* مربع دورگرد زیبا */
    background-color: #f8f9fa;
    color: #212529;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
}

.size-badge-box:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    transform: scale(1.05);
}

.size-badge-box.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.35);
}


/* پنل کنترل تصویر */
.image-control-panel {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 15px;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    width: 250px;
    z-index: 1000;
    display: none;
}

.image-control-panel h5 {
    margin: 0 0 15px 0;
    font-size: 14px;
}

.image-control-panel .form-label {
    font-size: 12px;
}

.gap-2 {
    gap: 0.5rem !important;
}

/* رفع باگ تداخل جا‌به‌جایی لایه‌ها روی مودال اصلی */
.modal {
    z-index: 1060 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
}

/* ---- استایل‌های مخصوص حالت موبایل (یکپارچه و بدون تکرار) ---- */
@media (max-width: 767.98px) {
    .footer.offcanvas-md {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: auto;
        max-height: 75%;
        background-color: #212529 !important;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
        z-index: 1040 !important;
    }

    .footer-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
        padding: 20px !important;
        overflow-y: auto;
    }

    .footer .form-select,
    .footer .btn {
        width: 100% !important;
    }

    .color-options {
        justify-content: center !important;
        gap: 5px;
    }

    .color-box {
        width: 28px;
        height: 28px;
    }

    #canvas-container {
        height: 75vh !important;
        transform: translateY(-50px);
    }

    .image-control-panel {
        width: 200px;
    }
}

/* ---- استایل‌های اصلاحی و بازنشانی دسکتاپ (فقط صفحه‌های بزرگتر از موبایل) ---- */
@media (min-width: 768px) {
    /* بازنشانی کامل ویژگی‌های آف‌کانوس و تبدیل آن به فوتر ثابت دسکتاپ */
    .footer.offcanvas-md {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
        visibility: visible !important;
        z-index: 1020 !important;
        background-color: rgba(33, 37, 41, 0.9) !important; /* رنگ پس‌زمینه تیره دسکتاپ */
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2) !important;
        height: auto !important;
    }

    /* تنظیم چیدمان آیتم‌ها به صورت افقی در دسکتاپ */
    .footer-content-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 12px !important;
        width: 100% !important;
    }

    /* ریست کردن ابعاد سلکتور و دکمه‌ها در دسکتاپ که در موبایل ۱۰۰٪ شده بودند */
    .footer .form-select {
        width: 180px !important;
    }

    .footer .btn {
        width: auto !important;
    }

    /* برگرداندن بوم سه بعدی به ابعاد کامل دسکتاپ */
    #canvas-container {
        height: 100vh !important;
        transform: none !important;
    }
}


.custom-loader-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25vw; /* ۲۵ درصد عرض صفحه */
    height: 15vh; /* ۱۵ درصد ارتفاع صفحه */
    background-color: rgba(255, 255, 255, 0.75); /* نیمه‌شفاف برای مشخص بودن پشت صفحه */
    backdrop-filter: blur(5px); /* افکت تاری ملایم پشت لودینگ */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease, visibility 0.5s ease;
    direction: rtl;
    padding: 10px;
}

.custom-loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner-container {
    position: relative;
    width: 45px;
    height: 45px;
}

.modern-spinner {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.modern-spinner:nth-child(2) {
    border-top-color: #ffc107;
    animation-delay: -0.3s;
}

.modern-spinner:nth-child(3) {
    border-top-color: #198754;
    animation-delay: -0.6s;
}

.loader-text {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .custom-loader-overlay {
        width: 60vw;
        height: 18vh;
    }
}


/* ---- استایل سایدبار ابزار دسکتاپ و کشویی موبایل ---- */
.right-tools-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    z-index: 9995;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-inner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.tool-sidebar-btn {
    background: none;
    border: none;
    width: 100%;
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.tool-sidebar-btn svg {
    color: #495057;
    transition: color 0.2s ease, transform 0.2s ease;
}

.tool-btn-text {
    font-size: 9px;
    font-weight: bold;
    color: #6c757d;
    margin-top: 4px;
    white-space: nowrap;
    text-align: center;
}

.tool-sidebar-btn:hover svg, .tool-sidebar-btn.active-btn svg {
    color: #0d6efd;
    transform: scale(1.08);
}

.tool-sidebar-btn:hover .tool-btn-text, .tool-sidebar-btn.active-btn .tool-btn-text {
    color: #0d6efd;
}

.sidebar-mobile-toggle {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 45px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-right: none;
    border-radius: 10px 0 0 10px;
    box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.1);
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.sidebar-mobile-toggle svg {
    transition: transform 0.3s ease;
}

@media (max-width: 767.98px) {
    /* ... استایلهای قبلی موبایل شما ... */
    /* تنظیم حالت پیشفرض سایدبار در موبایل (مخفی و بسته) */
    .right-tools-sidebar {
        right: -50px; /* سایدبار به بیرون از صفحه هدایت می‌شود */
        top: 40%;
        height: auto;
        padding: 10px 0;
    }

    /* وقتی دکمه کلیک شد و کلاس فعال را گرفت */
    .right-tools-sidebar.mobile-open {
        right: 15px; /* آمدن سایدبار به داخل صفحه */
    }

    /* چرخاندن آیکون فلش دکمه در حالت باز شدن */
    .right-tools-sidebar.mobile-open .sidebar-mobile-toggle svg {
        transform: translateY(-1%) rotate(180deg);
    }

    .sidebar-mobile-toggle {
        left: -24px;
    }
}

/* ================= استایل بازطراحی شده تمام پنل‌ها (سمت چپ + افکت Slide Down) ================= */
.sidebar-panel-canvas {
    position: fixed;
    left: -350px; /* شروع موقعیت پنهان از لبه چپ */
    top: 20px;
    height: calc(100vh - 40px);
    width: 290px;

    /* گرادینت بنفش روشن ملایم که فقط در گوشه بالا-راست پخش می‌شود و کل پنل را نمی‌گیرد */
    background: radial-gradient(circle at top right, rgba(230, 215, 255, 0.6) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 249, 252, 0.9) 100%);

    /* افکت مات گلس‌مورفیسم روی بوم پشت پنل */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.5); /* مرز روشن برای تقویت حس شیشه */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(111, 66, 193, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    padding: 24px 20px;
    z-index: 9995;
    direction: rtl;
    box-sizing: border-box;

    /* افکت پویانمایی از بالا به پایین */
    opacity: 0;
    transform: translateY(-80px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    left 0.4s ease;
    pointer-events: none;
}

/* کلاس فعال‌سازی پنل‌ها */
.sidebar-panel-canvas.show {
    left: 20px; /* نمایش با فاصله لوکس از لبه چپ */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* هدر پنل‌ها */
.panel-canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.panel-canvas-title {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

/* دکمه ضربدر بستن مدرن */
.panel-close-btn {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.panel-close-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    transform: rotate(90deg);
}

/* ================= استایل بخش مدیریت عملکرد و بازدهی گرافیکی ================= */
.performance-settings-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 16px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5), 0 4px 12px rgba(0, 0, 0, 0.01);
    box-sizing: border-box;
}

.perf-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.perf-item:last-of-type {
    border-bottom: none;
}

.perf-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: right;
    padding-left: 8px;
}

.perf-title {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
}

.perf-desc {
    font-size: 10px;
    color: #64748b;
    line-height: 1.4;
}

/* سوییچ‌های اپل استایل مینی مال */
.modern-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
}

.modern-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.modern-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
}

.modern-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.modern-switch input:checked + .modern-slider {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.modern-switch input:checked + .modern-slider:before {
    transform: translateX(20px);
}

/* ================= استایل بخش کادر ترفندهای راهنما درون بوم ================= */
.help-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 75vh;
    overflow-y: auto;
}

.help-item-box {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.2s ease;
}

.help-item-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    background: rgba(255, 255, 255, 0.9);
}

.help-item-title {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.help-item-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.help-item-box:important:nth-child(even) .help-item-badge {
    background-color: #e0f2fe;
    color: #0369a1;
    border-color: #bae6fd;
}

/* تطابق واکنش‌گرا برای حالت نمایش موبایل */
@media (max-width: 767.98px) {
    .sidebar-panel-canvas {
        left: -100%;
        width: calc(100% - 40px);
        max-height: 87vh;
        top: 20px;
    }

    .sidebar-panel-canvas.show {
        left: 20px;
        transform: translateY(0);
    }
}

.bg-color-options {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap; /* اجازه شکستن خط به دایره‌ها می‌دهد */
    padding: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.bg-color-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bg-color-circle:hover {
    transform: scale(1.18);
}

.bg-color-circle.active {
    border-color: #3b82f6; /* رنگ مرز آبی مدرن برای دایره انتخاب شده */
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

/* ================= استایل اختصاصی کارت‌های گرید انتخاب یقه و آستین در پنل اجزا ================= */
.collar-cards-container,
.sleeve-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 65vh;
    overflow-y: auto;
    padding: 4px;
    direction: rtl;
}

.collar-card,
.sleeve-card {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.collar-card:hover,
.sleeve-card:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.collar-card.active,
.sleeve-card.active {
    background: #ffffff;
    border-color: #0d6efd;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
}

.collar-card-img-wrapper,
.sleeve-card-img-wrapper {
    width: 100%;
    height: 85px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f8f9fa;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collar-card-img-wrapper img,
.sleeve-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collar-card:hover .collar-card-img-wrapper img,
.sleeve-card:hover .sleeve-card-img-wrapper img {
    transform: scale(1.06);
}

.collar-card-title,
.sleeve-card-title {
    font-size: 11px;
    font-weight: 700;
    color: #334155;
    text-align: center;
    white-space: nowrap;
}

.collar-card.active .collar-card-title,
.sleeve-card.active .sleeve-card-title {
    color: #0d6efd;
}

/* بهینه‌سازی گرید در اسکرین‌های بسیار کوچک موبایل */
@media (max-width: 360px) {
    .collar-cards-container,
    .sleeve-cards-container {
        grid-template-columns: 1fr;
    }
}

/* استایل اختصاصی دکمه بازنشانی موقعیت در سمت چپ بالای صفحه */
.top-left-reset-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50% !important; /* تبدیل دکمه به دایره کامل و شکیل */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1040; /* قرارگیری بالاتر از بوم و سایر المان‌های شناور موازات خود */
    transition: all 0.2s ease;
}

.top-left-reset-btn:hover {
    transform: rotate(-45px) scale(1.05); /* یک افکت چرخش و بزرگ‌نمایی ملایم هنگام هاور */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* جابجایی جزئی در ریسپانسیو موبایل در صورت تداخل با سایر المان‌های احتمالی شما */
@media (max-width: 767.98px) {
    .top-left-reset-btn {
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }
}

/* استایل اختصاصی دکمه بازنشانی موقعیت در سمت چپ بالای صفحه */
.top-left-reset-btn2 {
    position: fixed;
    top: 20px;
    left: 70px;
    width: 44px;
    height: 44px;
    border-radius: 50% !important; /* تبدیل دکمه به دایره کامل و شکیل */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1040; /* قرارگیری بالاتر از بوم و سایر المان‌های شناور موازات خود */
    transition: all 0.2s ease;
}

.top-left-reset-btn2:hover {
    transform: rotate(-45px) scale(1.05); /* یک افکت چرخش و بزرگ‌نمایی ملایم هنگام هاور */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* جابجایی جزئی در ریسپانسیو موبایل در صورت تداخل با سایر المان‌های احتمالی شما */
@media (max-width: 767.98px) {
    .top-left-reset-btn2 {
        top: 15px;
        left: 60px;
        width: 40px;
        height: 40px;
    }
}


/*
///////// TEXT //////////////////*/
/* استایل سفارشی برای بخش ابزار رنگ پیشرفته متن */
.form-control-color {
    max-width: 100%;
    height: 38px;
    padding: 3px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    cursor: pointer;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-color:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* بهبود استایل اسلایدرهای کنترلی برای راحتی کار با انگشت روی موبایل */
.form-range::-webkit-slider-thumb {
    background: #0d6efd;
}

.form-range::-moz-range-thumb {
    background: #0d6efd;
}

.w-70 {
    width: 70% !important;
}

.w-30 {
    width: 30% !important;
}
