.sort {
    display: flex;
    flex-direction: row;
    font-family: "Inter";
    font-weight: 500;
    margin-bottom: 5vh;
}

.sort__button, .sort-select__inline {
    padding: 7px 25px;
    color: #525252;
    border: 1px solid #525252;
    border-radius: 3px;
    margin-right: 5px;
    text-decoration: none;
}

.sort > .sort__select:last-child {
    margin-right: 0;
}

.sort__button:hover, .sort__select:hover {
    border-color: var(--semiBlack);
    color: var(--semiBlack);
    cursor: pointer;
}

.sort__select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.sort-select__options {
    position: absolute;
    top: 2rem;
    background: var(--white);
    z-index: 20;
    display: none;
    border-radius: 3px;
    border: 1px solid #525252;
    padding:0;
    margin:0;
    list-style-type: none;
    max-width: 300px;
}

.sort__select:hover .sort-select__options {
    display: flex;
    flex-direction: column;
}

.sort-select__options > li {
    padding: 7px 20px;
    transition: .1s ;
}

.sort-select__options > li:hover {
    background: #f9f9f9;
    cursor: pointer;
}

.sort-select__options > li > a {
    text-decoration: none;
    color: #525252;
}

.sort__select > div > span > img {
    width: 10px;
    height: 10px;
}

.sort-select__inline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
