﻿
.initial-box-sizing {
    -webkit-box-sizing: initial;
    -moz-box-sizing: initial;
    box-sizing: initial;
}

.drop-down-check-box-list-container
{
    position: relative;
    background-color: #fff; 
    /*height:25px;*/
    
    /* Font */
    font: -webkit-small-control;
    letter-spacing: normal;
    word-spacing: normal;
    font-size: 16px;
    text-align: left;
    
    /* Make text unselectable */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

@media (min-width: 320px) {
    .check-box-list-contianer { width:100%; }
}

@media (min-width: 992px) {
    .drop-down-check-box-list-container {
        max-width: 200px;
    }
    
    .check-box-list-contianer { width:135%; }
}

.drop-down-list
{
    position: relative;
    display: block;
    padding: 0px 0 0px 10px; /*5px 0 5px 10px*/
    cursor: pointer;
    background-color: #fff;
    background-image: url('../Images/icon_arrow_down_black.png');
    background-repeat: no-repeat;
    background-position: 97% 50%;
    color:#000; /* 76797d */
    overflow:hidden;
    border:1px solid #A9A9A9;
    border-radius:0;
    height:17px;
    font-size: 16px;
    padding: 4px 4px;
}

.drop-down-list.show-icon
{
    padding: 5px 0 5px 30px;
}

.drop-down-list-icon 
{
    position:absolute;
    left:0px;
    top:0px;
    height:25px;
    width:30px;
    background-color:Transparent;
}

.check-box-list-contianer
{
    position: absolute;
    display: none;
    /*max-height: 300px;*/
    border: 1px solid #A9A9A9;
    border-top: none;
    background-color: #fff;
    z-index:100;
}

.cbl-header
{
    width: 100%;
    height: 26px;
    border-top:1px solid #A9A9A9;
}

.cbl-header.filter { height:32px; }

.cbl-header-block
{
    width: 50%;
    float: left;
    padding: 5px 0;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #A9A9A9;
    color: #000;
}

.cbl-header-block-full {
    width: 100%;
    float: left;
    padding: 5px 0;
    text-align: center;
    cursor: pointer;
    color: #000;
}

.cbl-header-block.aucune
{
    width:calc(50% - 1px);
    width:-webkit-calc(50% - 1px);
    border-left: 1px solid #A9A9A9;
}

.check-box-list-scroll 
{
    overflow-y:scroll;
    width:99%;
    max-height:272px; /* 300px - 26px(blocks) - 2px(borders) */
}

.check-box-list
{
    margin: 5px;
    width: 95%; /* 190px / 200px = 0.95 */
}

.check-box-list td { padding: 5px 0; }

.check-box-list label
{
    font: -webkit-small-control;
    letter-spacing: normal;
    word-spacing: normal;
    font-size: 16px;
    text-transform: none;
    margin-left: 5px;
    display: inline-block;
    width: 90%;
}

.cbl_vide
{
    text-align: center;
    padding: 5px 0;
    border-top:1px solid #A9A9A9;
}

/* When opening upwards */
.check-box-list-contianer.open-up {
    bottom: 100%; /* positions it above the dropdown */
    top: auto;
    border-top: 1px solid #A9A9A9;
    border-bottom: none;
}

/* When opening downwards (default) */
.check-box-list-contianer.open-down {
    top: 100%; /* positions it below the dropdown */
    bottom: auto;
}