.selectSearch {
    width: 100%;
    height: 70px;
    position: relative;
}

.selectSearch__input {
    width: 100%;
    height: 70px;
}

.selectSearch__input::before {
    content: "";
    width: 15px;
    height: 15px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(./icons/down.svg);
    position: absolute;
    right: 30px;
    display: block;
    top: 27.5px;
}

.selectSearch__dropdown {
    width: 100%;
    position: absolute;
    top: 60px;
    max-height: 200px;
    background-color: white;
    border: 1px solid #ebebeb;
    z-index: 2;
    transition: .5s;
    overflow-y: auto;
    display: none;
}

.selectSearch__dropdown ul {
    padding: 0px;
    margin: 0px;
}

.selectSearch__dropdown-item {
    list-style-type: none;
    padding: 15px;
    font-size: 15px;
    color: #3f444b;
    cursor: pointer;
}

.selectSearch__dropdown-item:not(.selectSearch__dropdown-item--notFound):hover {
    background-color: #ebebeb;
    transition: .5s;
}

.selectSearch__dropdown.selectSearch__dropdown--active {
    display: block;
}
