/* ============ CUSTOM FONT FACE ============ */
@font-face {
    font-family: 'Fredoka';
    src: url('/static/fonts/Fredoka-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fredoka';
    src: url('/static/fonts/Fredoka-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fredoka';
    src: url('/static/fonts/Fredoka-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fredoka';
    src: url('/static/fonts/Fredoka-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fredoka';
    src: url('/static/fonts/Fredoka-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



/* ============ FONT RELATED STYLES ============ */
.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-semibold {
    font-weight: 600 !important;
}

.xxlarge { font-size: xx-large; }
.xlarge { font-size: x-large;}
.larger { font-size: larger; }
.large { font-size: large; }
.xsmall { font-size: x-small; }

.font-12 { font-size: 12px; }
.font-14 { font-size: 14px; }
.font-16 { font-size: 16px; }
.font-20 { font-size: 20px; }
.font-24 { font-size: 24px; }
.font-28 { font-size: 28px; }
.font-32 { font-size: 32px; }
.font-36 { font-size: 36px; }
.font-40 { font-size: 40px; }
.font-48 { font-size: 48px; }
.font-52 { font-size: 52px; }
.font-56 { font-size: 56px; }
.font-60 { font-size: 60px; }



/* ============ SPACING STYLES ============ */
.bottom-0 { bottom: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }



/* ============ GLOBAL DEFAULT STYLES ============ */
:root {
    --animate-delay: 0.3s;
}

body {
    background-color: white;
    font-family: "Fredoka", sans-serif;
    color: black;
    overflow-x: hidden;
}

.content-inner, #content_inner {
    padding: 50px 0;
}

.btn {
    border-radius: 0.45rem;
}

.btn:disabled { opacity: 0.7; }

a { color: #A34ABD; }
a:hover { color: #6a2780; text-underline-offset: 5px; }

::placeholder {
    font-size: 15px;
    font-weight: 300;
}

input[type="text"], input[type="email"], input[type="password"] {
    border-radius: 10px !important;
    font-size: 18px;
    font-weight: 400;
}

.alert { border-radius: 10px; }
.alert .alertinner { font-weight: 300; font-size: 18px; }
.alert .alertinner strong { font-weight: 600; }

span.error-block {
    background: rgb(114.4, 27.56, 35.88);
    color: white;
    padding: 5px 10px;
    border-radius: 0 0 10px 10px;
    margin-top: -1px;
}

input[aria-invalid="true"] {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.custom-select:focus {
    box-shadow: none;
}

button[data-loading] {
    opacity: 1 !important;
    pointer-events: none;
}



/* ============ BACKGROUND COLOR STYLES ============ */
.bg-purple-light {
    background-color: #CB6CE6;
}

.bg-purple-dark {
    background-color: #5E194F;
}

.bg-purple-caterpod {
    background-color: #663074;
}



/* ============ TEXT COLOR STYLES ============ */
.text-purple-light {
    color: #F3CDFF !important;
}

.text-purple-dark {
    color: #9C2081 !important;
}

.text-purple-darkest {
    color: #660B56 !important;
}

.svgwhite svg > path {
    fill: white;
}

.highlight {
    color: #CB6CE6 !important;
    font-weight: 600;
}

.star-yellow {
    color: #ffd500 !important;
}

.price_color {
    color: #23B420 !important;
    font-weight: 600 !important;
}


/* ============ BUTTON COLOR STYLES ============ */
.btn-purple-dark {
    background-color: #5E194F;
    border-color: #45113a;
    color: #fff;
}

.btn-purple-dark:hover,
.btn-purple-dark:focus {
    background-color: #45113a !important;
    border-color: #370d2e !important;
    color: #fff;
    box-shadow: none;
}
.btn-purple-dark:active {
    box-shadow: 0 0 0 0.2rem rgba(69, 17, 58, 0.45);
}

.btn-dark-transparent {
    background-color: rgba(0, 0, 0, 0.25);
    color: #fff;
}

.btn-dark-transparent:hover,
.btn-dark-transparent:focus,
.btn-dark-transparent:active {
    background-color: rgba(0, 0, 0, 0.6) !important;
    color: #fff;
    box-shadow: none;
}

.btn-dark-orange {
    background-color: #ff9900;
    color: #fff;
}

.btn-dark-orange:hover,
.btn-dark-orange:focus {
    background-color: #ff8000;
    color: #fff;
    box-shadow: none;
}
.btn-dark-orange:active {
    box-shadow: 0 0 0 0.2rem rgba(255, 128, 0, 0.29);
}

.btn-black {
    background-color: black;
    border: 1px solid white;
    color: #fff;
}

.btn-black:hover,
.btn-black:focus {
    background-color: #1b1b1b;
    color: #fff;
    box-shadow: none;
}
.btn-black:active {
    box-shadow: 0 0 0 0.2rem rgba(21, 21, 21, 0.29);
}



/* ============ CUSTOMIZED BOOTSTRAP STYLES ============ */
.navbar-text-flex {
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.object-position-left { object-position: left; }
.object-position-right { object-position: right; }

.card {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.card .card-header.purple-dark {
    border: 1px solid #5E194F;
    background-color: #5E194F !important;
    color: white !important;
}

.card .card-header.dark {
    border: 1px solid #3B3B3B;
    background-color: #3B3B3B !important;
    color: white !important;
}

.card .card-body {
    padding: 1rem;
    background-color: #F7F7F7;
    border: 1px solid #CFCFCF;
}

.card .card-body p { margin-bottom: 0; }
.card .card-body span {
    text-align: justify;
    font-size: 16px;
}




   /* ==============================================================*/
  /* ============ WEBSITE MAIN ALL SCREEN SIZE STYLES ============ */
 /* ==============================================================*/
#account_notif {
    right: -5px;
    top: -5px;
}

#basket_button {
    width: 40px;
    height: 40px;
    margin-right: 1.5rem !important;
    position: relative;
}

#basket_notif {
    position: absolute;
    width: 27px;
    height: 27px;
    line-height: 27px;
    right: -12px;
    top: -8px;
    font-size: large;
}

#nav_logo img {
    max-width: 250px;
    width: 100%;
}

#nav_logo {
    width: 140px;
    min-height: 68px;
}

.icon_with_text { font-size: medium; }
.nav_contacts { font-size: small; }
#navigationBar > .navbar-nav { font-size: larger;}

.navbar-nav .nav-link:hover {
    color: #9a2983 !important;
}

.nav-item.active > .nav-link {
    text-decoration: underline;
    text-decoration-color: #97297f;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.animatedButton { position: relative; }
.animatedButton > a, .animatedButton > button { position: relative; z-index: 1;}

.animatedButton > .buttonRing {
    position: absolute;
    z-index: 0;
    border: 3px solid #000;
    border-radius: 10px;
    width: 60%;
    height: 115%;
    top: -15%;
    left: -4%;
    transition: width 0.5s ease, height 0.5s ease, background-color 0.5s ease, border 0.5s ease;
}

.animatedButton > a:hover + .buttonRing,
.animatedButton > button:hover + .buttonRing,
.animatedButton > button:disabled +.buttonRing {
    width: 108%;
    height: 131%;
}

.animatedButton > a:hover + .buttonRing.green,
.animatedButton > button:hover + .buttonRing.green {
    background-color: #115710;
    border-color: #115710
}
.animatedButton > a:hover + .buttonRing.purple,
.animatedButton > button:hover + .buttonRing.purple {
    background-color: #370d2e;
    border-color: #370d2e
}

.buttonRing.green { border-color: #23B420; }
.buttonRing.purple { border-color: #5E194F; }

#quickBasketContainer ul.basket-mini-item {
    max-height: 430px;
    overflow-y: auto;
}

.basket-mini-item .image_container img {
    padding: 0;
    border: 0;
    max-height: 100%;
    border-radius: 15px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.basket-mini-item a { color: #A34ABD; }
.navbar-nav .dropdown-menu { border: 0; }

#landing_hero_section {
    background: linear-gradient(to bottom, #CB6CE6 0%, #763986 88%);
}

#landing_hero_section .title_container {
    text-align: center;
    font-weight: 600;
    font-size: 23px;
    background: linear-gradient(to right, #FBECFF 20%, #DB8AF194 100%);
}

#landing_hero_section .title_container > .unique_color {
    color: #C129A0;
    -webkit-text-stroke: 3px white;
    paint-order: stroke fill;
    font-weight: 700;
}

#hero_text { font-size: large; }

#heroimage_container img {
    height: 180px;
    object-fit: cover;
}

#caterpod_header {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: white;
    border-radius: 10px 10px 0 0;
}

#caterpod_container img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

#caterpod_container .caterpod1 {
    border-top-right-radius: 10px;
    margin-top: -1px;
    padding: 20px;
    padding-bottom: 10px !important;
}

#caterpod_container .caterpod2 {
    border-radius: 0 0 10px 10px;
    margin-top: -1px;
    padding: 20px;
    padding-top: 10px !important;
}

#discover_menu_section { padding: 20px 0; overflow: hidden; }

#discover_menu_title {
    font-size: 34px;
    font-weight: 600;
}

.purple-divider {
    height: 8px;
    background-color: #CB6CE6;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.category_item {
    cursor: pointer;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border: 6px solid #d9d9d9;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 5px;
    transition: border 0.3s ease-in-out, color 0.3s ease-in-out;
}

.category_item:hover { border-color: rgba(35, 180, 32, 0.71); color: #167715; }
.category_item:hover .category_icon svg { transform: rotate3d(0, 5, 3, 360deg); }

.category_item.active {
    background-color: #23B420;
    border-color: #23B420;
    border-radius: 20px 20px 0 0;
    color: white;
}

.category_item.active::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -23px;
    width: 0;
    height: 0;
    left: -6px;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 18px solid #1e9e1c;
}

.category_item.active svg path { fill: white; }

.category_icon svg {
    width: 50px;
    height: 50px;
    transition: 0.3s ease-in-out;
}

#category_body h3 {
    font-size: x-large;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #CB6CE6;
    text-decoration-thickness: 15%;
    text-underline-offset: 30%;
}

#category_body img {
    border: 4px solid #CB6CE6;
    border-radius: 10px;
    width: 45%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

#category_body img.single { width: 95%; aspect-ratio: 2 / 1; }

#category_body .extended_background {
    position: absolute;
    background-color: rgba(203, 108, 230, 0.15);
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
}

#discover_ordernow { margin-bottom: 15px; }
#discover_ordernow svg { width: 30px; height: 30px; }
#discover_ordernow .inner-text { font-size: 20px !important; }

#testimonials_section {
    padding: 30px 0 50px 0;
    background-color: #F2F2F7;
}

