/* _content/ComponentsLibrary/Components/ChatBot/Chat/ChatActions/ChatActionsComponent.razor.rz.scp.css */
button[b-cayes54wug] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
}


.chat-actions[b-cayes54wug] {
    display: flex;
    gap: 4px;
}

    .chat-actions.web[b-cayes54wug] {
        flex-direction: row-reverse;
        justify-content: space-around;
        padding: 8px;
    }

.language-button[b-cayes54wug] {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 20px;
    background-color: #ffffff;
    color: #722872;
    font-family: Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #e7dbf3;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .language-button i[b-cayes54wug] {
        margin-right: 8px;
    }

    .language-button:hover[b-cayes54wug] {
        background-color: #f4edf9;
        color: #722872;
    }

    .language-button span[b-cayes54wug] {
        font-weight: bold;
    }

.action-button .icon-black[b-cayes54wug] {
    color: black;
}

.action-button.disabled .icon-black[b-cayes54wug] {
    color: rgba(0, 0, 0, 0.5);
}

.chat-actions.web .action-button[b-cayes54wug] {
    background: #fff;
    margin: 0 0 4px -4px;
}
/* _content/ComponentsLibrary/Components/ChatBot/Chat/ChatComponent.razor.rz.scp.css */
.chat-container[b-8mkbspjl00] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.chat-container[b-8mkbspjl00], 
.chat-container *[b-8mkbspjl00] {
    user-select: none;
}

.chat-container.mobile > .header[b-8mkbspjl00],
    .chat-container.mobile > .footer[b-8mkbspjl00] {
        display: flex;
        align-items: center;
        background-color: #fff;
        padding: 10px;
        border-top: 1px solid #ccc;
    }

    .chat-container.mobile .header[b-8mkbspjl00] {
        justify-content: space-between;
    }

    .chat-container.web > .footer[b-8mkbspjl00] {
        display: flex;
        align-items: center;
        position: relative;
    }

    .chat-container.web .footer[b-8mkbspjl00] {
        width: 50%;
        overflow: hidden;
        background: #fff;
        margin: 20px;
        align-items: flex-end;
    }

    .chat-container.mobile .footer textarea[b-8mkbspjl00] {
        width: 100%;
        height: 46px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 16px;
        resize: none;
        outline: none;
    }

    .chat-container.web .footer textarea[b-8mkbspjl00] {
        padding: 10px;
        border: none;
        resize: none;
        outline: none;
    }

    .chat-container.web .textarea-wrapper[b-8mkbspjl00] {
        width: 88%;
    }

    .chat-container.mobile .textarea-wrapper[b-8mkbspjl00] {
        flex: 1;
        border-radius: 16px;
        height: 46px;
        overflow: hidden;
    }

    .chat-container.web .messages-container[b-8mkbspjl00] {
        width: 50%;
        max-height: 69%;
        margin: 20px 20px 0;
    }

.messages-container[b-8mkbspjl00] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    background: #fff;
}

.messages[b-8mkbspjl00] {
    overflow-wrap: break-word;
    overflow-x: hidden;
}

.chat-container.mobile .messages[b-8mkbspjl00] {
    padding: 20px;  
}

.chat-container.web .messages[b-8mkbspjl00] {
    padding: 16px 16px 8px;
}

.chat-container.web .message[b-8mkbspjl00] {
    max-width: 100%;
}

button[b-8mkbspjl00] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
}

.chat-container.web .send-button[b-8mkbspjl00] {
    background: #fff;
    margin: 0 0 4px -4px;
}

.action-button[b-8mkbspjl00] {
    user-select: none;
}

.action-button .icon-black[b-8mkbspjl00] {
    color: black;
}

.action-button.disabled .icon-black[b-8mkbspjl00] {
    color: rgba(0, 0, 0, 0.5);
}

.chat-container.web .close-button[b-8mkbspjl00] {
    position: absolute !important;
    top: -16px;
    right: -16px;
    width: 30px;
    height: 30px;
    z-index: 2;
    background: #fff;
    border-radius: 100px;
    border: 2px solid #b91e1a;
}

.close-button .fa-times[b-8mkbspjl00] {
    font-size: 24px;
    color: #b91e1a;
}

.chat-container.mobile .triangle[b-8mkbspjl00] {
    display: none;
}

.chat-container.web .triangle[b-8mkbspjl00] {
    margin-left: calc(50% - 20px);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-top: 32px solid #fff;
}
/* _content/ComponentsLibrary/Components/ChatBot/Chat/ChatMessage/ChatMessageComponent.razor.rz.scp.css */
.message-container[b-75obmr0gc4] {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.message-container.user[b-75obmr0gc4] {
    justify-content: flex-end;
}

.message-container>.message[b-75obmr0gc4] {
    position: relative;
    border-radius: 10px;
    max-width: calc(100% - 40px);
}

.message-container.assistant .message[b-75obmr0gc4] {
    background-color: #eaf4ff;
    padding: 15px;
    border-radius: 0 10px 10px 10px;
}

.message-container.user .message p[b-75obmr0gc4] {
    display: inline-block;
    color: #fff;
    background-color: #E9353E;
    padding: 10px;
    border-radius: 10px 10px 0 10px;
    text-align: right;
}

.message-container>.assistant-container[b-75obmr0gc4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.message-container>.assistant-container>.avatar[b-75obmr0gc4] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}

.message-container>.assistant-container>.avatar>.avatar-wrapper[b-75obmr0gc4] {
    width: 40px;
    height: 40px;
    padding: 1px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #E9353E;
    background-size: contain;
}

.message-container>.message[b-75obmr0gc4] {
    position: relative;
    border-radius: 10px;
    max-width: calc(100% - 40px);
}

.message-container.assistant .message[b-75obmr0gc4] {
    background-color: #eaf4ff;
    padding: 15px;
    border-radius: 0 10px 10px 10px;
}

.message-container.user .message p[b-75obmr0gc4] {
    display: inline-block;
    color: #fff;
    background-color: #265EA7;
    padding: 10px;
    border-radius: 10px 10px 0 10px;
    text-align: right;
}

.message-container>.assistant-container[b-75obmr0gc4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.message-container>.assistant-container>.avatar[b-75obmr0gc4] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}

.message-container>.assistant-container>.avatar>.avatar-wrapper[b-75obmr0gc4] {
    width: 40px;
    height: 40px;
    padding: 1px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #265EA7;
    background-size: contain;
}

.message-container .grocery-navigation-container[b-75obmr0gc4] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 4px;
}

.message-container .grocery-navigation-container .btn[b-75obmr0gc4] {
    background: #265EA7;
    color: #fff;
}

.message-container .grocery-navigation-container .btn:hover[b-75obmr0gc4] {
    opacity: 0.9;
}
/* _content/ComponentsLibrary/Components/ChatBot/ChatBotComponent.razor.rz.scp.css */
.chatbot-container[b-t0v7a5iyv6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aaaaaa90;
    z-index: 10000;
    transition: opacity 100ms ease-in-out;
    opacity: 0;
    pointer-events: none;
}

    .chatbot-container.opened[b-t0v7a5iyv6] {
        opacity: 1;
        pointer-events: all;
    }

    .chatbot-container > .chef-image[b-t0v7a5iyv6] {
        height: 25%;
        aspect-ratio: 373 / 448;
        position: absolute;
        bottom: -25%;
        right: 0;
        background-size: cover;
        transition: bottom 100ms ease-in-out;
        z-index: 2;
        pointer-events: none;
    }

    .chatbot-container.opened > .chef-image[b-t0v7a5iyv6] {
        bottom: 0;
    }

    .chatbot-container.web > .chef-image[b-t0v7a5iyv6] {
        bottom: 32px;
        right: 32px;
    }

    .chatbot-container > .chat[b-t0v7a5iyv6] {
        position: absolute;
        right: -65%;
        transition: right 100ms ease-in-out;
    }

    .chatbot-container.mobile > .chat[b-t0v7a5iyv6] {
        bottom: 30%;
        width: 75%;
        height: 55%;
        background: white;
        border-radius: 5px;
    }

    .chatbot-container.opened.mobile > .chat[b-t0v7a5iyv6] {
        right: 25px;
    }

    .chatbot-container.opened.web > .chat[b-t0v7a5iyv6] {
        right: 16px;
    }

    .chatbot-container.web > .chat[b-t0v7a5iyv6] {
        width: 33%;
        min-width: 400px;
        bottom: 24px;
        background: #b72e38;
        border-radius: 10px;
        border: 8px solid #fff;
        z-index: 1;
    }

    .chatbot-container > .chat-bot-icon[b-t0v7a5iyv6] {
        cursor: pointer;
        position: absolute;
        border-radius: 50%;
        border: 2px solid #b72e38;
        z-index: 10001;
        background-size: cover;
        padding: 1px;
        border-radius: 50%;
        background-color: #fff;
    }

    .chatbot-container.web > .chat-bot-icon[b-t0v7a5iyv6] {
        width: 96px;
        height: 96px;
        right: 20px;
    }

    .chatbot-container.mobile > .chat-bot-icon[b-t0v7a5iyv6] {
        top: 20px;
        right: 10px;
        width: 48px;
        height: 48px;
        padding: 1px;
        border-radius: 50%;
        background-color: #fff;
        border: 2px solid #E9353E;
    }

        .chatbot-container.mobile.mobile-app > .chat-bot-icon[b-t0v7a5iyv6] {
            top: 4px;
        }

@media screen and (max-width: 1240px) {
    .chatbot-container.web > .chat-bot-icon[b-t0v7a5iyv6] {
        top: 72px;
    }

    .chatbot-container.web > .chat[b-t0v7a5iyv6] {
        height: calc(100% - 96px - 72px - 24px - 10px);
    }
}

@media screen and (min-width: 1240px) {
    .chatbot-container.web > .chat-bot-icon[b-t0v7a5iyv6] {
        top: 38px;
    }

    .chatbot-container.web > .chat[b-t0v7a5iyv6] {
        height: calc(100% - 96px - 30px - 24px - 10px);
    }
}

@media screen and (max-width: 768px) {
    .chatbot-container.web > .chat-bot-icon[b-t0v7a5iyv6] {
        top: 56px;
    }

    .chatbot-container.web > .chat[b-t0v7a5iyv6] {
        height: calc(100% - 96px - 56px - 24px - 10px);
    }
}
/* _content/ComponentsLibrary/Components/CircleSpinner/CircleSpinnerComponent.razor.rz.scp.css */
.spinner-border[b-dvdkzt7rdv] {
    z-index: 2000;
    width: 40px;
    height: 40px;
    position: absolute;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    display: inline-block;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border-b-dvdkzt7rdv;
}

@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-border-b-dvdkzt7rdv {
    to {
        transform: rotate(360deg)
    }
}
/* _content/ComponentsLibrary/Components/Coupons/CouponDetails/CouponDetailsModal.razor.rz.scp.css */
.custom-modal-dialog[b-cbu1emhbsy] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(500px, 90%);
}
/* _content/ComponentsLibrary/Components/Footer/FooterComponent.razor.rz.scp.css */
.footer-container[b-27t3s9mw7p] {
    width: 100%;
    background-color: #E9353E;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.row[b-27t3s9mw7p] {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.last-footer-column[b-27t3s9mw7p] {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 4px;
}

.footer-container .logo-image[b-27t3s9mw7p] {
    width: 200px;
}

.footer-container.mobile .logo-image[b-27t3s9mw7p] {
    width: 100px;
    transform: scale(1.5);
}
/* _content/ComponentsLibrary/Components/Header/HeaderComponent.razor.rz.scp.css */
.header-container[b-xuc5upooyx] {
    width: 100%;
    background-color: #E9353E;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo-wrapper[b-xuc5upooyx] {
    min-width: 285px;
}

.header-container>.tool-panel[b-xuc5upooyx],
.header-container>.central-delimiter[b-xuc5upooyx] {
    width: fit-content;
    padding: 0;
    margin: 0;
}

.header-container>.central-delimiter[b-xuc5upooyx] {
    width: 285px;
}

.sticky-top .header-content-wrapper[b-xuc5upooyx] {
    justify-content: center;
    gap: 20px;
}

.dropdown-item[b-xuc5upooyx] {
    padding: 0.5rem 1rem;
    /* Customize the spacing */
}

.navbar-brand i[b-xuc5upooyx] {
    font-size: 1.5rem;
    /* Adjust size as needed */
}

.header-carousel-border[b-xuc5upooyx] {
    background-color: #E9353E !important;
    height: 4px;
    opacity: 1;
    border: 0;
}

