[x-cloak] { display: none !important; }


.calendar-widget {
    position: absolute;

    margin: 0 auto;
    width: 90%;
}

.calendar-widget__hours {
    position: absolute;
    left: 0;
    text-align: center;
    width: 90%;
    height: 100%;
}

.calendar-widget__hours__hour {
    height: 12vh;
    line-height: 12vh;
    border-bottom: 1px solid hsla(0, 0%, 95%, 1);
    text-align: left;
    padding-left: 1em;
    font-size: 0.875rem;
}

.calendar-widget__hours__hour:hover {
    background: hsla(150, 90%, 90%, 1);
    cursor: pointer;
}

.calendar-widget__hours__hour:nth-last-child(1) {
    border-bottom: none;
}


.calendar-widget__appointments {
    width: calc(95% - 60px);
    height: 100%;
    position: absolute;
    left: 60px;
    border-left: 1px solid lightblue;
}

.calendar-widget__appointments__appointment {
    padding-left: 1vh;
    margin-left: 5px;
    width: 99%;
    position: absolute;
    border: 1px solid hsla(0, 0%, 0%, 0.1);

    color: grey;
}

