﻿/*!
 * MonthYearPicker JavaScript Library v1.0.1
 * http://www.kvcodes.com/
 *  http://www.kvcodes.com/2018/04/simple-javascript-month-year-picker
 * Dual licensed under the MIT or GPL Version 2 licenses.
 */

#CalendarControlIFrame {
	display: none;
	left: 0px;
	position: absolute;
	top: 0px;
	height: 250px;
	width: 250px;
	z-index: 99;
}

#CalendarControl {
	position: absolute;
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	display: none;
	z-index: 100;
	border: 1px solid #2196F3;
}

#CalendarControl table {
	font-family: arial, verdana, helvetica, sans-serif;
	font-size: 8pt;
}

#CalendarControl th {
	font-weight: normal;
}

#CalendarControl th a {
	font-weight: normal;
	text-decoration: none;
	color: #000;
	padding: 1px;
}

#CalendarControl td {
	text-align: center;
	
}

#CalendarControl .cal_header {
	position: relative;
	text-align: center;
	background: #2196F3;
	padding: 0.5rem 0.25rem;
	margin: -0.5rem -0.5rem 0;
}

#CalendarControl .weekday {
	background-color: white;
	color: #000;
	border: 1px solid white;
	border-radius: 2px;
}

#CalendarControl .weekend {
	background-color: white;
	color: #000;
	border: 1px solid white;
	border-radius: 2px;
}

#CalendarControl .current {
	border: 1px solid #2196F3;
	border-radius: 2px;
	background-color: white;
	color: #2196F3;
}

#CalendarControl .weekday, #CalendarControl .weekend, #CalendarControl .current {
	cursor: pointer;
	line-height: 25px;
	padding: 8px;
}

#CalendarControl .cl_header {
	text-align: center;
	background: #eceeed;
	line-height: 25px;
}

#CalendarControl .weekday:hover, #CalendarControl .weekend:hover, #CalendarControl .current:hover {
	color: black;
	background: #E3F2FD;
}

#CalendarControl .previous, #CalendarControl .next {
	display: block;
	cursor: pointer;
	position: relative;
	outline: none;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: no-repeat center / 60%;
	font-size: 0;
}

#CalendarControl .previous {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path d="M15 8.25H5.87l4.19-4.19L9 3 3 9l6 6 1.06-1.06-4.19-4.19H15v-1.5z" fill="white"/></svg>');
}

#CalendarControl .next {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path d="M9 3L7.94 4.06l4.19 4.19H3v1.5h9.13l-4.19 4.19L9 15l6-6z" fill="white"/></svg>');
}

#CalendarControl .previous a, #CalendarControl .next a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	display: block;
	width: 100%;
	height: 100%;
}

#CalendarControl .title {
	padding: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.5rem;
	font-weight: bold;
	color: white;
	text-align: center;
	cursor: default;
}

#CalendarControl .empty {
	background-color: #d1e3f9;
}

.CalenderButton {
	margin-top: 0px;
}

#dpMonthYear {
	width: calc(100% - 30px);
}
