/* /Layout/Footer.razor.rz.scp.css */
/* Footer Container */
.footer[b-pnha7nn5km] {
    background-color: rgba(245, 245, 220, 0.5); /* Warm Beige with 50% opacity */
    color: #2F4F4F; /* Charcoal Gray */
    padding: 2rem 1rem;
}

.footer-content[b-pnha7nn5km] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Sections */
.footer-section[b-pnha7nn5km] {
    text-align: center;
}

.footer-title[b-pnha7nn5km] {
    font-size: 1.5rem;
    color: #8B0000; /* Deep Red */
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-links[b-pnha7nn5km] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li[b-pnha7nn5km] {
        margin-bottom: 0.5rem;
    }

        .footer-links li a[b-pnha7nn5km] {
            color: #2F4F4F; /* Charcoal Gray */
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-links li a:hover[b-pnha7nn5km] {
                color: #8B0000; /* Deep Red */
            }

/* Contact Info */
.footer-phone[b-pnha7nn5km] {
    color: #8B0000; /* Deep Red */
    font-weight: bold;
}

    .footer-phone a[b-pnha7nn5km] {
        text-decoration: none;
        color: #8B0000;
    }

        .footer-phone a:hover[b-pnha7nn5km] {
            text-decoration: underline;
        }

/* Social Media */
.social-logo[b-pnha7nn5km] {
    width: 5rem;
    margin-top: 1rem;
}

/* Footer Bar */
.footer-bar[b-pnha7nn5km] {
    background-color: #8B0000; /* Deep Red */
    color: #FFFFFF; /* Soft White */
    text-align: center;
    padding: 1rem 0;
    font-size: 0.875rem;
    margin-top: 2rem;
}
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-1dzyzc8tog] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-1dzyzc8tog] {
    flex: 1;
}

.sidebar[b-1dzyzc8tog] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-1dzyzc8tog] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-1dzyzc8tog]  a, .top-row[b-1dzyzc8tog]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-1dzyzc8tog]  a:hover, .top-row[b-1dzyzc8tog]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-1dzyzc8tog]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-1dzyzc8tog] {
        justify-content: space-between;
    }

    .top-row[b-1dzyzc8tog]  a, .top-row[b-1dzyzc8tog]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-1dzyzc8tog] {
        flex-direction: row;
    }

    .sidebar[b-1dzyzc8tog] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-1dzyzc8tog] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-1dzyzc8tog]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-1dzyzc8tog], article[b-1dzyzc8tog] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Navbar Base Styles */
