﻿/* breadcrumbs ----------------------------------------------------------------------------------------------------------------------------------------- */

#breadcrumbs{
	width: 100%;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

#breadcrumbs ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#breadcrumbs ul li{
	float: left;
	padding: 0px 6px 0px 0px;
	font-size: 13px;
	color: #c0c0c0;
}

#breadcrumbs ul li img{
	width: 10px;
}

#breadcrumbs ul li a{
	color: #13817C;
}

/* breadcrumbs ----------------------------------------------------------------------------------------------------------------------------------------- */


/* availability ----------------------------------------------------------------------------------------------------------------------------------------- */

.slots-outer{
	width: 100%;
	margin: 0px 0px 5px 0px;
	box-sizing: border-box;
}

.slots{
	width: 100%;
	padding: 10px 15px;
	box-sizing: border-box;
	text-align: center;
	background-color: #A4A2A3;
	color: #fff;
    transition: background 0.3s, transform 0.5s;
    -webkit-transition: background 0.3s, -webkit-transform 0.5s;
}

.slots-available{
	cursor: pointer;
	background-color: var(--template-color-light);
}

.slots-available:hover{
	background-color: var(--template-color-dark);
}

.slots-unavailable{
	text-decoration: line-through;
	color: #fff;
}

.hover{
	background-color: #32BEB9!important;
}

.appointment-date-col{
	width: 14.28%;
	float: left;
	padding: 0px 10px;
	box-sizing: border-box;
}

.appointment-date{
	width: 100%;
	margin: 0px;
	text-align: center;
	padding: 5px 5px;
	margin: 0px 0px 15px 0px;
    box-sizing: border-box;
    border: 1px solid #E4E4E4;
}

.appointment-date.selected{
	background-color: #f7f7f7;
}

.appointment-no-availability{
	display: none;
	width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 10px 15px;
	box-sizing: border-box;
	text-align: center;
	background-color: #A4A2A3;
	color: #fff;

}

/* availability ----------------------------------------------------------------------------------------------------------------------------------------- */


/* calendar ----------------------------------------------------------------------------------------------------------------------------------------- */

.calendar-container{
	width: 100%;
	position: relative;
	max-width: 400px;
	box-sizing: border-box;
	margin: 0px auto;
	padding: 0px 0px;
	border: 1px solid #ccc;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
}

.calendar-container-table{
	width: 100%;
	font-size: 13px;
	color: #555;
	border: 0px;
	display: table;
}

.calendar-container-table-left-button{
	width: 46px;
	text-align: center;
	border: 0px;
	border-right: 1px solid #ccc;
	padding: 0px 0px;
	line-height: 36px;
	font-size: 13px;
	display: table-cell;
	cursor: pointer;
}

.calendar-container-table-right-button{
	width: 46px;
	text-align: center;
	border: 0px;
	padding: 0px 0px;
	line-height: 36px;
	font-size: 13px;
	display: table-cell;
	cursor: pointer;
}

.calendar-container-table-today-button{
	width: 70px;
	text-align: center;
	border: 0px;
	border-right: 1px solid #ccc;
	padding: 0px 0px;
	line-height: 36px;
	display: table-cell;
	cursor: pointer;
}

.calendar-container-table-week-button{
	width: 90px;
	text-align: center;
	border: 0px;
	border-right: 1px solid #ccc;
	padding: 0px 0px;
	line-height: 36px;
	display: table-cell;
	cursor: pointer;
}

.calendar-container-table-date{
	text-align: center;
	border: 0px;
	border-right: 1px solid #ccc;
	padding: 0px 20px;
	line-height: 36px;
	display: table-cell;
	cursor: pointer;
}

.calendar-daily{
	display: none;
	position: absolute;
	left: -1px;
	right: -1px;
	top: -1px;
	background-color: #fff;
	overflow: hidden;
	border-radius: 3px; z-index: 1000;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
	box-shadow: 1px 1px 5px rgba(100,100,100,0.2);
}
.calendar-outer{
	position: relative;
}

.calendar{
	display: none;
	position: fixed;
	z-index: 999;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 280px;
	transform: translate(-50%,-50%);
	font-size: 13px;
    color: #555;
    background-color: #fff!important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	overflow: hidden;
	z-index: 999;
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	border-radius: 3px;
}

.calendar-table{
	border-collapse: collapse;
	width: 100%!important;
	min-width: 220px!important;
}

.calendar-table td, .calendar-table th{
	width: auto;
	padding: 10px 4px 8px 4px!important;
	text-align: center!important;
	vertical-align: middle!important;;
	border: 1px solid #dddddd;
	color: #545454;
	font-size: 13px;
}

.calendar-date-available:hover{
	background-color: #1E91CF;
	color: #fff!important;
	cursor: pointer;
}

.calendar-date-selected{
	background-color: #1E91CF;
	color: #fff!important;
}

.calendar-date-add{
	position: absolute;
	bottom: 0px;
	right: 0px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #f1f1f1 transparent;
    cursor: pointer;
}

.calendar-date-add:after{
	font-family: FontAwesome;
	position: absolute;
	content: '\f067';
	top: 14px;
	right: 3px;
	color: #fff;
}

.calendar-date{
	display: block;
	width: 100%;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
	padding: 3px 5px;
	box-sizing: border-box;
	margin: 2px 0px 0px 0px;
}

/* calendar ----------------------------------------------------------------------------------------------------------------------------------------- */


/* media queries ----------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 800px)
{
	.appointment-date-col{
		width: 100%;
		padding: 0px 0px;
	}
	.appointment-no-availability{
		display: block;
	}
	.slots-unavailable{
		display: none;
	}
}

/* media queries ----------------------------------------------------------------------------------------------------------------------------------------- */
