.calendar-section {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
    z-index: 9;
    height: calc(100vh - 174px);
    height: calc((var(--vh, 1vh) * 100) - 174px);
    width: 40%;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.calendar-section .custom-calendar-wrap {
    margin: 0;
    position: relative;
    width: 400px;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header {
    width: 100%;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box {
    display: inline-flex;
    align-items: center;
}
.calendar-previous-next-arrow-btn-box {
    margin-top: 10px;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
    font-size: 31px;
    line-height: 52px;
    color: #FFFFFF;
    margin: 0 10px 0 0;
    letter-spacing: 6.336px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Proxima-Nova-Extra-Bold';
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 5.632px;
    font-family: 'Proxima-Nova-Semi-Bold';
}
.fc-calendar-container {
    margin-top: 35px;
    position: relative;
}
.fc-calendar-container::-webkit-scrollbar-thumb {
    background-color: #fff !important;
}
.fc-calendar .fc-head {
    font-size: 18px;
    line-height: 20px;
    color: #FFFFFF;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Proxima-Nova-Extra-Bold';
}
.fc-calendar .fc-head,
.fc-calendar .fc-row {
    display: flex;
    justify-content: space-between;
    height: 60px;
    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: 18px;
    line-height: 35px;
    color: #FFFFFF;
    font-weight: 400;
}
.fc-calendar .fc-row > div.fc-today {
    background-color: #FCB034;
    border-radius: 100%;
}
.fc-calendar .fc-row > div.fc-today>.fc-date{
    color: #00234B;
}
.fc-calendar .fc-row > div.fc-content {
    border: 1px solid #FCB034;
    position: relative;
    border-radius: 100%;
}
.fc-calendar .fc-row > div.fc-content::after {
    content: '';
    height: 8px;
    width: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: #E7E5E1;
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translate(-50%, 0);
}
.fc-content-tooltip {
    position: absolute;
    display: none;
    padding: 8px;
    top: calc(100% + 23px);
    z-index: 1;
    left: 50%;
    min-width: 180px;
    text-align: center;
    background-color: #FCB034;
    margin-top: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    color: #00234B;
    font-weight: 400;
    transform: translate(-50%, 0%);
    border-radius: 0;
    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 #FCB034;
}
.calendar-previous-next-arrow-btn {
    width: 48px;
    height: 48px;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    border-radius: 0;
    background: transparent;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 48px;
}
.calendar-previous-next-arrow-btn{
    background-image: url(../images/arrow-transparent-btn-img.svg);
    margin-right: 15px;
}
.calendar-previous-next-arrow-btn:hover {
    transition: all 1s;
    background-image: url(../images/slick-slider-next-active-white-bg-icon.svg);
}
.calendar-previous-next-arrow-btn:first-child{
    transform: rotate(180deg);
}
.fc-weekday {
    display: none;
}
@media only screen and (max-width: 1400px) and (min-width: 1199px) {
    .calendar-section {
        width: 43%;
    }
}
@media only screen and (max-width: 1366px) {
    .fc-calendar-container{
        margin-top: 20px;
    }
}
@media only screen and (max-width: 1199px) {
    .calendar-section {
        width: 45%;
    }
}
@media only screen and (max-width: 992px) {
    .calendar-section {
        height: calc(100vh - 136px);
    }
}
@media only screen and (max-width: 767px) {
    .fc-content-tooltip {
        top: -70%;
        bottom: auto;
        transform: translate(-50%, -70%);
        min-width: 120px;
    }
    .calendar-section{
        height: auto;
        width: 100%;
        bottom: 0;
        top: auto;
        transform: unset;
        right: auto;
        left: 0;
        justify-content: start;
        padding: 40px 6% 100px;
    }
    .calendar-section .custom-calendar-wrap{
        width: 100%;
    }
    .fc-calendar .fc-row > div, .fc-calendar .fc-head > div{
        height: 33px;
        max-width: 33px;
    }
    .calendar-previous-next-arrow-btn{
        width: 32px;
        height: 32px;
        background-size: 32px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box {
        flex-direction: column;
        align-items: start;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header{
        display: flex;
        justify-content: space-between;
    }
    .fc-calendar .fc-head, .fc-calendar .fc-row{
        height: 48px;
    }
    .calendar-previous-next-arrow-btn{
        margin: 0;
    }
    .calendar-previous-next-arrow-btn#custom-next{
        margin-left: 15px;
    }
}
@media only screen and (max-width: 767px) and (max-height: 750px){
    .fc-calendar-container{
        height: 258px;
    }
}
@media only screen and (max-width: 767px) and (max-height: 700px){
    .fc-calendar-container{
        height: 198px;
        overflow-y: auto;
    }
}
@media only screen and (max-width: 380px){
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month{
        letter-spacing: 4px;
        font-size: 26px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year{
        font-size: 24px;
    }
}