/* slider */

.type-slider-title .type-badge {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-dark, #1a1a2e);
    border-left: 4px solid var(--bs-primary, #0d6efd);
    padding-left: 12px;
}

.slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.slider-btn:hover {
    background: var(--bs-primary, #0d6efd);
    border-color: var(--bs-primary, #0d6efd);
    color: #fff;
}

.slider-btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.slider-btn .material-icons-outlined {
    font-size: 20px;
}

.voir-plus-card {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    /* carré arrondi */
    border: 2px dashed #dee2e6;
    background: #f8f9fa;
    color: #6c757d;
    transition: all 0.25s ease;
    text-align: center;
    padding: 10px;
}

.voir-plus-icon .material-icons-outlined {
    font-size: 24px;
}

.voir-plus-count {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.voir-plus-label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 991px) {
    .slider-item {
        width: calc(33.333% - 10px) !important;
    }
}

@media (max-width: 767px) {
    .slider-item {
        width: calc(50% - 8px) !important;
    }
}

@media (max-width: 480px) {
    .slider-item {
        width: calc(85% - 8px) !important;
    }
}

/* fin */

/* faqs tabs */

.faq-tabs {
    border-bottom: 2px solid #e9ecef;
    gap: 4px;
}

.faq-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    color: #6c757d;
    font-weight: 500;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    margin-bottom: -2px;
}

.faq-tabs .nav-link:hover {
    color: var(--bs-primary, #0d6efd);
    background: transparent;
}

.faq-tabs .nav-link.active {
    color: var(--bs-primary, #0d6efd);
    border-bottom: 3px solid var(--bs-primary, #0d6efd);
    background: transparent;
    font-weight: 600;
}

/* fin */

/* register */

.account-type-card{
    cursor:pointer;
    transition:.2s ease;
    border:1px solid #e5e7eb;
    background:#fff;
}

.account-type-card:hover{
    transform:translateY(-2px);
    border-color:#2b6ab2;
}

.account-type-input:checked + .account-type-card{
    border:2px solid #2b6ab2;
    background:rgba(43,106,178,.05);
    box-shadow:0 4px 14px rgba(43,106,178,.12);
}


.selection-card{
    border:1.5px solid #e5e7eb;
    border-radius:12px;
    cursor:pointer;
    transition:all .25s ease;
    background:#fff;
    font-size:14px;
    font-weight:500;
    min-height:70px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.selection-card:hover{
    border-color:#2b6ab2;
    background:#f5f9ff;
    transform:translateY(-2px);
}

input:checked + .selection-card{
    border-color:#2b6ab2;
    background:#2b6ab2;
    color:#fff;
    box-shadow:0 6px 18px rgba(43,106,178,.18);
}

.form-check-input:checked {
    background-color: #ff6600;
    border-color: #ff6600;
}

/* ======================================================================
   Sous-menu actif
====================================================================== */

.nav-menu-sub .nav-link.actives {
    position: relative;
    color: #2b6ab2 !important;
    font-weight: 600;
    background: #eef5ff;
    border-radius: 8px;
    transition: .25s;
}

.nav-menu-sub .nav-link.actives::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 5px;
    background: #2b6ab2;
}

