@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");

/* Base CSS Library Components */
@import url("components/material.css");
@import url("components/variables.css");
@import url("components/reset.css");
@import url("components/grid.css");
@import url("components/buttons.css");
@import url("components/modal.css");
@import url("components/alerts.css");
@import url("components/toast.css");

/* Additional CSS Library Components */
@import url("components/animations.css");
@import url("components/drawer.css");
@import url("components/layout.css");
@import url("components/forms.css");
@import url("components/nav.css");
@import url("components/cards.css");
@import url("components/tags.css");
@import url("components/helpers.css");

/* Custom CSS Overrides */
@import url("components/categories.css");
@import url("components/tables.css");
@import url("components/loader.css");

* {
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    font-family: Poppins, sans-serif;
    font-size: 12pt;
    color: var(--main-font-color);
}

main {
    position: relative;
}

.call-to-action {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    padding: 20px;
    background: url("../images/burger.jpg");
    background-color: #37404a;
    background-position: center center;
    background-size: cover;
    background-blend-mode: overlay;
}

.call-to-action .left {
    width: 90%;
    margin: 10% auto;
    color: var(--font-color-light);
    text-align: center;
}

.call-to-action .left h2 {
    font-size: 6rem;
    line-height: 5.2rem;
}

.call-to-action .left h3 {
    margin-top: 20px;
    font-size: 3rem;
    font-weight: 500;
    color: var(--main-font-color);
    color: #e8e44a;
}

.call-to-action .left h4 {
    margin-top: 0;
    font-weight: 500;
}

.options {
    margin-top: 40px;
}

.options .button {
    width: 15%;
}

.options .button:first-of-type {
    margin-right: 20px;
}

.nav-bar {
    justify-content: space-between;
    width: 100%;
    background: transparent;
}

.nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

nav ul li {
    display: inline-block;
    list-style-type: none;
}

nav ul li a {
    padding: 10px;
    font-weight: 300;
    color: var(--font-color-light);
    text-decoration: none;
    transition: all 0.3s ease-in;
}

nav ul li a:hover {
    color: #e8e44a;
}

#top-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 400px;
    background-color: #37404a;
    background-image: url("../images/burger.jpg");
    background-position: center center;
    background-size: cover;
    background-blend-mode: overlay;
}

#top-bar form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 30%;
    padding-bottom: 20px;
}

#top-bar form input[type="text"] {
    border: 1px solid #fff;
}

#top-bar form button[type="submit"] {
    width: 50px;
    height: 47px;
    margin-left: -50px;
    color: var(--font-color-light);
    background: var(--main-theme);
    border: none;
    border-radius: 0;
}

#top-bar form button[type="submit"]:hover {
    cursor: pointer;
}

#top-bar form button[type="submit"] .material-icons {
    margin-top: 6px;
}

.menu-area {
    width: 100%;
    max-width: 1500px;
    padding: 10px;
    margin: 0 auto;
}

.menu-area h2 {
    font-size: 3rem;
    color: var(--main-theme);
}

h3.add-options {
    font-size: 2.5rem;
    color: var(--main-theme);
}

.list {
    position: relative;
    display: grid;
    grid-template-rows: auto;
    gap: 20px;
    margin: 20px 0 0;
}

.list .card {
    margin: 0;
}

.menu-area .list .card:hover {
    cursor: pointer;
}

#breadcrumbs {
    width: 100%;
    background-color: rgb(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

#breadcrumbs .trail {
    width: 100%;
    max-width: 1500px;
    padding: 10px 20px;
    margin: 0 auto;
    font-weight: normal;
    color: #fff;
}

#breadcrumbs a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

#breadcrumbs a:hover {
    color: #e8e44a;
    text-decoration: none;
}

#breadcrumbs span {
    display: inline-block;
}

#breadcrumbs em {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    font-style: normal;
}

div[class^="col-"].breadcrumb {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.breadcrumb a {
    margin-left: 2px;
    color: var(--main-theme);
}

.nav-bar.nav-bar--mobile div:not(.nav-drawer),
.nav-bar.nav-bar--mobile ul:not(.nav-drawer ul) {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.nav-bar.nav-bar--mobile {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 10px;
    font-size: 1.2rem;
    line-height: 1rem;
    color: var(--font-color-light);
    background: var(--main-theme);
}

.nav-bar.nav-bar--mobile .material-icons {
    padding: 0;
    margin: 0;
}

.button.add-to-bag {
    width: 100%;
    margin: -10px 0 10px;
}

.button-checkout {
    width: 100%;
    margin: 20px 0 10px;
}

.bagForm {
    width: 100%;
    padding: 0;
    padding-top: 0;
}

.bagForm label {
    font-size: 1rem;
    font-weight: 700;
}

.col-right .alert {
    margin: 20px auto 0;
}

#orderContents {
    flex-grow: 1;
    width: auto;
}

#orderDetails {
    min-width: 280px;
}

.orderType {
    width: 100%;
}

.orderType ul {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0 20px;
    list-style-type: none;
    border: 2px solid var(--main-theme);
}

.orderType ul li {
    display: inline-block;
    width: 50%;
    height: 100%;
    padding: 8px 20px;
    color: var(--main-theme);
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.orderType ul li.selected {
    color: var(--font-color-light);
    background: var(--main-theme);
}

.orderType ul li:hover {
    cursor: pointer;
}

#orderConfirm h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--main-theme);
}

#orderConfirm h4 {
    margin-top: 0;
    font-size: 1rem;
}

#orderConfirm address {
    font-size: 1rem;
    font-style: normal;
    text-decoration: none;
}

