.lateral-filter {
    font-family: "Circular", Sans-serif, serif !important;
    font-weight: normal !important;
    display: flex;
    flex-direction: column;
}
.lateral-wybe-label,
.lateral-wybe-filter-wrapper label {
    color: #00263E;
    font-weight: 600;
}
.lateral-wybe-filter-wrapper label {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.lateral-wybe-filter-wrapper label .badge {
    margin-left: 5px;
    background-color: white;
    border-radius: 50px;
    height: 20px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.lateral-wybe-label {
    margin-bottom: 25px;
    font-size: 18px;
}
.separator {
    width: 100%;
    border-top: 1px solid #00263E3D;
    margin-top: 20px;
    margin-bottom: 20px;
}
.lateral-filter div.checkbox-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 160px;
    overflow: hidden;
    transition: .4s ease-in-out;
}
.lateral-filter div.checkbox-container.open {
    max-height: unset;
}
.lateral-filter div.lateral-wybe-filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-direction: row;
}
.lateral-filter div.lateral-wybe-filter-wrapper input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #00263E;
    border-radius: 0;
    position: relative;
    cursor: pointer;
}
.lateral-filter div.lateral-wybe-filter-wrapper input::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: #00263E;
    opacity: 0;
    transition: .2s ease-in-out;
}
.lateral-filter div.lateral-wybe-filter-wrapper input:checked::after {
    opacity: 1;
}
.lateral-see-more {
    margin-top: 20px;
    color: #00263E;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 15px;
    cursor: pointer;
}
.lateral-see-more i {
    font-size: 12px;
}
.lateral-filter-btn {
    border: 1px solid #00263E;
    background-color: #00263E;
    color: white;
    padding: 15px;
    font-weight: 700;
    transition: .4s ease-in-out;
    margin-top: 25px;
    border-radius: 0;
}
.lateral-filter-btn:hover {
    background-color: transparent;
    color: #00263E;
}
.lateral-filter-title {
    display: none;
}
.lateral-filter-close {
    display: none;
}
#lateral-filter-open {
    cursor: pointer;
    width: 100%;
}
@media screen and (max-width: 50em) {
    .lateral-wybe-filter-wrapper label .badge {
        background-color: #F4F4F4;
    }
    .elementor-widget-filter-lateral {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        background-color: rgba(255, 255, 255, .6);
        z-index: 9999;
        padding: 40px 20px;
    }
    .elementor-widget-filter-lateral.open {
        display: block;
    }
    .lateral-filter {
        background-color: white;
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
        position: relative;
    }
    .lateral-filter div.checkbox-container {
        max-height: unset;
    }
    .lateral-see-more {
        display: none;
    }
    .lateral-filter-title {
        display: block;
        color: #00263E;
        font-size: 40px;
        font-weight: 800;
    }
    .lateral-filter-close {
        position: absolute;
        top: 0;
        right: 0;
        height: 50px;
        width: 50px;
        background-color: #00263E;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
}
