/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 17, 2018, 9:11:18 AM
    Author     : Johannes
*/


.select-wrapper {
    margin: auto;
    max-width: 600px;
    width: calc(100% - 40px);
}

.fa-times:before{
    content:"x";
    font-weight:bolder;
}
.fa{
    display:inline-block;
    font:normal normal normal 14px/1 Arial;
    font-size:inherit;
    text-rendering:auto;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale
}

.select-pure__select {
    align-items: center;
    background: #ffffff;
    border-radius: 0px;
    border: 1px solid #c9c9c9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 500;
    justify-content: left;
    min-height: 40px;
    padding: 3px 8px;
    position: relative;
    transition: 0.2s;
    width: 100%;
    margin-bottom: 5px;
}
@media screen and (max-width: 991px){
    .select-pure__select{
        height: 49px;       
    }
    .select-pure__select:after{
            top: calc(50% - 10px) !important;
        }
}

.select-pure__select:after {
    content:' ';
    background-image: url('../images/icons/icon_chevron.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    display: block;
    position: absolute;
    pointer-events: none;
    right: 8px;
    top: 10px;
    z-index: 1;
    text-align: center;
    width: 20px;
    height: 20px;
    pointer-events: none;
    transition: all .4s ease-in-out;
}

.select-pure__select.select-pure__select--opened::after{
    transform: rotate(-90deg);
}

.select-pure__options {
    border-radius: 0px;
    border: 0px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 15px rgb(0 0 0 / 9%);
    box-sizing: border-box;
    color: #363b3e;
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    left: 0;
    max-height: 370px;
    overflow-y: scroll;
    position: absolute;
    top: 39px;
    width: 100%;
    z-index: 5;
    transition: all .4s ease-in-out;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(201,201,201,1);
    -moz-box-shadow: 0px 0px 0px 1px rgba(201,201,201,1);
    box-shadow: 0px 0px 0px 1px rgba(201,201,201,1);
}



.select-pure__select--opened .select-pure__options {
    /*  display: block; */
    visibility: visible;
    opacity: 1;
}

.select-pure__option {
    background: #fff;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
    padding: 10px;
    padding-left: 10px;
    transition: all .4s ease-in-out;
}

.select-pure__option:hover {
    background: #f7f7f7;
    color: rgb(190, 165, 10);
}


span.labelname {
    display: none;
}

.select-pure__option--selected {
    color: #e4e4e4;
    cursor: initial;
    pointer-events: none;
}

.select-pure__option--hidden {
    display: none;
}

.select-pure__selected-label {
    background: #cb2020;
    border-radius: 2px;
    color: #fff;
    cursor: initial;
    display: inline-block;
    font-size:12px;
    margin: 5px 10px 5px 0;
    padding: 2px 5px 3px 5px;
}

.select-pure__selected-label:last-of-type {
    margin-right: 0;
}

.select-pure__selected-label i {
    cursor: pointer;
    display: inline-block;
    margin-left: 7px;
}

.select-pure__selected-label i:hover {
    color: #e4e4e4;
}

.select-pure__autocomplete {
    /* background: #f9f9f8; */
    background:#dae1e4;
    background-image:url('/module/lib/framework/images/glas_icon.png');
    background-position:right center;
    background-repeat:no-repeat;
    border-bottom: 1px solid #e4e4e4;
    border-left: none;
    border-right: none;
    border-top: none;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    padding: 10px;
    width: 100%;
}