.row[b-xuc5upooyx] {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.sticky-top>.in-store[b-xuc5upooyx],
.sticky-top>.rewards-points[b-xuc5upooyx] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: red;
    font-size: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sticky-top>.rewards-points[b-xuc5upooyx] {
    display: none;
    right: 12px;
    left: unset;
    width: fit-content;
}

.sticky-top>.in-store>label[b-xuc5upooyx] {
    width: fit-content;
}

.caption-block[b-xuc5upooyx] {
    background-color: #E9353E !important;
    display: flex;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: relative;
    padding: 10px 10px;
}

.caption-block .shopping-in-store-details-info[b-xuc5upooyx] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.caption-block .shopping-in-store-details-info-img[b-xuc5upooyx] {
    height: 20px;
    background-size: cover;
}

.caption-block>.shopping-in-store-details[b-xuc5upooyx] {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.caption-block .shopping-in-store-details[b-xuc5upooyx],
.caption-block .points[b-xuc5upooyx] {
    font-size: 15px;
}

.caption-block .points[b-xuc5upooyx] {
    display: flex;
    justify-content: center;
}

/*.caption-block > div {*/
/*    width: fit-content;*/
/*}*/

.caption-block>.shopping-in-store-details[b-xuc5upooyx],
.caption-block .rewards-balance[b-xuc5upooyx] {
    min-height: 21px;
}

.caption-block.web[b-xuc5upooyx] {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    font-family: "Anton", sans-serif;
}

.caption-block.web>.text-block[b-xuc5upooyx],
.caption-block.web>.central-delimiter[b-xuc5upooyx] {
    white-space: nowrap;
    padding: 0;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.25em;
    justify-content: center;
}

.header-burger-menu-button .navbar>.container-fluid[b-xuc5upooyx] {
    background-color: transparent;
}

.header-burger-menu-button .burger-menu-button-rv[b-xuc5upooyx] {
    background: white;
}

.navbar-collapse[b-xuc5upooyx] {
    background: white;
}

.header-burger-menu-button .burger-menu-button-rv>.navbar-toggler-icon[b-xuc5upooyx] {
    filter: brightness(0) saturate(100%) invert(30%) sepia(12%) saturate(6702%) hue-rotate(190deg) brightness(96%) contrast(86%);
}

.header-burger-menu-button .nav-item-mobile a[b-xuc5upooyx] {
    color: #b72e38 !important;
}

@media screen and (min-width: 1240px) {
    .navbar[b-xuc5upooyx] {
        padding: 25px 0;
    }
}

@media only screen and (max-width: 768px) {
    .sticky-top .header-description-under-logo[b-xuc5upooyx] {
        font-size: 14px;
    }

    .caption-block .shopping-in-store-details[b-xuc5upooyx],
    .caption-block .points[b-xuc5upooyx] {
        font-size: 14px;
    }
}

@media only screen and (max-width: 960px) {
    .header-container>.central-delimiter[b-xuc5upooyx] {
        width: 10%;
    }
}

@media only screen and (max-width: 960px) {
    .header-container>.central-delimiter[b-xuc5upooyx] {
        width: 10%;
    }
}

@media only screen and (max-width: 670px) {
    .header-container>.central-delimiter[b-xuc5upooyx] {
        width: 0;
    }
}

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

    .caption-block.web[b-xuc5upooyx],
    .sticky-top .header-content-wrapper[b-xuc5upooyx],
    .header-container[b-xuc5upooyx] {
        gap: 40px;
    }

    .header-container>.tool-panel[b-xuc5upooyx] {
        min-width: 316px;
    }

    .sticky-top>.row>nav>.d-md-block[b-xuc5upooyx] {
        min-width: 316px;
    }

    .caption-block.web>.central-delimiter[b-xuc5upooyx] {
        width: 285px;
    }

    .caption-block.web>.text-block[b-xuc5upooyx] {
        min-width: 316px;
    }
}

.increased-logo[b-xuc5upooyx] {
    transform: scale(1.5);
}

@media (max-width: 350px) {
    .caption-block[b-xuc5upooyx] {
        justify-content: center;
    }
}

.header-main-container.mobile[b-xuc5upooyx] {
    position: relative;
}

.chat-bot-icon[b-xuc5upooyx] {
    cursor: pointer;
    position: absolute;
    z-index: 10001;
    background-size: cover;
    padding: 1px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #E9353E;
}

.header-main-container.web>.chat-bot-icon[b-xuc5upooyx] {
    width: 96px;
    height: 96px;
    right: 20px;
}

.header-main-container.mobile>.chat-bot-icon[b-xuc5upooyx] {
    top: 4px;
    right: 10px;
    width: 48px;
    height: 48px;
}

@media screen and (max-width: 1240px) {
    .navbar-expand-lg .navbar-nav[b-xuc5upooyx] {
        flex-direction: column !important;
    }

    .header-main-container.web>.chat-bot-icon[b-xuc5upooyx] {
        top: 72px;
    }
}

@media screen and (min-width: 1240px) {
    .header-main-container.web>.chat-bot-icon[b-xuc5upooyx] {
        top: 38px;
    }
}

@media screen and (max-width: 768px) {
    .header-main-container.web>.chat-bot-icon[b-xuc5upooyx] {
        top: 56px;
    }
}

.nav-mobile-auth-container[b-xuc5upooyx] {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 10px;
    width: auto;
    max-width: calc(100% / 2 - 10px - 75px);
}

.nav-mobile-auth-content[b-xuc5upooyx] {
    width: 100%;
}

.nav-mobile-auth[b-xuc5upooyx] {
    text-decoration: none;
    height: 56px;
    display: flex;
    align-items: center;
}

.header-main-container.web>.nav-mobile-auth-container[b-xuc5upooyx] {
    display: none;
    height: 56px;
}

.nav-mobile-auth-button[b-xuc5upooyx] {
    border: none;
    background-color: transparent;
    color: #b72e38;
    font-family: "Anton", Sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0;
}

.nav-mobile-auth-button.blue[b-xuc5upooyx] {
    background-color: #E9353E;
    color: white;
    font-size: 14px;
    text-align: center;
    border-radius: 30px;
    padding: 4px 12px;
}

.block-link[b-xuc5upooyx] {
    color: #fff;
    text-decoration: none;
}

    .block-link:hover[b-xuc5upooyx] {
        color: darkgray;
    }

.sticky-top[b-xuc5upooyx] {
    margin-bottom: 3px;
}
/* _content/ComponentsLibrary/Components/Image/ImageComponent.razor.rz.scp.css */
.image[b-p7rzk23yvj] {
    position: relative;
    width: 100%;
    height: 100%;
}

.image > img[b-p7rzk23yvj] {
    object-fit: contain;
}

.no-image-placeholder[b-p7rzk23yvj] {
    position: absolute;
    inset: 0;
}

.no-image-icon[b-p7rzk23yvj] {
    width: 2.25rem;
    height: 2.25rem;
    color: rgba(0,0,0,0.45);
    filter: invert(40%);
}
/* _content/ComponentsLibrary/Components/Map/GoogleMapComponent.razor.rz.scp.css */
.custom-map[b-ft5m9niqmu] {
    height: 100%;
    width: 100%;
    min-height: 81vh;
}
/* _content/ComponentsLibrary/Components/PromptMobileAppDownload/PromptMobileAppDownloadComponent.razor.rz.scp.css */

.download-mobile-app-modal-wrapper[b-dbiy2noxez] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /*filter: drop-shadow(0px 6px 14px rgba(0, 0, 0, 0.1));*/
    pointer-events: all;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6) !important;
    position: fixed;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
}

