.romass_week {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.romass_week thead th {
    padding: 0.5rem;
    font-weight: normal;
    text-align: center;
}

.romass_timeslot {
    background: #71cc36;
    height: 200px;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: 200ms;
    position: relative;
}

.romass_timeslot:not(:disabled) {
    cursor: pointer;
}

.romass_timeslot:disabled {
    cursor: not-allowed;
}

.romass_timeslot:not(.romass_timeslot-active):not(:disabled):hover {
    background: #62b32d;
}

.romass_timeslot.romass_timeslot-active {
    background: #539826;
}

.romass_timeslot:disabled {
    background: #e3f5d7;
}

.romass_timeslot::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: #ffffff;
}

.romass_timeslot:not(.romass_timeslot-active):not(:disabled):hover::after {
    content: '\2b';
}

.romass_timeslot.romass_timeslot-active::after {
    content: '\f00c';
}

.romass_timeslot.romass_timeslot-active:hover::after {
    content: '\f068';
}

.romass_sidebar-col {
    position: relative;
    width: 80px;
}

.romass_sidebar {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 0.5rem;
}

.romass_sidebar > * {
    margin: 0;
    text-align: center;
}

.romass_gf_weeks-wrapper {
    display: flex;
    gap: 1rem;
}

.romass-slider-button {
    padding: 0 1rem;
    position: relative;
    background: none;
    cursor: pointer;
    border: none;
}

.romass-slider-button.swiper-button-disabled {
    display: none;
}

.romass-slider-button::before,
.romass-slider-button::after {
    content: '';
    display: block;
    width: 4px;
    height: 50px;
    background-color: #42515a;
    top: 50%;
}

.romass-slider-button.prev::before {
    transform: rotate(25deg) translateY(4px);
}

.romass-slider-button.prev::after {
    transform: rotate(-25deg) translateY(-4px);
}

.romass-slider-button.next::before {
    transform: rotate(-25deg) translateY(4px);
}

.romass-slider-button.next::after {
    transform: rotate(25deg) translateY(-4px);
}
