.toast.show {
    display: block;
    opacity: 1;
    position: fixed;
    top: 20px;
    z-index: 9999999999;
    right: 20px;
}


#ajax-loading{
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: url('/images/loading.svg') center center / 125px no-repeat rgba(0, 0, 0, 0.6);
    z-index: 99999999999999999;
    justify-content: center;
    align-items: center;
    display: none;
}

body.cart {
    color: #212121;
    background: #f9f9f9;
    font-family: 'Play', sans-serif!important;
}
body.cart h1, h2, h3, h4, h5, h6{
    font-family: 'Play', sans-serif!important;
}
.cart {
    font-size: 15px;
}
.quantity-input {
    width: 100px;
}

.error-help-block{
    color: #e70d0d;
    font-size: 13px;
    font-style: italic;
}

section.menu .container #nav .wrap-memu-child {
    min-width: 250px;
}
section.menu .container #nav .wrap-memu-child a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}

.coupon-list{}
.coupon-list div.list{}
.coupon-list div.list .cp{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: rgba(208,1,27,.08);
    padding: 3px 7px;
    border: 0;
    white-space: nowrap;
    color: #ee4d2d;
    float: left;
    margin-right: 10px;
    font-size: 12px;
    position: relative;
}
.coupon-list div.list .cp:after {
    content: "";
    width: 6px;
    height: calc(100% - 5px);
    position: absolute;
    top: 2.5px;
    background-image: radial-gradient(#fff 2px,transparent 0);
    background-size: 6px 6px;
    background-position-x: -6px;
    right: -3px;
}
.coupon-list div.list .cp:before {
    content: "";
    width: 6px;
    height: calc(100% - 5px);
    position: absolute;
    top: 2.5px;
    background-image: radial-gradient(#fff 2px,transparent 0);
    background-size: 6px 6px;
    background-position-x: -6px;
    left: -3px;
}

.coupon-list div.list .cp .hover_coupon{
    position: absolute;
    width: 140px;
    background: var(--color-main);
    height: auto;
    padding: 10px;
    top: 30px;
    border-radius: 5px;
    white-space: initial;
    text-align: center;
    color: white;
    display: none;
}
.coupon-list div.list .cp:hover .hover_coupon{
    display: block;
}