body {
	position: relative;
}
.vdp {
	cursor: default;
	color: #737980;
	width: 175px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 12px;
	font-family: verdana, "Trebuchet MS", arial, helvetica, sans-serif;
	padding: 5px;
	float: left;
}
.vdp *{
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.vdp select {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	width: calc( 100% + 30px );
	margin: 0;
	padding: 0 50px 0 0;
	border: none;
	background: none transparent;
	border-radius: 0;
	display: block;
	text-overflow: ellipsis;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	box-sizing: border-box;
	overflow: hidden;
}
.vdp select:focus {
	outline: none;
}
.vdp select::-ms-expand {
	display: none;
}
.vdp-input {
	cursor: text;
}
.vdp-month-prev {
	cursor: pointer;
	position: absolute;
	left: 8px;
	top: 5px;
	font-size: 10px;
}
.vdp-month-next {
	cursor: pointer;
	position: absolute;
	right: 8px;
	top: 5px;
	font-size: 10px;
}
.vdp-head-year-wrapper,
.vdp-head-month-wrapper {
	display: inline-block;
	box-sizing: border-box;
	width: 55px;
	overflow: hidden;
	position: relative;
}
.vdp-head-month-wrapper {
	width:75px;
}
.vdp-head-year-wrapper::after,
.vdp-head-month-wrapper::after {
	position: absolute;
	right: 4px;
	top: 0;
	width: 10px;
	height: 15px;
	content: '›';
	transform: rotate( 90deg );
	pointer-events: none;
	font-size: 120%;
}
.vdp-month,
.vdp-daynames {
	font-weight: bold;
}
.vdp-cell {
	position: relative;
}
.vdp-date:hover,
.vdp-date-selected {
	font-size: 12px;
	font-weight: bold;
	text-decoration: underline;
}
.vdp-date-range {
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
}
.vdp-date-reset {
	position: absolute;
	top: -5px;
	right: -5px;
	height: 11px;
	width: 11px;
	font-size: 10px;
	line-height: 10px;
	border-radius: 50%;
	border: 1px solid;
	background: white;
	z-index: 9;
}
.vdp-date:hover {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.vdp-date-after,
.vdp-date-before,
.vdp-date-disabled {
	color: #bfc4c9;
}
.vdp-row {
	text-align: center;
}
.vdp-cell {
	line-height: 17px;
	display: inline-block;
	width: 25px;
	text-align: center;
}
.vdp-date {
	cursor: pointer;
}
.vdp-wrapper {
	position: relative;
	display: inline-block;
}
.vdp-layer {
	opacity: 0;
	max-height: 0;
	max-width: 0;
	overflow: hidden;
	transition: opacity 0.35s linear, max-height 0.45s 0.1s linear, max-width 0.45s 0.1s linear;
	position: absolute;
	z-index: 5;
	pointer-events: none;
}
.vdp-layer.vdp-visible{
	opacity: 1;
	max-height: none;
	max-width: none;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	background-image: linear-gradient(#fff, #ededed);
	pointer-events: inherit;
}
.vdp-layer.vdp-visible:before,
.vdp-layer.vdp-visible::before{
	display: inline-block;
	position: absolute;
	top: -7px;
	left: 6px;
	content: "";
	border-bottom: 7px solid rgba(0, 0, 0, 0.2);
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
}
.vdp-layer.vdp-visible:after,
.vdp-layer.vdp-visible::after{
	display: inline-block;
	position: absolute;
	top: -6px;
	left: 7px;
	content: "";
	border-bottom: 6px solid #ffffff;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
