.calendar-section {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    height: 100vh;
    width: 35%;
    padding: 20px;
    background: #231F2099;
    backdrop-filter: blur(12px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.calendar-section .custom-calendar-wrap {
    margin: 0;
    position: relative;
    width: 400px;
    z-index: 2;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
}
.calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box {
    width: 100%;
}
.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: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin: 0 0 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: "Reddit Sans", sans-serif;
    font-weight: 700;
    margin: 0;
}
.fc-calendar-container {
    margin-top: 10px;
    position: relative;
}
.fc-calendar .fc-head {
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.fc-calendar .fc-head,
.fc-calendar .fc-row {
    display: flex;
    justify-content: space-between;
    height: 58px;
    align-items: center;
}
.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
    float: left;
    height: 44px;
    max-width: 44px;
    width: calc(100%/7.2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-calendar .fc-row > div > span.fc-date {
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}
.fc-calendar .fc-row > div > span.fc-weekday {
    display: none;
}
.fc-calendar .fc-row > div.fc-content {
    border: 1px solid #3397B9;
    border-radius: 50%;
    position: relative;
}
.fc-calendar .fc-row > div.fc-content:hover {
    background: #A90533;
    border: solid 1px #A90533;
}
.fc-calendar .fc-row > div.fc-today {
    background: #B19672;
    border-radius: 50%;
    border: solid 1px #B19672;
}
.fc-content-tooltip {
    position: absolute;
    display: none;
    padding: 8px;
    bottom: -50px;
    z-index: 1;
    left: 50%;
    min-width: 180px;
    text-align: center;
    background-color: #A90533;
    margin-top: 0;
    cursor: pointer;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.025rem;
    transform: translate(-50%, 0%);
    border-radius: 0;
    min-height: 40px;
    align-items: center;
    justify-content: center;
}
.fc-calendar .fc-row > div.fc-content:hover .fc-content-tooltip {
    display: flex;
}
.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 #A90533;
}
.calendar-previous-next-arrow-btn-box {
    display: flex;
    align-items: center;
}
.calendar-previous-next-arrow-btn-box .calendar-previous-next-arrow-btn {
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: transparent;
    border: solid 1px #FFFFFF;
    outline: 0;
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
    transition: all 0.5s;
}
.calendar-previous-next-arrow-btn-box .calendar-previous-next-arrow-btn:hover {
    background: #A90533;
}
.calendar-previous-next-arrow-btn-box .calendar-previous-next-arrow-btn:first-child {
    margin-right: 10px;
}
.calendar-previous-next-arrow-btn-box .calendar-previous-next-arrow-btn i {
    font-size: 20px;
    color: #FFFFFF;
}

@media only screen and (min-width: 1800px) {
    .calendar-section .custom-calendar-wrap {
        width: 600px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header {
        margin-top: 0;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 1400px) and (min-width: 1199px) {
    .calendar-section {
        padding: 20px 60px 20px 20px;
    }
}
@media only screen and (max-width: 1199px) {
    .calendar-section {
        width: 40%;
        padding: 20px 60px 20px 20px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-month {
        font-size: 26px;
        line-height: 30px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header .custom-month-year-box .custom-year {
        font-size: 16px;
        line-height: 20px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row > div > span.fc-date {
        font-size: 12px;
        line-height: 12px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row {
        height: 48px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 34px;
        max-width: 34px;
    }
}
@media only screen and (max-width: 767px) {
    .calendar-section {
        position: initial;
        height: 100%;
        width: 100%;
        background: linear-gradient(266.41deg, #860026 18.5%, #A90533 49.7%);
        padding: 20px;
    }
    .calendar-section .custom-calendar-wrap .custom-inner .custom-header {
        margin-top: 0;
    }
    .fc-calendar .fc-head {
        font-size: 16px;
        line-height: 16px;
    }
    .fc-calendar .fc-head,
    .fc-calendar .fc-row {
        height: 58px;
    }
    .fc-calendar .fc-row > div,
    .fc-calendar .fc-head > div {
        height: 44px;
        max-width: 44px;
    }
    .fc-calendar .fc-row > div > span.fc-date {
        font-size: 16px;
        line-height: 16px;
        color: #FFFFFF;
    }
    .fc-calendar .fc-row > div.fc-content:hover {
        background: #B19672;
        border: solid 1px #B19672;
    }
    .fc-content-tooltip {
        background: #B19672;
        top: -70%;
        bottom: auto;
        transform: translate(-50%, -70%);
        min-width: 120px;
    }
    .fc-content-tooltip::after {
        top: auto;
        bottom: -9px;
        transform: translate(-50%, 0);
        border-top: 10px solid #B19672;
        border-bottom: 0;
    }
}