.calendar-view .features-options.active {
    background: #006498;
}

    .calendar-view .features-options.active .icon-calendar:before {
        color: #ffffff;
    }

.calendar-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.calendar-content-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    height: 650px;
}

.calendar-container {
    /*width: 59%;*/
    width: 760px;
    margin-right:48px;
}

.calendar-month-changer,
.calendar-month-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-month-changer {
    margin-bottom: 30px;
}

.previous-month,
.next-month,
.return-on-current-month {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f1f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

    .previous-month svg,
    .next-month svg,
    .return-on-current-month svg {
        display: block;
    }

.calendar-main-body .tooltip-custom {
    text-transform: capitalize;
    width: 145px;
    height: 24px;
    top: -30px;
    right: -48px;
    text-transform: capitalize;
    width: 145px;
    height: 24px;
    padding: 7px 0;
}

.return-on-current-month:hover .tooltip-custom {
    display: block;
}

.month-wrapper {
    border-radius: 25px;
    background-color: #f1f3f4;
    padding: 1.2px 15px;
    display: inline-block;
    margin: 0 16px;
    color: #333333;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
}

    .month-wrapper strong {
        font-weight: 600;
        margin-right: 4px;
    }

.return-on-current-month {
    margin-right: 16px;
}

.calendar-table {
    text-align: center;
}

    .calendar-table th {
        color: #333333;
        font-size: 10px;
        letter-spacing: 0;
        line-height: 13px;
        text-align: center;
        font-weight: 400;
        padding-bottom: 8px;
        text-transform: uppercase;
    }

    .calendar-table td {
        vertical-align: top;
        width: 108px;
        max-width: 108px;
        height: 95px;
        border: 1px solid #c2c2c2;
        background-color: #ffffff;
        color: #333333;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 18px;
        text-align: left;
    }

        .calendar-table td .calendar-date {
            text-align: center;
            padding-top: 5px;
        }

        .calendar-table td.current-day {
            background-color: #f3fbff;
            font-weight: bold;
        }

        .calendar-table td.not-in-this-month {
            background-color: #f1f3f4;
        }

.calendar-events {
    border-radius: 2px;
    background-color: #dddddd;
    height: 14px;
    width: 94.4%;
    color: #333333;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 13px;
    text-transform: capitalize;
    padding: 1px 3px;
    margin: 0 auto;
    margin-bottom: 4px;
}

.calendar-text-ellpsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: inline-block;
}

.calendar-table td.current-day .calendar-events {
    background-color: #ffffff;
    box-shadow: 0 0 3px 0 rgba(164, 170, 177, 0.5);
}

.more-events-div {
    width: auto;
    display: inline-block;
    margin-left: 3px;
}
/* calendar-content */
.calendar-content {
    padding: 36px 0;
}

.current-date-details {
    border-radius: 2px;
    margin-bottom: 49px;
    position:relative;
}
.current-date-details:after {
    content: '';
    position: absolute;
    bottom: -23.5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #C2C2C2;
}
.current-date-details:last-child:after {
    width:0;
    height:0;
}

.current-date-details-wrapper {
    height: 574px;
    overflow-y: auto;
}

.calendar-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
}

.meeting-details-wrapper {
    /*padding: 12px 16px 14px 0;*/
}

.calendar-current-date {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 14px;
}

.current-date-details h4 {
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 19px;
    margin-bottom: 6px;
}

.meeting-details {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 9px;
}

.meeting-time-details .meeting-time, .meeting-details li {
    position: relative;
    color: #333333;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 15px;
    margin-right: 13px;
}

.meeting-details li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background: #cfd1d0;
}

.meeting-time-details .meeting-time:last-child, .meeting-details li:last-child {
    margin-right: 0;
}

.meeting-details li:last-child:after {
    height: 0;
    width: 0;
}

.meeting-city {
    color: #333333;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 13px;
    margin-bottom: 12px;
}

.meeting-details .seats-not-available {
    color: #e20000;
}

.meeting-details .seats-available {
    color: #677900;
}

.enrollment-details-wrapper {
    /*padding: 14px 16px 14px 0;*/
}

.meeting-agenda p, .meeting-agenda {
    color: #333333;
    font-size: 1em;
    letter-spacing: 0;
    line-height: 18px;
}

.meeting-time {
    margin-bottom: 6px;
}

.meeting-time-details {
    margin-bottom: 6px;
}

.more-detail-div {
    display: none;
    text-align: left;
}

.more-detail-div.active {
    margin-top: 12px;
    display: block;
}

.more-detail-div h5 {
    color: #333333;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.43px;
    line-height: 13px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.enrollment-type {
    color: #006498;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    text-decoration: underline;
}

.more-details-btn {
    margin-top: 12px;
    color: #006498;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
    text-transform: capitalize;
    padding: 0;
    text-decoration: underline;
}

.show-more-detail.in-active {
    display: none;
}

.less-details-btn {
    display: none;
}

    .less-details-btn.active {
        display: inline-block;
        text-decoration: underline;
    }

.within-course li {
    margin-bottom: 4px;
}

    .within-course li a {
        color: #006498;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 18px;
        text-decoration: underline;
    }

.has-sessions {
    cursor: pointer;
}

.calendar-sessions {
    width: 39%;
}

.session-instructors {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 16px;
}

.instructor {
    margin-bottom: 5px;
}
/* calendar-content */
/* Calendar Responsive */
@media only screen and (max-width: 1023.98px) {
    .calendar-container {
        display: none;
    }

    .calendar-sessions {
        width: 100%;
    }
}

@media only screen and (max-width: 767.98px) {
    .catalog-sec h1 {
        font-size: 16px;
        font-weight: 700;
    }

    .calendar-current-date {
        color: #000000;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 17px;
    }
    .current-date-details {
        margin-bottom: 42px;
    }
    .current-date-details:after {        
        bottom: -10.5px;
    }
    .current-date-details h4 {
        color: #000000;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 13px;
    }


    .meeting-time-details .meeting-time {
        color: #4d4d4d;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 11px;
    }

    .meeting-agenda {
        color: #262626;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 13px;
        padding-right: 10px;
    }

    .more-detail-div h5 {
        /*color: #717171;
        font-size: 7px;*/
        font-weight: bold;
        letter-spacing: 0.3px;
        line-height: 8px;
    }
    .meeting-city {
        font-size:11px;
        line-height:12px;
    }
    .enrollment-type {
        color: #006498;
        font-size: 11px;
        letter-spacing: 0;
        line-height: 12px;
        text-decoration: underline;
    }

    .within-course li a {
        color: #006498;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 12px;
    }

    .expanded-buttons {
        text-align: right;
    }

    .more-details-btn {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 11px;
        margin-top: 0;
    }
}

/* Calendar Responsive */

.user-calendar-modal {
    position:fixed;
    z-index:13;
}
    .user-calendar-modal .modal-container {
        height: auto;
        width: 956px;
    }
    .user-calendar-modal .scrollable-height {
        max-height: unset;
        overflow-y: auto;
        overflow-x: visible;
        padding-right: 0;
        padding-top: 3px;
    }
    .user-calendar-modal .calendar-table {
        width:100%;
    }
    .user-calendar-modal .calendar-main-body .tooltip-custom {
        top: 34px;
    }
    .user-calendar-modal .calendar-table td .calendar-events {
        position: relative;
    }
    .user-calendar-modal .calendar-events .tooltip-custom {
        right: auto;
        left: 0;
        height:auto;
    }
.calendar-events.has-sessions:hover .tooltip-custom {
    display: block;
    z-index: 2;
    width: 118px;
    padding: 7px;
}
