/* Календарь */

.calendar-wrapper {
	width: 300px;
	margin: 0 auto;
	padding: 10px;
	border: 1px solid #dcdcff;
	border-radius: 5px;
	background: #fff;
}

table {
	clear: both;
	width: 100%;
	border: 1px solid #dcdcff;
	border-radius: 3px;
	border-collapse: collapse;
	color: #444;
}

td {
	height: 40px;
	text-align: center;
	vertical-align: middle;
	border-right: 1px solid #dcdcff;
	border-top: 1px solid #dcdcff;
	width: 14.28571429%;
}

thead td {
	border: none;
	color: #28283b;
	text-transform: uppercase;
	font-size: 15px;
}

td.not-current {
	color: #c0c0c0;
}

td.today {
	font-weight: 700;
	color: #000;
	font-size: 1.5em;
}

#btnPrev {
	float: left;
	margin-bottom: 10px;
}

#btnPrev:before {
	/* content: '\f104'; */
	content: '<';
	/* font-family: FontAwesome; */
	padding-right: 4px;
}

#btnNext {
	float: right;
	margin-bottom: 10px;
}

#btnNext:after {
	/* content: '\f105'; */
	content: '>';
	/* font-family: FontAwesome; */
	padding-left: 4px;
}

#btnPrev,
#btnNext {
	background: transparent;
	border: none;
	outline: none;
	font-size: 12px;
	color: #c0c0c0;
	cursor: pointer;
	font-family: sans-serif;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

#btnPrev:hover,
#btnNext:hover {
	color: #28283b;
	font-weight: bold;
}

.current {
	font-weight: 700;
	color: #3c99e1;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.current:focus,
.current:hover {
	font-size: 20px;
	font-weight: 700;
}

.today,
.future {
	color: #000;
}

.past {
	color: gray;
}

.selected {
	background-color: #eee;
	font-size: 20px;
	font-weight: 700;
}

td.not-available {
	color: #999999;
	cursor: not-allowed;
}

/*  ------------------------------------------------ */
