.thespace-dragon-bakery-configurator {

}

.thespace-dragon-bakery-configurator .user-info-area {
    text-align: right;
    margin-bottom: 10px;
}

.thespace-dragon-bakery-configurator .button-area {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 20px;
    gap: 10px;
}

.thespace-dragon-bakery-configurator .button-save {
    background-color: #3498db;
}

.thespace-dragon-bakery-configurator .button-logout {
    background-color: #bdc3c7;
}

.thespace-dragon-bakery-configurator .button-area .message {
    width: 100%;
    color: #fff;
    height: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.thespace-dragon-bakery-configurator .button-area .message.error {
    background: #e74c3c;
    opacity: 1;
    height: auto;
    padding: 10px;
}

.thespace-dragon-bakery-configurator .button-area .message.success {
    background: #2ecc71;
    opacity: 1;
    height: auto;
    padding: 10px;
}

.thespace-dragon-bakery-configurator .days {
    display: flex;
    flex-wrap: wrap;
}

.thespace-dragon-bakery-configurator .day {
    /*padding: 20px;*/
    padding: 10px;
    /*margin: 10px;*/
    border-right: 1px solid #d5d5d5;
    width: 14.25%;
}

.thespace-dragon-bakery-configurator .day.disabled {
    background-color: #e8e8e8;
}

.thespace-dragon-bakery-configurator .day:last-child {
    border-right: none;
}

.thespace-dragon-bakery-configurator .day .day-order-items {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.thespace-dragon-bakery-configurator .day .day-order-item {
    /*border-top: 1px solid #d5d5d5;*/
    padding: 5px;
    margin: 5px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #d5d5d5;
    width: 100%;
}

.thespace-dragon-bakery-configurator .day .day-order-item .left-area {
    margin-right: 5px;
}

.thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-name {
    font-size: 11px;
    font-weight: bold;
}

.thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-qty {
    font-size: 11px;
}

.thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty {
    width: 40px;
}

.thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty label {
    width: 100%;
}

.thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty input {
    width: 40px;
    height: 30px;
    vertical-align: -webkit-baseline-middle;
}

.thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty input:disabled {
    background-color: #e8e8e8;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .thespace-dragon-bakery-configurator .day {
        border-right: none;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item {
        display: block;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .left-area {
        min-height: 55px;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty {
        width: 100%;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty input {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .thespace-dragon-bakery-configurator .day {
        border-right: none;
    }

    .thespace-dragon-bakery-configurator .days {
        display: block;
    }

    .thespace-dragon-bakery-configurator .day {
        width: 100%;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item {
        width: 18.6%;
        display: block;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .left-area {
        min-height: 55px;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty {
        width: 100%;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty input {
        width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .thespace-dragon-bakery-configurator .days {
        display: block;
    }

    .thespace-dragon-bakery-configurator .day {
        width: 100%;
        border-right: none;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item {
        width: 23.4%;
        display: block;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .left-area {
        min-height: 55px;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty {
        width: 100%;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty input {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .thespace-dragon-bakery-configurator .days {
        display: block;
    }

    .thespace-dragon-bakery-configurator .day {
        width: 100%;
        border-right: none;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item {
        /*width: 30.9%;*/
        /*display: block;*/
        width: 100%;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .left-area {
        /*min-height: 55px;*/
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .right-area {
        width: 50px;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty {
        width: 100%;
    }

    .thespace-dragon-bakery-configurator .day .day-order-item .day-order-item-spot-qty input {
        width: 100%;
    }

    .scrolled .thespace-dragon-bakery-configurator .button-area {
        position: fixed;
        bottom: 0;
        background: #fff;
        width: 100%;
        /*height: 50px;*/
        padding: 10px;
        left: 0;
        margin: 0;
        border-top: 1px solid #d5d5d5;
    }


}