
.select-dropdown {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin: 0 15px 0 0;
    text-align: left;
}
.modal-content .select-dropdown {
    width: 100%;
}

.select-dropdown:last-child {
    margin-right: 0;
}

.select-dropdown__button {
    cursor: pointer;
}

.select-dropdown__button:focus {
    outline: none;
}

.zmdi-chevron-down {
    position: absolute;
    right: 10px;
    top: 12px;
}

.modal-content .zmdi-chevron-down {
    display: none;
}
.modal-content .sel-arrow {
    top: 47px !important;
}


.select-dropdown__list {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
    opacity: 0;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(1, 0);
    transition: all ease-in-out .3s;
    z-index: 2;
    overflow: auto;
    max-height: 240px;
}
.modal-content .select-dropdown__list {
    overflow: auto;
    max-height: 140px;
}

.select-dropdown__list.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1, 1);

}

.select-dropdown__list__list-item {
    display: block;
    list-style-type: none;
    padding: 10px 15px;
    background: #fff;
    border-top: 1px solid #e6e6e6;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    color: #616161;
    text-align: left;
    transition: all ease-in-out .3s;
}

.select-dropdown__list__list-item:hover {
    background-color: #1fc69d;
    color: #fff;
    transition: all ease-in-out .3s;
}
