.sortFilter{
    display: flex;
    width: fit-content;
    height: fit-content;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 12px;
    border: 2px solid #032753;
}

.orderTitle{
    display: flex;
    gap: 10px;
    color: var(--primary, #032753);
    font-family: Calibri;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.dropdown{
    display: flex;
    height: 36px;
    padding: 6px 18px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    background: rgba(3, 39, 83, 0.20);
    margin-top: 1rem;
}

.dropdown select{
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    color: var(--primary, #032753);
    font-family: Calibri;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    outline: none;
}

.filterTitle{
    display: flex;
    gap: 10px;
    color: var(--primary, #032753);
    font-family: Calibri;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.filterSelection{
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0.5rem;
    align-self: stretch;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.filterSelection input{
    display: flex;
    justify-content: center;
    display: none;
}

.filterSelection label{
    display: flex;
    align-items: center;
    padding: 2px 10px;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.filterSelection div{
    color: var(--primary);
    border: 2px solid #032753;
    border-radius: 8px;
    width: max-content;
}

@media screen and (max-width: 760px) {
    .sortFilter {
        width: 100%;
    }

    .filterContainer {
        width: 100%;
    }
}