.select {
    display: flex;
    align-items: center;
    z-index: 5;
}

.select__label {
    margin-top: 0.5em;
    margin-right: 0.7em;
    color: #6f6f6f;
}

.select__control {
    position: relative;
    z-index: 1;
}
.select__value {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
    border-radius: 4px;
    display: inline-block;
    height: 40px;
    padding: 10px 30px 10px 13px;
    border: 1px solid #d4d4d4;
    font-size: 16px;
    color: #242424;
    background-color: #fff;
    -webkit-transition: box-shadow .3s, border-color .3s ease-in-out;
    transition: box-shadow .3s, border-color .3s ease-in-out;
    min-width: 200px;
    position: relative;
    max-width: 100%;
    text-align: left;
    cursor: pointer;
    z-index: 2;
}

.select__value::after {
    content: "";
    border-color: transparent transparent #242424;
    border-width: 0 3px 4px;
    border-style: solid;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-left: -3px;
    margin-top: -2px;
    transition: all 0.3s ease;
    transform: rotate(0);
}

.select--hidden .select__value::after {
    transform: rotate(180deg);
}

.select__dropdown {
    z-index: 1;
    width: 100%;
    position: absolute;
    background-color: #fff;
    padding: 22px 0 5px;
    margin-top: -20px;
    box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, .15);
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    overflow: auto;
    max-height: 350px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.select--hidden .select__dropdown {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-20px);
}
.select__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.select__item {

}
.select__item-button {
    color: #242424;
    padding-top: 3px;
    padding-bottom: 3px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    width: 100%;
    display: block;
    text-align: left;
}

.select__item-button:hover {
    background-color: #f5f5f5;
}

.select__item-button.select__item-button--acitve {
    background-color: #e8e8e8;
}
