.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    width: 13px;
    height: 13px;
    background-image: url(/view/st/images/icons/down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotateX(0deg);
    transition: transform .3s ease-in-out;
}

.select-selected.select-arrow-active:after {
    transform: rotateX(180deg);
}

.select-items div,
.select-selected {
    cursor: pointer;
}

.select-items div {
    padding: 8px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    white-space: nowrap;
}

.select-selected {
    font-weight: 400;
    padding-right: 20px;
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    z-index: 999;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    font-weight: 300;
    animation: fadeInSelect .3s ease-in-out forwards;
}

@keyframes fadeInSelect {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
    .select-selected:after {
        top: 14px;
    }
}