#testimonials_section .subtitle { font-size: 18px; }
#testimonials_section .title { font-size: 30px; }

.testimonial_item { position: relative; }
.testimonial_item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 100%;
    border: 5px solid #793A8A;
    z-index: 2;
    position: absolute;
    top: -10px;
}

.testimonial_item .description {
    background-color: #CB6CE6;
    border: 5px solid #AF5AC7;
    border-radius: 15px;
    color: white;
    z-index: 1;
    font-size: 12px;
    padding: 5px 5px 5px 80px;
    margin-left: 70px;
    height: 140px;
}

.testimonial_item .reviewer {
    -webkit-text-stroke: 5px #793A8A;
    paint-order: stroke fill;
}

.testimonial_item .quote_icon {
    background-color: white;
    width: 40px;
    height: 40px;
    border: 2px solid #AF5AC7;
    border-radius: 30px;
    padding-left: 3px;
    padding-top: 3px;
    position: absolute;
    right: -5px;
    bottom: -10px;
}

.testimonial_item .quote_icon .inner {
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #7B3A8A;
    font-size: 20px;
    text-align: center;
}

footer {
    position: relative;
    background-color: #CB6CE6;
    padding-top: 50px;
    padding-bottom: 30px;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/caterpod_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

#footer_logo {
    background-color: rgba(123, 58, 138, 0.7);
    border-radius: 30px;
    padding: 20px 0;
    text-align: center;
}

