#mdlBookingForm,#mdlBookingAgenda
{
    display: flex;
    justify-content: left;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

#mdlBookingAgenda {
    flex-wrap: nowrap;
}

#mdlBookingForm .hours, #bookingAgendaProductList{

    flex-grow: 2;
    text-align: center;
}
#mdlBookingForm .prices{
    width: 100%;
}

.hours-selection
{
    list-style-type: none;
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.hours-selection li {
    display: inline-block;
}

.hours-selection li button:not(.active)
{
    background-color: #FFF;
}

.hours-selection li button {
    border:1px solid var(--e-global-color-primary);

}
.mdl-price-qty
{
    width: 80px!important;
    pointer-events: none;
}
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}
.text-left {
    text-align:left;
}

.btn-quantity
{
    cursor: pointer;
    font-size: 1.7em;
    margin: 0 10px;
}

.quantity-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bounce-left {
    animation: slideleft 1s ease-in-out infinite;
    margin-right: 20px;
}


@keyframes slideleft {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 0);
    }
}
.bounce-right {
    animation: slideright 1s ease-in-out infinite;
    margin-left: 20px;
}
@keyframes slideright {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 0);
    }
}

.bounce-down {
    animation: slidedown 1s ease-in-out infinite;
    margin-left: 20px;
}
@keyframes slidedown {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 10px);
    }
}

.d-flex-horizontal
{
    display: flex;
    justify-content: center;
    align-items: center;
}



.cart-waiting {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 10em;
    background-color: rgba(255,255,255,0.75);
    display: none;
    opacity: 0.75;
}

#mdlBookingForm.adding-to-cart .cart-waiting {
    display: flex;
}

.sm-only {
    display: none;
}


.products-list
{
    text-align: left;
    padding-left: 50px;
}

.productlist-detail {
  margin-bottom: 40px;
}
.productlist-hour
{
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.productlist-hour a.elementor-button {
    font-size: 17px;
    font-weight: 400;
    padding: 6px 12px;
}

#bookingAgendaProductList a.elementor-button.hour-disabled {
    background-color: #CCC;
    border-color: #AAA;
}

.mr-2 {
    margin-right: 20px;
}

.text-small {
    font-size: 15px;
}


@media screen and (max-width:1023px)
{
    #mdlBookingForm {
        justify-content: center;
    }


    .sm-only {
        display: block;
    }

    .sm-hidden {
        display: none;
    }

    #mdlBookingAgenda {
        flex-wrap: wrap;
    }


}