#orderConfirm .order {
    margin-bottom: 60px;
}

#orderConfirm .line-item {
    margin: 0;
}

#pickupInfo {
    margin-top: 60px;
}

.button .material-icons {
    margin-right: 15px;
}

#orderConfirm h3.order-thanks {
    font-weight: 300;
    color: var(--main-font-color);
}

.signIn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: url("../images/burger.jpg");
    background-color: #37404a;
    background-position: center center;
    background-size: cover;
    background-blend-mode: overlay;
}

.signIn.admin {
    background: var(--main-theme);
    background-position: unset;
    background-size: unset;
    background-blend-mode: unset;
}

.signIn h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 500;
    color: #e8e44a;
    text-align: center;
}

.nav-drawer h2 {
    margin-bottom: 30px;
    color: #e8e44a;
}

.nav-drawer .material-icons {
    color: #e8e44a;
}

.nav-drawer ul li {
    margin-bottom: 20px;
}

.nav-drawer ul li a {
    font-weight: 500;
}

.signIn .signIn-form {
    width: 50%;
    padding: 20px;
    background: #e4e6e9;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.5);
}

.signIn .signIn-form .small {
    margin: 50px auto 0;
    font-size: 0.8rem;
    color: #504f4f;
    text-align: center;
}

.signIn .signIn-form .small a {
    display: inline;
    color: #102030;
}

.signIn .signIn-form .small a:hover {
    text-decoration: none;
}

.signIn .signIn-form .error-message {
    margin: 0;
}
.employmentApplication{
    height: auto;
    padding-top:40px;
}

/* --- Square Adjustments --- */

#card-container {
    width: 100%;
}

.sq-card-wrapper {
    width: 100% !important;
    min-width: unset !important;
}

.sq-card-wrapper .sq-card-iframe-container {
    border-radius: 3px !important;
}

/* --- End Square Adjustments --- */

.wait-time {
    font-size: 0.9rem;
    font-weight: 500;
    color: #5a5a5a;
    text-align: center;
}

p.small-note {
    font-size: 0.8rem;
    font-style: italic;
    color: #5a5a5a;
}

.hasItems {
    position: relative;
}

.hasItems::after {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: table;
    width: 10px;
    height: 10px;
    content: " ";
    background: red;
    border-radius: 50%;
}

.receipt .button {
    margin-right: 20px;
}

.card-item {
    margin-bottom: 0;
}

.card-item .card-body {
    padding: 0 20px 20px;
}

#card-button {
    width: 100%;
    margin: 10px 0;
}

#address-button {
    width: 100%;
    margin: 20px 0 10px;
}

#item-options {
    display: flex;
    width: 100%;
}

#options-modifiers {
    width: 65%;
    padding-right: 20px;
}

#options-typical {
    width: 35%;
}

#myAccount {
    padding-top: 0;
}

@media screen and (max-width: 1265px) {
    .orderType ul {
        width: 100%;
        padding: 0;
    }

    .orderType ul li {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .menu-area {
        width: 100%;
        padding: 10px;
    }

    .options .button {
        width: 25%;
    }
}

@media screen and (max-width: 1100px) {
    .list {
        grid-template-columns: 1fr 1fr;
    }

    #top-bar form {
        width: 60%;
    }
}

@media screen and (max-width: 900px) {
    .nav-bar.nav-bar--mobile {
        display: flex;
    }

    .orderType ul {
        width: 100%;
    }

    .orderType ul li {
        display: inline-block;
    }

    #orderContents {
        padding: 15px 0 0;
    }

    #orderContents .card {
        margin-bottom: 0;
    }

    #orderDetails {
        padding: 0;
    }

    #orderDetails .card {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 800px) {
    .list {
        grid-template-columns: 1fr;
    }

    .menu-area {
        width: 98%;
    }

    .menu-area div[class^="col-"] {
        padding: 0;
    }

    #top-bar {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    #orderContents {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .options {
        flex-direction: column;
    }

    .options .button {
        width: 60%;
    }

    #item-options {
        flex-wrap: wrap;
    }

    #item-options #options-modifiers {
        width: 100%;
        padding-right: 0;
    }

    #item-options #options-typical {
        width: 100%;
    }

    .call-to-action .left {
        height: 90%;
    }

    .call-to-action .left h2 {
        font-size: 4rem;
        line-height: 3.5rem;
    }

    .signIn .signIn-form {
        width: 96%;
    }
}

@media screen and (max-width: 600px) {
    #top-bar {
        height: 178px;
    }

    #top-bar form {
        width: 90%;
    }

    #breadcrumbs {
        font-size: 0.7rem;
        background-color: rgb(0, 0, 0, 0.3);
    }

    .options {
        flex-direction: column;
    }

    .options .button:first-of-type {
        margin-right: unset;
    }

    .options .button {
        width: 90%;
        margin: 20px auto;
    }

    .call-to-action .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 90%;
    }

    .call-to-action .left h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .call-to-action .left h3 {
        margin-top: 20px;
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--main-font-color);
        color: #e8e44a;
    }

    .menu-area h2 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .menu-area h2 {
        font-size: 2rem;
    }

    h3.add-options {
        font-size: 2rem;
    }
}

@media screen and (max-width: 375px) {
    #top-bar form {
        width: 100%;
    }

    #top-bar form input,
    #top-bar form button[type="submit"] {
        height: 48px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 340px) {
    .menu-area h2 {
        font-size: 1.75rem;
    }

    h3.add-options {
        font-size: 1.75rem;
    }
}

.deleteAccount p{
    text-align:center;
    font-size:16px;
}