
.calendar{
	width: 300px;
	/*height: 600px;*/
	/*padding: 2em 0;	*/
	background-color: #fafafa;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.calendar .btn{
	cursor: pointer;
	margin: 0.5em 0;
	outline: none;
}


    .calendar .calendar-header {
        position: relative;
        width: 100%;
        padding: 0;
        background-color: #0c396d;
        /*padding: 0 0.5em;*/
    }

.calendar .calendar-header .title{
	text-align: center;
    padding: 2px;
}

    .calendar .calendar-header .title h2 {
        font-size: 19px;
        color: #fff;
        padding: 10px;
        font-weight: 400;
        margin: 0px;
    }

.calendar .calendar-header .year-spinner{
	position: absolute;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	right: 5px;
	bottom: 5px;
	width: 20%;
	height: calc(100% - 2em);
	padding: 0.5em 0;
	/*background-color: grey;*/
}

.calendar .calendar-header .year-spinner .years-container{
	position: relative;
	overflow: hidden;
	width: 90%;
	height: 60px;
	/*background-color: red;*/
	border-top: 1px #eaeaea solid;
	border-bottom: 1px #eaeaea solid;
}

.calendar .calendar-header .year-spinner .years-container *{
	transition: 0.5s;
}

.calendar .calendar-header .year-spinner .years-container .current-year{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px!important;
	color: #fff;
}

.calendar .calendar-header .year-spinner .years-container .next-up{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50% , 0);
	/*font-size: 24px;*/
}

.calendar .calendar-header .year-spinner .years-container .previous-down{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.calendar .calendar-header .year-spinner .years-container .buffer-top{
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.calendar .calendar-header .year-spinner .years-container .buffer-bottom{
	position: absolute;
	top: 120%;
	left: 50%;
	transform: translate(-50%, 120%);
}


.calendar .calendar-header .year-spinner h3{
	text-align: center;
	font-size: 16px;
	padding: 0;
	margin: 0;
	color: #e1e1e1;
}

.calendar .calendar-header .months-container{
	position: absolute;
	left: 0;
	bottom: 0;
	width: calc(80% - 1em);
	padding: 1em 0.5em;
	/*background-color: green;*/
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-row-gap: 5px;
	cursor: pointer;
}

.calendar .calendar-header .months-container p{
	font-size: 9px;
	text-transform: uppercase;
	font-weight: bold;
	grid-column: span 2;
	/*background-color: red;*/
	color: #e1e1e1;
	margin: 2px 0 0 0;
	justify-self: center;
	/*transform: scale(1);*/
	transition: 0.2s;
}

.selected-month{
	transform: scale(2);
	line-height: 9px;
	color: #fff!important;
	font-weight: bold;
	/*transition: 0.5s;*/
}

.calendar .calendar-body{
	/*padding: 0 0.5em;*/
	height: 260px;
}

    .calendar .calendar-body .days-header {
        display: grid;
        background-color: #e6e6e6;
        grid-template-columns: repeat(7, 1fr);
        /*border-bottom: 1px #eaeaea solid!important;*/
    }

    .calendar .calendar-body .days-header p {
        font-size: 14px;
        text-align: center;
        color: #000000;
        margin: 0px;
        padding: 6px;
    }


.calendar .calendar-body .days-body{
	margin-top: 10px;
	display: grid;
	/*grid-template-columns: repeat(7, 1fr);*/
	grid-template-rows: repeat(5, 30px);
	grid-row-gap: 5px;
	cursor: pointer;
}

.calendar .calendar-body .days-body .days-body-row{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

.calendar .calendar-body .days-body .day{
	text-align: center;
	justify-self: center;
	width: 30px;
	/*background-color: #00ff00;*/
	border-radius:18px;
}

.calendar .calendar-body .days-body .day p{
	padding: 0;
	margin: 0;
	line-height: 28px;
	color: #000000;
	border-radius: 18px;
}
.day p {
    border: 1px solid;
}
.selected-day{
	border: 1px #26bfb5 solid;
	background-color: #26bfb5;
	opacity: /*0.5*/;
	transition: 0.5s;
	color: #fff!important;
    border-radius:18px !important;
}

.selected-p{
	transition: 0.5s;
	color: #fff!important;
}

.current-day-block{
	background-color: #76b041;
}

.current-day{
	color: #fff!important;
}

.calendar .calendar-footer {
    background-color: #0c396d;
    padding: 4px 12px;
}

.calendar .calendar-footer .options,
.calendar .calendar-footer .next-prev{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.calendar .calendar-footer .options i{
	padding: 0;
}

    .calendar .calendar-footer .btn {
        background-color: #fafafa;
        color: #000000;
        font-size: 12px;
        padding: 3px 7px;
        border-radius: 2px;
        margin: 3px 5px;
    }

.calendar .calendar-footer .options .cancel-btn{
	margin-left: auto;
}
.calender_land {
    position: absolute;
    top: 0px;
    width:100%;
}
    .calender_land .prev-btn {
        position: absolute;
        top: 8px;
        color: #fff;
        font-size: 18px;
        left: 15px;
    }
    .calender_land .next-btn {
        position: absolute;
        top: 8px;
        color: #fff;
        font-size: 18px;
        right: 15px;
    }
.hide_show_cal {
    position: absolute;
    left: 1px;
    top: 80px;
    display:none;
    z-index:9;
}
.calender_date_change{
    position:relative;
    cursor:pointer;
}

#loading_sec {
    background-color: #8ea106;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100px;
    width: 40px;
    margin-top: -50px;
    margin-left: -20px;
}

.object_loader {
    width: 40px;
    height: 4px;
    margin-bottom: 10px;
    background-color: #e82121;
    -webkit-animation: animate 0.8s infinite;
    animation: animate 0.8s infinite;
}
/*@-webkit-keyframes animate {

    50% {
        -ms-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes animate {
    50% {
        -ms-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}*/

#object_two {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#object_three {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}







