/* Calendar CSS START */
.calendar-full-wrapper {
	display: none;
	}
	.calendar-img {
	cursor: pointer;
    width: 22px;
    position: absolute;
    right: 175px;
    top: 61px;
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
}
.calendar-triangle {
    width: 0px;
    height: 0px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #e9e9e9;
    position: absolute;
    top: 100px;
    right: 165px;
    z-index: 2;
    /* content: ''; */
    overflow: visible;
}
.calendar-box {
    background: #f4f4f4;
    position: absolute;
    right: 145px;
    height: 500px;
    /* padding: 20px; */
    top: 120px;
    width: 400px;
    overflow-y: scroll;
}
.calendar-wrap:hover {
background: #dcedf9;
}
.calendar-heading {
    border-bottom: 1px solid #ccc;
    padding: 20px 20px 0px;
    background: #e9e9e9;
}
.calendar-heading span {
    display: inline-block;
    margin-right: 35px;
    font-weight: 700;
}
.calendar-heading span:first-child {
    color: #007cc3;
    border-bottom: 2px solid #df9926;
}
.calendar-wrap {
    padding: 20px;
}
.calendar-wrap:not(:last-child) {
    border-bottom: 1px solid #ccc;
}
.calendar-para label {
    font-weight: 700 !important;
    font-size: 14px;
    text-transform: uppercase;
}
.calendar-cta {
    font-size: 16px !important;
    font-weight: 500;
	color: #000 !important;
}	
	
@media screen and (max-width:767px) {
	.calendar-box { 
    position: fixed;
    right: 0;
    height: 100%; 
    top: 0;
    width: 100%;
    overflow-y: scroll;
    z-index: 9;
}
.calendar-close {
    position: absolute;
    right: 15px;
    font-size: 30px;
    top: 0;
    color: #007cc3;
    border: 0;
    background: none;
}
}
	/* Calendar CSS END */