 /* Resize Psychology Today badge */
 .sx-verified-seal {
    transform: scale(0.75) !important;   /* try 0.6 – 0.8 */
    transform-origin: center left !important;
    display: inline-block !important;
}
.sidebar {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 4px;
}

/* Filter group */
.filter-group {
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0b3c3d;
}

.filter-header .arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #0b3c3d;
    border-bottom: 2px solid #0b3c3d;
    transform: rotate(-45deg);
    transition: 0.3s ease;
}

.filter-header.active .arrow {
    transform: rotate(45deg);
}

.filter-body {
    display: none;
    padding-top: 10px;
    max-height: 260px;      /* 🔥 scroll inside */
    overflow-y: auto;
}

.filter-body.open {
    display: block;
}

.filter-body .form-check {
    margin-bottom: 6px;
}
 


@media (max-width: 768px) {
    .sx-verified-seal {
        transform: scale(0.5) !important;
        transform-origin: center!important;
        display: inline-block!important;
    }

    .header-logo{

        margin-right: -167px !important;
    }

    .headerLogo{

       

        max-width: 61% !important;
    }
}

