
/* select2 clone */



/* WRAPPER */
.s2-wrapper {
    position: relative;
    width: 100%;
}

/* MAIN INPUT */
.s2-input {
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 6px 28px 6px 8px;
    width: 100%;
    height: 38px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.42857143;
}

.s2-input:focus {
    border-color: #5897fb;
    outline: 0;
    box-shadow: 0 0 3px rgba(88, 151, 251, .6);
}

/* DROPDOWN ICON */
.s2-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #444;
    pointer-events: none;
}

/* DROPDOWN LIST */
.s2-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
    z-index: 9999;
    display: none;
    max-height: 180px;
    overflow-y: auto;
    margin-top: 2px;
    font-size: 14px;
}

/* ITEMS */
.s2-item {
    padding: 6px 8px;
    cursor: pointer;
}

.s2-item:hover {
    background: #f1f1f1;
}

.s2-selected {
    background: #5897fb !important;
    color: #fff !important;
}