.navbar[b-bqsa9wayg2] {
    background-color: #8B0000; /* Deep Red */
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-container[b-bqsa9wayg2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Logo */
.navbar-brand[b-bqsa9wayg2] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF; /* Soft White */
    text-decoration: none;
}

/* Links */
.navbar-links[b-bqsa9wayg2] {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Dropdown Menu */
.dropdown[b-bqsa9wayg2] {
    position: relative;
}

.dropdown-toggle[b-bqsa9wayg2] {
    background: none;
    border: none;
    color: #F5F5DC !important; /* Warm Beige */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.dropdown-menu1[b-bqsa9wayg2] {
    position: absolute;
    top: 100%; /* Display below the toggle */
    left: 0;
    background-color: #F5F5DC !important; /* Soft White */
    border: 2px solid #8B0000 !important; /* Deep Red */
    border-radius: 0.25rem;
    box-shadow: 3px 4px 7px rgba(255, 255, 255, .8);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
    display: none; /* Hidden by default */
}

    .dropdown-menu1 .dropdown-open[b-bqsa9wayg2] {
        display: block; /* Shown when open */
        background-color: none;
    }

.dropdown-closed[b-bqsa9wayg2] {
    display: none;
}

/*.dropdownItems {
    color: #2F4F4F;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: none;
    text-align: center;
}

    .dropdownItems:hover {
        background-color: #F5F5DC !important;*/ /* Warm Beige */
        /*color: #8B0000 !important;*/ /* Deep Red */
    /*}*/


/* Hamburger Menu */
.nav-toggle[b-bqsa9wayg2] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-icon[b-bqsa9wayg2] {
    font-size: 1.5rem;
    color: #FFFFFF; /* Soft White */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-toggle[b-bqsa9wayg2] {
        display: block;
    }

    .navbar-links[b-bqsa9wayg2] {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: #8B0000; /* Deep Red */
        padding: 1rem;
        border-radius: 0.25rem;
        transform: translateY(-200%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-open[b-bqsa9wayg2] {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-closed[b-bqsa9wayg2] {
        transform: translateY(-200%);
        opacity: 0;
        visibility: hidden;
    }
}

.navitem[b-bqsa9wayg2] {
    background: none;
    border: none;
    color: #F5F5DC; /* Warm Beige */
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* /Pages/AboutUs.razor.rz.scp.css */
/* General Styles */
/*.about-us-section {
    background-color: #F5F5DC;  Warm Beige 
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #2F4F4F;  Charcoal Gray 
}

.about-us-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.about-us-title, .about-us-subtitle {
    color: #8B0000;  Deep Red 
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-us-title {
    font-size: 2.5rem;
}

.about-us-subtitle {
    font-size: 2rem;
}

.about-us-text {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

 
/* /Pages/Contact.razor.rz.scp.css */
/* General Styling */
h1[b-12hv7myhq5], h3[b-12hv7myhq5], p[b-12hv7myhq5] {
    color: #8B0000; /* White text for headings */
}

a[b-12hv7myhq5] {
    text-decoration: none;
    color: #8B0000; /* Deep Red for links */
    transition: color 0.3s ease;
}

    a:hover[b-12hv7myhq5] {
        text-decoration: underline;
        color: #F5F5DC; /* Warm Beige */
    }

/* Section Styling */
.bg-[#9ECE9A][b-12hv7myhq5] {
    background-color: #9ECE9A; /* Green background for main section */
}

.bg-gray-100[b-12hv7myhq5] {
    background-color: #f5f5f5; /* Light Gray for Reviews */
}

.bg-gray-200[b-12hv7myhq5] {
    background-color: #eaeaea; /* Slightly darker gray for Google Maps */
}

/* Container Styling */
.responsive-container[b-12hv7myhq5] {
    max-width: 1200px; /* Limits the width for larger screens */
    margin: 0 auto; /* Centers the container */
    padding: 1.5rem; /* Adds padding to prevent content from hitting the edges */
}

/* Grid Layout */
.responsive-grid[b-12hv7myhq5] {
    display: grid;
    grid-template-columns: 1fr; /* Single column by default */
    gap: 2rem; /* Adds space between the grid items */
}

@media (min-width: 768px) {
    .responsive-grid[b-12hv7myhq5] {
        grid-template-columns: repeat(2, 1fr); /* Two columns on larger screens */
    }
}

/* Text Styling */
.text[b-12hv7myhq5] {
    text-align: center; /* Center text on mobile */
}

@media (min-width: 768px) {
    .text[b-12hv7myhq5] {
        text-align: center; /* Left-align text on larger screens */
    }
}

/* Link Styling */
.link[b-12hv7myhq5] {
    color: #8B0000; /* Deep Red */
    text-decoration: none;
    transition: color 0.3s ease;
}

    .link:hover[b-12hv7myhq5] {
        text-decoration: underline;
        color: #F5F5DC; /* Warm Beige */
    }
/* /Pages/Home.razor.rz.scp.css */
/* General Section Styling */
#location[b-lgtdeajoim] {
    background-color: #F5F5DC; /* Warm Beige */
    padding: 3rem 1.5rem;
}

    #location h2[b-lgtdeajoim] {
        color: #8B0000; /* Deep Red */
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    #location p[b-lgtdeajoim] {
        color: #2F4F4F; /* Charcoal Gray */
        font-size: 1.125rem;
        text-align: center;
        line-height: 1.75;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

/* General Styling for Location Cards */
.location-card[b-lgtdeajoim] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FCFBF0; /* Warm Beige */
    border: 1px solid #8B0000; /* Deep Red */
    border-radius: 8px;
    padding: 8px;
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.location-image[b-lgtdeajoim] {
    width: 100%; /* Ensures the image scales to fit the container */
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures the image is cropped proportionally to fit the dimensions */
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Title Styling */
.location-title[b-lgtdeajoim] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B0000; /* Deep Red */
    margin-bottom: 8px;
}

/* Description Styling */
.location-description[b-lgtdeajoim] {
    font-size: 1rem;
    color: #2F4F4F; /* Charcoal Gray */
    line-height: 1.4;
}

.text-deep-red[b-lgtdeajoim] {
    color: #F5F5DC;
    background-color: #8B0000; /* Deep Red */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition */
    font-size: 1.5rem;
    border-radius: 1.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .text-deep-red:hover[b-lgtdeajoim] {
        color: #8B0000; /* Deep Red */
        background-color: #F5F5DC; /* Warm Beige */
    }

/* Featured pizzas */
.menuBackground[b-lgtdeajoim] {
    background-image: url("https://joespizza.blob.core.windows.net/homepage/Brick-wall-down-the-stairs.jpg");
    /*    width: 100%;
    height: 100%;*/
}

.featuredText[b-lgtdeajoim] {
    text-decoration: none;
    color: #8B0000;
    background-color: rgba(245, 245, 220, 0.75); /* Warm Beige */
    padding: 1rem;
    border-radius: 1rem;
}
/*front page tiles*/
figure.fig[b-lgtdeajoim] {
    font-family: "Josefin Sans", sans-serif;
    position: relative;
    overflow: hidden;
    margin: 10px 1%;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

    figure.fig *[b-lgtdeajoim] {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.45s ease;
        transition: all 0.45s ease;
    }

    figure.fig figcaption[b-lgtdeajoim] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        padding: 30px;
        background-color: #8B0000; /* Deep Red */
        border: 4px solid rgba(255, 255, 255, 0.05);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
        transform-origin: 0 100%;
    }

a[b-lgtdeajoim] {
    color: #000;
    text-decoration: none;
}

.card-services[b-lgtdeajoim] {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

figure.fig:hover > img[b-lgtdeajoim],
figure.fig.hover > img[b-lgtdeajoim] {
    opacity: 0.2;
}

figure.fig:hover figcaption[b-lgtdeajoim],
figure.fig.hover figcaption[b-lgtdeajoim] {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

#portfolio[b-lgtdeajoim] {
    display: flex;
    -webkit-display: flex;
    -moz-display: flex;
    -o-display: flex;
    -ms-display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -o-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5.5% 0;
}

#portfolio-container[b-lgtdeajoim] {
    opacity: 0;
}

.show[b-lgtdeajoim] {
    opacity: 1 !important;
}

.card-portfolio[b-lgtdeajoim] {
    background-color: transparent;
    display: block;
    margin: 1em;
    position: relative;
    width: 350px;
    text-align: center;
    padding: 0;
}

.img-portfolio[b-lgtdeajoim] {
    width: 100%;
    height: 260px;
}

/* Ice Cream Section Styling */
.ice-cream-section[b-lgtdeajoim] {
    background-color: rgba(245, 245, 220, 0.75); /* Warm Beige */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for elevation */
    text-align: center;
    margin: 20px auto;
    max-width: 900px;
}

/* Title Styling */
.ice-cream-title[b-lgtdeajoim] {
    font-size: 2rem;
    font-weight: bold;
    color: #8B0000; /* Deep Red */
    margin-bottom: 20px;
}

/* Description Styling */
.ice-cream-description[b-lgtdeajoim] {
    font-size: 1rem;
    color: #2F4F4F; /* Charcoal Gray */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Images Styling */
.responsive-images[b-lgtdeajoim] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Space between images */
}

@media (min-width: 768px) {
    .responsive-images[b-lgtdeajoim] {
        flex-direction: row; /* Horizontal alignment on desktop */
        justify-content: center;
    }
}

.ice-cream-image[b-lgtdeajoim] {
    width: 200px;
    height: 300px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.ice-cream-image-1[b-lgtdeajoim] {
    width: 200px;
    height: 200px;
    border-radius: 8px; /* Rounded corners */
}

/* Facebook Widget Section */
/* REMOVE */
.facebook-widget-section[b-lgtdeajoim] {
    display: flex;
    flex-direction: column; /* Default: Vertical alignment (mobile) */
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px auto;
}

@media (min-width: 980px) {
    .facebook-widget-section[b-lgtdeajoim] {
        flex-direction: row; /* Horizontal alignment for desktop */
    }
}

/* Specials and Discounts Styling */
.facebook-specials[b-lgtdeajoim] {
    font-size: 1rem;
    color: #2F4F4F; /* Charcoal Gray */
    margin-top: 10px;
    line-height: 1.5;
}

/* Root Component Styling */
.facebook-component[b-lgtdeajoim] {
    text-align: center;
    padding: 20px;
    border: 1px solid #8B0000; /* Deep Red */
    border-radius: 8px;
    background-color: #F5F5DC; /* Warm Beige */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 20px auto;
}

/* Title Styling */
.facebook-title[b-lgtdeajoim] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B0000; /* Deep Red */
    margin-bottom: 10px;
}

/* Link Styling */
.facebook-link[b-lgtdeajoim] {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFFFFF; /* White for high contrast */
    background-color: #8B0000; /* Deep Red */
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .facebook-link:hover[b-lgtdeajoim] {
        background-color: #B22222; /* Brighter Red */
        transform: scale(1.05); /* Slight zoom effect */
    }


/* Placeholder Widget */
.facebook-widget-placeholder[b-lgtdeajoim] {
    width: 700px;
    height: 850px;
    background-color: #F5F5DC; /* Warm Beige */
    border: 2px solid #8B0000; /* Deep Red border for visual distinction */
    border-radius: 8px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
@media (max-width: 980px) {
    .facebook-widget-placeholder[b-lgtdeajoim] {
        width: 450px;
        height: 600px;
        background-color: #F5F5DC; /* Warm Beige */
        border: 2px solid #8B0000; /* Deep Red border for visual distinction */
        border-radius: 8px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }
}

    /* Placeholder Text */
    .facebook-placeholder-text[b-lgtdeajoim] {
        font-size: 1rem;
        color: #2F4F4F; /* Charcoal Gray */
        text-align: center;
        margin: 0;
    }
/* /Pages/IceCream.razor.rz.scp.css */
svg[b-asy9of92ua] {
    display: block;
    margin: auto;
}

*[b-asy9of92ua] {
    box-sizing: border-box;
}

.nav-item:first-of-type[b-asy9of92ua] {
    padding-top: 0rem !important;
}


.main[b-asy9of92ua] {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    max-width: 500px;
    padding: 12px;
    z-index: 1;
}

.scoop[b-asy9of92ua] {
    position: relative;
    width: 25%;
    height: 0;
    padding-bottom: 25%;
    border-radius: 100%;
    margin: -6% auto 0;
    box-shadow: inset rgba(0, 0, 0, 0.05) -12px -4px 0, inset rgba(0, 0, 0, 0.02) -24px -4px 0, #191919 0 0 0 5px;
    z-index: 3;
}

    .scoop[b-asy9of92ua]:before, .scoop[b-asy9of92ua]:after {
        content: "";
        position: absolute;
        bottom: -5%;
        width: 50%;
        height: 0;
        padding-bottom: 50%;
        border-radius: 100%;
        background-color: inherit;
        box-shadow: inset rgba(0, 0, 0, 0.05) -6px -6px 0, inset rgba(0, 0, 0, 0.02) -14px -8px 0, #191919 0 0 0 5px;
    }

    .scoop[b-asy9of92ua]:before {
        left: -25%;
    }

    .scoop[b-asy9of92ua]:after {
        right: -25%;
    }

    .scoop:nth-child(1)[b-asy9of92ua] {
        background-color: #6b3e26;
        -webkit-animation: excitement 1.9s linear infinite;
        animation: excitement-b-asy9of92ua 1.6s linear infinite;
    }

    .scoop:nth-child(2)[b-asy9of92ua] {
        background-color: #fdf5c9;
        -webkit-animation: excitement 1.2s linear infinite;
        animation: excitement-b-asy9of92ua 1.2s linear infinite;
    }

    .scoop:nth-child(3)[b-asy9of92ua] {
        background-color: #ffc5d9;
        -webkit-animation: excitement 1s linear infinite;
        animation: excitement-b-asy9of92ua .8s linear infinite;
    }

    .scoop:nth-child(1)[b-asy9of92ua] {
        z-index: 9;
    }

    .scoop:nth-child(2)[b-asy9of92ua] {
        z-index: 8;
    }

    .scoop:nth-child(3)[b-asy9of92ua] {
        z-index: 7;
    }

.cover[b-asy9of92ua] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 100%;
    box-shadow: inset rgba(0, 0, 0, 0.05) -12px -2px 0, inset rgba(0, 0, 0, 0.02) -24px 4px 0;
    z-index: 2;
}

.eyes[b-asy9of92ua] {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 3;
}

    .eyes[b-asy9of92ua]:before, .eyes[b-asy9of92ua]:after {
        content: "";
        position: absolute;
        width: 10%;
        height: 10%;
        background-color: #191919;
        border-radius: 100%;
    }

    .eyes[b-asy9of92ua]:before {
        left: 25%;
    }

    .eyes[b-asy9of92ua]:after {
        right: 25%;
    }

.mouth[b-asy9of92ua] {
    position: absolute;
    top: 70%;
    right: 0;
    left: 0;
    margin: auto;
    width: 15%;
    height: 0;
    padding-bottom: 15%;
    border-radius: 100%;
    z-index: 4;
    background-color: inherit;
    box-shadow: inset #191919 0 0 0 20px;
}

    .mouth[b-asy9of92ua]:before, .mouth[b-asy9of92ua]:after {
        content: "";
        position: absolute;
        right: 0;
        left: 0;
        margin: auto;
    }

    .mouth[b-asy9of92ua]:before {
        top: 0;
        width: 100%;
        height: 50%;
        background-color: inherit;
    }

    .mouth[b-asy9of92ua]:after {
        top: 62%;
        background-color: white;
        width: 60%;
        height: 12%;
        border-radius: 0 0 100% 100%;
    }

.cone[b-asy9of92ua] {
    position: relative;
    width: 20%;
    height: 0;
    padding-bottom: 25%;
    margin: 0 auto 25%;
    box-shadow: inset rgba(0, 0, 0, 0.08) -15px 0 0, inset rgba(0, 0, 0, 0.05) -30px 0 0, inset #191919 0 0 0 5px;
    background-color: #ffcb85;
    background: repeating-linear-gradient(45deg, #ffcb85, #ffcb85 8px, #ffb552 8px, #ffb552 10px);
    border-radius: 12px;
}

    .cone[b-asy9of92ua]:before {
        content: "";
        position: absolute;
        bottom: 80%;
        left: -10%;
        width: 120%;
        height: 40%;
        background-color: #ffcb85;
        background: repeating-linear-gradient(45deg, #ffcb85, #ffcb85 10px, #ffb552 10px, #ffb552 12px);
        border-radius: 6px;
        box-shadow: inset rgba(0, 0, 0, 0.08) -15px 0 0, inset rgba(0, 0, 0, 0.05) -30px 0 0, #191919 0 0 0 5px;
    }
@keyframes excitement-b-asy9of92ua {
    30% {
        transform: rotate(2deg);
    }

    70% {
        transform: rotate(-2deg) translateY(2px);
    }

    100% {
        transform: rotate(0);
    }
}

.bounce-div[b-asy9of92ua], .bounce-div1[b-asy9of92ua] {
    animation: bounce-b-asy9of92ua .9s ease infinite;
    animation-fill-mode: forwards;
    transform: translateZ(0);
}


@keyframes bounce-b-asy9of92ua {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    50% {
        transform: translateY(-20px);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    }
}

.loading[b-asy9of92ua] {
    height: 100vh;
    width: 100vw;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #cc333f, #7a1f26);
}
