#hidescreen, #loadingData{
    position: fixed;
    display: none;
}

#hidescreen {
    opacity: var(--bs-backdrop-opacity);
    --bs-backdrop-zindex: 1060;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

#loadingData {
    z-index: 9999;
    left: 50%;
    top: 50%;
    height: 64px;
    margin-left: -64px;
}

.product-card {
    color: #333;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
    min-height: 30rem;
    font-size: 13px;
}

.product-info-image {
    position: relative;
    height: 390px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.product-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-image {
    position: absolute;
    top: 10px;
    left: 115px;
    width: 100%;
    height: 100%;
}

.row-info {
    display: flex;
    justify-content: center;
}

.product-card .product-info.description {
    height: 40px;
    overflow: hidden;
    padding: 0 5px 0 5px;
}
.product-card .product-info {
    margin-top: 12px;
    word-wrap: break-word;
    text-align: center;
}

.product-card .product-info.product-info-date {
    font-size: 10px;
}
.product-card .product-info {
    margin-top: 12px;
    word-wrap: break-word;
    text-align: center;
}

.separator {
    border-left: 1px solid #000;
    height: 20px;
    margin: 12px 5px 0 5px;
}

.current-status {
    border-radius: 20px;
    border: 2px solid #fff;
    padding: 5px;
}

.current-status.broke {
    background-color: #ff6b6b;
}

.current-status.in-progress {
    background-color: #e0e0e0;
}

.current-status.ready {
    background-color: #98d98e;
}

.current-status.second {
    background-color: #8BCAC4;
}

.current-status.done {
    background-color: #c3aed6;
}

.product-card.overdue {
    animation: wiggle 2s infinite;
}

.current-status.overdue {
    background-color: #ffcc80;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

@media (max-width: 575px) {
    #guestInfoAddress {
        font-size: small!important;
    }

    #guestInfoMessage {
        text-align: justify!important;
    }

    #searchCard {
        top: -13px;
    }

    #searchBlockRow {
        overflow-y: scroll;
        height: 580px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    #searchCard {
        top: -5px;
    }

    #searchBlockRow {
        overflow-y: scroll;
        height: 270px;
    }
}

@media (max-width: 810px) {
    #productDataCard {
        border-top-right-radius: 0!important;
        border-top-left-radius: 0!important;
    }

    .productShortImage {
        border-bottom-right-radius: 0!important;
        border-bottom-left-radius: 0!important;
    }
}

#topbar-mobile {
    top: 0!important;
}