﻿.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above{
    background: white !important;
    max-height: 210px;
    overflow-y: scroll;
}

.select2-container--flat{

    .select2-results__option{
        padding: 1rem;
    }
    
    .select2-container--focus .select2-selection--multiple{
        border: 1px solid #ababab !important;
    }
    .select2-results__option--highlighted[aria-selected]{
        background: #ababab !important;
        color: black;
    }
    .select2-results__option[aria-selected=true]{
        background: #ababab !important;
        color: black;
        opacity: 0.8;
    }
    .select2-selection--single{
        border-radius:0;
    }
    &.select2-container--open{
        .select2-selection__arrow{
            b{
                transform: rotate(180deg);
                -webkit-transform: rotate(180deg);
                -moz-transform: rotate(180deg);
            }
        }
    }
    span.select2-search{
        input {
            height: 30px !important;
        }
    }
}

.select2-container{
    .select2-choice {
        border: 2px solid #dce4ec;
        height: 36px;
        border-radius: 0;
        font-family: "Lato", sans-serif;
        font-size: 14px;
        text-indent: 1px;
        box-shadow: none;
        background-image: none;
        div {
            border-left: 2px solid #dce4ec;
            border-radius: 0 0 0 0;
            background-clip: padding-box;
        }
        .select2-arrow{
            border: 0px;
            border-radius: 0;
            background: transparent;
            background-image: none;
        }
    }
    *:focus{
        outline:0px;
    }
    &.select2-drop-above .select2-choice {
        border-bottom-color: #dce4ec;
        border-radius:0;
    }
}

.select2-drop {
    margin-top: -2px;
    border: 2px solid #dce4ec;
    border-top: 0;
    border-radius: 0 !important;
    border-radius: 0 0 0 0;
    box-shadow: none;
    &.select2-drop-above {
        margin-top: 2px;
        border-top: 2px solid #dce4ec;
        border-bottom: 0;
        border-radius: 0 0 0 0;
        box-shadow: none;
    }
}

.select2-search{
    margin-top: 3px;
    input {
        height: 26px;
        border-radius: 0;
        border: 2px solid #777777;
    }
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 2px solid #dce4ec;
    outline: none;
    box-shadow: none;
}

.select2-dropdown-open .select2-choice {
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    .select2-choice div {
        background: transparent;
        border-left: none;
        filter: none;
    }
}

.select2-results{
    padding: 0 0 0 0px;
    margin: 4px 0px 0px 0;
    .select2-highlighted {
        background: #16a085 !important;
        color: #fff;
        border-radius: 0;
    }
}

.select2-container-multi{
    .select2-choices {
        height: auto !important;
        height: 1%;
        border: 2px solid #dce4ec;
    }
    &.select2-container-active .select2-choices {
        border: 2px solid #dce4ec;
        border-radius: 0;
        box-shadow: none;
    }
}

/****** Single SCSS *******/
.select2-container--flat{
    .select2-selection--single{
        background: white !important;
        border-radius: 0;
        border: 1px solid #ababab;
        height:36px;
        transition: all 0.2s ease-in-out;
        .select2-selection__rendered{
            color: black;
            line-height:34px;
        }
        .select2-selection__arrow{
            height: 26px;
            position: absolute;
            top: 1px;
            right: 1px;
            width: 20px;
            b {
                border-color: #ababab transparent transparent transparent;
                top: 60%;
                border-style: solid;
                border-width: 5px 4px 0 4px;
                height: 0;
                left: 50%;
                margin-left: -4px;
                margin-top: -2px;
                position: absolute;
                width: 0;
            }
        }
        .select2-selection__placeholder {
            color: #fff;
        }
        .select2-selection__arrow b {

        }
        .select2-selection__clear {
            cursor: pointer;
            float: right;
            font-weight: bold;
        }
    }
    .select2-selection--single.error{
        border: 1px solid #e52e2e;
    }
}

/****** Multiple SCSS *******/
.select2-container--flat{
    .select2-selection--multiple{
        border: 1px solid #16a085 !important;
        transition: all 0.2s ease-in-out;
        .select2-selection__choice__remove:hover{
            color: #16a085 !important;
            cursor: pointer;
        }
        .select2-selection__rendered {
            box-sizing: border-box;
            list-style: none;
            margin: 0;
            padding: 0 5px;
            width: 100%;
        }
        .select2-selection__choice{
            background-color: #48c9b0 !important;
            color: #fff;
            border: 1px solid #48c9b0 !important;
            border-radius: 0;
            padding: 3px 5px;
            cursor: default;
            float: left;
            margin-right: 5px;
            margin-top: 5px;
        }
        .select2-selection__choice__remove{
            color: #16a085 !important;
            margin-right: 6px;
            margin-left: 6px;
            float: right;
        }
    }
    .select2-selection--multiple.error{
        border: 1px solid #e52e2e;
    }
}