:root{
    --uglyyellow: #FDD79F;
    --mainYellow: #FEC304;
    --mainBlue: #1337AA;
}

.filterFrame{
    background: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 13px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.filTitle{
    background: var(--mainBlue);
    color: white;
    font-size: 18px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 10px;
}

.filterOptions{
    padding: 8px 0px;
    border-radius: 8px;
    background: #F8F8FF;
}

.option{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px;
}

.option input{
    border: 1px solid #1c1c52;
    cursor: pointer;

}

.option label{
    font-size: 16px;
    color:rgb(28, 28, 82);
}

.form-check{
    padding-left: 0.5rem;
}