#footer_logo img { width: 80%; }

footer #restaurant_times {
    font-weight: 600;
    color: white;
}

#footer_logo span:nth-child(4) {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 7px;
}

footer .link_title {
    font-size: 24px;
    color: white;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #6E2D81;
    text-decoration-thickness: 5px;
    text-underline-offset: 10px;
}

footer #menu_links .links_inner a {
    color: white !important;
    margin-bottom: 10px;
}

#newsletter input { font-size: 16px; }
#subscribe_button i { font-size: 22px; }
#subscribe_button .inner-text { font-size: 20px; }

.purple-dark-divider {
    height: 5px;
    background-color: #6E2D81;
    margin-top: 30px;
    margin-bottom: 10px;
}

#footer_copyright span {
    font-weight: 600;
    color: white;
    font-size: 15px;
}

#footer_copyright .socials a { font-weight: 500; }
#footer_copyright .socials svg { width: 20px; }

#pages_hero_section {
    background: linear-gradient(to bottom, #CB6CE6 0%, #763986 88%);
    position: relative;
    padding: 80px 0 20px 0;
}

#pages_hero_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/horsebox_trailer.png');
    background-size: cover;
    mix-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

#pages_hero_section h1 {
    color: white;
    font-size: 42px;
    font-weight: 600;
}

#pages_hero_section h3 {
    color: white;
    font-weight: normal;
}

#pages_hero_section .breadcrumb {
    background-color: #5E194F;
    border: 2px solid #E6E6E6;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-flex;
    padding: 10px 20px;
}

#pages_hero_section .breadcrumb-item a { color: white !important; }
#pages_hero_section .breadcrumb-item {
    color: white !important;
    font-weight: 600;
    font-size: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "-";
    color: white;
}

.breadcrumb .product-title {
    border: 1px solid rgb(44, 10, 37);
    border-bottom-width: 2px;
    border-top-width: 0;
    border-radius: 20px;
    background-color: #401137;
    color: white;
    padding: 3px;
    text-align: center;
    min-width: 100%;
    font-size: large;
}

#hero_image_left img, #hero_image_right img {
    width: 100%;
    height: 240px;
    border-radius: 100px;
    object-fit: cover;
    border: 3px solid #E6E6E6;
    background-color: #E6E6E6;
}

#hero_image_right img { margin-top: 30%; }
#hero_image_right {
    position: absolute;
    right: 1rem;
}

form#login_form, form#register_form {
    background-color: #F2F2F7;
    border-radius: 20px;
    padding: 30px 25px;
}

form#register_form {
    position: relative;
    color: white;
    background: #A654B9;
}

form#register_form .col-form-label.required:after { color: #ff9b9b; }

form#register_form::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/dumplings.jpg');
    background-size: cover;
    mix-blend-mode: overlay;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

#category_controls {
    padding: 15px 20px;
    border-radius: 10px;
    background: #5E194F;
}

#category_controls svg path { fill: white; }
#category_controls svg { width: 30px; height: 30px; margin-right: 5px; }

#controls_sticky .sticky_background {
    height: 100%;
    position: absolute;
    background: #5E194F;
    z-index: -10;
    width: 100vw !important;
    left: 50%;
    margin-left: -50vw;
    opacity: 0;
}

.sticky_background.animate__bounceIn + div #category_controls { background: none !important; }

#category_controls .input-group {
    padding: 2px;
    background: white;
    border-radius: 8px;
}

#category_controls .input-group-prepend,
#category_controls .input-group-append {
    background: #3A3A3A;
    border-radius: 8px !important;
    overflow: hidden;
}

#category_controls .form-control {
    box-shadow: none;
    height: 100%;
}

#subcontrols .subcontrol_inner {
    background-color: #E6E6E6;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid #BCBCBC;
    padding: 8px 0;
}

#subcontrols .subcontrol_inner .form-group { margin-bottom: 0 !important; font-size: 18px; width: 60%; }
#subcontrols .subcontrol_inner .form-group label { text-align: right; padding-right: 0; }
#subcontrols .subcontrol_inner .form-group select { font-size: 18px; border-radius: 8px; }

#display_controls .display-menu { cursor: pointer; }
#display_controls .display-menu svg { height: 40px !important; }
#display_controls .display-menu:hover rect:first-child { stroke: #5e5e5e; }
#display_controls .display-menu.active rect:first-child { stroke: #3c3c3c; }
#display_controls .display-menu:hover rect:nth-child(n+2) { fill: #5e5e5e; }
#display_controls .display-menu.active rect:nth-child(n+2) { fill: #3c3c3c; }

#products_list { margin-top: 40px; }
#products_list .product_container:hover { background: #efefef; }
#products_list .products { transition: all 0.35s ease-in-out; }
#products_list .product_container {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px 15px;
    margin-bottom: 25px;
    box-shadow: 0 0 7px 3px #c7c7c7;
    transition: background 0.3s ease-in-out;
}

#products_list .image_container {
    min-height: 250px;
    border-radius: 15px;
}

#products_list .image_container img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
}

#products_list .star-rating { font-size: 24px; }
#products_list h3 { font-size: 20px; }
#products_list h3 a { text-decoration: none !important; }
#products_list .pricing { font-size: 28px; }
#products_list #add_to_cart button { font-size: 30px; padding: 3px 14px 3px 10px; }

ul.pagination .page-item span.page-link {
    background: #3A3A3A;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 20px;
}

