.eh-booking.timetable {
    display: flex;
    flex-direction: row;
}

.eh-booking.timetable .step-title {
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.eh-booking.timetable .step-title span {
    color: #FF4600;
}

.eh-booking.timetable .step-description {
    color: #4D4D4D;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 20px;
}

.eh-booking.timetable.dark .step-description {
    color: #FFFFFF;
}

.eh-booking.timetable .alert {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #FF4600;
}

.eh-booking.timetable .alert i {
    margin-right: 10px;
}

.eh-booking.timetable .alert p {
    line-height: 1.2;
    margin: 0;
}

.eh-booking.timetable > .col-1 {
    width: 30%;
}

.eh-booking.timetable > .col-2 {
    width: 70%;
    margin-left: 40px;
}

.eh-booking.timetable .stores {
    padding: 10px;
    margin: 20px 0;
    color: #FFFFFF;
    background-color: #666666;
}

.eh-booking.timetable .stores select {
    width: 100%;
    margin: 0;
}

.eh-booking.timetable .rooms {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eh-booking.timetable .rooms .room {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #999999;
    -webkit-transition: background .15s ease-out, color .15s ease-out;
    transition: background .15s ease-out, color .15s ease-out;
}

.eh-booking.timetable .rooms .room.selected {
    border-left: 5px solid #FF4600;
    background-color: #FFFFFF;
}

.eh-booking.timetable .rooms .room .room-error {
    font-size: 14px;
    padding: 5px 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: red;
}

.eh-booking.timetable .rooms .room .room-info {
    display: flex;
    flex-direction: row;
}

.eh-booking.timetable .rooms .room .room-info .room-thumbnail img {
    max-width: 90px;
    margin-right: 20px;
    border: 2px solid #FFFFFF;
}

.eh-booking.timetable .rooms .room .room-data {
    display: flex;
    flex-direction: column;
}

.eh-booking.timetable .rooms .room .room-data h5 {
    color: #FF4600;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
}

.eh-booking.timetable .rooms .room .room-data .room-participants {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
}

.eh-booking.timetable.light .rooms .room .room-data .room-participants {
    color: #999999;
}

.eh-booking.timetable .rooms .room .room-data .room-participants i {
    color: #999999;
}

.eh-booking.timetable .rooms .room.selected .room-data .room-participants {
    color: #000000;
}

.eh-booking.timetable .rooms .room.selected .room-data .room-participants i {
    color: #000000;
}

.eh-booking.timetable .rooms .room .room-data .room-participants span {
    margin-left: 10px;
}

.eh-booking.timetable .rooms .room .room-review {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.eh-booking.timetable .rooms .room .room-review .review-items {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

.eh-booking.timetable .rooms .room .room-review .review-items > .item {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    border-right: 1px solid #CCCCCC;
}

.eh-booking.timetable .rooms .room .room-review .review-items > .item:last-child {
    border-right: none;
}

.eh-booking.timetable .rooms .room .room-review .review-items .item-title,
.eh-booking.timetable .rooms .room .room-review .review-items .item-value {
    color: #000;
}

.eh-booking.timetable .rooms .room .room-review .review-items .item-title {
    font-size: 14px;
    font-weight: bold;
}

.eh-booking.timetable .rooms .room .room-review .review-items .item-value {
    font-size: 14px;
}

.eh-booking.timetable .rooms .room .room-review .review-items .total-participants select {
    width: 100%;
    margin: 0;
}

.eh-booking.timetable .rooms .room .room-review .review-items .total .item-value {
    font-weight: bold;
}

.eh-booking.timetable .rooms .room .room-actions {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-top: 20px;
}

.eh-booking.timetable .rooms .room .room-actions .booking-email {
    width: 100%;
    margin-right: 10px;
}

.eh-booking.timetable .rooms .room .room-actions .booking-email input {
    width: 100%;
    margin: 0;
}

.eh-booking.timetable .rooms .room .room-actions .booking-email input.error {
    border: 1px solid red;
}

.eh-booking.timetable .rooms .room .room-actions button.book {
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #FF4600;
    border: none;
    border-radius: 5px;
}

.eh-booking.timetable .rooms .room .room-actions button.book[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}


.eh-booking.timetable .rooms .room > .image {
    position: relative;
    height: 150px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.eh-booking.timetable .rooms .room > .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.30);
}

.eh-booking.timetable .rooms .room > .select {
    color: #FFFFFF;
    background-color: #FF4600;
}

.eh-booking.timetable .rooms .room.active > .select {
    color: #FF4600;
    background-color: #FFFFFF;
}

.eh-booking.timetable .calendar-wrap {
    margin-top: 20px;
}

.eh-booking.timetable .calendar {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    border-spacing: 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    text-shadow: none !important;
    table-layout: fixed;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.30);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.30);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.30);
}

.eh-booking.timetable .calendar thead th {
    text-align: center;
    color: #999;
    padding: 15px;
}

.eh-booking.timetable .calendar .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.eh-booking.timetable .calendar .header a {
    font-size: 24px;
}

.eh-booking.timetable .calendar .header .month-name {
    font-size: 18px;
    color: #4D4D4D;
    text-transform: uppercase;
}

.eh-booking.timetable .calendar tr.days {
    text-transform: uppercase;
}

.eh-booking.timetable .calendar tr.days th {
    padding: 22px 12px;
    font-size: 0.875rem;
    font-weight: bold;
    /* font-family: "Montserrat", sans-serif; */
    color: #FFFFFF;
    background-color: #FF4600;
}

