/* Teamlyzer select2 theme, paired with inputs_teamlyzer.css: 40px
   controls, radius 8, hover changes the border only, glow is for
   focus. */

.select2-container--bootstrap .select2-selection--single {
    height: 40px;
    border: 1px solid #d8e6ee;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(22, 48, 61, .04);
    background: #fff;
    padding: 0 30px 0 12px;
    display: flex;
    align-items: center;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.select2-container--bootstrap .select2-selection--single:hover {
    border-color: #9fd6f2;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 24px;
    color: #54707e;
    font-size: 14px;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
    color: #7d97a4;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 10px;
}

/* multiple selection: same skin, elastic height */
.select2-container--bootstrap .select2-selection--multiple {
    min-height: 40px;
    border: 1px solid #d8e6ee;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(22, 48, 61, .04);
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.select2-container--bootstrap .select2-selection--multiple:hover {
    border-color: #9fd6f2;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
    background: #e8f4fb;
    border: none;
    border-radius: 999px;
    color: #0f5c84;
    font-size: 12.5px;
    font-weight: 600;
    padding: 3px 10px;
    margin-top: 6px;
}

.select2-container--bootstrap.select2-container--focus .select2-selection,
.select2-container--bootstrap.select2-container--open .select2-selection {
    border-color: #42b9ed;
    box-shadow: 0 0 0 3px rgba(66, 185, 237, .16);
}

/* clear cross: real click target, destructive hover */
.select2-container--bootstrap .select2-selection__clear {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #7d97a4;
    padding: 0 8px;
    margin: 0 2px 0 6px;
    border-radius: 999px;
    cursor: pointer;
    transition: color .12s ease, background .12s ease;
}

.select2-container--bootstrap .select2-selection__clear:hover {
    color: #e34948;
    background: #fdeeee;
}

.select2-container--bootstrap .select2-dropdown {
    border: 1px solid #d8e6ee;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(22, 48, 61, .14);
    overflow: hidden;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background: #1179ad;
}

.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
    border-radius: 6px;
    border-color: #d8e6ee;
}