ul.pagination li.page-item a.page-link:hover { background: #651a55; }
ul.pagination .page-item:first-child a.page-link { border-radius: 10px 0 0 10px; border-right: 3px solid #6a1c59; }
ul.pagination .page-item:last-child a.page-link { border-radius: 0 10px 10px 0; border-left: 3px solid #6a1c59; }
ul.pagination li.page-item a.page-link {
    border: none;
    background: #8e2677;
    color: white !important;
    font-size: 20px;
}

#results_label_cont { position: sticky; top: 120px; z-index: 1024; }
#results_label {
    background-color: rgba(23, 23, 23, 0.6);
    padding: 5px 10px;
    border-radius: 12px;
    border: 1px solid rgba(251, 251, 251, 0.56);
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 20px 0 0 15px;
}

#shopcart_header {
    background-color: #5E194F;
    color: white;
    border-radius: 10px 10px 0 0;
    padding: 20px;
}

#shopcart_header h4 {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 0;
}

@scope (#basket_formset, #items_buy_later)
{
    .basket-items {
        position: relative;
        margin-bottom: 0;
        padding: 0;
        border: 1px solid #D1D1D1;
        border-bottom: 0;
        overflow: hidden;
    }

    .basket-items:nth-child(even) { background: #f6f6f6 !important; }
    .basket-items:first-child { border-radius: 15px 15px 0 0 !important; }
    .basket-items:last-child { border-radius: 0 0 15px 15px; border-bottom: 1px solid #D1D1D1; }
    .basket-items div.row > div { padding: 15px 0; }
    .basket-items div.row > div:nth-child(n + 3) { padding: 0 15px; }
    .basket-items h3 a { text-decoration: none; }

    .product_thumb {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 10px;
    }

    .checkout-quantity .input-group {
        border-radius: 10px;
        padding: 5px;
        border: 1px solid #a5a5a5;
        border-bottom: 3px solid #475057;
        background-color: white;
        width: 130px;
    }

    .checkout-quantity input { border: none; pointer-events: none; }
    .checkout-quantity input:read-only { background-color: white; }
    .checkout-quantity input[type=number] { -moz-appearance: textfield; }
    .checkout-quantity input::-webkit-outer-spin-button,
    .checkout-quantity input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
    .checkout-quantity .btn { height: 27px; padding: 0 0.6rem; }

    .basket-line-actions a { font-size: 14px; }
    .price_label { font-weight: 600; }
    .total_label { font-size: 22px; }

    .loader_background {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #2f2f2fb8;
        z-index: 20;
    }
}

@scope (#voucher_container)
{
    .inner_container {
        background-color: #5E194F;
        border-radius: 15px;
        padding: 20px 30px;
    }

    .sub-header { border-bottom: none; }
    .sub-header h2 { color: white !important; font-weight: 600; }
    #voucher_form button { font-size: 18px; font-weight: 600; }
}

@scope (#basket_totals)
{
    table { border-radius: 10px; overflow: hidden; }
    .table th, .table td { border-top: 0 !important; padding: 5px 25px; }
    .table thead th { border-bottom: 0 !important; }
    thead tr { background-color: #5E194F; color: white; }
    thead tr th { padding: 10px 25px !important; }
    thead tr h3 { font-size: 26px; margin-bottom: 0; }
    tbody h3 { margin-bottom: 0;}
    tbody { background-color: #e4e4e4; }
    tbody tr { border-bottom: 1px solid #B1B1B1; }
    .offers { font-weight: 600; }
    .total {
        background-color: unset !important;
        font-weight: 400 !important;
        font-size: 18px;
    }
    .rowdark { background-color: #c8c8c8 !important; }
    .rowdark h3 { line-height: 30px; }
    .animatedButton a { width: 100%; }
    .total_order { font-size: 24px; color: #1c921a !important; }
}

#empty_container span { font-size: 26px; }
#empty_container {
    border-radius: 10px;
    border: 1px solid #D1D1D1;
    height: 300px;
    background-color: #f4f4f4;
    font-weight: 500;
}

#items_buy_later {
    border-radius: 10px;
    border: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

@scope (#items_buy_later)
{
    .sub-header h2 { margin-bottom: 0; color: white; }
    .sub-header {
        padding: 10px 1.25rem;
        background-color: #5E194F;
        margin-bottom: 0;
        border-bottom: 0;
    }
    .basket-title div { font-size: 18px; }
    .basket-title {
        background-color: #3B3B3B;
        color: white;
        border-bottom: none;
    }
    .basket-items .price { font-size: 18px; font-weight: 500; }
}

@scope (#product_gallery)
{
    .img-thumbnail {
        position: relative;
        background-color: #DEDEDE;
        border: 2px solid #CFCFCF;
        border-radius: 20px;
        padding: 10px;
    }

    .carousel-item {
        line-height: unset !important;
        padding: 3px;
    }

    .carousel-item > img {
        width: 100%;
        max-height: 100% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 15px;
    }

    .carousel-control-prev { border-radius: 0 10px 10px 0; left: -2px; border-left: 0 !important; }
    .carousel-control-next { border-radius: 10px 0 0 10px; right: -2px; border-right: 0 !important; }
    .carousel-control-next:hover, .carousel-control-prev:hover { color: #333333; opacity: 0.7; }
    .carousel-control-next:focus, .carousel-control-prev:focus { color: #333333; opacity: 0.65; }
    .carousel-control-next:active, .carousel-control-prev:active { color: #333333; opacity: 0.9; }
    .carousel-control-prev, .carousel-control-next {
        height: 70px;
        top: 43%;
        background-color: #F2F2F2;
        border: 2px solid #CFCFCF;
        opacity: 1;
        color: #454545;
        font-size: 32px;
    }

    .carousel-indicators {
        background-color: #3B3B3B;
        border: none;
    }

    .carousel-indicators li > img { height: 100%; vertical-align: unset !important; width: 100%; }
    .carousel-indicators .active { opacity: 0.2 !important; }
    .carousel-indicators li {
        margin: 0.25rem 0.3rem !important;
        border: 2px solid white;
        border-radius: 8px;
        overflow: hidden;
        opacity: 0.8 !important;
    }
}

@scope (.product_main)
{
    h1 {
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 10px;
        text-decoration-color: #A4368A;
        text-decoration-thickness: 8px;
        margin-bottom: 20px;
        line-height: 55px;
    }

    .prod_price span { font-size: 32px !important; }
    .reviews_text { font-size: 15px !important; }
    .star-rating { font-size: 22px !important; }
    .stock_and_reviews {
        background-color: #F7F7F7;
        border-radius: 15px;
        padding: 15px;
        margin-top: 20px;
    }

    .review_taken {
        background-color: #5e164f;
        color: white;
        border-radius: 15px;
        margin-right: auto;
        padding: 3px 15px;
    }

    .quantity_selector {
        background-color: #F2F2F2;
        border: 2px solid #BFBFBF;
        border-radius: 40px;
        width: 150px;
        height: 50px;
        padding: 0 5px;
    }

    .quantity_selector span { font-size: 28px; cursor: pointer; }
    .quantity_selector span:hover { color: black !important; }
    .cart_button_cont button { font-size: 18px !important; }
    .quantity_selector input {
        background-color: transparent !important;
        text-align: center;
        font-size: 26px;
        height: 100%;
        border: 0 !important;
        pointer-events: none;
    }
}

@scope (#product_reviews)
{
    li:last-child > article.review { margin-bottom: 0 !important; }
    article.review {
        background-color: #E5E5E5;
        border: 1px solid #CFCFCF;
        border-radius: 10px;
        padding: 0.5rem;
    }

    header h3 > a { text-decoration: none !important; }
    .card .card-body p { margin-bottom: 1rem; }
    strong { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

    .votes_container {
        background-color: #3B3B3B;
        padding: 5px;
        color: white;
        border-radius: 10px;
    }
    .votes_container span { font-size: 12px !important; font-weight: 500; }
    .votes_container .btn { font-size: 15px; padding: 0.20rem 0.4rem; font-weight: 600; cursor: auto !important; }
    .votes_container .upvote { border-radius: 5px 0 0 5px; }
    .votes_container .downvote { border-radius: 0 5px 5px 0; }
    .right_panel .question { font-size: 13px !important; }
}

@scope (#recommended_items)
{
    .card-body > div > div:last-child .product_container { margin-bottom: 0; }
    .product_container {
        background: #ffffff;
        border-radius: 15px;
        padding: 15px 15px;
        margin-bottom: 25px;
        box-shadow: 0 0 5px 1px #c7c7c7;
    }

    .image_container {
        min-height: 250px;
        border-radius: 15px;
    }

    .image_container img {
        width: 100%;
        aspect-ratio: 1 / 1;
        max-height: 100%;
        height: 100%;
        object-fit: cover;
    }

    .star-rating { font-size: 22px !important; }
    h3 a { font-size: 22px !important; text-decoration: none !important; }
    .pricing > span { font-size: 24px !important; }
    #add_to_cart button { font-size: 28px; padding: 3px 14px 3px 10px; }
}






   /* ==============================================================*/
  /* ============ WEBSITE MEDIA QUERIES CUSTOM STYLES ============ */
 /* ==============================================================*/


@media (min-width: 400px)       /* CUSTOM STYLES FOR MORE SMALLER SCREENSIZE */
{
    .testimonial_item .description { font-size: 14px; }
    #footer_copyright span { font-size: 17px; }
    #hero_image_left img, #hero_image_right img { height: 260px; }
}


@media (min-width: 576px)       /* SMALL DEVICES */
{
    #navigation_container { height: 3.8rem; }

    #landing_hero_section .title_container {
        border-radius: 7px;
        font-size: 26px;
    }

    #heroimage_container img { height: 220px; }
    #caterpod_container img { height: 150px; }

    #footer_logo img { width: 60%; }

    #footer_copyright span { font-size: 18px; }

    #hero_image_left img, #hero_image_right img {
        height: 330px;
        border-radius: 130px;
    }

    @scope (#basket_formset) {
        .basket-container { margin-top: 25px; }
    }

    @scope (#voucher_container) {
        #voucher_form button { font-size: 16px; }
        .sub-header h2 { font-size: 18px; }
    }

    @scope (.product_main)
    {
        .cart_button_cont button { font-size: 22px !important; }
    }
}


@media (min-width: 768px)       /* MEDIUM DEVICES */
{
    #nav_logo { width: 180px; min-height: 88px; }
    #basket_button { margin-right: 2rem !important; }
    .nav_contacts { font-size: large; }

    #landing_hero_section .title_container { font-size: 32px; margin-top: 15px !important; }
    #hero_text { font-size: x-large; }
    #heroimage_container img { height: 250px; }
    #heroimage_container > span { font-size: x-large; }
    #caterpod_container img { height: 230px; }
    #caterpod_header { font-size: 24px; margin-top: 10px; }

    #discover_menu_title { font-size: 52px; }
    .purple-divider { height: 12px; }
    .category_icon svg { width: 60px; height: 60px; }
    .category_item { width: 140px; height: 140px; font-size: 24px; margin: 0 10px; }

    .category_item.active::after {
        bottom: -25px;
        border-left: 70px solid transparent;
        border-right: 70px solid transparent;
        border-top: 20px solid #1e9e1c;
    }

    #category_body img { border-width: 6px; }
    #category_body h3 { font-size: xx-large; }
    #category_body .description { font-size: 24px; }
    #category_body .extended_background { border-radius: 15px; }

    #discover_ordernow { margin-bottom: 20px; }
    #discover_ordernow .inner-text { font-size: 30px !important; }

    #testimonials_section { padding: 40px 0; }
    #testimonials_section .subtitle { font-size: 24px; }
    #testimonials_section .title { font-size: 46px; }

    .testimonial_item img {
        width: 200px;
        height: 200px;
        border: 8px solid #793A8A;
    }

    .testimonial_item .description {
        font-size: 20px;
        padding: 5px 20px 5px 110px;
        margin-left: 100px;
        height: 190px;
    }

    .testimonial_item .reviewer { font-size: larger; }

    .testimonial_item .quote_icon .inner {
        width: 45px;
        height: 45px;
        border-radius: 45px;
        font-size: 30px;
    }

    .testimonial_item .quote_icon {
        width: 60px;
        height: 60px;
        border: 3px solid #AF5AC7;
        border-radius: 60px;
        padding-left: 5px;
        padding-top: 5px;
        right: -20px;
        bottom: -15px;
    }

    #footer_logo img { width: 90%; }
    footer #restaurant_times { font-size: 26px; text-align: left; }
    footer .link_title { font-size: 28px; }
    footer #menu_links .links_inner a { font-size: 22px; }

    #newsletter input { font-size: 18px; }
    #subscribe_button i { font-size: 26px; }
    #subscribe_button .inner-text { font-size: 24px; }

    #pages_hero_section h1 { margin-top: 20px; }
    #pages_hero_section .breadcrumb { margin-top: 20px; }
    #pages_hero_section #hero_images { margin-top: -50px; }
    #hero_image_left img, #hero_image_right img { height: 280px; }
    #hero_image_right img { margin-top: 40%; }
    #hero_image_right { right: 0; padding-left: 0; }
    #hero_image_left { padding-left: 0; }

    #controls_sticky { z-index: 1 !important; }
    #category_controls svg { width: 35px; height: 35px; }
    #category_controls #id_q::placeholder { font-size: 17px; }
    ul.pagination .page-item span.page-link { font-size: 24px; }
    ul.pagination li.page-item a.page-link { font-size: 24px; }

    #products_list { margin-top: 35px; }
    .products.col-md-4 .product_container { height: stretch; justify-content: space-between !important; }
    .products.col-md-4 .product_container div:nth-child(2) { align-items: flex-end !important; }
    .products.col-md-4 .image_container { min-height: unset !important; }
    .products.col-md-10 .star-rating { font-size: 32px !important; }
    .products.col-md-4 .star-rating { font-size: 16px !important; }
    .products.col-md-4 h3 { font-size: 18px !important; }
    .products.col-md-10 h3 { font-size: 30px !important; }
    .products.col-md-4 .pricing { font-size: 24px !important; }
    .products.col-md-10 .pricing { font-size: 38px !important; }
    .products.col-md-4 #add_to_cart button { font-size: 24px !important; }
    .products.col-md-10 #add_to_cart button { font-size: 40px !important; }

    #results_label_cont { top: 75px; }
    #results_label { margin-top: 15px; }

    @scope (#basket_formset) {
        .basket-container { margin-top: -1px; }
        .basket-items:first-child { border-radius: 0 !important; }
        .basket-items h3 { font-size: 24px; margin-bottom: 0; }
        .basket-items span.availability { font-size: 18px; }
        .basket-items div.row > div { padding: 10px 5px; border-right: 1px solid #D1D1D1; }
        .basket-items div.row > div:last-child { border-right: none; }
        .checkout-quantity .input-group { width: 150px; }
        .basket-line-actions a { font-size: 18px; width: 150px; }
        .price_label { font-weight: 400; font-size: 20px; }
        .basket-items div.row > div:nth-child(n + 3) { padding: 20px 8px; }
        .total_label { font-size: 24px; font-weight: 600; }
    }

    @scope (#voucher_container) {
        #voucher_form button { font-size: 20px; }
        .sub-header h2 { font-size: 26px; }
    }

    @scope (#items_buy_later)
    {
        .description h3 { font-size: 22px !important; }
        .description span { font-size: 18px; }
        .basket-items .price { font-size: 22px; }
        .button_actions a:first-child { width: 100%;}
    }

    @scope (#product_gallery)
    {
        .carousel-item { height: 400px !important; }
    }

    @scope (.product_main)
    {
        h1 { margin-top: 20px; }
        .star-rating { font-size: 26px !important; }
        .reviews_text { font-size: 18px !important; }
        .stock_and_reviews { font-size: 18px; }
    }

    .card .card-body span { font-size: 18px; }

    @scope (#product_reviews)
    {
        .card .card-body p { font-size: 18px; }
        header h3 > a { font-size: 22px; }
        .right_panel .question { font-size: 14px !important; }
    }

    @scope (#recommended_items)
    {
        .card-body > div > div { padding-left: 0; }
        .card-body > div > div:first-child { margin-left: auto; }
        .card-body > div > div:last-child { margin-right: auto; }
        .product_container { height: stretch; margin-bottom: 0; justify-content: space-between !important; }
        .image_container { min-height: 200px; }
        h3 a { font-size: 20px !important; }
        .pricing > span { font-size: 22px !important; }
        #add_to_cart { margin-top: auto; }
        #add_to_cart button { font-size: 26px; }
    }
}


@media (min-width: 992px)       /* LARGE DEVICES */
{
    .icon_with_text { font-size: x-large; }

    #navigationBar > .navbar-nav {
        font-size: 22px;
        width: 100%;
    }

    #quickBasketContainer {
        width: 500px;
        top: 110%;
        right: -5px;
        border-radius: 10px;
        overflow: hidden;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin: 0;
    }

    .navbar-nav .dropdown-menu {
        left: -30%;
        width: 12rem;
        overflow: hidden;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        box-shadow: 13px 12px 0 4px #660b56
    }

    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: #343a40;
        color: white;
    }

    #landing_hero_section .title_container { font-size: 32px; margin-top: 5px !important; }
    #hero_text { font-size: 22px; }
    #hero_text span { line-height: 30px; }

    #caterpod_header { font-weight: bold; font-size: 26px; }

    #caterpod_container .caterpod1 {
        padding: 15px 15px 15px 20px !important;
        border-radius: 0 0 0 15px;
    }

    #caterpod_container .caterpod2 {
        padding: 15px 20px 15px 15px !important;
        border-radius: 0 15px 15px 0;
    }

    #category_body img { width: 30%; }
    #category_body img.twos { width: 43%; }

    footer #restaurant_times { font-size: 20px; text-align: center; }
    #footer_copyright span { font-size: 20px; }
    #footer_copyright .socials a { font-size: 20px; }
    #footer_copyright .socials svg { width: 35px; }

    #pages_hero_section h1 { margin-top: 28px; font-size: 52px; }
    #pages_hero_section h3 { font-size: 26px; font-weight: 300; }
    #pages_hero_section .breadcrumb { padding: 10px 30px; }
    #pages_hero_section .breadcrumb-item { font-size: 26px; }
    #hero_image_right img { margin-top: 25%; }
    #hero_image_left img, #hero_image_right img {
        height: 330px;
        border-radius: 120px;
    }

    form#login_form, form#register_form { padding: 30px; }
    #login_form h2, #register_form h2 { font-size: 36px; }
    #login_form a { font-size: 18px; }

    #category_controls .custom-select { font-size: 20px; }
    #subcontrols .subcontrol_inner .form-group { width: 40%; }

    .products.col-lg-4 .product_container { height: stretch; justify-content: space-between !important; }
    .products.col-lg-4 .product_container div:nth-child(2) { align-items: flex-end !important; }
    .products.col-lg-10 .star-rating { font-size: 34px !important; }
    .products.col-md-6 .star-rating { font-size: 32px !important; }
    .products.col-lg-4 .star-rating { font-size: 26px !important; }
    .products.col-lg-10 h3 { font-size: 36px !important; }
    .products.col-md-6 h3 { font-size: 26px !important; }
    .products.col-lg-4 h3 { font-size: 24px !important; }
    .products.col-lg-10 .pricing { font-size: 40px !important; }
    .products.col-md-6 .pricing { font-size: 38px !important; }
    .products.col-lg-4 .pricing { font-size: 30px !important; }
    .products.col-lg-10 #add_to_cart button { font-size: 46px !important; }
    .products.col-md-6 #add_to_cart button { font-size: 40px !important; }
    .products.col-lg-4 #add_to_cart button { font-size: 32px !important; }

    @scope (#basket_totals)
    {
        .animatedButton a { width: auto; }
    }

    @scope (#items_buy_later)
    {
        .button_actions a:first-child { width: auto;}
    }

    @scope (#product_gallery)
    {
        .carousel-item {height: 450px !important;}
        .carousel-control-prev, .carousel-control-next { width: 60px; height: 90px; font-size: 36px; }
    }

    @scope (.product_main)
    {
        h1 { font-size: 44px; line-height: 68px; text-underline-offset: 15px; }
        .prod_price span { font-size: 40px !important; }
        .star-rating { font-size: 30px !important; }
        .reviews_text { font-size: 20px !important; }
        .stock_and_reviews { font-size: 22px; }
        .review_taken { margin-right: auto; display: inline-block; padding: 5px 20px !important; }
        .quantity_selector { width: 180px; height: 60px; }
        .quantity_selector input { font-size: 30px; }
        .quantity_selector span { font-size: 34px; }
        .cart_button_cont button { font-size: 24px !important; }
    }

    .card-header { padding: 0.8rem 1.7rem; }
    .card .card-body { padding: 1rem 1.5rem; }
    .card .card-header h3 { font-size: 28px; }
    .card .card-body span { font-size: 20px; }

    @scope (#product_reviews)
    {
        article.review { padding: 0.7rem 1rem; }
        .card .card-body p { font-size: 20px; }
        header h3 > span > i { font-size: 22px; }
        header h3 > a { font-size: 24px; }

        .votes_container span { font-size: 16px !important; }
        .votes_container .btn { font-size: 18px; padding: 0.3rem 0.5rem; }
        .right_panel .question { font-size: 16px !important; }
        .right_panel .buttons button { font-size: 16px; }
    }

    @scope (#recommended_items)
    {
        .star-rating { font-size: 26px !important; }
        h3 a { font-size: 22px !important; }
        .pricing > span { font-size: 26px !important; }
        #add_to_cart button { font-size: 28px; }
    }
}


@media (min-width: 1200px)      /* EXTRA LARGE DEVICES */
{
    .xl-large { font-size: large; }
    #nav_logo { width: 250px; min-height: 123px; }

    #navigationBar > .navbar-nav {
        font-size: x-large;
    }

    #landing_hero_section .title_container { font-size: 38px; }
    #hero_text { font-size: 25px; }
    #hero_text span { line-height: 35px; }
    #caterpod_header { font-size: 30px; margin-top: 0; }

    #discover_menu_title { font-size: 60px; }
    .purple-divider { height: 15px; }
    .category_icon svg { width: 70px; height: 70px; }
    .category_item { width: 170px; height: 170px; font-size: 28px; margin: 0 15px;}

    .category_item.active::after {
        bottom: -30px;
        border-left: 85px solid transparent;
        border-right: 85px solid transparent;
        border-top: 25px solid #1e9e1c;
    }

    #discover_menu_section { padding: 40px 0; }
    #category_body h3 { font-size: 40px; }
    #category_body .description { margin-top: 1.7rem !important; z-index: 5; }
    #category_body .extended_background.left { left: 0; }
    #category_body .extended_background {
        border-radius: 30px;
        width: 150%;
        right: 0;
    }

    #discover_ordernow svg { width: 40px; height: 40px; }
    #discover_ordernow { margin-top: 20px; margin-bottom: 25px; }
    #discover_ordernow .inner-text { font-size: 34px !important; }

    #testimonials_section { padding: 50px 0; }
    #testimonials_section .subtitle { font-size: 26px; }
    #testimonials_section .title { font-size: 56px; }

    .testimonial_item:nth-child(1) { margin-top: 40px !important; }
    .testimonial_item:nth-child(2) { margin-top: 70px !important; }

    .testimonial_item img {
        width: 230px;
        height: 230px;
        top: -15px;
    }

    .testimonial_item.reversed img { right: 0; }
    .testimonial_item .reviewer { font-size: 20px; }

    .testimonial_item .description {
        font-size: 20px;
        line-height: 27px;
        padding: 5px 10px 5px 120px;
        margin-left: 115px;
        height: 215px;
        border-width: 8px;
    }

    .testimonial_item.reversed .description {
        padding: 5px 120px 5px 10px;
        margin-right: 100px;
        margin-left: 0;
        text-align: right;
    }

    .testimonial_item .quote_icon { bottom: -25px; }
    .testimonial_item.reversed .quote_icon {
        transform: scaleX(-1);
        left: -25px;
        bottom: -25px;
    }

    #footer_logo img { width: 90%; }
    footer #restaurant_times { font-size: 20px; text-align: center; }

    #newsletter input { font-size: 20px; }
    #subscribe_button i { font-size: 28px !important; }
    #subscribe_button .inner-text { font-size: 26px; }

    #footer_copyright span { font-size: 22px; }
    #footer_copyright .socials a { font-size: 24px; font-weight: 600 }
    #footer_copyright .socials svg { width: 40px; }

    #pages_hero_section h1 { margin-top: 60px; font-size: 64px; }
    #pages_hero_section h3 { font-size: 30px; font-weight: 300; }
    #pages_hero_section .breadcrumb-item { font-size: 28px; }
    .breadcrumb-item + .breadcrumb-item::before { padding-right: 0.8rem; padding-left: 0.3rem; }
    #pages_hero_section #hero_images { margin-top: -40px; }
    #hero_image_right img { margin-top: 25%; }
    #hero_image_left img, #hero_image_right img {
        height: 400px;
        border-radius: 130px;
    }

    form#login_form, form#register_form { padding: 30px 40px; }
    #login_form h2, #register_form h2 { font-size: 40px; }
    #login_form a { font-size: 20px; }

    #controls_sticky { z-index: 1024 !important; }
    #category_controls svg { width: 40px; height: 40px; }
    #category_controls .input-group-prepend span { font-size: 22px; }
    #category_controls #id_q::placeholder { font-size: 18px; }
    #category_controls .custom-select { font-size: 22px; }
    #subcontrols .subcontrol_inner .form-group { width: 35%; }

    #display_controls { font-size: 20px; }
    #display_controls .display-menu svg { height: 45px !important; }

    .products.col-xl-3 .product_container,
    .products.col-xl-4 .product_container { height: stretch; justify-content: space-between !important; }
    .products.col-xl-3 .product_container div:nth-child(2) { align-items: flex-end !important; }
    .products.col-xl-3 .image_container { min-height: unset !important; }
    .products.col-xl-3 .star-rating { font-size: 22px !important; }
    .products.col-xl-4 .star-rating { font-size: 30px !important; }
    .products.col-xl-3 h3 { font-size: 20px !important; }
    .products.col-xl-4 h3 { font-size: 24px !important; }
    .products.col-xl-6 h3 { font-size: 30px !important; }
    .products.col-xl-3 .pricing { font-size: 28px !important; }
    .products.col-xl-4 .pricing { font-size: 32px !important; }
    .products.col-xl-3 #add_to_cart button { font-size: 28px !important; }
    .products.col-xl-4 #add_to_cart button { font-size: 34px !important; }

    #results_label_cont { top: 80px; }
    #results_label { margin-left: 22px; }

    #shopcart_header { border-radius: 15px 15px 0 0; padding: 20px 30px; }

    @scope (#basket_formset) {
        .basket-line-actions a:first-child { font-size: 22px; width: 50px; margin-right: 8px; }
        .basket-line-actions a { font-size: 16px; width: 120px; }
    }

    @scope (#voucher_container) {
        #voucher_form button { font-size: 22px; }
        .sub-header h2 { font-size: 26px; }
        .inner_container { padding: 25px 35px; }
    }

    @scope (#product_gallery)
    {
        .img-thumbnail { padding: 15px; }
        .carousel-item { height: 550px !important; }
        .carousel-control-prev, .carousel-control-next { width: 60px; height: 110px; font-size: 40px; }
        .carousel-indicators li { border-width: 3px; margin: 0.25rem 0.5rem !important; }
    }

    @scope (.product_main)
    {
        h1 { font-size: 54px; line-height: 72px; text-underline-offset: 13px; }
        .prod_price span { font-size: 50px !important; }
        .star-rating { font-size: 34px !important; }
        .reviews_text { font-size: 22px !important; }
        .stock_and_reviews { font-size: 22px; }
        .review_taken { padding: 5px 25px !important; }
        #write_review { font-size: 20px !important; }
        .quantity_selector { width: 200px; height: 65px; padding: 0 8px; margin-right: 35px !important; }
        .quantity_selector input { font-size: 32px; }
        .quantity_selector span { font-size: 38px; }
        .cart_button_cont button { font-size: 28px !important; }
    }

    .card .card-header h3 { font-size: 30px; }
    .card .card-body span { font-size: 24px; }

    @scope (#product_reviews)
    {
        article.review { padding: 1rem; }
        .card .card-body p { font-size: 22px; }
        header h3 > span > i { font-size: 26px; }
        header h3 > a { font-size: 26px; }

        .votes_container span { font-size: 16px !important; }
        .votes_container .btn { font-size: 20px; padding: 0.2rem 0.6rem; }
        .right_panel .question { font-size: 18px !important; }
        .right_panel .buttons button { font-size: 18px; }
    }

    @scope (#recommended_items)
    {
        h3 a { font-size: 26px !important; }
        .pricing > span { font-size: 30px !important; }
        #add_to_cart button { font-size: 34px; }
    }
}