@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&display=swap');
.kal {
	max-width:380px;
	padding-bottom:10px;
	background-color: #022e57;
	border-radius:5px;
}
#idx-calendar {
    margin-top:25px;
    max-width: 380px;
    text-align: center;
    width: 100%;
	
} 
#idx-calendar div > ul {
    list-style: none ;
    background-color: #022e57;
    margin: 0;
    padding: 0 10px;
}
#idx-calendar #dayNames > ul {
    background-color:#022e57;
	
}
#idx-calendar ul li {
    color: #fff;
    float: left;
    font-family: 'trebuchet MS';
	font-size:11px;
}
#dayNames ul li {

    margin: 2% 0;
    padding: 3% 0;
    width: 14.2857%;
	color:#fff;
	margin-top:-10px;
	margin-bottom:-10px;
	text-transform: uppercase;
	
}
#daysNum ul li:hover {
    background-color: #fff;
	color:#022e57;
	border-radius:5px;
	font-size:11px;
	font-weight:bold;
}
#daysNum ul li {
    padding: 1% 0;
    width: 14.2857%;
	background-color: #022e57;
	margin-bottom:2px;
	height:21px;
}
#dayNames,#daysNum {
    clear: both;
    width: 100%;
}
#dayNames:after,#daysNum:after,#idx-calendar div > ul:after  {
    content: "";
    display: table;
    clear: both;
}
#idx-calendar div > ul li:first-child {
    color: red;
    font-weight: bold;
	
}
#idx-calendar li.dayNow {
    color: #022e57 !important;
    font-weight: bold;
    background-color:#fff;
	border-radius:5px;
	font-size:11px;
    position: relative;
    z-index: 2;
	font-family:'trebuchet MS';
	padding-bottom:2.5%;
}
.monthNow {
    color: #fff;
    font-family: 'trebuchet MS';
    text-align: left;
}
#monthNow {
    background-color:#022e57;
    font-family: 'trebuchet MS';
    font-weight: bold;
    color: #fff;
    padding: 5px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing:3px;
	border-top-right-radius:7px;
	border-top-left-radius:7px;
}
#calendar-control {
    position: relative;
}
#nextMonth, #prevMonth {
    transition:0.5s;
    background-color: none;
    color: #FFFFFF;
    font-family: 'trebuchet MS';
    height: 100%;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: -8px;
    width: 60px;
}
#prevMonth{
    left: 0;            
}
#prevMonth:before, #nextMonth:before {
    background-color:#022e57;
    
    transition:0.5s;
    border-right: 2px solid #fff;
    border-top: 2px solid  #fff;
    content: "";
    display: block;
    height: 15px;
    left: 22px;
    position: relative;
    top: 18px;
    transform: rotate(45deg);
    width: 15px;
}
#prevMonth:before{
    transform: rotate(-135deg);
}
#nextMonth:hover, #prevMonth:hover{
    background-color: transparent;
}
#nextMonth:hover:before, #prevMonth:hover:before{
    border-radius: 0%;
}