.sort{
    position: relative;
    width: fit-content;
    min-width: 250px;
}
.sort__label {
    padding: 13px 20px;
    background: var(--white);
    /*border: 1px solid var(--secondary-color-3, #E5E5E5);*/
    /*width: 368px;*/
    display: flex;
    gap: 5px;
    justify-content: space-between;
}
.sort__label .checked_values{
    text-transform: lowercase;
}

.sort__options {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: var(--white);
    /*border: 1px solid var(--secondary-color-3, #E5E5E5);*/
    z-index: 9;
}
.sort__options.active{
    display: flex;
}
.sort__option{
    display: flex;
    gap: 5px;
    padding: 10px 20px;
}
.sort__option:hover{
    background-color: var(--secondary-color-2);
}

.radio-btn{
    display: block;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    background: transparent;
    border: 1px solid var(--secondary-color-1);
    outline: 1px solid var(--white);
    outline-offset: -2px;
}
.sort__option.active .radio-btn{
    background: var(--secondary-color-1);

}