.select-container {
    position: relative;
    text-align: left;
}

.select-box {
    position: relative;
    font-family: 'Conv_bpg_arial';
    font-size: 16px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.select-container[is-loading="yes"] .select-box {
    background-image: url(../images/preloader-gear.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

.select-options {
    max-height: 0;
    margin-top: 5px;
    background-color: #ffffff;
    border-width: 0px;
    border-color: transparent;
    overflow: hidden;

    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.select-container[item-style="absolute"] .select-options {
    position: absolute;
    left: 0px;
    width: 100%;
}

.select-container[is-open="yes"] .select-options {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
}

.select-container[is-open="yes"][item-stretch="yes"] .select-options {
    max-height: 500px;
}

.select-option-group {
    font-family: 'Conv_bpg_arial';
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    color: #444444;
    text-align: center;
}

.select-option-group ~ .select-option-group {
    margin-top: 10px;
}

.select-container[is-loading="yes"] .select-arrow {
    opacity: 0;
}

.select-arrow {
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -12px;
    margin-left: -34px;
    background-image: url(../images/icon-arrow-down.svg?7);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 24px;
    height: 24px;
    opacity: 1;

    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.select-container[is-open="yes"] .select-arrow {
    opacity: 0;

    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.select-option {
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 12px center;
    font-family: 'Conv_bpg_arial';
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    padding-left: 50px;
    padding-bottom: 15px;
    padding-top: 15px;
    color: #1e88e5;
    cursor: pointer;
}

.select-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.select-highlight {
    animation: highlight 1000ms ease-out;
}
@keyframes highlight {
    from {
        background-color: rgba(255, 255, 153, .8);
    }
}