.cal-icon {
	display: inline-block;
	height: 16px;
	width: 20px;
	background-image: url(../images/icon-calender.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px 14px;
	vertical-align: text-bottom;
	cursor: pointer;
	margin: 0 0 2px 2px;
}

.cal-display {
	position:relative;
	display:inline;
	z-index: 1000;
}

.cal-container {
	display: table;
	font-size: 13px;
	background-color: rgba(255,255,255,0.9);
	position: absolute;
	top: -18px;
	left: 0;
	padding: 10px;
	width: 218px;
}

.cal-arrow-left {
	width: 0; 
	height: 0; 
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent; 
	border-right:8px solid var(--link); 
	position:relative;
	top:-17px ;
	left: 112px;
}

.cal-container .cal-header { 
	background-color: var(--link);
	color:#FFFFFF; 
	cursor:default; 
	font-weight:bold; 
	height: 34px; 
	position: relative; 
}

.cal-container .cal-header span { 
	display:inline-block; 
}

.cal-container .cal-button {
	width: 24px;
	text-align: center;
	position: absolute;
	height: 24px;
	margin: 5px;
	line-height:20px;
	cursor:pointer; 
}

.cal-container .cal-left-button {
	left: 0;
}
.cal-container .cal-right-button {
	right: 0;
}

.cal-container .cal-month-year { 
	width: 100%; 
	text-align: center; 
	line-height:34px; 
}

.cal-container table {
	border-collapse: collapse;
}

.cal-container td { 
	background-color:#FFFFFF; 
	padding:0px;
	color:#1E1E3C; 
	width:30px; 
	height:30px; 
	line-height:30px; 
	text-align:center; 
	border:1px solid #e6e6e6; 
	cursor:pointer; 
} 

.cal-container #days td {
	height: 26px;
	line-height: 26px;
	font-size: 90%;
	color: #1E1E3C;
	border: 1px solid #FFFFFF;
	cursor: default;
}

.cal-container #days td:not(:last-child) { 
	border-right:1px solid #fff; 
}

.cal-container .cal-today { 
	outline: 2px solid var(--link);
	outline-offset: -2px;
	color:#1E1E3C; 
	font-weight: bold;
}

.cal-container .cal-weekend { 
	background-color:#f9f9f9; 
	color:#1E1E3C; 
}

.cal-container .cal-selected { 
	color:#1E1E3C; 
	font-weight: bold;
	background-color:#e9e9e9;
}

.cal-container #cal-frame td span { 
	font-size:80%; 
	position:relative; 
}

.cal-container #cal-frame td span:first-child { 
	bottom:5px; 
}

.cal-container #cal-frame td span:last-child { 
	top:5px; 
}
.cal-container #cal-frame table.curr { 
	float:left;
} 
.cal-container #cal-frame table.temp { 
	position:absolute;
}