.eh-booking.timetable .calendar td.active .date span,
.eh-booking.timetable .calendar td:hover .date span {
    color: #FFFFFF;
    background: #FF4600;
}

.eh-booking.timetable .calendar td {
    text-align: center;
    overflow: hidden;
    position: relative;
    font-size: 16px;
    color: #FFFFFF;
    padding: 0;
    border-right: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    border: 1px solid #FFFFFF;
    /* font-family: "Montserrat", sans-serif; */
    height: 106px;
}

.eh-booking.timetable .calendar tbody td {
    padding: 0;
    text-align: center;
}

.eh-booking.timetable .calendar td .date {
    background: #E9E9E9;
    display: block;
    width: 100%;
    height: 100%;
    color: #333;
    line-height: 106px;
}

.eh-booking.timetable .calendar td.prev-date .date, 
.eh-booking.timetable .calendar td.prev-date:hover .date, 
.eh-booking.timetable .calendar td.prev-date:hover .date span {
    cursor: not-allowed;
    background: #B2B2B2;
    color: #666;
}

.eh-booking.timetable .calendar td.prev-month .date, 
.eh-booking.timetable .calendar td.prev-month:hover .date, 
.eh-booking.timetable .calendar td.prev-month:hover .date span,
.eh-booking.timetable .calendar td.next-month .date, 
.eh-booking.timetable .calendar td.next-month:hover .date, 
.eh-booking.timetable .calendar td.next-month:hover .date span {
    cursor: not-allowed;
    background: #CCC;
    color: #CCC;
}

.eh-booking.timetable .calendar td:hover .date {
    cursor: pointer;
}

.eh-booking.timetable .calendar td .date, 
.eh-booking.timetable .calendar td .date span {
    -webkit-transition: background .15s ease-out, color .15s ease-out;
    transition: background .15s ease-out, color .15s ease-out;
}

.eh-booking.timetable .calendar td .date .number {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
}

.eh-booking.timetable .calendar td.today .date span {
    border: 2px solid #FF4600;
}

.eh-booking.timetable .schedule {
    background-color: #FFFFFF;
}

.eh-booking.timetable .appointments-title {
    font-size: 16px;
    color: #515151;
    margin: 25px 0;
}

.eh-booking.timetable .time-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.eh-booking.timetable .time-container .time {
    cursor: pointer;
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #FFFFFF;
    border: 1px solid #FF4600;
    background-color: #FF4600;
    -webkit-transition: background .15s ease-out, color .15s ease-out;
    transition: background .15s ease-out, color .15s ease-out;
}

.eh-booking.timetable .time-container .time.selected,
.eh-booking.timetable .time-container .time:hover:not(.unavailable) {
    color: #000;
    border: 1px solid #FF4600;
    background-color: #FFFFFF;
}

.eh-booking.timetable .time-container .time.unavailable {
    border: 1px solid #B2B2B2;
    background-color: #B2B2B2;
    opacity: 0.4;
    cursor: not-allowed;
}

.eh-booking.timetable .stores-title,
.eh-booking.timetable .rooms-title,
.eh-booking.timetable .calendar-title,
.eh-booking.timetable .review-title {
    text-align: center;
    text-transform: uppercase;
    margin-top: 50px;
}

.eh-booking.timetable .stores-title {
    margin-top: 0;
}

.eh-booking.timetable .rooms-description {
    margin: 0;
    color: #FF4600;
    text-align: center;
}

.eh-booking.timetable .review {
    display: flex;
    flex-direction: row;
}

.eh-booking.timetable .review > div {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.eh-booking.timetable .review > div > div {
    padding: 10px 0;
}

.eh-booking.timetable .review > div > div:first-child {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #FF4600;
}

.eh-booking.timetable .review > div > div:last-child {
    color: #333333;
    background-color: #E6E6E6;
}

.eh-booking.timetable .review > .total > div:last-child {
    font-weight: bold;
}

.eh-booking.timetable .book-btn-wrap {
    text-align: center;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #FF4600;
    border-color: #FF4600 transparent #FF4600 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {

    .eh-booking.timetable {
        flex-direction: column;
    }

    .eh-booking.timetable .stores {
        margin: 20px 0 40px 0;
    }

    .eh-booking.timetable > .col-1,
    .eh-booking.timetable > .col-2 {
        width: 100%;
        margin: 0;
    }

    .eh-booking.timetable > .col-2 {
        margin-top: 40px;
    }

    .eh-booking.timetable .rooms .room.selected {
        border: 1px solid #999999
    }

    .eh-booking.timetable .rooms .room .room-info {
        flex-direction: column;
    }

    .eh-booking.timetable .rooms .room .room-info .room-thumbnail {
        text-align: center;
    }

    .eh-booking.timetable .rooms .room .room-info .room-thumbnail img {
        margin: 0;
    }

    .eh-booking.timetable .rooms .room .room-data h5 {
        text-align: center;
    }

    .eh-booking.timetable .rooms .room .room-data .room-participants {
        align-self: center;
    }

    .eh-booking.timetable .rooms .room .room-review .review-items {
        flex-flow: column wrap;
        border-top: none;
        border-bottom: none;
    }

    .eh-booking.timetable .rooms .room .room-review .review-items > .item {
        border-top: 1px solid #CCCCCC;
        border-right: none;
    }

    .eh-booking.timetable .rooms .room .room-actions {
        flex-direction: column;
        justify-content: center;
    }

    .eh-booking.timetable .rooms .room .room-actions .booking-email {
        margin: 0 0 10px 0;
    }
}