/*_______________________Basic styling_______________________*/
select{
    opacity:0;
}
.select_hider{
    display: none;
}
.select .select_options{
    display: none;
    position: absolute;
    background: #fff;
    z-index:3;
    width: calc(100% + 2px);
    left: -1px;
    top: 100%;
    border: 1px solid;
    border-radius: 0 0 5px 5px;
    max-height: 270px;
    overflow: auto;
}
.select .select_options::-webkit-scrollbar
{
    width: 4px;
}
.active_options.filled .select_label {
    display: none;
}
.select.options_open .select_options{
    display:block;
}
.select.single .select_options .option.selected {
    cursor: auto;
}
input.select_searcher {
    width: 100%;
    max-width: 100%;
    border: 0;
    border-bottom: 1px solid;
    padding: 4px 30px 4px 10px;
    font-family: inherit;
    font-size: inherit;
    background-image: url(../../_images_global/otysSelectv2/search.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 16px;
}
input.select_searcher.filled{
    background-image: url(../../_images_global/otysSelectv2/search-remove.svg);
    cursor:pointer;
}
.opt_group_label {
    font-weight: bold;
    padding: 4px 10px;
    text-align: left;
}
input.select_searcher:focus{
    outline:none;
}
.select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    padding: 4px 40px 4px 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 100%;
    border: 1px solid;
    font-size: 16px;
    line-height: 18px;
    position: relative;
    text-align: left;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: relative;
}
.select:after{
    content:'';
    position:absolute;
    right:15px;
    top:calc(50% - 6.5px);
    width:13px;
    height:13px;
    background-image:url(../../_images_global/otysSelectv2/arrow.svg);
    background-repeat:no-repeat;
    background-position:0;
    background-size:cover;
    -webkit-transition:0.2s;
    -o-transition:0.2s;
    transition:0.2s;
}
.select.options_open:after{
    -webkit-transform:rotateZ(180deg);
        -ms-transform:rotate(180deg);
            transform:rotateZ(180deg);
}
.select *{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.active_options_wrapper {
    overflow: hidden;
    max-width: 100%;
}
.active_options{
    width: 100%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
}
.select.options_open {
    border-radius: 5px 5px 0 0;
}
.selected_item{
    display: inline-block;
    padding: 4px 12px;
    margin: 2px 2px;
}
.select.multiple .selected_item{
    border-radius: 2px;
    display: inline;
    white-space: nowrap;
    -o-text-overflow: clip;
       text-overflow: clip;
    line-height:30px;
}
.select .select_options .option {
    padding: 4px 10px;
}
.select .select_options .option.key_active{
    text-decoration:underline;
}
.select_label {
    display: inline-block;
    padding: 4px 12px 4px 0;
    margin: 2px 2px;
}
.counter{
    position: absolute;
    right: -10px;
    top: -10px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    pointer-events: none;
}
/*OTYS DATE STYLING*/
.apllDate > div {
    display: inline-block;
    width: 100%;
}
.apllDate > div > .select {
    display: inline-block;
    width: 30%;
    float: left;
    margin-right: 5%;
}
.apllDate > div > .select:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 600px)
{
    .apllDate > div > .select {
        width: 100%;
        margin-right: 5%;
        margin-bottom: 5px;
    }

}
/*_______________________End Basic styling_______________________*/
/*_______________________Select Colouring_______________________*/
/*All Greys*/
.select,
.select .select_options,
input.select_searcher{
    border-color:#cecece;
}
.select .select_options::-webkit-scrollbar-track,
.select .select_options::-webkit-scrollbar{
    background-color: #cecece;
}
.select.single .selected_item[value=NULL],
.select.single .selected_item[value="0"],
.select .select_options .option[value=NULL],
.select_label{
    color:#cecece;
}
/*Selected option text*/
.active_options,
.select.multiple .selected_item,
.select .select_options .option.selected{
    color:#fff;
}
/*Option text color*/
.selected_item{
    color:#000;
}
/*Selected option background color*/
.select.multiple .selected_item,
.select .select_options .option.selected
{
    background-color: #03A9F4;
}
.select .select_options::-webkit-scrollbar-thumb{
    background-color: #03A9F4;   
}
/*Hover over select option*/
.select .select_options .option:not(.selected):hover{
    background-color:#03A9F4de;
    color:#fff;
}
/*Counter*/
.counter{
    background-color: #03a9f4;
    color: #fff;
}
/*_______________________End Colouring_______________________*/