﻿.select-menu .select-btn {
    display: flex;
    background: #fff;
    font-weight: 400;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.select-btn i {
    font-size: 25px;
    transition: 0.3s;
}

.select-menu.active .select-btn svg:last-child {
    transition-duration: 500ms;
    transform: rotate(-180deg);
}

.select-menu .options {
    position: relative;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    display: none;
}

.select-menu.active .options {
    display: block;
}

.options .option {
    display: flex;
    cursor: pointer;
    border-radius: 8px;
    align-items: center;
    background: #fff;
}

.option i {
    font-size: 25px;
    margin-right: 12px;
}

.option .option-text {
    font-size: 18px;
}

.option.selected {
    background-color: #ea580c;
    color: #fff;
}
