@media only screen and (min-width: 992px) {
    .container-fluid.bg-container-body .reservation-container {
        border-radius: 0;
    }
    .item-container {
        border-radius: 0;
    }
}

@media only screen and (min-width: 1201px) {
    .container-fluid.bg-container-body .reservation-container {
        border-top-left-radius: var(--app-border-radius);
        border-bottom-left-radius: var(--app-border-radius);
    }
    .item-container {
        border-top-right-radius: var(--app-border-radius);
        border-bottom-right-radius: var(--app-border-radius);
    }
}

@media only screen and (min-width: 992px) {
    .no-data-for-event, .item-prices {
        min-height: 0 !important;
    }
}

.is-img-none {
    width: 100% !important;
    height: 100% !important;
}

.card-img-top {
    height: 100%;
    width: auto;
    max-height: 300px;
}

.tool-bar {
    color: var(--app-btn-1-color);
    background-color: var(--app-text-color-1);
}

.tool-bar a,
.tool-bar a:hover,
.tool-bar a:focus {
    color: var(--app-btn-1-color);
}

.tool-bar .form-group,
.tool-bar label {
    margin-bottom: 0;
}

.tool-bar > div.d-flex {
    flex-direction: column;
    align-items: start;
    row-gap: 10px;
    margin-top: 18px;
}
.tool-bar .group-item {
    display: flex;
    align-items: center;
}
.tool-bar select.form-control {
    margin-left: 12px;
    min-width: 180px;
    max-width: 180px;
}
@media (min-width:768px) {
    .tool-bar > div.d-flex {
        align-items: center;
        margin-top: 0;
    }
}
@media (min-width:1600px) {
    .tool-bar > div.d-flex {
        flex-direction: row;
        row-gap: 0;
        column-gap: 15px;
    }
}
.product-img {
    min-width: 100px;
    max-width: 100px;
    margin-right: 1rem !important;
}

.product-name {
    font-size: 1rem;
    overflow-wrap: anywhere;
}

@media only screen and (min-width: 992px) {
    .product-name {
        font-size: 1rem;/*1.5rem;*/
    }    
}

/* .product-info a {
    text-decoration: none;
} */

.product-info a {
    color: var(--app-text-color-1);
}

.product-small-desc,
.product-small-desc p,
.product-small-desc p span {
    font-size: 0.8rem !important;
}

.product-info {
    padding-right: 40px;
}

.product-small-desc {
    --lh: 1.1rem;
    line-height: var(--lh);
}

.product-small-desc.overflow {
    --max-lines: 8;
    position: relative;
    max-height: calc(var(--lh) * var(--max-lines));
    overflow: hidden;
    padding-right: 1rem; 
}

.product-small-desc.overflow::before {
    position: absolute;
    content: "...";
    bottom: 0;
    right: 0;
}

.product-small-desc.overflow::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1rem;
    height: 1rem;
}

.products-list-list .product-line .line {
    color: var(--app-text-color-2);
    border-bottom: 1px solid var(--app-line-color);
}

.products-list-list .product-line:last-child .line{
    border-bottom: none;
}


.card {
    border: none;
    transition: box-shadow .6s;
}

.card:hover {
    box-shadow: 3px 5px 11px 0px #ff00006e;
    box-shadow: 3px 5px 11px 0px rgb(from var(--app-text-color-1) r g b / .5);
}