/*===============================================================

	Calendar

=================================================================*/
.calendar_container_all {
	margin-top: 15px;
}

.name_days_container {
	width: 100%;
	height: 30px;
}

.day_name {
	width: 99px;
	height: 30px;
	line-height: 30px;
	color: #666;
	text-align: center;
	float: left;
	margin-right: 6px;
	font-weight: 700;
    text-transform: uppercase;
}

.day_container {
	width: 99px;
	height: 62px;
	float: left;
	margin: 0 6px 6px 0;
	position: relative;
}

.day_container a {	
	width: 99px;
	height: 62px;
	display: block;
	float: left;
	background: url(../../images/sprite.png);
}

.day_grey a {
	background-position: -150px -60px;
}

.day_black a {
	background-position: 0px -270px;
}

.day_white a {
	background-position: 0px -60px;
}

.day_red a {
	background-position: -450px -60px;
}

.day_red a .day_number,
.day_red a .day_slots,
.day_red a .day_book,
.day_black a .day_number,
.day_black a .day_slots,
.day_black a .day_book {
	color: #fff;
}

.day_number {
	margin-left: 8px;
	height: 24px;
	margin-top: 4px;
	line-height: 24px;
	font-size: 20px;
	color: #999;
}

.day_book {
	line-height: 16px;
	color: #900;
	font-size: 12px;
	margin: 0 0 0 8px;
}

.day_slots {
	color: #00CC33;
	margin: 0 0 0 8px;
	font-size: 12px;
    line-height: 14px;
    position: absolute;
    bottom: 4px;
}

.cleardiv {
    clear: both;
}

.desc-curs {
    text-transform: uppercase;
    font-weight: 600;
}

#bookingForm textarea {
    height: 100px;
}

@media only screen and (max-width: 767px) {
    .name_days_container, .day_container.day_grey {
        display: none;
    }
    
    .day_name {
    	width: 84px;
    }
    
    .day_container {
    	width: 84px;
    	margin-right: 6px!important;
    }
    
    .day_container a {	
    	width: 84px;
    }
    
    .calendar-view .bg-body.p-10 {
        padding: 2rem !important;
    }
    
    .calendar_container_all {
        margin-top: 0;
    }
    
    .locatie_selector .btn {
        padding: 10px;
    }
}

h5.modal-title {
    font-size: 1.5rem;
}


/*===============================================================

	Preview

=================================================================*/
.box_preview_container_all {
	background-color: #fff;
	border: 2px dashed #999;
	position: fixed;
	z-index: 100;
	top: 200px;
	padding: 0 0 10px 0;
	max-width: 300px;
}

.box_preview_title {
	width: 200px;
	font-weight: 700;
	font-size: 18px;
	color: #333;
	padding: 10px 10px 0 10px;
}

.box_preview_slots_container {
	margin-top: 5px;
	width: 100%;
}

.box_preview_column {
	padding: 0 10px 0 0;
}

.box_preview_row {
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	border-bottom: 1px dotted #999;
}

 .booked_slot {
	 color:#F00;
}

.modal_loading {
	width:100px;
	height:100px;
	top:50%;
	margin-top:-50px;
	left:50%;
	margin-left:-50px;
	position:fixed;
	z-index:40;
}

.form-floating > label {
    line-height: 1.8;
}

select[name="calendar"] {
    padding: 0 0 0 4px;
    color: #333;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
    cursor: pointer;
}

select[name="calendar"]:focus {
    border-color: #CCC;
    background-color: #fff;
}

select[name="calendar"] option {
    padding: 10px;
    background: #fff;
    color: #333;
    font-size: 13px;
}

/* Optional: Hide the default arrow and use a custom one */
select[name="calendar"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px 20px;
    padding-right: 40px;
}