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

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


/*Filter list on main page*/
.bywHB8PKM1wiH {
    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;
}

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

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

.QTuDhDFRS a {
    font-size: 15px;
    color: #ffffff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.is-active .oYDeUSv9ROrmb {
    background-color: #784B8D;
    border-color: #784B8D;
    box-shadow: inset 0 0 0 2px #0A1300;
}
/*Filters on main page END*/

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

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

.qplWWjypjDo8k6 {
    font-size: 15px;
}

.qplWWjypjDo8k6 a {
    position: relative;
}

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

.qplWWjypjDo8k6 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);
}

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

/* SIDEBAR  END*/

@media (max-width: 1280px) {
    .MluGKqOoS {
        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;
    }

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

    .zfMOea6Znp {
        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;
    }
}