/* SIDEBAR  START*/
.FvzKzIE2UY27 {
    width: 300px;
    flex-shrink: 0;
}

.OpRfr3dggkwR {
    display: none;
    font-size: 22px;
    font-weight: 500;
    color: #ECF2FF;
}


/*Filter list on main page*/
.LijyH2stwARBH {
    display: flex;
    flex-flow: column nowrap;
    gap: 19px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filterItem {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.KSNk6XNTAth {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 9px;
}

.mAIsYe0Nw17ee {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
}

.mAIsYe0Nw17ee a {
    font-size: 15px;
    color: var(--search-sidebar-text);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chbfQWFeihpO1 {
    width: 17px;
    height: 17px;
    border-radius: 27px;
    border: 1px solid #3E5485;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.is-active .chbfQWFeihpO1 {
    background-color: var(--search-sidebar-checkbox-active-bg);
    border-color: var(--search-sidebar-checkbox-border);
    box-shadow: inset 0 0 0 2px var(--search-sidebar-checkbox-active-inset);
}
/*Filters on main page END*/

/*Blog page filter START*/
.kOcbdBT1wpuWBT {
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.NJPBoLzpKI {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lCJCzDU5e4zjjF {
    font-size: 15px;
}

.lCJCzDU5e4zjjF a {
    position: relative;
}

.lCJCzDU5e4zjjF a:hover {
    color: #F2B90D;
}

.lCJCzDU5e4zjjF a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -2px;
    background: #ccc;
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.lCJCzDU5e4zjjF a:hover:after {
    transform: scaleX(1);
    transform-origin: center left;
}

/* SIDEBAR  END*/

@media (max-width: 1280px) {
    .FvzKzIE2UY27 {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 10;
        width: 100%;
        padding: 20px 29px;
        background-color: #0635A3;
        border-radius: 30px 30px 0 0;
        transition: transform .3s ease, opacity .3s ease;
        height: 70%;
        opacity: 0;
        transform: translateY(100%);
        pointer-events: none;
    }

    .FvzKzIE2UY27.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        overflow-y: auto;
        scrollbar-width: none;
    }

    .OpRfr3dggkwR {
        display: block;
    }

    .sidebarOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
    }

    .sidebarOverlay.active {
        opacity: 1;
        visibility: visible;
    }
}