.b-select {
    position: relative;
    min-width: 220px;
    cursor: pointer;
}

.b-select .select__btn {
    border: 1px solid var(--primary);
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}

.b-select .select__btn::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    background: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f077";
    color: var(--primary);
}

.b-select .select__btn.collapsed::after {
    content: "\f078";
}

.b-select .select__btn > span {
    font-weight: 700;
}

.b-select .select__list {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    max-height: 50vh;
    overflow-y: auto;
    background-color: var(--white);
    border: 1px solid var(--primary);
    list-style: none;
}

.b-select .select__list.collapsing {
    position: absolute;
}

.b-select .select__list li {
    padding: 0;
}

.b-select .select__list li > a {
    display: inline-block;
    padding: 0.5rem;
    color: #4c5860;
    font-size: inherit;
    font-weight: 700;
    text-align: left;
    transition: all 0.3s ease;
}

.b-select .select__list li > a:hover {
    color: var(--primary);
    text-decoration: none;
}