body {
    /* Background Pattern */

    /* Vertical Dark Red */
    background-color: #e5e5f7;
    opacity: 1;
    background-image: linear-gradient(to right, #cd0000, #cd0000 20px, #e5e5f7 20px, #e5e5f7 );
    background-size: 40px 100%;

    /* Vertical Blue */
    /* background-color: #e5e5f7;
    opacity: 1;
    background-image: linear-gradient(to right, #45a6f7, #45a6f7 20px, #e5e5f7 20px, #e5e5f7 );
    background-size: 40px 100%; */

    /* Daigonal Red */
    /* background-color: #e5e5f7;
    opacity: 1;
    background: repeating-linear-gradient( 45deg, #f74545, #f74545 20px, #e5e5f7 20px, #e5e5f7 100px ); */

    /* Margin bottom by footer height */
    margin-bottom: 60px; 
}

@font-face { font-family: Western; src: url('../assets/quentincaps/QuentinCaps.ttf'); }

.westernFont {
    font-family: Western !important;
}

/* h1 {
    font-family: Western !important;
} */

/* Mobile */
@media screen and (max-width: 480px) {
    body {
        font-size: 12px !important;
    }

    .tableFont {
        font-size: 6px;
    }

    .cartPhoto {
        max-width: 125px;
        max-height: 125px;
    }

    .titleHeading {
        font-size: 95px !important;
    }

    .headingBox {
        background-color: #eee;
        margin-top: 5rem;
        margin-left: 2rem;
        margin-right: 2rem;
        margin-bottom: 5rem;
        padding: 2rem;
        border-radius: 24px;
    }
    
}

/* Desktop */
@media screen and (min-width: 500px) {

    .container {
        padding-right: 20%;
        padding-left: 20%;
    }

    .tableMargin {    
        margin-left: 5%;
        margin-right: 5%;
    }

    .tableFont {
        font-size: 12px;
    }

    .cartPhoto {
        max-width: 250px;
        max-height: 250px;
      }
    
    .titleHeading {
        font-size: 95px !important;
    }

    .headingBox {
        background-color: #eee;
        width: 90%;
        margin: 5rem;
        padding: 2rem;
        border-radius: 24px;
    }

}

.center {
    text-align: center;
}

.containerBox {
    background-color: #e5e5f7;
}

.navbarSpacer {
    padding-top: 5rem;
}

.jumbotronBG {
    /* background-color: #cd0000 !important; */
    padding-bottom: 1rem !important;
}

/* .verticalStripe {
    position: relative;
    top: 0;
    left: 50%;
    width: 200px;
    background-color: #e5e5f7;
    z-index: 5;
  } */

.itemBox {
    background-color: #eee;
    width: 95%;
    border-radius: 12px;
}

.genericMargin {
    margin-top: 8px !important;
}

.genericPadding {
    padding-top: 20px;
}

.orderLnk {
    color:#cd0000;
    padding-top: 2rem;
}

.itemHeading {
    padding-top: 1rem;
    margin-left: 1rem;
}

.itemImg {
    margin-left: 1rem;
}

.itemPrice {
    margin-left: 1rem;
}

.itemOrderBtn {
    margin-bottom: 1rem !important;
    font-size: 18px;
    color:#cd0000;
}

.footerSpacer {
    padding-bottom: 1rem !important;
}

.label-default {
    background-color: #eee !important;
    color: black !important;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    display: table;
    position: relative;
    margin: 0 auto;
    top: calc(50% - 24px);
}
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

html {
    position: relative;
    min-height: 100%;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    background-color: #f5f5f5;
}
  