
    .calendar-month-heading {
        font-size: 1.5em;
        color: var(--c-blue);
        padding-left: 1em;
        margin-bottom: 0.5em;
    }
    .toph-calendar {
        padding: 1em;
        border: 1px solid var(--c-blue);
        border-radius:1.2em;
        background: var(--c-light);
    }
    .toph-calendar > .heading-cont {
        display: grid;
        grid-template-columns: repeat(7, calc(100%/7));
        margin-bottom: 1em;
    }
    .toph-calendar > .body-cont {
        display: grid;
        grid-template-columns: repeat(7, calc(calc(100%/7) - 0.88em));
        grid-gap: 1em
    }
    .toph-calendar > .heading-cont > .days {
        border: 1px solid var(--c-blue);
        border-top: 0px;
        border-left: 0px;
        padding: 1em;
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--c-blue);
        color: var(--c-white);
        font-size: 0.8em;
        text-transform: uppercase;
        font-weight: bold;
    }
    .toph-calendar > .heading-cont > .days:first-of-type {
        border-radius: 1em 0em 0em 1em;
    }
    .toph-calendar > .heading-cont > .days:last-of-type {
        border-radius: 0em 1em 1em 0em;
    }
    .toph-calendar > .body-cont > .dates {
        padding: 1em;
        width: 100%;
        min-height: 140px;
        color: var(--c-orange);
        background: var(--c-white);
        transition: transform 100ms ease-in-out, background 150ms ease-in-out, filter 150ms ease-in-out;
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        cursor: pointer;
        border-radius: 1em;
        box-shadow: 3px 3px 3px 0px rgba(0 0 0 / 5%);
    }
    .toph-calendar > .body-cont > .dates.prev-dates,
    .toph-calendar > .body-cont > .dates.next-dates {
        color: var(--c-dark-gray);
        background: var(--c-light-gray);
    }
    .toph-calendar > .body-cont > .dates.today {
        border: 1px solid var(--c-blue);
    }
    .toph-calendar > .body-cont > .dates:hover {
        box-shadow: 3px 3px 3px 0px rgba(0 0 0/10%);
        transform: scale(103%);
        filter: brightness(105%);
        z-index: 2;
    }
    .toph-calendar > .body-cont > .dates > .date-badge {
        position: absolute;
        top: 0em;
        right: 0.3em;
        margin-top:-0.6em;
    }
    .toph-calendar > .body-cont > .dates > .date-badge > .badge-near-due,
    .toph-calendar > .body-cont > .dates > .date-badge > .badge-past-due {
        display: inline-block;
        width: 0.8em;
        height: 0.8em;
        border-radius: 1em;
        margin-left: 0.1em;
        animation: pulse 1s ease-out infinite;
    }
    .toph-calendar > .body-cont > .dates > .date-badge > .badge-near-due {
        background: var(--c-orange);
    }
    .toph-calendar > .body-cont > .dates > .date-badge > .badge-past-due {
        background: var(--c-red);
    }
    .toph-calendar > .body-cont > .dates > .date-label {
        position: absolute;
        top: 0em;
        right: 0.3em;
        font-size: 2em;
        font-weight: 100;
    }
    .toph-calendar > .body-cont > .dates.today > .date-label {
        font-size: 2em;
        color: var(--c-blue);
    }

    .date-content {
        display: inline-block;
        align-items: center;
        text-transform: capitalize;
        font-size: 0.7em;
        margin-bottom: 2px;
        white-space:nowrap;
        max-width: calc(90% - 6px);
        text-overflow: ellipsis;
        overflow: hidden;
        float:left;
        position: relative;
        margin-left: 6px;
    }

    .toph-calendar > .body-cont > .dates:hover .date-content{

        text-overflow: none;
        overflow: none;
        max-width: unset;
    }

     .date-content > .text-content {
        color: var(--c-blue);
        padding: 0.2em 0.3em;
     }
     .toph-calendar > .body-cont > .dates:hover .date-content > .text-content {
        background: var(--c-white);
        margin-bottom: 0.5em;
     }

    .date-content > .status-dot {
        display: inline-block;
        height: 6px;
        width: 6px;
        border-radius: 6px;
    }
    .date-content > .status-dot.status-canceled{
        background: var(--c-red);
    }
    .date-content > .status-dot.status-pending{
        background: var(--c-blue);
    }
    .date-content > .status-dot.status-completed{
        background: var(--c-green);
    }


    /* Extra Small*/
    @media only screen and (min-width : 0px) {
    }

    /* Semi Extra Small */
    @media only screen and (min-width : 486px) {

    }

    /* Small */
    @media only screen and (min-width : 576px) {

    }


    /* Semi Small */
    @media only screen and (min-width : 576px) {

    }

    /* Medium */
    @media only screen and (min-width : 768px) {
    }

    /* Medium */
    @media only screen and (min-width : 868px) {
    }

    /* Large */
    @media only screen and (min-width : 992px) {
    }

    /* Extra Large */
    @media only screen and (min-width : 1200px) {
    }

    /* Double Extra Large */
    @media only screen and (min-width : 1400px) {
    }