#table_creneau .indispo {
	background-color : var(--color-grey);
}

#table_creneau .dispo {
	background-color : var(--color-success-light);
}

#table_creneau .red {
	background-color : var(--color-error-light);
    cursor: not-allowed;
}

#table_creneau .busy {
	background-color:orange;
}


#table_box {
	position: relative;
}

#table_box .disabled,
#add_vacation.disabled {
	display:none;
}

.clear {
	clear:both;
}
#parameter_form input[type="time"],#parameter_form input[type="number"], .hour_open input[type="time"], #vacation_form input[type="date"]{
	display: block;
    width: 100%;
    height: 31px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.42857;
    color: #555;
    background-color: #F5F8F9;
    background-image: none;
    border: 1px solid #C7D6DB;
    border-radius: 3px;
    -webkit-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
}

#parameter_form .input-group input[type="time"]:first-child, #parameter_form .input-group input[type="number"]:first-child {
	border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

button[disabled].disabled:hover {
	border: 1px solid #d6d4d4;
	color: #777;
}

#table_creneau td {
	padding: 0 10px;
	border: solid 1px #d6d4d4;
	text-align: center;
	font-size:15px;
}

#table_creneau td:first-child {
	min-width:110px;
}

#table_creneau .page-order table td {
	padding:9px 5px;
}

#table_creneau td.selected {
	border: 3px solid #333!important;
}

.nav_buttons {
	display: flex;
	justify-content: space-between;
}

#nav_buttons .selected {
	opacity: .5;
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
} 

.right_column {
	background-color: #D6D4D4;
}

.clickable {
	padding: 10px;
	background-color: var(--color-primary-lightest);
}
.clickable:hover {
	cursor: pointer;
}
.clickable:hover b {
	text-decoration: underline;
}

.active_store {
	background-color: var(--color-success-lightest);
    color: var(--color-success-dark);
}

#table_dispo, #creneau_selected {
	margin-top: 1rem;
}

#table_dispo {
	overflow-x: auto;
	margin-bottom: 1rem;
}


#shop_selected {
	margin-bottom:0;
}

#creneau_day, #creneau_hour, #shop {
	font-size: 15px;
}

.light {
	color: #fff;
}

.background-light {
    background-color: #fff;
}

#creneau_selected.light {
	border-color: #fff;
}

#nav_buttons {
	margin-bottom: 10px;
    margin-top: 15px;
}

.tab-content .tab_padd_10 {
	margin-left:10px;
	width: calc(83.333334% - 10px);
}

.tab-content .store_list {
	padding-right: 15px;
    padding-left: 0;
}

.tab-content .store_list ul {
	padding-left:0;
	max-height: 375px;
    overflow-y: auto;
    overflow-x: hidden;
}

.tab-content .store_list li {
	list-style:none;
	list-style-type:none;
	padding: 8px;
    border-bottom: 1px solid #eaedef;
    cursor:pointer;
}

.tab-content .store_list li.active {
	color: #fff;
    background-color: #00aff0;
    border-color: #00aff0;
}

.tab-content #openingdays .store_name {
	color:#00aff0;
}

#openingdays form h3, #storelisting h3 {
	text-align:center;
}


#openingdays .hour_open input:disabled {
	color:#999;
}

#table_dispo_overlay {
	position: absolute;
    background: #FFF;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    display:none;
    opacity:0.9;
    background-image:url('../img/loader.gif');
    background-position:center center;
    background-repeat:no-repeat;
    background-size: 20%;
}

@media screen and (min-width:992px)
{
	#table_box {
		margin-bottom:1rem;
		padding-left: 0;
    	padding-right: 0;
	}
	
	#creneau_selected {
		margin-top:0;
	}
}

.table_legend {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.table_legend li {
	min-width: 135px;
	text-align: center;
 }
.table_legend span {
	display: block;
	background-color: var(--color-grey);
	color: #fff;
	text-transform: uppercase;
}

.table_legend .vacation {
	background-color:var(--color-error-light);	
}

.table_legend .busy {
	background-color:#f39c12;
}

.table_legend .dispo {
	background-color:var(--color-success-light);
}


@media screen and (max-width:600px)
{
	#table_creneau td {
		font-weight:normal;
		font-size:13px;
		line-height:16px;
	}
	
	#table_legend li {
		margin-right:5px;	
	}
	
	#table_legend {
		padding:5px 5px 0;
	}
	
	#table_legend ul {
		margin-bottom: 5px;
	}
	
}


#table_dispo::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

#table_dispo::-webkit-scrollbar-thumb {
	background: var(--color-primary-light);
	transition: background-color 0.2s;
}

#table_dispo::-webkit-scrollbar-thumb:hover {
	background: var(--color-primary);
}

#table_dispo::-webkit-scrollbar-thumb:active {
	background: var(--color-primary);
}

#table_dispo::-webkit-scrollbar-track {
	background: var(--color-primary-lightest);
}