.calendar-section {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    height: calc(100vh - 176px);
    width: 35%;
    padding: 20px;
    background: #231F2099;
    backdrop-filter: blur(12px);
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.calendar-section .custom-calendar-wrap {
    margin: 0;
    position: relative;
    width: 440px;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header {
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    /* width: 100%; */
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box::after {
    content: '';
    background-image: url(../images/small-border-img.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    display: block;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
    font-size: 38px;
    line-height: 40px;
    color: #FFFFFF;
    font-family: "Bellefair", serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
    font-size: 22px;
    line-height: 24px;
    color: #FFFFFF;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    margin: 0;
}
.fc-calendar-container {
    margin-top: 10px;
    position: relative;
}
.fc-calendar .fc-head {
    font-size: 16px;
    line-height: 33px;
    color: #FFFFFF;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.fc-calendar .fc-head,
.fc-calendar .fc-row {
    display: flex;
    justify-content: space-between;
    height: 45px;
    align-items: center;
}
.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
    float: left;
    height: 35px;
    max-width: 35px;
    width: calc(100%/7.2);
    text-align: center;
}
.fc-calendar .fc-row > div > span.fc-date {
    font-size: 16px;
    line-height: 33px;
    color: #FFFFFF;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}
.fc-calendar .fc-row > div.fc-today {
    background: #EAEBE8;
    border-radius: 50%;
    border: solid 1px #EAEBE8;
}
.fc-calendar .fc-row > div.fc-today > span.fc-date {
    color: #231F20;
}
.fc-calendar .fc-row > div.fc-content {
    border: 1px solid #EF3829;
    position: relative;
    border-radius: 50%;
}
.fc-calendar .fc-row > div.fc-content:hover {
    background: #EF3829;
}
.fc-content-tooltip {
    position: absolute;
    display: none;
    padding: 8px;
    bottom: -50px;
    z-index: 1;
    left: 50%;
    min-width: 180px;
    text-align: center;
    background-color: #EF3829;
    margin-top: 0;
    cursor: pointer;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    transform: translate(-50%, 0%);
    border-radius: 0;
    min-height: 40px;
    align-items: center;
    justify-content: center;
}
.fc-content-tooltip::after {
    content: ''; 
    position: absolute; 
    top: -10px; 
    left: 50%;
    transform: translate(-50%, 0);
    width: 0px; 
    height: 0px; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #EF3829;
}
.fc-content.tooltip-top .fc-content-tooltip {
    top: -55px;
    bottom: auto;
}
.fc-content.tooltip-top .fc-content-tooltip::after {
    top: auto;
    bottom: -9px;
    border-top: 10px solid #EF3829;
    border-bottom: none;
}
.calendar-previous-next-arrow-btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.calendar-previous-next-arrow-btn {
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    border: solid 1px #FCB31C;
	border-radius: 5px;
    background: transparent;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.calendar-previous-next-arrow-btn:first-child {
    margin-right: 15px;
}
.calendar-previous-next-arrow-btn:first-child::after {
    content: "\f053";
}
.calendar-previous-next-arrow-btn:last-child::after {
    content: "\f054";
}
.calendar-previous-next-arrow-btn::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 700;
	color: #FFFFFF;
	font-size: 20px;
	transition: all 1s;
}
.calendar-previous-next-arrow-btn:hover {
	background: #EF3829;
	border: solid 1px #EF3829;
}
.calendar-previous-next-arrow-btn:hover::after {
	color: #FFFFFF;
}

@media only screen and (min-width: 1800px) {
    .calendar-section {
        height: calc(100vh - 176px);
        padding: 30px 40px;
    }
    .calendar-section .custom-calendar-wrap {
        width: 650px;
    }
    .fc-calendar-container {
        margin-top: 30px;
    }
    .fc-calendar .fc-head {
        line-height: 46px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row {
        height: 66px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 50px;
        max-width: 50px;
    }
    .fc-calendar .fc-row > div > span.fc-date {
        line-height: 46px;
    }
}
@media only screen and (max-width: 1400px) and (min-width: 1199px) {
    .calendar-section .custom-calendar-wrap {
        width: 320px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 20px;
        line-height: 24px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        font-size: 14px;
        line-height: 16px;
    }
    .fc-calendar .fc-head, .fc-calendar .fc-row {
        height: 40px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 30px;
        max-width: 30px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row > div > span.fc-date {
        font-size: 12px;
        line-height: 28px;
    }
    .calendar-previous-next-arrow-btn {
        width: 34px;
        height: 34px;
    }
    .calendar-previous-next-arrow-btn::after {
        font-size: 16px;
    }
}
@media only screen and (max-width: 1199px) {
    .calendar-section {
        height: calc(100vh - 188px);
        width: 35%;
    }
    .calendar-section .custom-calendar-wrap {
        width: 260px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 20px;
        line-height: 24px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        font-size: 14px;
        line-height: 16px;
    }
    .fc-calendar .fc-head, .fc-calendar .fc-row {
        height: 40px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 30px;
        max-width: 30px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row > div > span.fc-date {
        font-size: 12px;
        line-height: 28px;
    }
    .calendar-previous-next-arrow-btn {
        width: 34px;
        height: 34px;
    }
    .calendar-previous-next-arrow-btn::after {
        font-size: 16px;
    }
}
@media only screen and (max-width: 992px) {
    .calendar-section {
        height: calc(100vh - 126px);
        width: 40%;
    }
    .calendar-section .custom-calendar-wrap {
        width: 220px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 20px;
        line-height: 24px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        font-size: 14px;
        line-height: 16px;
    }
    .fc-calendar .fc-head, .fc-calendar .fc-row {
        height: 40px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 30px;
        max-width: 30px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row > div > span.fc-date {
        font-size: 12px;
        line-height: 28px;
    }
    .calendar-previous-next-arrow-btn {
        width: 34px;
        height: 34px;
    }
    .calendar-previous-next-arrow-btn::after {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) {
    .calendar-section {
        position: initial;
        height: 100%;
        width: 100%;
        background: #231F20;
        padding: 40px 20px;
    }
    .calendar-section .custom-calendar-wrap {
        width: 100%;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month,
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        color: #FFFFFF;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 32px;
        line-height: 34px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        font-size: 16px;
        line-height: 18px;
    }
    .fc-content-tooltip {
        bottom: -74px;
        min-width: 100px;
    }
    .fc-calendar .fc-head, .fc-calendar .fc-row {
        height: 45px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 35px;
        max-width: 35px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row > div > span.fc-date {
        font-size: 16px;
        line-height: 33px;
    }
    .calendar-previous-next-arrow-btn {
        width: 44px;
        height: 44px;
    }
    .calendar-previous-next-arrow-btn::after {
        font-size: 20px;
    }
}