.download-mobile-app-modal-content[b-dbiy2noxez] {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 450px;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
/* _content/ComponentsLibrary/Components/Select/SelectComponent.razor.rz.scp.css */
.item-selector[b-592ihyvftk] {
    width: 200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.custom-select[b-592ihyvftk] {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    background-color: #c9c9c9;
    border: 3px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

    .custom-select:active[b-592ihyvftk] {
        background-color: #d9d9d9;
    }

.dropdown-icon[b-592ihyvftk] {
    font-size: 14px;
    color: #333;
    position: absolute;
    right: 20px;
}

.selected-item[b-592ihyvftk] {
    width: 100%;
    padding: 0 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-list[b-592ihyvftk] {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: absolute;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item[b-592ihyvftk] {
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    text-align: left;
}

    .dropdown-item:hover[b-592ihyvftk],
    .dropdown-item:focus[b-592ihyvftk],
    .dropdown-item:active[b-592ihyvftk]
    {
        background-color: #E9353E;
        color: #fff;
    }
/* _content/ComponentsLibrary/Components/Unauthorized/UnauthorizedComponent.razor.rz.scp.css */
.black-out[b-0eqcc3jkya] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* _content/ComponentsLibrary/Layouts/Auth/AuthLayout.razor.rz.scp.css */
.auth-layout-wrapper .auth-l-header[b-yx3j0sq0g9] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.auth-layout-wrapper.mobile[b-yx3j0sq0g9] {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: auto;
}

.increased-logo[b-yx3j0sq0g9] {
    transform: scale(1.5);
    margin-top: 2rem;
}
/* _content/ComponentsLibrary/Pages/Admin/WeeklyAdFromCoupon/AvailableCoupons/AvailableCouponsComponent.razor.rz.scp.css */
.available-coupons[b-9ki9my7qkn] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
/* _content/ComponentsLibrary/Pages/Admin/WeeklyAdFromCoupon/AvailableCoupons/CouponItem/CouponItemComponent.razor.rz.scp.css */
.item[b-a86iusd5c9] {
    position: relative;
    border: 2px solid silver;
    width: 250px;
    height: 340px;

    display: flex;
    flex-direction: column;
    border-radius: 4px;
}

.item > .black-out[b-a86iusd5c9] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item > .image-container[b-a86iusd5c9] {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.item > .image-container > img[b-a86iusd5c9] {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.item > .description[b-a86iusd5c9] {
    font-family: "Anton", sans-serif;
    font-weight: bold !important;
    color: black;
}

.item > .description[b-a86iusd5c9],
.item > .short-description[b-a86iusd5c9] {
    padding-inline: 12px;
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item > .short-description[b-a86iusd5c9] {
    font-size: 16px;
    color: #7c7c7c;
}

.item > .description[b-a86iusd5c9],
.item > .short-description[b-a86iusd5c9] {
    padding-top: 4px;
}

.item > .button[b-a86iusd5c9] {
    height: 40px;
    padding-inline: 10px;
    margin: auto auto 5px;
    background: #E9353E;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    transition: transfrom 0.2s ease;
}

.item > .button:hover[b-a86iusd5c9] {
    transform: scale(1.06);
    cursor: pointer;
}
/* _content/ComponentsLibrary/Pages/Admin/WeeklyAdFromCoupon/WeeklyAdFromCouponPage.razor.rz.scp.css */
.weekly-ad-from-coupon-container[b-65q4154zww] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.weekly-ad-from-coupon-container > .weekly-ad-from-coupon-content[b-65q4154zww] {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding-inline: 5rem;
    padding-block: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.weekly-ad-from-coupon-container > .weekly-ad-from-coupon-content > .tabs-wrapper[b-65q4154zww] {
    display: flex;
    justify-content: left;
    gap: 15px;
}

.weekly-ad-from-coupon-container > .weekly-ad-from-coupon-content > .tabs-wrapper > .tab[b-65q4154zww] {
    background-color: #1b6ec2;
    color: #fff;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    opacity: 0.8;
}

.weekly-ad-from-coupon-container > .weekly-ad-from-coupon-content > .tabs-wrapper > .tab.active[b-65q4154zww] {
    opacity: 1;
}

.weekly-ad-from-coupon-container > .weekly-ad-from-coupon-content > .tab-content[b-65q4154zww] {
    width: 100%;
    flex: 1 1;
}

@media only screen and (max-width: 767px) {
    .weekly-ad-from-coupon-container > .weekly-ad-from-coupon-content[b-65q4154zww] {
        flex-direction: column-reverse;
        gap: 30px;
        padding-inline: unset;
    }
}
/* _content/ComponentsLibrary/Pages/Admin/WeeklyAdFromCoupon/WeeklyAdsTab/WeeklyAdItem/WeeklyAdItemComponent.razor.rz.scp.css */
.item[b-eepepvmlb1] {
    position: relative;
    border: 2px solid silver;
    width: 250px;
    height: 340px;

    display: flex;
    flex-direction: column;
    border-radius: 4px;
}

.item > .black-out[b-eepepvmlb1] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item > .icons-container[b-eepepvmlb1] {
    display: flex;
    justify-content: end;
    padding: 10px;
}

    .item > .icons-container i.bi-trash[b-eepepvmlb1] {
        color: red;
    }

    .item > .icons-container > i[b-eepepvmlb1] {
        font-size: 24px;
        line-height: 24px;
        cursor: pointer;
        transition: transfrom 0.2s ease;
    }

.item > .icons-container > img[b-eepepvmlb1] {
    cursor: pointer;
    width: 24px;
}

.item > .icons-container > i.bi-heart[b-eepepvmlb1],
.item > .icons-container > i.bi-heart-fill[b-eepepvmlb1] {
    color: red;
}

.item > .icons-container > i.bi-tag[b-eepepvmlb1],
.item > .icons-container > i.bi-tag-fill[b-eepepvmlb1] {
    color: #00bf21;
}

.item > .icons-container > i.bi-receipt[b-eepepvmlb1],
.item > .icons-container > i.bi-receipt-fill[b-eepepvmlb1] {
    color: #61a0ff;
}

.item > .icons-container > img:hover[b-eepepvmlb1],
.item > .icons-container > i:hover[b-eepepvmlb1] {
    transform: scale(1.06);
}

.item > .image-container[b-eepepvmlb1] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.item > .image-container > img[b-eepepvmlb1] {
    height: 100px;
    object-fit: contain;
    width: 100%;
}

.item > .price[b-eepepvmlb1] {
    padding-left: 8px;
    font-size: 18px;
    font-weight: 500;
}

.item > .price[b-eepepvmlb1],
.item > .description[b-eepepvmlb1] {
    font-family: "Anton", sans-serif;
    font-weight: bold !important;
    color: black;
}

.item > .price[b-eepepvmlb1],
.item > .description[b-eepepvmlb1],
.item > .short-description[b-eepepvmlb1] {
    padding-inline: 12px;
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item > .short-description[b-eepepvmlb1] {
    font-size: 16px;
    color: #7c7c7c;
}

.item > .description[b-eepepvmlb1],
.item > .short-description[b-eepepvmlb1] {
    padding-top: 4px;
}

.item > .button[b-eepepvmlb1] {
    width: 50%;
    height: 40px;
    margin: auto auto 5px;
    background: #E9353E;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    transition: transfrom 0.2s ease;
}

.item > .button:hover[b-eepepvmlb1] {
    transform: scale(1.06);
    cursor: pointer;
}
/* _content/ComponentsLibrary/Pages/Admin/WeeklyAdFromCoupon/WeeklyAdsTab/WeeklyAdsTabComponent.razor.rz.scp.css */
.weekly-ads[b-rmwl88cv6n] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
/* _content/ComponentsLibrary/Pages/Auth/EditProfile/EditProfilePage.razor.rz.scp.css */
.edit-profile-container .status-message[b-khdns35x0m] {
    margin-top: 2rem;
    min-height: 30px;
    font-size: 16px !important;
}

.edit-profile-container .welcome-text[b-khdns35x0m] {
    margin-bottom: 0;
}

.edit-profile-container .btn[b-khdns35x0m] {
    background: #428bca;
}

.edit-profile-container > .row.disabled[b-khdns35x0m] {
    opacity: 0.5;
    pointer-events: none;
}
/* _content/ComponentsLibrary/Pages/Auth/ForgetPassword/ForgetPasswordPage.razor.rz.scp.css */
.forget-password-container > .status-message[b-441ftaeuly] {
    min-height: 30px;
    font-size: 16px !important;
}

.forget-password-container .row.disabled[b-441ftaeuly] {
    opacity: 0.5;
    pointer-events: none;
}
/* _content/ComponentsLibrary/Pages/Auth/Login/LoginPage.razor.rz.scp.css */
.login-container > .content-container[b-o37lddzust] {
    /*    padding-top: 2rem !important;*/
}

.login-container > .status-message[b-o37lddzust] {
    margin-block: 0.5rem !important;
    min-height: 10px;
    font-size: 16px !important;
}

.content-container .auth-actions button[b-o37lddzust] {
    width: 120px;
}

    .login-container .form-label[b-o37lddzust] {
        padding-block: 0;
    }

.login-container .carousel[b-o37lddzust] {
    margin-bottom: 6rem;
}

.login-container .carousel-control-prev[b-o37lddzust],
.login-container .carousel-control-next[b-o37lddzust] {
    bottom: 14px;
}

.login-container .carousel-control-prev > span[b-o37lddzust],
.login-container .carousel-control-next > span[b-o37lddzust] {
    filter: invert(13%) sepia(13%) saturate(19%) hue-rotate(317deg) brightness(96%) contrast(81%);
    display: none;
}

.login-container .carousel-indicators[b-o37lddzust] {
    bottom: -18px;
    display: flex;
    gap: 10px;
}

    .login-container .carousel-indicators > button[b-o37lddzust] {
        background: #b72e38;
        width: 10px;
        height: 10px;
        padding: 0;
        margin: 0;
        border: 0;
        border-radius: 10px;
    }

.login-container .transparent-button[b-o37lddzust] {
    width: 240px;
    border-radius: 18px;
    text-transform: uppercase;
    font-family: Anton, sans-serif;
    background: transparent;
    color: #b72e38;
    border: none;
}

.login-container .transparent-button:hover[b-o37lddzust] {
    font-weight: 700;
}

.transparent-button:focus[b-o37lddzust] {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #7f1f26;
}

.login-container.web-platform .content-container[b-o37lddzust] {
    background: #fff4f4;
    border: 4px solid #b72e38;
    padding: 32px !important;
}

.input-container[b-o37lddzust] {
    width: 100%;
    position: relative;
    display: inline-block;
}

.input-icon[b-o37lddzust] {
    position: absolute;
    height: 20px;
    right: 8px; 
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer; 
}

.login-container .login-button-wrapper[b-o37lddzust] {
    width: 240px;
    height: 38px;
    margin-inline: auto;
    
    display: flex;
    gap: 10px;
}

.login-container .login-button-wrapper > .sign-in-btn[b-o37lddzust] {
    width: unset;
    flex-grow: 1;
}

.login-container .login-button-wrapper > .bio-auth-btn[b-o37lddzust] {
    width: 38px;
    border-radius: 12px;
    background: #1b6ec2 url(images/svg/fingerprint-icon.svg) center no-repeat !important;
    background-size: 75% !important;
}

.gray-modal-backdrop[b-o37lddzust] {
    background: #00000080;
}

a[b-o37lddzust] {
    color: #E9353E;
}
/* _content/ComponentsLibrary/Pages/Auth/PasswordChange/PasswordChangePage.razor.rz.scp.css */
.change-password-container[b-ccb9ln497m] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.change-password-container > .status-message[b-ccb9ln497m] {
    min-height: 30px;
    font-size: 16px !important;
}

.change-password-container .login-text[b-ccb9ln497m] {
    margin-bottom: 2rem;
}

.change-password-container > .row.disabled[b-ccb9ln497m] {
    opacity: 0.5;
    pointer-events: none;
}
/* _content/ComponentsLibrary/Pages/Auth/PasswordReset/PasswordResetPage.razor.rz.scp.css */
.reset-password-container[b-jcke3lcf80] {
    display: flex;
    justify-content: center;
    padding-top: 2rem !important;
}

.reset-password-container .status-message[b-jcke3lcf80] {
    min-height: 30px;
    font-size: 16px !important;
}

.reset-password-container .login-text[b-jcke3lcf80] {
    margin-bottom: 2rem;
}

.reset-password-container .btn.btn-success[b-jcke3lcf80] {
    border-radius: 10px !important;
}

.reset-password-container > .row.disabled[b-jcke3lcf80] {
    opacity: 0.5;
    pointer-events: none;
}
/* _content/ComponentsLibrary/Pages/Auth/RegisterAccount/RegisterAccountPage.razor.rz.scp.css */
.register-account-container .row.disabled[b-bckcntnxrg] {
    opacity: 0.5;
    pointer-events: none;
}

.register-account-container .status-message[b-bckcntnxrg] {
    margin-top: 2rem;
    min-height: 30px;
    font-size: 16px !important;
}
/* _content/ComponentsLibrary/Pages/Auth/StoreSetup/StoreSetup.razor.rz.scp.css */
/* _content/ComponentsLibrary/Pages/AvatarAssistantSettings/AvatarAssistantSettingsPage.razor.rz.scp.css */
.avatar-page-container[b-u7cgrxh7ke] {
    font-family: 'Anton', sans-serif;
    background-color: #dfdfdf;
    height: 100%;
    padding-bottom: 2rem;
    position: relative;
}

.avatar-page-container > .black-out[b-u7cgrxh7ke] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-title[b-u7cgrxh7ke] {
    font-weight: bold;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0;
}

.avatar-page-container .image-container[b-u7cgrxh7ke] {
    height: 25vh;
    position: relative;
}

.avatar-page-container.web .image-container[b-u7cgrxh7ke] {
    height: 37.5vh;
    display: flex;
    justify-content: center;
}

.avatar-page-container .background-image[b-u7cgrxh7ke] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-page-container.web .background-image[b-u7cgrxh7ke] {
    width: 40%;
}

.avatar-page-container .overlay-image[b-u7cgrxh7ke] {
    position: absolute;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}

.page-menu[b-u7cgrxh7ke] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem;
    gap: 2rem;
}

.menu-block[b-u7cgrxh7ke] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4px;
}

.block-title[b-u7cgrxh7ke] {
    color: red;
    font-weight: bold;
    text-transform: uppercase;
}

.update-btn[b-u7cgrxh7ke] {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #E9353E;
    margin: 12px 0;
    padding: 8px 48px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #E9353E;
    margin: 0 auto;
}

    .update-btn:active[b-u7cgrxh7ke] {
        color: #fff;
        background: #E9353E;
        border: 1px solid #fff;
    }

@media(min-width: 1300px) {
    .page-menu[b-u7cgrxh7ke] {
        flex-direction: row;
        justify-content: space-around;
    }
}
/* _content/ComponentsLibrary/Pages/BalanceTransactions/BalanceTransactionsPage.razor.rz.scp.css */
.balance-transactions[b-3l3ldxxj9w] {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 10px 20px;
    
    display: flex;
    flex-direction: column;
}

.balance-transactions > .items[b-3l3ldxxj9w] {
    flex-grow: 1;
    align-content: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.balance-transactions > .items > .item[b-3l3ldxxj9w] {
    width: 100%;
    min-height: 50px;
    padding: 10px;
    height: fit-content;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    cursor: pointer;
    transition: transform 80ms ease-in-out;
    align-items: center;
    font-family: "Anton", Sans-serif;
}

.balance-transactions > .items > .item:hover[b-3l3ldxxj9w] {
    transform: scale(1.02);
}

.balance-transactions > .items > .item > .label[b-3l3ldxxj9w] {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e6e6e;
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

.balance-transactions > .items > .item > .label > .value[b-3l3ldxxj9w] {
    color: black;
    font-weight: 500;
}

.balance-transactions > .items > .item .store-name[b-3l3ldxxj9w]{
    flex: 1;
}

.balance-transactions > .items > .item .groceries[b-3l3ldxxj9w]{
    max-height: 30px;
    object-fit:contain;
    margin-right: 1rem;
}

.balance-transactions > .items > .item .arrow[b-3l3ldxxj9w]{
    max-height: 24px;
    object-fit:contain;
}

.no-items[b-3l3ldxxj9w] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-message[b-3l3ldxxj9w] {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%);
}

.loader-message.second[b-3l3ldxxj9w] {
    top: 65%;
}

@media only screen and (max-width: 767px) {
    .balance-transactions > .items[b-3l3ldxxj9w] {
        justify-content: center;
        width: 100%;
    }

    .balance-transactions > .items > .item[b-3l3ldxxj9w] {
        display: grid;
        grid-template-columns: 35px 1fr 0.5fr;
        grid-template-rows: auto auto;
        gap: 4px 8px;
        align-items: center;
        padding: 12px;
    }

    .balance-transactions > .items > .item .groceries[b-3l3ldxxj9w] {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 35px;
        height: auto;
    }

    .balance-transactions > .items > .item .transaсtion-time[b-3l3ldxxj9w] {
        grid-column: 2;
        grid-row: 1;
    }
    .balance-transactions > .items > .item .transaсtion-time .value[b-3l3ldxxj9w] {
        font-weight: 300;
    }

    .balance-transactions > .items > .item .store-name[b-3l3ldxxj9w] {
        grid-column: 2;
        grid-row: 2;
    }

    .balance-transactions > .items > .item .points[b-3l3ldxxj9w] {
        grid-column: 3;
        grid-row: 1;
    }

    .balance-transactions > .items > .item .total-spent[b-3l3ldxxj9w] {
        grid-column: 3;
        grid-row: 2;
    }

    .balance-transactions > .items > .item .arrow[b-3l3ldxxj9w] {
        grid-column: 4;
        grid-row: 1 / span 2;
        justify-self: end;
        width: 20px;
    }

    .balance-transactions > .items > .item .divider[b-3l3ldxxj9w] {
        display: none;
    }
}
/* _content/ComponentsLibrary/Pages/BalanceTransactions/TransactionItems/TransactionItemsPage.razor.rz.scp.css */
.transaction-items[b-zjk8gxq8th] {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

    .transaction-items > .header[b-zjk8gxq8th] {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2px;
        padding-block: 6px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
    }

        .transaction-items > .header > .items-wrapper > .item[b-zjk8gxq8th] {
            width: fit-content;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.5;
            color: #6e6e6e;
            display: flex;
        }

.items-wrapper[b-zjk8gxq8th] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding-block: 6px;
}

.side[b-zjk8gxq8th] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center[b-zjk8gxq8th] {
    text-align: center;
    padding-block: 6px;
}

.mobile-back-button[b-zjk8gxq8th] {
    width: 50%;
    padding: 10px;
}

    .mobile-back-button .back-button[b-zjk8gxq8th] {
        padding: 10px;
    }

.transaction-items > .items[b-zjk8gxq8th] {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .transaction-items > .items > .item[b-zjk8gxq8th] {
        width: 335px;
        min-height: 160px;
        padding: 10px;
        height: fit-content;
        border: 2px solid #265EA7;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        cursor: pointer;
        transition: transform 80ms ease-in-out;
    }

        .transaction-items > .items > .item:hover[b-zjk8gxq8th] {
            transform: scale(1.02);
        }

        .transaction-items > .items > .item > .label[b-zjk8gxq8th] {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #6e6e6e;
            display: flex;
            justify-content: space-between;
        }

            .transaction-items > .items > .item > .label > .name[b-zjk8gxq8th] {
                color: black;
                font-weight: 500;
            }

.transaction-items > .no-items[b-zjk8gxq8th] {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .transaction-items > .items[b-zjk8gxq8th] {
        justify-content: center;
    }
}

.transaction-items > .items > table[b-zjk8gxq8th] {
    border-collapse: collapse;
}

    .transaction-items > .items > table th[b-zjk8gxq8th] {
        text-align: left;
        padding: 12px 20px;
        color: #0056b3;
        font-weight: bold;
        font-size: 16px;
    }

    .transaction-items > .items > table td[b-zjk8gxq8th] {
        padding: 12px 20px;
        font-size: 16px;
        color: #555;
    }

    .transaction-items > .items > table > tr:not(:last-child) td[b-zjk8gxq8th] {
        border-bottom: 1px solid #e0e0e0;
    }

.transaction-items > .summary[b-zjk8gxq8th] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Anton", Sans-serif;
}

    .transaction-items > .summary > p > span[b-zjk8gxq8th] {
        color: gray;
    }

.loader-message[b-zjk8gxq8th] {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%);
}

    .loader-message.second[b-zjk8gxq8th] {
        top: 65%;
    }
/* _content/ComponentsLibrary/Pages/CardNumber/CardNumberPage.razor.rz.scp.css */
.card-number-container .status-message[b-2spqhgb1nr] {
    margin-top: 2rem;
    min-height: 30px;
    font-size: 16px !important;
}

.card-number-container .barcode-wrapper[b-2spqhgb1nr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.card-number-container .barcode-container[b-2spqhgb1nr] {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4 / 1;
    display: flex;
}

.card-number-container .barcode-container > .unit-line[b-2spqhgb1nr] {
    height: 100%;
}

.card-number-container .barcode-container > .unit-line.black[b-2spqhgb1nr] {
    background: black;
}

.card-number-container .barcode-container > .unit-line.white[b-2spqhgb1nr] {
    background: white;
}

.card-number-container .card-number[b-2spqhgb1nr] {
    margin-top: 4px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-number-container .caption[b-2spqhgb1nr] {
    /*color: #1a8a24;*/
    color: red;
    min-height: 24px;
    font-size: 16px;
    margin-bottom: 10px;
}
/* _content/ComponentsLibrary/Pages/Careers/CareersPage.razor.rz.scp.css */
.careers-container[b-q2bh23wy42] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;

    padding-top: 1rem;
    padding-inline: 2rem;
}

.careers-container > iframe[b-q2bh23wy42] {
    width: 100%;
    border: none;
}

.careers-container.loading > h2[b-q2bh23wy42],
.careers-container.loading > iframe[b-q2bh23wy42] {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}
/* _content/ComponentsLibrary/Pages/ContactUs/ContactUsPage.razor.rz.scp.css */
.contact-us-container[b-46dic965ir] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.contact-us-container.mobile[b-46dic965ir] {
    overflow: auto;
}

.contact-us-container.loading[b-46dic965ir] {
    overflow: hidden;
}

.contact-us-container > iframe[b-46dic965ir] {
    width: 50%;
    padding-top: 1rem;
    border: none;
}

.contact-us-container.mobile > iframe[b-46dic965ir] {
    position: absolute;
}

.contact-us-container.loading > iframe[b-46dic965ir] {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .contact-us-container > iframe[b-46dic965ir] {
        width: 100%;
        padding-inline: 5px;
    }
}
/* _content/ComponentsLibrary/Pages/DeleteAccountInstruction/DeleteAccountInstructionPage.razor.rz.scp.css */
/* _content/ComponentsLibrary/Pages/FooterLinks/Faq.razor.rz.scp.css */
img.faq-logo[b-x3tfwpwy3d] {
    width: 25%;
}

@media (max-width: 480px) {
    img.faq-logo[b-x3tfwpwy3d] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    img.faq-logo[b-x3tfwpwy3d] {
        width: 50%;
    }
}

@media (max-width: 1024px) {
    img.faq-logo[b-x3tfwpwy3d] {
        width: 50%;
    }
}
/* _content/ComponentsLibrary/Pages/FriedChicken/FriedChickenPage.razor.rz.scp.css */
.fried-chicken-page-container[b-q0bxopfzdn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 20px;
    padding-bottom: 5rem;
}

.fried-chicken-page-container > .background[b-q0bxopfzdn] {
    width: 100%;
    background: url(images/food/famous-fried-chicken.webp) center no-repeat;
    aspect-ratio: 2239 / 380;
    background-size: contain;
}

.fried-chicken-page-container > .main-title[b-q0bxopfzdn] {
    width: fit-content;
    margin-top: 5rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    text-align: center;
    color: #E9353E;
}

.fried-chicken-page-container > .sub-title[b-q0bxopfzdn] {
    width: fit-content;
    margin-block: 1rem;

    text-align: center;
    font-family: "Anton", sans-serif;
    font-size: 1.2em;
    font-weight: 900;
    color: #E9353E;
}

.fried-chicken-page-container > .main-title[b-q0bxopfzdn],
.fried-chicken-page-container > .sub-title[b-q0bxopfzdn] {
    padding-inline: 2rem;
}

@media screen and (max-width: 768px) {
    .fried-chicken-page-container[b-q0bxopfzdn] {
        padding-inline: 5px;
    }

    .fried-chicken-page-container > .main-title[b-q0bxopfzdn] {
        font-size: 2.5rem;
    }

    .fried-chicken-page-container > .sub-title[b-q0bxopfzdn] {
        font-size: 1em;
    }

    .fried-chicken-page-container > .main-title[b-q0bxopfzdn],
    .fried-chicken-page-container > .sub-title[b-q0bxopfzdn] {
        padding-inline: 10px;
    }
}
/* _content/ComponentsLibrary/Pages/Home/ContactDetails/ContactDetailsComponent.razor.rz.scp.css */
.home-page-contact-wrapper[b-ca4tcd6hhq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .home-page-contact-wrapper > .store-container[b-ca4tcd6hhq] {
        width: 100%;
        background: #E9353E;
        border-radius: 24px;
        max-height: 240px;
        min-height: 160px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    .home-page-contact-wrapper.mobile > .store-container[b-ca4tcd6hhq] {
        min-height: 285px;
        padding-block: 10px;
        height: unset;
        align-items: baseline;
    }

    .home-page-contact-wrapper > .store-container > .store-wrapper[b-ca4tcd6hhq] {
        height: 100%;
        width: 90%;
        display: flex;
        gap: 32px;
    }

    .home-page-contact-wrapper.mobile > .store-container > .store-wrapper > img[b-ca4tcd6hhq] {
        width: 100%;
        bottom: 0;
        margin-right: 0;
    }

.home-page-contact-wrapper > .store-container > .store-wrapper > img[b-ca4tcd6hhq] {
    margin-right: 3.5vw;
    width: 60vw;
    z-index: 1;
}

    .home-page-contact-wrapper > .store-container > .store-wrapper img[b-ca4tcd6hhq] {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .home-page-contact-wrapper > .store-container > .store-wrapper .text-block-content[b-ca4tcd6hhq] {
        height: 100%;
        width: 100%;
        margin: 16px 0;
        display: flex;
        flex-direction: column;
        line-height: 1;
        gap: clamp(4px, 0.4vw, 8px);
    }
    .home-page-contact-wrapper > .store-container > .store-wrapper .text-block[b-ca4tcd6hhq] {
        font-family: 'Anton', sans-serif;
        display: flex;
        flex-direction: column;
        color: #fff;
        line-height: 1;
        gap: clamp(4px, 0.4vw, 8px);
        text-align: center;
        width: 40%;
        height: 100%;
        font-size: clamp(14px, 1.4vw, 20px);
    }

    .home-page-contact-wrapper.mobile > .store-container > .store-wrapper .text-block[b-ca4tcd6hhq] {
        width: 100%;
        gap: 10px;
        z-index: 100;
    }

    .home-page-contact-wrapper > .store-container > .store-wrapper .text-block .title[b-ca4tcd6hhq] {
        font-size: clamp(32px, 3.2vw, 42px);
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: clamp(4px, 0.4vw, 10px);
        white-space: nowrap;
    }

    .home-page-contact-wrapper.mobile > .store-container > .store-wrapper .text-block .title[b-ca4tcd6hhq] {
        font-size: 26px;
    }

    .home-page-contact-wrapper > .store-container > .store-wrapper .text-block .sub-title[b-ca4tcd6hhq] {
        font-size: clamp(28px, 2.8vw, 38px);
        text-transform: uppercase;
        letter-spacing: clamp(4px, 0.4vw, 8px);
        white-space: nowrap;
    }

    .home-page-contact-wrapper.mobile > .store-container > .store-wrapper .text-block .sub-title[b-ca4tcd6hhq] {
        font-size: 22px;
        line-height: 26px;
    }

    .home-page-contact-wrapper > .store-container > .store-wrapper .links[b-ca4tcd6hhq] {
        height: clamp(2px, 2vw, 28px);
        display: flex;
        justify-content: center;
        gap: clamp(8px, 0.8vw, 20px);
        margin-top: clamp(4px, 0.4vw, 8px);
        z-index: 2;
    }

    .home-page-contact-wrapper.web > .store-container > .store-wrapper .links[b-ca4tcd6hhq] {
        width: 40%;
    }

        .home-page-contact-wrapper > .store-container > .store-wrapper .links a[b-ca4tcd6hhq] {
            display: flex;
            position: relative;
            height: clamp(22px, 2.2vw, 30px);
            width: clamp(22px, 2.2vw, 30px);
        }

        .home-page-contact-wrapper > .store-container > .store-wrapper .links img[b-ca4tcd6hhq] {
            height: 100%;
            width: 100%;
            background: #fff;
            border-radius: 50%;
        }

@media (max-width: 1350px) {

        .home-page-contact-wrapper > .store-container > .store-wrapper > img[b-ca4tcd6hhq] {
            width: 80%;
            margin-right: 40px;
        }
}


@media (max-width: 880px) {
    .home-page-contact-wrapper[b-ca4tcd6hhq] {
        justify-content: center !important;
        flex-wrap: wrap;
    }

        .home-page-contact-wrapper > .store-container > .store-wrapper > img[b-ca4tcd6hhq] {
            margin-right: 20px;
        }
}

.instagram[b-ca4tcd6hhq] {
    background: #E9353E !important;
    border-radius: unset !important;
}
/* _content/ComponentsLibrary/Pages/Home/CouponsSlider/CouponsSliderComponent.razor.rz.scp.css */
.coupons-block[b-5tyli8uiry] {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

    .coupons-block.web[b-5tyli8uiry] {
        width: 80%;
    }

    .coupons-block.mobile[b-5tyli8uiry] {
        width: 95%;
    }

#coupons-carousel-wrapper[b-5tyli8uiry] {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 272px;
    position: relative;
}

.coupons-block.mobile #coupons-carousel-wrapper[b-5tyli8uiry] {
    overflow-x: scroll;
}

.coupons-block > .arrow[b-5tyli8uiry] {
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
}

.coupons-block.mobile > .arrow[b-5tyli8uiry] {
    display: none;
}

    .coupons-block > .arrow.scroll-right[b-5tyli8uiry] {
        right: -50px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='gray' %3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .coupons-block > .arrow.scroll-left[b-5tyli8uiry] {
        left: -50px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='gray'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }

    .coupons-block > .arrow.scroll-right.disabled[b-5tyli8uiry] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='lightgray' %3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .coupons-block > .arrow.scroll-left.disabled[b-5tyli8uiry] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='lightgray'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }

.carousel-scroller[b-5tyli8uiry] {
    position: absolute;
    left: 0;
    display: flex;
    height: 100%;
    gap: 10px;
    padding: 16px 0;
    margin: 0 4px; /* need for shadow and don't breake scroll */
    transition: transform 0.3s ease-in-out;
}

    #coupons-carousel-wrapper[b-5tyli8uiry]::-webkit-scrollbar {
        width: 4px;
        height: 6px;
    }

#coupons-carousel-wrapper[b-5tyli8uiry]::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 8px;
}

#coupons-carousel-wrapper[b-5tyli8uiry]::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 8px;
}

    #coupons-carousel-wrapper[b-5tyli8uiry]::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }

.loader[b-5tyli8uiry] {
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media(max-width:850px) {

    .buttons-wrapper[b-5tyli8uiry] {
        max-width: 100%;
    }

    #coupons-carousel-wrapper[b-5tyli8uiry] {
        height: 408px;
    }

    .loader[b-5tyli8uiry] {
        height: 350px;
    }

    .coupon-image[b-5tyli8uiry] {
        height: 40%;
    }

    .coupon-banner[b-5tyli8uiry] {
        flex-direction: column;
        justify-content: start;
    }


    .coupon-text .title[b-5tyli8uiry] {
        font-size: 1em;
    }

    .coupon-text .description[b-5tyli8uiry] {
        font-size: 0.8em;
    }

    .coupon-info[b-5tyli8uiry] {
        justify-content: space-between;
        flex-grow: 1;
    }

        .coupon-info .save-to-list[b-5tyli8uiry] {
            align-self: center;
            margin-bottom: 10px;
        }
}
/* _content/ComponentsLibrary/Pages/Home/HomePage.razor.rz.scp.css */
.header-carousel-border[b-gu95l00ubx] {
    background-color: #E9353E !important;
    height: 4px;
    opacity: 1;
    border: 0;
}

.row[b-gu95l00ubx] {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.icons-container[b-gu95l00ubx] {
    padding-top: 2rem !important;
}

.icons-container>.row[b-gu95l00ubx] {
    flex-wrap: nowrap;
}

.icons-container>.row>.col[b-gu95l00ubx] {
    padding: 0 !important;
}

.icons-container>.row>.col>p[b-gu95l00ubx] {
    font-size: 0.94rem;
}

.icons-container>.row>.col a[b-gu95l00ubx] {
    display: block;
}

.icons-container>.row>.col a>img[b-gu95l00ubx] {
    max-width: 64px;
    width: 50%;
}

.home-page-block .row>*[b-gu95l00ubx] {
    padding: 0;
}

.burger-menu-button-rv[b-gu95l00ubx] {
    background: white;
}

.burger-menu-button-rv>.navbar-toggler-icon[b-gu95l00ubx] {
    filter: invert(28%) sepia(93%) saturate(875%) hue-rotate(187deg) brightness(90%) contrast(89%);
}

.home-page-block[b-gu95l00ubx] {
    display: flex;
    flex-direction: column;
}

.home-page-block.web[b-gu95l00ubx] {
    gap: 3rem;
    padding-bottom: 3rem;
}

.home-page-block.mobile[b-gu95l00ubx] {
    gap: 20px;
    padding-bottom: 20px;
}

.carousel-item[b-gu95l00ubx] {
    height: 100%;
    aspect-ratio: 2000/598;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-page-block .img-fluid[b-gu95l00ubx] {
    max-width: 60px !important;
}

.carousel-item.mobile[b-gu95l00ubx] {
    height: 100%;
    aspect-ratio: 1920/768;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-page-block .mobile-grid-icons[b-gu95l00ubx] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.home-page-block .mobile-grid-icon[b-gu95l00ubx] {
    text-align: center;
}

.home-page-block .mobile-grid-icon>a[b-gu95l00ubx] {
    min-height: 64px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.home-page-block.web .central-block[b-gu95l00ubx] {
    padding: 0 10.5rem;
}

.home-page-block.mobile .central-block[b-gu95l00ubx] {
    padding: 0 20px;
}

.home-page-block > .top-container[b-gu95l00ubx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: calc(100% - 6rem);
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}

.home-page-block .splash-image-container[b-gu95l00ubx] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-page-block .splash-image-container > .splash-image[b-gu95l00ubx] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-page-block > .top-container > .options-carousel[b-gu95l00ubx] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-group > .card > a[b-gu95l00ubx] {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 2400 / 1536;
}

@media (max-width: 1350px) {
    .home-page-block.web .central-block[b-gu95l00ubx] {
        padding: 0 3rem;
    }
}

@media (max-width: 950px) {
    
    .home-page-block .central-block[b-gu95l00ubx] {
        padding: 0 1rem;
    }

    .carousel-item img[b-gu95l00ubx] {
        aspect-ratio: 412/151;
    }

    .home-page-block .mobile-grid-icon[b-gu95l00ubx] {
        aspect-ratio: 0.9/1;
    }
}

@media (max-width: 650px) {

    .home-page-block > .top-container[b-gu95l00ubx] {
        width: 100%;
        border-radius: 0 !important;
    }
}
/* _content/ComponentsLibrary/Pages/Home/InfoCards/InfoCardsComponent.razor.rz.scp.css */
.card-img-position[b-rhncbl6eff] {
    text-align: center;
}

    .card-img-position .card-img-responsive-view[b-rhncbl6eff] {
        width: 50%;
        margin-top: 20px;
    }

.cards-container[b-rhncbl6eff] {
    display: flex;
    align-items: stretch;
    padding: 0 10.5rem;
    gap: 20px;
}

.card-block[b-rhncbl6eff] {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 16px;
    border: 3px solid #EA1D2C;
}

.card-img[b-rhncbl6eff] {
    padding: 32px;
    border-bottom: 5px solid;
    border-color: rgba(220, 53, 69, 0.25);
}

.card-text[b-rhncbl6eff] {
    padding: 32px 16px;
}

.card-title[b-rhncbl6eff] {
    font-family: impact, sans-serif;
    color: #EA1D2C;
    text-transform: uppercase;
    font-size: 40px;
}

.card-subtitle[b-rhncbl6eff] {
    font-size: 15px;
    font-family: "Anton", sans-serif;
    color: #7A7A7A;
}

.card-button[b-rhncbl6eff] {
    cursor: pointer;
}

.card-button.card-icon[b-rhncbl6eff] {
    transform: scale(1.4);
}

    .card-button:active[b-rhncbl6eff] {
        opacity: 0.8;
    }

.card-action[b-rhncbl6eff] {
    font-family: "Anton", Sans-serif;
    text-transform: uppercase;
    color: #EA1D2C;
    font-size: 1.2em;
    border-style: double;
    border-width: 3px 0px 3px 0px;
    border-color: #EA1D2C;
    font-weight: 700;
    width: 50%;
    margin-top: auto;
}

@media (max-width: 1350px) {
    .cards-container[b-rhncbl6eff] {
        padding: 0 3rem;
    }
}

@media (max-width: 1200px) {
    .card-block[b-rhncbl6eff] {
        width: 260px;
    }

    .card-title[b-rhncbl6eff] {
        font-size: 32px;
    }
}

@media (max-width: 950px) {
    .cards-container[b-rhncbl6eff] {
        padding: 0 1rem;
    }
}

@media (max-width: 880px) {
    .cards-container[b-rhncbl6eff] {
        justify-content: center !important;
        flex-wrap: wrap;
    }
}
/* _content/ComponentsLibrary/Pages/Home/OptionsSlider/CouponItem/CouponItemComponent.razor.rz.scp.css */
.carousel-scroller-item[b-1at9hlqr3v] {
    height: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.coupon-banner[b-1at9hlqr3v] {
    width: 100%;
    height: 100%;
    gap: 8px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.coupon-info[b-1at9hlqr3v] {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.coupon-image[b-1at9hlqr3v] {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-image > img[b-1at9hlqr3v] {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.coupon-text[b-1at9hlqr3v] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon-text .title[b-1at9hlqr3v] {
    color: #0384D0;
    font-size: 1.2em;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: break-word;
}

.coupon-text .description[b-1at9hlqr3v] {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: break-word;
}

.coupon-text .highlight[b-1at9hlqr3v] {
    color: #dc3545;
    font-weight: bold;
    margin-top: 5px;
}

.buttons-wrapper[b-1at9hlqr3v] {
    display: flex;
    row-gap: 8px;
    column-gap: 8px;
    width: 100%;
    align-self: center;
    flex-wrap: wrap;
    max-width: 160px;
}

.coupon-button[b-1at9hlqr3v] {
    width: 100%;
    border: 0;
    background-color: #0a53be;
    border-radius: 8px;
    color: white;
    padding: 8px 16px;
    text-transform: uppercase;
}

.coupon-button.red[b-1at9hlqr3v] {
    background-color: #dc3545 !important;
}

.loader[b-1at9hlqr3v] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(245, 245, 245, 0.24);
}

@media(max-width:1200px) {

    .buttons-wrapper[b-1at9hlqr3v] {
        max-width: 100%;
    }

    .coupon-image[b-1at9hlqr3v] {
        height: 30%;
    }

    .coupon-banner[b-1at9hlqr3v] {
        flex-direction: column;
        justify-content: start;
    }

    .coupon-text .title[b-1at9hlqr3v] {
        font-size: 1em;
    }

    .coupon-text .description[b-1at9hlqr3v] {
        font-size: 0.8em;
    }

    .coupon-info[b-1at9hlqr3v] {
        justify-content: space-between;
        flex-grow: 1;
    }

    .coupon-info .save-to-list[b-1at9hlqr3v] {
        align-self: center;
        margin-bottom: 10px;
    }
}
/* _content/ComponentsLibrary/Pages/Home/OptionsSlider/OptionsSliderComponent.razor.rz.scp.css */
.coupons-block[b-az0oogxms9] {
    margin: 0 auto;
}

    .coupons-block.web[b-az0oogxms9] {
        width: 80%;
    }

    .coupons-block.mobile[b-az0oogxms9] {
        width: 95%;
    }
    
    .carousel[b-az0oogxms9] {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
#coupons-carousel-wrapper[b-az0oogxms9] {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 272px;
    position: relative;
}

.coupons-block.mobile #coupons-carousel-wrapper[b-az0oogxms9] {
    overflow-x: scroll;
}

.carousel > .arrow[b-az0oogxms9] {
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
}

    .carousel > .arrow.scroll-right[b-az0oogxms9] {
        right: -50px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='gray' %3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .carousel > .arrow.scroll-left[b-az0oogxms9] {
        left: -50px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='gray'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }

    .carousel > .arrow.scroll-right.disabled[b-az0oogxms9] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='lightgray' %3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .carousel > .arrow.scroll-left.disabled[b-az0oogxms9] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='lightgray'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }


.coupons-block.mobile > .carousel > .arrow[b-az0oogxms9] {
    display: none;
}

.buttons-group[b-az0oogxms9] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.option-button[b-az0oogxms9] {
    border: 0;
    min-width: 170px;
    background-color: gray;
    border-radius: 8px;
    color: white;
    padding: 8px 16px;
    text-wrap-mode: nowrap;
}

.option-button.active[b-az0oogxms9] {
    background-color: #0a53be;
}

.empty-list[b-az0oogxms9] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-scroller[b-az0oogxms9] {
    position: absolute;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 10px;
    padding: 16px 0;
    margin: 0 4px; /* need for shadow and don't breake scroll */
    transition: transform 0.3s ease-in-out;
}

    #coupons-carousel-wrapper[b-az0oogxms9]::-webkit-scrollbar {
        width: 4px;
        height: 6px;
    }

#coupons-carousel-wrapper[b-az0oogxms9]::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 8px;
}

#coupons-carousel-wrapper[b-az0oogxms9]::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 8px;
}

    #coupons-carousel-wrapper[b-az0oogxms9]::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }
    
.loader[b-az0oogxms9] {
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media(max-width:1200px) {
    .buttons-group[b-az0oogxms9] {
        gap: 8px;
    }

    #coupons-carousel-wrapper[b-az0oogxms9] {
        height: 350px;
    }

    .loader[b-az0oogxms9] {
        height: 350px;
    }
}

@media(max-width:700px) {

    .option-button[b-az0oogxms9] {
        text-wrap-mode: wrap;
        font-size: 11px;
        min-width: 100px;
        min-height: 50px;        
        flex: 1 1;
    }
}
/* _content/ComponentsLibrary/Pages/Home/OptionsSlider/WeeklyAdItem/WeeklyAdItemComponent.razor.rz.scp.css */
.carousel-scroller-item[b-le0f1eluz9] {
    height: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.coupon-banner[b-le0f1eluz9] {
    width: 100%;
    height: 100%;
    gap: 8px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.coupon-info[b-le0f1eluz9] {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.coupon-image[b-le0f1eluz9] {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-image > img[b-le0f1eluz9] {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.coupon-text[b-le0f1eluz9] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon-text .title[b-le0f1eluz9] {
    color: #0384D0;
    font-size: 1.2em;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: break-word;
}

.coupon-text .description[b-le0f1eluz9] {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: break-word;
}

.coupon-text .highlight[b-le0f1eluz9] {
    color: #dc3545;
    font-weight: bold;
    margin-top: 5px;
}

.buttons-wrapper[b-le0f1eluz9] {
    display: flex;
    row-gap: 8px;
    column-gap: 8px;
    width: 100%;
    align-self: center;
    flex-wrap: wrap;
    max-width: 160px;
}

.coupon-button[b-le0f1eluz9] {
    width: 100%;
    border: 0;
    background-color: #f13c26;
    border-radius: 8px;
    color: white;
    padding: 8px 16px;
    text-transform: uppercase;
}

.coupon-button.red[b-le0f1eluz9] {
    background-color: #dc3545 !important;
}

.loader[b-le0f1eluz9] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(245, 245, 245, 0.24);
}

@media(max-width:1200px) {

    .buttons-wrapper[b-le0f1eluz9] {
        max-width: 100%;
    }

    .coupon-image[b-le0f1eluz9] {
        height: 40%;
    }

    .coupon-banner[b-le0f1eluz9] {
        flex-direction: column;
        justify-content: start;
    }

    .coupon-text .title[b-le0f1eluz9] {
        font-size: 1em;
    }

    .coupon-text .description[b-le0f1eluz9] {
        font-size: 0.8em;
    }

    .coupon-info[b-le0f1eluz9] {
        justify-content: space-between;
        flex-grow: 1;
    }

    .coupon-info .save-to-list[b-le0f1eluz9] {
        align-self: center;
        margin-bottom: 10px;
    }
}
/* _content/ComponentsLibrary/Pages/MobileApps/MobileAppsPage.razor.rz.scp.css */
.img-fluid[b-psx4a0os1x] {
    width: 100%;
}

.mobiles-decoration[b-psx4a0os1x] {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* _content/ComponentsLibrary/Pages/MyAccount/MyAccountMobile/MyAccountComponent.razor.rz.scp.css */
.account-page-container[b-qbv181oxqb] {
    font-family: 'Anton', sans-serif;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account-page-container > .page-item[b-qbv181oxqb] {
    margin-top: 16px;
}

.link-container:active[b-qbv181oxqb] {
    background-color: #d7d7d7;
}

.store-container[b-qbv181oxqb] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

.store-icon[b-qbv181oxqb] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 8px;
    background-color: #dfdfdf;
    border-radius: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

    .store-icon > img[b-qbv181oxqb] {
        height: 28px;
    }

.store-info[b-qbv181oxqb] {
    width: 100%;
    color: #555;
    font-weight: 700;
}

.action-arrow[b-qbv181oxqb] {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 32px;
    font-weight: 700;
}

.login-block[b-qbv181oxqb] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 32px;
    padding: 16px 32px 24px;
    gap: 8px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #E9353E, #b72e38);
    color: #fff;
}

    .login-block .block-title[b-qbv181oxqb] {
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .login-block .block-subtitle[b-qbv181oxqb] {
        font-size: 16px;
        font-weight: 100;
    }

    .login-block .create-account-btn[b-qbv181oxqb] {
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        color: #E9353E;
        margin: 12px 0;
        padding: 8px;
        border-radius: 12px;
        box-shadow: none;
        border: 1px solid #E9353E;
    }

        .login-block .create-account-btn:active[b-qbv181oxqb] {
            color: #fff;
            background: #E9353E;
            border: 1px solid #fff;
        }

    .login-block .login-btn[b-qbv181oxqb] {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        background-color: transparent;
        padding: 8px;
        border-radius: 12px;
        box-shadow: none;
        border: none;
    }

        .login-block .login-btn:active[b-qbv181oxqb] {
            color: #E9353E;
            background: #fff;
        }

.authorized-block[b-qbv181oxqb] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(1px, 4vw, 16px);
    gap: clamp(1px, 4vw, 16px);
    flex-wrap: wrap;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    
    position: relative;
}

.authorized-block > .info-block-placeholder[b-qbv181oxqb] {
    aspect-ratio: 1 / 1;
    width: 19vw;
    height: 19vw;
    padding: 1vw;
}

    .authorized-block .info-block[b-qbv181oxqb] {
        border-radius: 50%;
        background-color: #E9353E;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        padding: 1vw;
        aspect-ratio: 1 / 1;
        width: 19vw;
        height: 19vw;
        max-width: 128px;
        max-height: 128px;
        text-transform: uppercase;
        box-sizing: border-box;
    }

        .authorized-block .info-block .title[b-qbv181oxqb] {
            font-size: clamp(6px, 2.7vw, 16px); 
            white-space: nowrap;
        }

        .authorized-block .info-block .text[b-qbv181oxqb] {
            font-size: clamp(8px, 4vw, 24px); 
        }

.menu-block[b-qbv181oxqb] {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    padding-bottom: 8px;
}

    .menu-block .block-title[b-qbv181oxqb] {
        font-size: 20px;
        text-transform: uppercase;
        color: #E9353E;
        font-weight: 700;
        padding: 0 32px;
    }

.link-block[b-qbv181oxqb] {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 8px 32px;
    gap: 16px;
}

    .link-block .link-icon[b-qbv181oxqb] {
        min-width: 32px;
        min-height: 32px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

        .link-block .link-icon > img[b-qbv181oxqb] {
            height: 32px;
        }

    .link-block .link-block-info[b-qbv181oxqb] {
        text-transform: uppercase;
        font-size: 18px;
        width: 100%;
        color: #555;
        font-weight: 700;
    }

.follow-block[b-qbv181oxqb] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    gap: 8px;
    padding-bottom: 8px;
}

    .follow-block .block-title[b-qbv181oxqb] {
        text-align: center;
        text-transform: uppercase;
        font-size: 16px;
        width: 100%;
        color: #555;
        font-weight: 700;
    }

    .follow-block .block-content[b-qbv181oxqb] {
        display: flex;
        gap: 16px;
        justify-content: center;
    }

        .follow-block .block-content img[b-qbv181oxqb] {
            height: 32px;
        }

.app-block[b-qbv181oxqb] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 8px;
    padding-bottom: 8px;
}

    .app-block .block-title[b-qbv181oxqb] {
        font-size: 20px;
        color: #555;
        font-weight: 700;
        padding: 0 32px;
    }

    .app-block .link-block .link-block-info[b-qbv181oxqb] {
        font-weight: 400 !important;
        text-transform: none !important;
    }

.bottom-block[b-qbv181oxqb] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding-bottom: 32px;
}

    .bottom-block .sign-out[b-qbv181oxqb] {
        color: #E9353E;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .bottom-block .version[b-qbv181oxqb] {
        font-size: 18px;
        color: #505050;
    }

    .bottom-block .copyright[b-qbv181oxqb] {
        color: #555;
    }

@media (max-width: 375px) {
    .authorized-block[b-qbv181oxqb] {
        padding: 2vw;
        gap: 2vw;
    }
}

.instagram[b-qbv181oxqb] {
    background: #E9353E !important;
    border-radius: 8px !important;
}
/* _content/ComponentsLibrary/Pages/MyAccount/MyAccountPage.razor.rz.scp.css */
.my-account-page-container[b-vn9twm4goy] {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
/* _content/ComponentsLibrary/Pages/MyAccount/MyAccountWeb/MyAccountComponent.razor.rz.scp.css */
.account-page-container[b-j7bu74554h] {
    height: 100%;
    font-family: 'Anton', sans-serif;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 16px 16px 32px;
    height: 100%;
}

.account-page-wrapper[b-j7bu74554h] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
}

.page-body[b-j7bu74554h] {
    width: 100%;
    display: flex;
    gap: 40px;
}

.link-container[b-j7bu74554h] {
    cursor: pointer;
}

    .link-container:hover[b-j7bu74554h] {
        background-color: #fff;
        border-radius: 6px;
    }

    .link-container:active[b-j7bu74554h],
    .link-container:focus[b-j7bu74554h] {
        background-color: #d7d7d7;
    }

.store-container[b-j7bu74554h] {
    width: 100%;
    background: #E9353E;
    border-radius: 24px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.store-info[b-j7bu74554h] {
    width: 100%;
    color: #555;
    font-weight: 700;

}

.store-wrapper[b-j7bu74554h] {
    height: 100%;
    width: 90%;
    display: flex;
    gap: 32px;
}

    .store-wrapper .chicken-in-bucket-image[b-j7bu74554h] {
        width: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        aspect-ratio: 4000 / 775;
    }
    
    

    .store-wrapper .text-block[b-j7bu74554h] {
        font-family: 'Anton', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        line-height: 1;
        gap: 4px;
        text-align: center;
        width: 40%;
    }

        .store-wrapper .text-block .title[b-j7bu74554h] {
            font-size: 32px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .store-wrapper .text-block .sub-title[b-j7bu74554h] {
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 4px;
        }

    .store-wrapper .links[b-j7bu74554h] {
        height: 20px;
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 4px;
    }

        .store-wrapper .links a[b-j7bu74554h] {
            display: flex;
            position: relative;
            height: 22px;
            width: 22px;
        }

        .store-wrapper .links img[b-j7bu74554h] {
            height: 100%;
            width: 100%;
            background: #fff;
            border-radius: 50%;
        }

        .action-arrow[b-j7bu74554h] {
            display: flex;
            align-items: center;
            color: #555;
            font-size: 32px;
            font-weight: 700;
        }


.body-block[b-j7bu74554h] {
    width: 67%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-block[b-j7bu74554h] {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 32px 24px;
    gap: 8px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #E9353E, #b72e38);
    color: #fff;
    height: fit-content;
}

    .login-block .block-title[b-j7bu74554h] {
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .login-block .block-subtitle[b-j7bu74554h] {
        font-size: 16px;
        font-weight: 100;
    }

    .login-block .create-account-btn[b-j7bu74554h] {
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        color: #E9353E;
        margin: 12px 0;
        padding: 8px;
        border-radius: 12px;
        box-shadow: none;
        border: 1px solid #E9353E;
    }

        .login-block .create-account-btn:active[b-j7bu74554h] {
            color: #fff;
            background: #E9353E;
            border: 1px solid #fff;
        }

    .login-block .login-btn[b-j7bu74554h] {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        background-color: transparent;
        padding: 8px;
        border-radius: 12px;
        box-shadow: none;
        border: none;
    }

        .login-block .login-btn:active[b-j7bu74554h] {
            color: #E9353E;
            background: #fff;
        }


.authorized-block[b-j7bu74554h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.authorized-settings-block[b-j7bu74554h] {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 560px;
    cursor: pointer;
    border-radius: 12px;
}

    .authorized-settings-block img[b-j7bu74554h] {
        padding: 0 16px;
        width: 100%;
    }

    .authorized-settings-block .settings-block[b-j7bu74554h] {
        background-color: #E9353E;
        color: #fff;
        font-size: 24px;
        padding: 16px;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        border: 2px solid #E9353E;
    }


    .authorized-settings-block:hover[b-j7bu74554h] {
        background-color: #fff;
    }

    .authorized-settings-block:active[b-j7bu74554h],
    .authorized-settings-block:focus[b-j7bu74554h] {
        background-color: unset;
    }

        .authorized-settings-block:active .settings-block[b-j7bu74554h],
        .authorized-settings-block:focus .settings-block[b-j7bu74554h] {
            color: #E9353E;
            background: #fff;
            border-color: #E9353E;
        }

.authorized-circle-block[b-j7bu74554h] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(1px, 3vw, 16px);
    gap: clamp(1px, 3vw, 16px);
    flex-wrap: unset;
    position: relative;
}

    .authorized-circle-block > .info-block-placeholder[b-j7bu74554h] {
        aspect-ratio: 1 / 1;
        width: 12vw;
        height: 12vw;
        padding: 1vw;
    }

    .authorized-circle-block .info-block[b-j7bu74554h] {
        border-radius: 50%;
        background-color: #E9353E;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        padding: clamp(2px, 1vw, 1vw);
        aspect-ratio: 1 / 1;
        width: 12vw;
        height: 12vw;
        max-width: 128px;
        max-height: 128px;
        text-transform: uppercase;
        box-sizing: border-box;
    }

        .authorized-circle-block .info-block .title[b-j7bu74554h] {
            font-size: clamp(6px, 1.8vw, 16px);
            white-space: nowrap;
        }

        .authorized-circle-block .info-block .text[b-j7bu74554h] {
            font-size: clamp(8px, 3vw, 24px);
        }

.menu-block[b-j7bu74554h] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 33%;
    min-width: 256px;
    height: min-content;
    padding-bottom: 8px;
}

    .menu-block .block-title[b-j7bu74554h] {
        font-size: 20px;
        text-transform: uppercase;
        color: #E9353E;
        font-weight: 700;
        padding: 0 32px;
    }

.link-block[b-j7bu74554h] {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 8px 32px;
    gap: 16px;
}

    .link-block .link-icon[b-j7bu74554h] {
        min-width: 32px;
        min-height: 32px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

        .link-block .link-icon > img[b-j7bu74554h] {
            height: 32px;
        }

    .link-block .link-block-info[b-j7bu74554h] {
        text-transform: uppercase;
        font-size: 18px;
        width: 100%;
        color: #555;
        font-weight: 700;
    }

.follow-block[b-j7bu74554h] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    gap: 8px;
    padding-bottom: 8px;
}

    .follow-block .block-title[b-j7bu74554h] {
        text-align: center;
        text-transform: uppercase;
        font-size: 16px;
        width: 100%;
        color: #555;
        font-weight: 700;
    }

    .follow-block .block-content[b-j7bu74554h] {
        display: flex;
        gap: 16px;
        justify-content: center;
    }

        .follow-block .block-content img[b-j7bu74554h] {
            height: 32px;
        }

.app-block[b-j7bu74554h] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 8px;
    padding-bottom: 8px;
}

    .app-block .block-title[b-j7bu74554h] {
        font-size: 20px;
        color: #555;
        font-weight: 700;
        padding: 0 32px;
    }

    .app-block .link-block .link-block-info[b-j7bu74554h] {
        font-weight: 400 !important;
        text-transform: none !important;
    }

.bottom-block[b-j7bu74554h] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 560px;
    text-align: center;
    margin: 16px 0 0;
    gap: 16px;
}

    .bottom-block .bottom-block-button[b-j7bu74554h] {
        font-size: 20px;
        font-weight: 700;
        width: 50%;
        padding: 16px;
        border-radius: 12px;
        cursor: pointer;
        text-transform: uppercase;

    }

    .bottom-block .change-store[b-j7bu74554h] {
        color: #fff;
        border: 2px solid #E9353E;
        background-color: #E9353E;
    }

        .bottom-block .change-store:active[b-j7bu74554h] {
            color: #E9353E;
            background-color: #fff;
        }

    .bottom-block .sign-out[b-j7bu74554h] {
        color: #f13b25;
        border: 2px solid #f13b25;
    }


        .bottom-block .sign-out:active[b-j7bu74554h] {
            color: #fff;
            background-color: #f13b25;
        }

.instagram[b-j7bu74554h] {
    background: #E9353E !important;
    border-radius: 8px !important;
}
/* _content/ComponentsLibrary/Pages/MyClubs/LoginWarning/LoginWarningComponent.razor.rz.scp.css */
.login-block[b-w8upkbp20y] {
    margin-bottom: 4rem;
    width: calc(100% - 32px);
    margin-inline: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 32px 24px;
    gap: 8px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #265ea7, #16355e);
    color: #fff;
    height: fit-content;
}

.login-block.web[b-w8upkbp20y] {
    width: 60%;
}

.login-block .block-title[b-w8upkbp20y] {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.login-block .block-subtitle[b-w8upkbp20y] {
    font-size: 16px;
    font-weight: 100;
}

.login-block .create-account-btn[b-w8upkbp20y] {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #265EA7;
    margin: 12px 0;
    padding: 8px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #265EA7;
}

.login-block .create-account-btn:active[b-w8upkbp20y] {
    color: #fff;
    background: #265EA7;
    border: 1px solid #fff;
}

.login-block .login-btn[b-w8upkbp20y] {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: transparent;
    padding: 8px;
    border-radius: 12px;
    box-shadow: none;
    border: none;
}

.login-block .login-btn:active[b-w8upkbp20y] {
    color: #265EA7;
    background: #fff;
}
/* _content/ComponentsLibrary/Pages/MyClubs/MyClubsPage.razor.rz.scp.css */
.my-clubs[b-mxkuwcmv4q] {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.my-clubs > .title[b-mxkuwcmv4q] {
    font-size: 3em;
    margin-bottom: 0;
}

.my-clubs > .caption[b-mxkuwcmv4q] {
    font-size: 0.9em;
    margin-bottom: 0;
}

.my-clubs > .my-clubs-banner-image[b-mxkuwcmv4q] {
    width: 75%;
    padding: 10px;
    margin-inline: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 4000 / 769;
}

.my-clubs > .offers-container[b-mxkuwcmv4q] {
    width: 100%;
    
    max-width: 400px;
    margin-bottom: 1rem;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.my-clubs > .offers-container > .item[b-mxkuwcmv4q] {
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.my-clubs > .offers-container > .item > .name[b-mxkuwcmv4q] {
    font-weight: normal !important;
    font-size: 16px;
    color: #757575;
    margin-bottom: 8px;
}

.my-clubs > .offers-container > .item > .chart[b-mxkuwcmv4q] {
    width: 100%;
    display: flex;
    margin-bottom: 8px;
}

.my-clubs > .offers-container > .item > .chart > .bar[b-mxkuwcmv4q] {
    flex: 1;
    height: 30px;
    background: #B0B0B0;
}

.my-clubs > .offers-container > .item > .chart > .bar.red[b-mxkuwcmv4q] {
    background: #D32F2F;
}

.my-clubs > .offers-container > .item > .leftover[b-mxkuwcmv4q] {
    font-weight: bold !important;
    font-size: 15px;
    text-align: center;
    color: black;
    margin-bottom: 14px;
}

.my-clubs > .offers-container > .item > .note[b-mxkuwcmv4q] {
    margin-bottom: 8px;
    font-weight: normal !important;
    font-size: 12px;
    color: #202020;
}

.my-clubs > .offers-container > .item > .expiration[b-mxkuwcmv4q] {
    margin-bottom: 8px;
    font-weight: bold !important;
    font-size: 18px;
    color: black;
}

@media only screen and (max-width: 768px) {
    .my-clubs > .my-clubs-banner-image[b-mxkuwcmv4q] {
        width: calc(100% - 20px);
        aspect-ratio: 1725/1076;
    }
}
/* _content/ComponentsLibrary/Pages/PigUpCurbside/PigUpCurbsidePage.razor.rz.scp.css */
.e-shop-container[b-5d8qgym0jm] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap:40px;
    align-items: center;
    padding-inline: 20px;
    padding: 5rem 0;
    font-family: "Montserrat", sans-serif;
}

.e-shop-container > .top-container[b-5d8qgym0jm] {
    width: 80%;
    display: flex;
    align-items: center;
}

.e-shop-container > .top-container > .logo[b-5d8qgym0jm] {
    width: 25%;
    aspect-ratio: 1;
    
    background-image: url('images/pig-up-curbside/curbside-delivery-logo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.e-shop-container > .top-container > .options[b-5d8qgym0jm] {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.e-shop-container > .top-container > .options > .header[b-5d8qgym0jm] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.e-shop-container > .top-container > .options > .header > .line.top[b-5d8qgym0jm] {
    font-weight: 700;
    line-height: 18px;
    color: #2d2d2d;
}

.e-shop-container > .top-container > .options > .header > .line.bottom[b-5d8qgym0jm] {
    font-weight: 400;
    line-height: 14px;
    color: #969696;
}

.e-shop-container > .top-container > .options > .store-item[b-5d8qgym0jm] {
    width: 33.3222%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: transform ease 200ms;
}

.e-shop-container > .top-container > .options > .store-item:hover[b-5d8qgym0jm] {
    transform: scale(1.1);
}

.e-shop-container > .top-container > .options > .store-item > .image[b-5d8qgym0jm] {
    width: 97px;
    aspect-ratio: 120 / 124;

    background-image: url('images/pig-up-curbside/pig-head-icon.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.e-shop-container > .top-container > .options > .store-item > .name[b-5d8qgym0jm] {
    font-size: 1.2em;
    font-weight: 600;
}

.e-shop-container > .top-container > .options > .store-item > .description[b-5d8qgym0jm] {
    font-size: 16px;
    font-weight: 400;
}

.e-shop-container > .middle-container[b-5d8qgym0jm] {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.e-shop-container > .middle-container > .item[b-5d8qgym0jm] {
    width: calc(50% - 20px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.e-shop-container > .middle-container > .item.car[b-5d8qgym0jm] {
    aspect-ratio: 545 / 277;
    background-image: url('images/pig-up-curbside/pig-in-mustang.png');
}

.e-shop-container > .middle-container > .item.quick[b-5d8qgym0jm] {
    aspect-ratio: 545 / 255;
    background-image: url('images/pig-up-curbside/quick-logo.png');
}

.e-shop-container > .bottom-container[b-5d8qgym0jm] {
    width: 80%;
}

.e-shop-container > .bottom-container > img[b-5d8qgym0jm] {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .e-shop-container[b-5d8qgym0jm] {
        padding-top: 2rem;
        gap: 50px;
    }

    .e-shop-container > .top-container[b-5d8qgym0jm] {
        flex-wrap: wrap;
        width: calc(100% - 20px);
        gap: 40px;
    }

    .e-shop-container > .top-container > .logo[b-5d8qgym0jm] {
        width: 80%;
        margin-inline: auto;
    }

    .e-shop-container > .top-container > .options > .store-item[b-5d8qgym0jm] {
        width: 100%;
    }

    .e-shop-container > .middle-container > .item[b-5d8qgym0jm] {
        width: 100%;
    }
}
/* _content/ComponentsLibrary/Pages/PrintWeeklyAd/Mobile/PdfPages/AreaModal/AreaModalComponent.razor.rz.scp.css */
*[b-i1881521yr] {
    transition: none !important;
}

.modal-custom[b-i1881521yr] {
    max-width: 100%;
    height: 90%;
    padding: 1rem;
}

.modal-content[b-i1881521yr] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-body[b-i1881521yr] {
    flex-grow: 1;
    overflow: hidden;
    padding: 0;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-form-container[b-i1881521yr] {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 8px;
}

.custom-form-container > .button[b-i1881521yr] {
    width: 50%;
    height: 40px;
    margin: 12px auto 5px;
    background: #f13c26;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    transition: transfrom 0.2s ease;
}

.custom-form-container > .thumbnail[b-i1881521yr] {
    height: 150px;
    min-height: 100px;
    margin-bottom: 16px;
}

.custom-form-container > .thumbnail > img[b-i1881521yr] {
    height: 100%;
}

.custom-row[b-i1881521yr] {
    width: 100%;
    display: flex;
    padding: 8px;
    justify-content: center;
    font-size: 12px;
    border-bottom: 1px solid #cacaca;
}

.custom-row > label[b-i1881521yr] {
    width: 45%;
    text-align: start;
    color: dimgray;
}

.custom-row > p[b-i1881521yr] {
    margin: 0;
    width: 45%;
}

.buttons-group[b-i1881521yr] {
    display: flex;
    justify-content: end;
    gap: 8px;
}

.black-out[b-i1881521yr] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* _content/ComponentsLibrary/Pages/PrintWeeklyAd/Mobile/PdfPages/ImageItem/ImageItemComponent.razor.rz.scp.css */
.weekly-ad-wrapper[b-ppnc8brq7d] {
    width: 100%;
    position: relative;
    display: flex;
}

.weekly-ad-wrapper > img[b-ppnc8brq7d] {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.weekly-ad-wrapper > .area-item[b-ppnc8brq7d] {
    position: absolute;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;

    background-color: rgba(0, 123, 255, 0.15);
    border: 0.2px solid rgba(0, 123, 255, 0.5);
}
/* _content/ComponentsLibrary/Pages/PrintWeeklyAd/Mobile/PdfPages/PdfPagesComponent.razor.rz.scp.css */
.pdf-pages-container[b-vs0ha0s3zr] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pdf-pages-container.loading[b-vs0ha0s3zr] {
    position: relative;
}

.pdf-pages-container.loading > .overlay-background[b-vs0ha0s3zr] {
    position: absolute;
    left: 0;
    top: 0;
    background: white;
    width: 100%;
    height: 100%;
}

.pdf-pages-container > .hidden-images-preview[b-vs0ha0s3zr] {
    display: none;
    width: 100%;
    height: 0;
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

.pdf-pages-container.loading > .hidden-images-preview[b-vs0ha0s3zr] {
    display: block;
}

.pdf-pages-container > .hidden-images-preview > .preview-image[b-vs0ha0s3zr] {
    width: 100px;
}

.pdf-pages-container > .hidden-images-preview > .preview-image > img[b-vs0ha0s3zr] {
    width: 100%;
}
/* _content/ComponentsLibrary/Pages/PrintWeeklyAd/Mobile/PdfPages/Zoom/ZoomComponent.razor.rz.scp.css */
.bch-zoom-container[b-07op0be1pu] {
    outline: solid 1px #afe1ff;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.images-container[b-07op0be1pu] {
    display: flex;
    flex-direction: column;
}

.images-container > .image-wrapper[b-07op0be1pu] {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
}
/* _content/ComponentsLibrary/Pages/PrintWeeklyAd/PrintWeeklyAdPage.razor.rz.scp.css */
.weekly-ad-legacy-container[b-6dseyaj24u] {
    display: flex;
    width: 100%;
    height: 100%;
}

.weekly-ad-legacy-container .weekly-add-legacy-content[b-6dseyaj24u] {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding-block: 2rem;
    padding-inline: 5rem;
    position: relative;
    gap: 30px;
}

.weekly-ad-legacy-container.mobile .weekly-add-legacy-content[b-6dseyaj24u] {
    flex-direction: column;
}

.weekly-ads-legacy-wrapper[b-6dseyaj24u] {
    min-width: calc(100% - 400px);
    position: relative;
    min-height: 300px;
}

.weekly-ads-legacy-wrapper > .scroll-buttons[b-6dseyaj24u] {
    pointer-events: none;
    position: sticky;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
    z-index: 2;
    top: 23%;
    margin-bottom: -140px;
    margin-right: 10px;
    margin-top: 20px;
}

.weekly-ads-legacy-wrapper > .scroll-buttons > .btn-scroll[b-6dseyaj24u] {
    pointer-events: all;
    width: 50px;
    height: 50px;
    padding: 12px;
    border: 0;
    border-radius: 50%;    
    box-shadow: 0px 3px 10px #9b9b9b;
    background-color: #265EA7 !important;
}

.weekly-ads-legacy-wrapper > .scroll-buttons > .btn-scroll.bottom[b-6dseyaj24u] {
    transform: rotate(180deg);
}

.weekly-ads-legacy-wrapper > .scroll-buttons > .btn-scroll img[b-6dseyaj24u] {
    width: 100%;
}

.weekly-ad-legacy-container.mobile > .weekly-add-legacy-content[b-6dseyaj24u] {
    justify-content: center;
}

.weekly-ad-legacy-container.mobile > .weekly-add-legacy-content > .weekly-ads-legacy-wrapper[b-6dseyaj24u] {
    min-width: calc(100% - 40px);
    min-height: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.weekly-ad-legacy-container.mobile > .weekly-add-legacy-content > .weekly-ads-legacy-wrapper > .img-boards[b-6dseyaj24u] {
    flex: 1 1;
}

.weekly-ads-wrapper > .weekly-ads[b-6dseyaj24u] {
    flex: 1 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.weekly-ad-legacy-container .weekly-ad-legacy-header[b-6dseyaj24u] {
    padding: 0 2rem 1rem;
    min-height: 100px;
}

.weekly-ad-legacy-container .weekly-ad-legacy-header .weekly-ad-legacy-title[b-6dseyaj24u] {
    text-transform: uppercase;
    color: #737373;
    font-weight: bold;
    font-family: "Anton", sans-serif;
    font-size: 18px;
}

.weekly-ad-legacy-container .weekly-ad-legacy-header .weekly-ad-legacy-login-ref[b-6dseyaj24u] {
    align-items: center;
}

.weekly-ad-legacy-container .weekly-ad-legacy-header .weekly-ad-legacy-login-ref a[b-6dseyaj24u] {
    color: #EA1D2C;
    font-weight: bold;
    text-decoration: none;
    font-family: "Anton", sans-serif;
}

.weekly-ad-legacy-container .weekly-ad-legacy-header .weekly-ad-legacy-view-all-link a[b-6dseyaj24u] {
    color: #EA1D2C;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    font-family: "Anton", sans-serif;
}

.weekly-ad-legacy-container .weekly-add-legacy-content > .shopping-cart[b-6dseyaj24u] {
    min-width: 400px;
}

.weekly-ad-legacy-container .weekly-add-legacy-content > .shopping-cart > .shopping-cart-page-btn[b-6dseyaj24u] {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .weekly-ad-legacy-container .weekly-add-legacy-content[b-6dseyaj24u] {
        padding-inline: unset;
        flex-wrap: wrap;
    }

    .weekly-ad-legacy-container .weekly-add-legacy-content > .shopping-cart[b-6dseyaj24u] {
        min-width: 100%;
    }

    .shopp-price-info[b-6dseyaj24u] {
        margin: 0 10px;
        text-align: left !important;
    }
}

.shopp-price-info[b-6dseyaj24u] {
    background: #e6f7ff;
    padding: 20px 10px;
    border: 1px solid #afe1ff;
    margin-top: 1rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.btn:focus[b-6dseyaj24u], .btn:active[b-6dseyaj24u], .btn:active:focus[b-6dseyaj24u] {
    box-shadow: none;
    border: none;
}
/* _content/ComponentsLibrary/Pages/PrintWeeklyAd/Web/PdfPage/AreaModal/AreaModalComponent.razor.rz.scp.css */
.print-weekly-ad-area-edit-modal-container[b-x43jmnaz1q] {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    z-index: 2;
}

.print-weekly-ad-area-edit-modal-content[b-x43jmnaz1q] {
    height: min-content;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid gray;
    padding: 16px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
    position: relative;
}

.print-weekly-ad-area-edit-modal-content > .close-button[b-x43jmnaz1q] {
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.custom-form-container[b-x43jmnaz1q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 8px;
}

.custom-form-container > .button[b-x43jmnaz1q] {
    width: 50%;
    height: 40px;
    margin: auto auto 5px;
    background: #f13c26;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    transition: transfrom 0.2s ease;
}

.custom-form-container > .thumbnail[b-x43jmnaz1q] {
    height: 100px;
    min-height: 100px;
    margin-bottom: 16px;
}

.custom-form-container > .thumbnail img[b-x43jmnaz1q] {
    width: auto;
    height: 100%;
}

.custom-row[b-x43jmnaz1q] {
    width: 100%;
    display: flex;
    padding: 8px;
    justify-content: center;
    font-size: 12px;
    border-bottom: 1px solid #cacaca;
}

.custom-row > label[b-x43jmnaz1q] {
    width: 45%;
    text-align: start;
    color: dimgray;
}

.custom-row > p[b-x43jmnaz1q] {
    margin: 0;
    width: 45%;
}

.buttons-group[b-x43jmnaz1q] {
    display: flex;
    justify-content: end;
    gap: 8px;
}

.black-out[b-x43jmnaz1q] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* _content/ComponentsLibrary/Pages/PrintWeeklyAd/Web/PdfPage/PdfPageComponent.razor.rz.scp.css */
.detail-print-weekly-ad-component[b-bwkrf8zggm] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.detail-print-weekly-ad-component > .weekly-ad-container[b-bwkrf8zggm] {
    width: 100%;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.detail-print-weekly-ad-component > .weekly-ad-container > img.pdf-image[b-bwkrf8zggm] {
    min-height: 200px;
    width: 100%;
    left: 0;
    top: 0;
}

@media(max-width: 767px) {
    .detail-print-weekly-ad-component > .weekly-ad-container[b-bwkrf8zggm] {
        width: 100%;
    }
}

.detail-print-weekly-ad-component > .weekly-ad-container > .area-item[b-bwkrf8zggm] {
    position: absolute;
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
}

.detail-print-weekly-ad-component > .weekly-ad-container > .area-item:hover[b-bwkrf8zggm] {
    cursor: pointer;
    background-color: rgba(0, 123, 255, 0.15);
    border: 1px solid rgba(0, 123, 255, 0.5);
}

.custom-modal[b-bwkrf8zggm] {
    position: absolute;
    width: 300px;
    height: min-content;
}
/* _content/ComponentsLibrary/Pages/PrivacyAndPolicy/PrivacyAndPolicyPage.razor.rz.scp.css */
/* _content/ComponentsLibrary/Pages/Recipes/RecipesPage.razor.rz.scp.css */
.recipes-container[b-siw7washxf] {
    width: 100%;
    min-height: 100%;
    padding-inline: 5rem;
    padding-block: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 30px;
}

.recipes-wrapper[b-siw7washxf] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    column-gap: 20px;
}

.card[b-siw7washxf] {
    padding: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    box-sizing: border-box;
    flex-basis: calc(20% - 20px);
    max-width: clamp(50px, calc(20% - 20px), 280px);
}

.card .card-img-top[b-siw7washxf] {
    width: auto;
    height: 140px;
}

.card-body[b-siw7washxf] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-title[b-siw7washxf] {
    font-size: 14px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    line-height: 1.5;
}


@media (max-width: 1200px) {
    .recipes-wrapper .card[b-siw7washxf] {
        flex-basis: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}

@media (max-width: 992px) {
    .recipes-wrapper .card[b-siw7washxf] {
        flex-basis: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .recipes-wrapper .card[b-siw7washxf] {
        flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .recipes-wrapper .card[b-siw7washxf] {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.ingredients-container[b-siw7washxf] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ingredient-item[b-siw7washxf] {
    position: relative;
    max-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 10px;
    text-align: center;
    cursor: pointer;
}

.ingredient-image[b-siw7washxf] {
    max-width: 100px;
    max-height: 70px;
    object-fit: cover;
}

.ingredient-item-image[b-siw7washxf] {
    display: flex;
    align-items: center;
    height: 70px;
}

.ingredient-details[b-siw7washxf] {
    font-size: 14px;
}

.ingredient-details strong[b-siw7washxf] {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.ingredient-details p[b-siw7washxf] {
    margin: 0;
    color: #555;
}

.modal-body[b-siw7washxf] {
    min-height: 200px;
}

.modal-header-wrapper[b-siw7washxf] {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    gap: 4px;
}

.modal-header-wrapper > .source[b-siw7washxf] {
    display: flex;
    justify-content: space-between;
}

.modal-header-wrapper > .source > .main-source[b-siw7washxf] {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
}

.modal-header-wrapper > .source > .main-source > span[b-siw7washxf] {
    text-decoration: underline;
}

.modal-header-wrapper > .source > .powered-by[b-siw7washxf] {
    margin-right: 12px;
    font-size: 12px;
    text-align: end;
    color: #7c7c7c;
    cursor: pointer;
}

#recipeDetailsModal.modal[b-siw7washxf] {
    max-height: calc(100% - 20px);
}

.ingredient-bubble[b-siw7washxf] {
    position: absolute;
    height: 20px;
    width: 20px;
    background: #fff;
    border-radius: 50%;
    border: solid 1px #ddd;
    display: flex;
    justify-content:center;
    align-items: center;
}

    .ingredient-bubble.remove[b-siw7washxf] {
        color: red;
        right: 0;
        line-height: 0.9;
        z-index: 100;
    }

        .ingredient-bubble.remove:hover[b-siw7washxf] {
            transform: scale(1.2);
        }

        .ingredient-bubble .bubble-text[b-siw7washxf] {
            height: 14px;
            width: 20px;
            font-size: 14px;
            text-align: center;
            line-height: 1;
        }

    .ingredient-bubble.remove .bubble-text[b-siw7washxf] {
        height: 20px;
        font-size: 20px;
        line-height: 0.9;
    }
/* _content/ComponentsLibrary/Pages/Rewards/RewardsPage.razor.rz.scp.css */
.coupons-switch-buttons-wrapper > .available-btn[b-77c1r2vom2] {
    border: 0;
}

.coupons-switch-buttons-wrapper > .clipped-btn[b-77c1r2vom2] {
    border: 4px #0384D0 solid;
    padding-left: 1rem;
    padding-inline: calc(1rem - 4px);
    padding-block: calc(0.5rem - 4px);
}

.coupons-wrapper[b-77c1r2vom2] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 32px;
    justify-content: center;
}

.coupon-item[b-77c1r2vom2] {
    width: calc(25% - 12px);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coupon-banner[b-77c1r2vom2] {
    width: 100%;
    height: 100%;
    gap: 8px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.coupon-image[b-77c1r2vom2] {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .coupon-image > img[b-77c1r2vom2] {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.coupon-info[b-77c1r2vom2] {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.coupon-text[b-77c1r2vom2] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .coupon-text .title[b-77c1r2vom2] {
        color: #0384D0;
        font-size: 1.2em;
        font-weight: bold;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .coupon-text .description[b-77c1r2vom2] {
        margin-top: 5px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .coupon-text .highlight[b-77c1r2vom2] {
        color: #dc3545;
        font-weight: bold;
        margin-top: 5px;
    }

.buttons-wrapper[b-77c1r2vom2] {
    display: flex;
    row-gap: 8px;
    column-gap: 8px;
    flex-wrap: wrap;
    max-width: 160px;
}

.coupon-button[b-77c1r2vom2] {
    width: 100%;
    border: 0;
    background-color: #0a53be;
    border-radius: 8px;
    color: white !important;
    padding: 8px 16px;
}

    .coupon-button.red[b-77c1r2vom2] {
        background-color: #dc3545 !important;
    }


@media(max-width:850px) {
    .coupon-item[b-77c1r2vom2] {
        width: 75%;
        height: fit-content;
    }

    .buttons-wrapper[b-77c1r2vom2] {
        max-width: 100%;
    }

    .coupon-image[b-77c1r2vom2] {
        height: 40%;
    }

    .coupon-banner[b-77c1r2vom2] {
        flex-direction: column;
        justify-content: start;
    }


    .coupon-text .title[b-77c1r2vom2] {
        font-size: 1em;
    }

    .coupon-text .description[b-77c1r2vom2] {
        font-size: 0.8em;
    }

    .coupon-info[b-77c1r2vom2] {
        justify-content: space-between;
        flex-grow: 1;
    }

        .coupon-info .save-to-list[b-77c1r2vom2] {
            align-self: center;
            margin-bottom: 10px;
        }
}

/* Rewards search input + clear button */
.rewards-search-group input.form-control:focus[b-77c1r2vom2] {
    outline: none !important;
    box-shadow: none !important;
}

.rewards-search-group .search-clear-btn[b-77c1r2vom2] {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.rewards-search-group .search-clear-btn img[b-77c1r2vom2] {
    width: 20px;
    height: 20px;
}
/* _content/ComponentsLibrary/Pages/RewardsSpecials/RewardsSpecialsPage.razor.rz.scp.css */
.rewards-specials-container[b-kfxnipm2mi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.rewards-specials-container > .title[b-kfxnipm2mi] {
    font-size: 3em;
    margin-bottom: 0;
}

.rewards-specials-container > .caption[b-kfxnipm2mi] {
    font-size: 0.9em;
    margin-bottom: 0;
}

.rewards-specials-container > .reward-banner-image[b-kfxnipm2mi] {
    width: 50%;
    margin-inline: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1583/2048;
}

@media only screen and (max-width: 768px) {
    .rewards-specials-container > .reward-banner-image[b-kfxnipm2mi] {
        width: 100%;
    }
}
/* _content/ComponentsLibrary/Pages/ShoppingList/FavouriteWeeklyAds/FavouriteWeeklyAdsComponent.razor.rz.scp.css */
.fav-weekly-ads[b-yljjsqi9zu] {
    position: relative;
    padding: 15px 16px;
}

.fav-weekly-ads > div > h4[b-yljjsqi9zu] {
    color: black;
    font-weight: bold;
    margin-bottom: 1rem;
}

.fav-weekly-ads > .weekly-ads[b-yljjsqi9zu] {
    flex: 1 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
/* _content/ComponentsLibrary/Pages/ShoppingList/ShoppingList/ShoppingItem/ShoppingItemComponent.razor.rz.scp.css */
.shopp-list-item[b-skc2crfbi0] {
    position: relative;
    border-bottom: 1px solid #c3c3c3;
    padding: 5px 0;
}

.shopp-list-item > .black-out[b-skc2crfbi0] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shopp-list-item .item-name-and-img img[b-skc2crfbi0] {
    width: 60px;
    height: 60px;
}

.shopp-list-item .item-name-and-img .empty-img[b-skc2crfbi0] {
    width: 60px;
    height: 60px;
    padding: 25px;
    background: #cccccc;
    color: #ffffff;
    font-size: 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopp-description-ellipsis[b-skc2crfbi0] {
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    max-height: 3em;
    line-height: 1.5em;
}

.delete-btn[b-skc2crfbi0] {
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.shopp-list-item .price[b-skc2crfbi0] {
    text-align: end;    
    overflow-wrap: break-word;
}
/* _content/ComponentsLibrary/Pages/ShoppingList/ShoppingList/ShoppingListComponent.razor.rz.scp.css */
.shopp-list-wrapper[b-y8zncthoqj] {
    position: relative;
    padding: 15px 16px;
}

.shopp-list-wrapper > .black-out[b-y8zncthoqj] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .shopp-list-wrapper .shopp-list-title[b-y8zncthoqj] {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
    }

        .shopp-list-wrapper .shopp-list-title h4[b-y8zncthoqj] {
            color: black;
            font-weight: bold;
            width: fit-content;
            height: fit-content;
            margin: 0;
        }

    .shopp-list-wrapper .shopp-price-info[b-y8zncthoqj] {
        background: #fff4f4;
        padding: 20px 10px;
        border: 1px solid #b72e38;
    }
/* _content/ComponentsLibrary/Pages/ShoppingList/ShoppingList/ShoppingListEmail/ShoppingListEmailComponent.razor.rz.scp.css */
/* _content/ComponentsLibrary/Pages/ShoppingList/ShoppingList/ShoppingListPdf/ShoppingListPdfComponent.razor.rz.scp.css */
.pdf-container[b-a0hpiwa4dm] {
    position: fixed;
    width: 794px;
    left: 0;
    top: 0;
    pointer-events: none;
    overflow: hidden;
}

.pdf-container > #shopping-listpdf-container[b-a0hpiwa4dm] {
    position: absolute;
    padding: 0 2rem 2rem;
    width: 100%;
}

.pdf-container > #shopping-listpdf-container > .list-container[b-a0hpiwa4dm] {
    font-family: Arial, sans-serif;
    display: grid;
    gap: 10px;
}

.pdf-container > #shopping-listpdf-container > .list-container > .list-item[b-a0hpiwa4dm] {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    position: relative;
    border-bottom: 1px solid dimgray;
}

.pdf-container > #shopping-listpdf-container > .list-container > .list-item:last-child[b-a0hpiwa4dm] {
    border-bottom: none;
}

.pdf-container > #shopping-listpdf-container > .list-container > .list-item > .item-description[b-a0hpiwa4dm] {
    font-size: 16px;
}

.pdf-container > #shopping-listpdf-container > .list-container > .list-item > .item-price[b-a0hpiwa4dm], .item-count[b-a0hpiwa4dm] {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
    white-space: nowrap;
}

p[b-a0hpiwa4dm] {
    margin: 0;
}
/* _content/ComponentsLibrary/Pages/ShoppingList/ShoppingListPage.razor.rz.scp.css */
.shopping-list-wrapper[b-5ysm9ashkx] {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 10px 20px;
}

.shopping-list-wrapper .shopping-list-title[b-5ysm9ashkx] {
    text-align: center;
}

.shopping-list-wrapper .shopping-list-title h2[b-5ysm9ashkx] {
    color: #ca111f;
    font-weight: bold;
}

.shopping-list-wrapper .shopping-list-shops-data[b-5ysm9ashkx] {
    padding-left: 16px;
}

.shopping-list-wrapper .shopping-list-shops-data label[b-5ysm9ashkx] {
    font-weight: 600;
    font-size: 14px;
}
/* _content/ComponentsLibrary/Pages/ShoppingListLegacy/ShoppingListPageLegacy.razor.rz.scp.css */
/* _content/ComponentsLibrary/Pages/StoreMap/MapField/Grid/GridComponent.razor.rz.scp.css */
.grid-container[b-p6pgvqz48h] {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
}

.grid-container > .space[b-p6pgvqz48h] {
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: space-evenly;
}

.grid-container > .space.horizontal-lines[b-p6pgvqz48h] {
    flex-direction: column;
    transform: translateY(0.75px);
}

.grid-container > .space.horizontal-lines > .line[b-p6pgvqz48h] {
    width: 100%;
    border-top: 0.5px solid rgba(3, 2, 41, 0.1);
}

.grid-container > .space.vertical-lines[b-p6pgvqz48h] {
    transform: translateX(0.75px);
}

.grid-container > .space.vertical-lines > .line[b-p6pgvqz48h] {
    height: 100%;
    border-left: 0.5px solid rgba(3, 2, 41, 0.1);
}
/* _content/ComponentsLibrary/Pages/StoreMap/MapField/MapFieldComponent.razor.rz.scp.css */
.store-map-page-content[b-hnzl3k4v4o] {
    position: relative;
    flex: 1;
}

.map-field[b-hnzl3k4v4o] {
    position: absolute;
    top: 0;
    flex-grow: 1;
    border: 1px solid;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
}

    .map-field > .absolute-container[b-hnzl3k4v4o] {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #00000030;
        display: flex;
        justify-content: center;
        align-items: center;
    }
/* _content/ComponentsLibrary/Pages/StoreMap/MapField/MapObjectItem/MapObjectComponent.razor.rz.scp.css */
.map-object-item[b-k2qvxpoezh] {
    position: absolute;
    background-color: #e8d4af;
}

.map-object-item.selected[b-k2qvxpoezh] {
    box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.map-object-item.dragging[b-k2qvxpoezh] {
    z-index: 1;
}

.map-object-item > .borders[b-k2qvxpoezh] {
    width: 100%;
    height: 100%;
    border: 1px solid;
}
/* _content/ComponentsLibrary/Pages/StoreMap/MapField/MapObjectItem/SectionsRenderer/SectionsRendererComponent.razor.rz.scp.css */
.section[b-svqn624nx2] {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    cursor: pointer;
    white-space: pre;
}

.section.target-section[b-svqn624nx2]:after {
    position: absolute;
    display: block;
    content: " ";
    top: -27px;
    left: calc(50% - 10px);
    width: 20px;
    height: 27px;
    z-index: 10000000000;
    /*aspect-ratio: 400 / 533;*/
    background-image: url(images/store-map/pin-icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
/* _content/ComponentsLibrary/Pages/StoreMap/MapField/MapObjectItem/SeparatorsRenderer/SeparatorsRendererComponent.razor.rz.scp.css */
.line[b-z6xmcftvti] {
    position: absolute;
    border: 0.5px solid;
}
/* _content/ComponentsLibrary/Pages/StoreMap/StoreMapPage.razor.rz.scp.css */
.store-map-page-container[b-adg26e2ay1] {
    position: relative;
    flex: 1 1;
    /*display: flex;*/
    height: 100%;
}

.store-map-page-container > .loader-container[b-adg26e2ay1] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
}
/* _content/ComponentsLibrary/Pages/Stores/ChangeStorePage.razor.rz.scp.css */

.weekly-ad a[b-etay89sd4d],
.phone-number a[b-etay89sd4d],
.work-time[b-etay89sd4d] {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.weekly-ad > i[b-etay89sd4d],
.phone-number > i[b-etay89sd4d],
.work-time > i[b-etay89sd4d] {
    color: #b72e38;
    text-shadow: 0 0 1px;
    height: auto;
}

.phone-number > i[b-etay89sd4d] {
    transform: rotate(-90deg);
}

.weekly-ad label[b-etay89sd4d],
.phone-number label[b-etay89sd4d],
.work-time label[b-etay89sd4d] {
    color: #212529;
}

.address-name[b-etay89sd4d] {
    margin-bottom: 10px;
}

.address-name a[b-etay89sd4d] {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.store-name[b-etay89sd4d] {
    margin-bottom: 10px;
}

.store-name a[b-etay89sd4d] {
    color: #212529;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.store-picker-container[b-etay89sd4d] {
    width: 100%;
    height: 100%;
    
    display: flex;
}

.store-picker-container.web[b-etay89sd4d] {
    gap: 20px;
    padding: 20px 5px 20px 5px;
}

.store-picker-container.mobile[b-etay89sd4d] {
    flex-direction: column;
}

.store-picker-container.mobile > .store-tabs[b-etay89sd4d] {
    width: 100%;
    height: 50px;
    margin-block: 3px;
    display: flex;
}

.store-picker-container.mobile > .store-tabs > .tab[b-etay89sd4d] {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: black;
}

.store-picker-container.mobile > .store-tabs > .tab.selected[b-etay89sd4d] {
    background: #E9353E;
    color: white;
}

.store-picker-container > .map-wrapper[b-etay89sd4d] {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-picker-container > .map-wrapper > .google-map-wrapper[b-etay89sd4d] { 
    width: 100%;
    height: 100%;
}

.store-picker-container.web > .map-wrapper > .google-map-wrapper[b-etay89sd4d] {
    width: 50%;
}

.store-picker-container > .stores-lists[b-etay89sd4d] {
    position: relative;
    min-width: 300px;
    overflow: auto;
}

.store-picker-container > .stores-lists > .scroller[b-etay89sd4d] {
    width: calc(100% - 18px);
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-picker-container > .stores-lists > .scroller > .item[b-etay89sd4d] {
    display: flex;
    flex-direction: column;
    border: 1px solid silver;
    border-radius: 10px;
    padding: 10px;
}

.store-picker-container.mobile > .stores-lists[b-etay89sd4d] {
    flex-grow: 1;
}

.store-picker-container.mobile > .stores-lists > .scroller[b-etay89sd4d] {
    left: 9px;
    padding-block: 8px;
}

a[b-etay89sd4d] {
    cursor: pointer;
}
/* _content/ComponentsLibrary/Pages/WeeklyAd/WeeklyAdItem/WeeklyAdItemComponent.razor.rz.scp.css */
.item[b-hu56kzwk4i] {
    position: relative;
    border: 2px solid silver;
    width: 250px;
    min-height: 340px;
    height: fit-content;

    display: flex;
    flex-direction: column;
    border-radius: 4px;
}

.item > .black-out[b-hu56kzwk4i] {
    background: #00000030;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item > .icons-container[b-hu56kzwk4i] {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.item > .icons-container > i[b-hu56kzwk4i] {
    font-size: 24px;
    line-height: 24px;
    cursor: pointer;
    transition: transfrom 0.2s ease;
}

    .item > .icons-container > img[b-hu56kzwk4i] {
        cursor: pointer;
        width: 24px;
    }

    .item > .icons-container > i.bi-heart[b-hu56kzwk4i],
    .item > .icons-container > i.bi-heart-fill[b-hu56kzwk4i] {
        color: red;
    }

    .item > .icons-container > i.bi-tag[b-hu56kzwk4i],
    .item > .icons-container > i.bi-tag-fill[b-hu56kzwk4i] {
        color: #00bf21;
    }

    .item > .icons-container > i.bi-receipt[b-hu56kzwk4i],
    .item > .icons-container > i.bi-receipt-fill[b-hu56kzwk4i] {
        color: #61a0ff;
    }

    .item > .icons-container > img:hover[b-hu56kzwk4i],
    .item > .icons-container > i:hover[b-hu56kzwk4i] {
        transform: scale(1.06);
    }

.item > .image-container[b-hu56kzwk4i] {
    display: flex;
    justify-content: center;
    width: 100%;
}

    .item > .image-container > img[b-hu56kzwk4i] {
        height: 100px;
        object-fit: contain;
        width: 100%;
    }

.item > .price[b-hu56kzwk4i] {
    padding-left: 8px;
    font-size: 18px;
    font-weight: 500;
}

    .item > .price[b-hu56kzwk4i],
    .item > .description[b-hu56kzwk4i] {
        font-family: "Anton", Sans-serif;
        font-weight: bold !important;
        color: black;
    }

    .item > .price[b-hu56kzwk4i],
    .item > .description[b-hu56kzwk4i],
    .item > .short-description[b-hu56kzwk4i] {
        padding-inline: 12px;
        font-size: 18px;
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.item > .short-description[b-hu56kzwk4i] {
    font-size: 16px;
    color: #7c7c7c;
}

.item > .description[b-hu56kzwk4i],
.item > .short-description[b-hu56kzwk4i] {
    padding-top: 4px;
}

.item > .button[b-hu56kzwk4i] {
    width: 50%;
    height: 40px;
    margin: auto auto 5px;
    background: #E9353E;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    transition: transfrom 0.2s ease;
}

.item > .button.add:hover[b-hu56kzwk4i] {
    transform: scale(1.06);
    cursor: pointer;
}
/* _content/ComponentsLibrary/Pages/WeeklyAd/WeeklyAdPage.razor.rz.scp.css */
.weekly-ad-container[b-7a5aliumy8] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

    .weekly-ad-container .weekly-add-content[b-7a5aliumy8] {
        width: 100%;
        min-height: 100%;
        padding-inline: 5rem;
        padding-block: 2rem;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 30px;
    }

    .weekly-ad-container .weekly-ad-header[b-7a5aliumy8] {
        padding: 0 2rem 1rem;
        min-height: 100px;
    }

        .weekly-ad-container .weekly-ad-header .weekly-ad-title[b-7a5aliumy8] {
            text-transform: uppercase;
            color: #737373;
            font-weight: bold;
            font-family: "Anton", sans-serif;
            font-size: 18px;
        }

        .weekly-ad-container .weekly-ad-header .weekly-ad-login-ref[b-7a5aliumy8] {
            align-items: center;
        }

            .weekly-ad-container .weekly-ad-header .weekly-ad-login-ref a[b-7a5aliumy8] {
                color: #b72e38;
                font-weight: bold;
                text-decoration: none;
                font-family: "Anton", sans-serif;
            }

        .weekly-ad-container .weekly-ad-header .weekly-ad-view-all-link a[b-7a5aliumy8] {
            color: #b72e38;
            font-weight: bold;
            font-size: 20px;
            text-decoration: none;
            font-family: "Anton", sans-serif;
        }

    .weekly-ad-container .weekly-add-content > .weekly-ads-wrapper[b-7a5aliumy8] {
        min-width: calc(100% - 400px);
    }

    .weekly-ad-container .weekly-add-content .weekly-ads-wrapper > .weekly-ads[b-7a5aliumy8] {
        flex: 1 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .weekly-ad-container .weekly-add-content > .shopping-cart[b-7a5aliumy8] {
        min-width: 400px;
    }

        .weekly-ad-container .weekly-add-content > .shopping-cart > .shopping-cart-page-btn[b-7a5aliumy8] {
            display: flex;
            width: 100%;
        }

@media only screen and (max-width: 767px) {
    .weekly-ad-container .weekly-add-content[b-7a5aliumy8] {
        padding-inline: unset;
    }
    .weekly-ad-container .weekly-add-content > .shopping-cart[b-7a5aliumy8] {
        min-width: 100%;
    }

    .shopp-price-info[b-7a5aliumy8] {
        margin: 0 10px;
        text-align: left !important;
    }
}

.shopp-price-info[b-7a5aliumy8] {
    background: #e6f7ff;
    padding: 20px 10px;
    border: 1px solid #afe1ff;
    margin-top: 1rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.web .weekly-add-content[b-7a5aliumy8] {
    flex-direction: row-reverse;
}
/* _content/ComponentsLibrary/Pages/WeeklyAdLegacy/WeeklyAdItem/WeeklyAdItemComponent.razor.rz.scp.css */
.item[b-rkb5ceht3z] {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.item > img[b-rkb5ceht3z] {
    width: 100%;
    cursor: pointer;
    visibility: hidden;
    pointer-events: none;
}

.item.visible > img[b-rkb5ceht3z] {
    visibility: visible;
    pointer-events: all;
}

@media (min-width: 992px) {
    .item[b-rkb5ceht3z] {
        width: 70%;
    }
}
/* _content/ComponentsLibrary/Pages/WeeklyAdLegacy/WeeklyAdLegacyPage.razor.rz.scp.css */
.weekly-ad-legacy-container[b-qlce4dksig] {
    display: flex;
    width: 100%;
    height: 100%;
}

    .weekly-ad-legacy-container .weekly-add-legacy-content[b-qlce4dksig] {
        width: 100%;
        min-height: 100%;
        display: flex;
        padding-block: 2rem;
        padding-inline: 5rem;
        position: relative;
        flex-direction: column;
        position: relative;
        gap: 30px;
    }

.weekly-ads-legacy-wrapper[b-qlce4dksig] {
    min-width: calc(100% - 400px);
}

    .weekly-ads-wrapper > .weekly-ads[b-qlce4dksig] {
        flex: 1 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

.weekly-ad-legacy-container .weekly-ad-legacy-header[b-qlce4dksig] {
    padding: 0 2rem 1rem;
    min-height: 100px;
}

    .weekly-ad-legacy-container .weekly-ad-legacy-header .weekly-ad-legacy-title[b-qlce4dksig] {
        text-transform: uppercase;
        color: #737373;
        font-weight: bold;
        font-family: "Anton", sans-serif;
        font-size: 18px;
    }

    .weekly-ad-legacy-container .weekly-ad-legacy-header .weekly-ad-legacy-login-ref[b-qlce4dksig] {
        align-items: center;
    }

        .weekly-ad-legacy-container .weekly-ad-legacy-header .weekly-ad-legacy-login-ref a[b-qlce4dksig] {
            color: #b72e38;
            font-weight: bold;
            text-decoration: none;
            font-family: "Anton", sans-serif;
        }

    .weekly-ad-legacy-container .weekly-ad-legacy-header .weekly-ad-legacy-view-all-link a[b-qlce4dksig] {
        color: #b72e38;
        font-weight: bold;
        font-size: 20px;
        text-decoration: none;
        font-family: "Anton", sans-serif;
    }

.weekly-ad-legacy-container .weekly-add-legacy-content > .shopping-cart[b-qlce4dksig] {
    min-width: 400px;
}

    .weekly-ad-legacy-container .weekly-add-legacy-content > .shopping-cart > .shopping-cart-page-btn[b-qlce4dksig] {
        display: flex;
        width: 100%;
    }

@media only screen and (max-width: 767px) {
    .weekly-ad-legacy-container .weekly-add-legacy-content[b-qlce4dksig] {
        padding-inline: unset;
    }

        .weekly-ad-legacy-container .weekly-add-legacy-content > .shopping-cart[b-qlce4dksig] {
            min-width: 100%;
        }

    .shopp-price-info[b-qlce4dksig] {
        margin: 0 10px;
        text-align: left !important;
    }
}

.shopp-price-info[b-qlce4dksig] {
    background: #fff4f4;
    padding: 20px 10px;
    border: 1px solid #b72e38;
    margin-top: 1rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
/* _content/ComponentsLibrary/Pages/WeeklyAdLegacy/ZoomImg/ZoomImgComponent.razor.rz.scp.css */
*[b-u1nysexhai] {
    transition: none !important;
}

.modal-custom[b-u1nysexhai] {
    max-width: 100%;
    height: 90%;
    padding: 1rem;
}

.modal-content[b-u1nysexhai] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-body[b-u1nysexhai] {
    flex-grow: 1;
    overflow: hidden;
    padding: 0;
}

.images-container[b-u1nysexhai] {
    display: flex;
}
