body {
    color: rgb(170, 169, 169);
    background-color: rgb(37, 41, 43);
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-style: normal;
    font-size: 14px;
}

input[type=number] {
    text-align: right;
}

.product-image-carousel {
    text-align: center;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-scroll-snap-type: x mandatory;
    -webkit-scroll-snap-points-x: repeat(100%);
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overflow-y: hidden;
}

.product-image-carousel img {
    scroll-snap-align: start;
    flex-shrink: 0;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    height: intrinsic; /* Safari bug: auto does not seem to work the same as chrome/firefox so images were showing their native heights (far too large). */
}

ul.indicators {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: -100px 0 0 0;
    height: 100px;
    z-index: 1;
    background-color: rgba(255, 255, 2555, 0.3);
    padding: 0;
    list-style: none;
}

.indicator {
    padding: 10px;
}

.backorder-overlay {
    display: block;
    position: relative;
    width: 100%;
    justify-content: center;
    margin: -300px 0 180px 0;
    height: 120px;
    z-index: 2;
    padding: 0.5em;
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
}

.backorder-overlay>p {
    background-color: rgba(186, 186, 0, 0.9);
}

.card-body-backorder {
    margin-top: 30%;
}

.indicator-button {
    cursor: pointer;
    background: none;
    border: none;
    color: black;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.indicator-button:after {
    content: '○';
    font-size: 1.4em;
    padding: 12px 15px 17px;
}

.indicator-button:hover {
    color: #666
}

.indicator-button:active {
    color: #999;
    padding: 0;
}

.indicator-button[aria-pressed="true"]:after {
    content: '●';
}

.product-image {
    text-align: center;
}

.product-image img {
    width: auto;
    max-width: 100%;
}

.shoppingCart {
    background-color: #fff;
    text-align: right;
    padding-top: 10px;
    padding-bottom: 10px;
}

.shoppingCart th {
    text-align: right;
}

.error {
    color: red;
}

.floatingTotal {
    position: fixed;
    top: 20em;
    right: 0;
    min-width: 250px;
    font-weight: bold;
    border: 1em #1e2123 solid;
    border-radius: 1em 0 0 1em;
    background-color: #1e2123;
    color: white;
    z-index: 500;
}

.caption > .input-group {
    margin-bottom: 1em;
}

.row {
    display: flex;
    padding-bottom: 30px;
}

.card {
    height: 99%;
    color: black;
}

header {
    background-color: #1e2123;
    line-height: 2.07;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    backface-visibility: hidden;
    transition: background-color .25s ease-in-out;
}

footer {
    background-color: #1e2123;
    width: 100%;
    min-height: 10vh;
}

footer .links {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer .links a, footer .links a:hover {
    color: #999999;
    text-decoration: none;
}

.main {
    padding-top: 60px;
    padding-bottom: 30px;
    min-height: 80vh;
}

.shop-header {
    padding: 0 5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
}

.shop-header div {
    flex-grow: 1;
}

.shop-header .banner {
    align-self: flex-start;
    flex-grow: 12;
}

.shop-header .banner img {
    max-height: 112px;
}

.submenu a {
    color: white;
    text-decoration: none;
    height: 127px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-header div.banner a {
    justify-content: flex-start;
}

.shop-header div a:hover {
    color: white;
    text-decoration: none;
}

.menu-highlight span {
    color: rgb(26, 128, 182);
}

#loadingPage {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
}

#loadingPageValue {
    width: 5%
}

.jump-to-order {
    padding-top: 80px
}

.shoppingCart {
    color: black;
}

#shop-name {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 34px;
    text-align: center;
    width: 100%;
    color: white;
    text-transform: uppercase;
}

.region_warning {
    text-align: center;
}

.lead {
    margin-bottom: 0;
}

.shop-header > .menu {
    float: right;
    text-align: right;
    cursor: pointer;
    font-size: 2em;
}

.open-menu {
    display: none;
    width: 100%;
}

@media (min-width: 1025px) {
    .shop-header > .menu {
        display: none;
    }

    .shop-header > .submenu {
        display: block;
    }

    .open-menu {
        display: none;
    }
}

@media (max-width: 1025px) {
    .shop-header > .submenu {
        display: none;
    }
}

.row.ratio_3_2 img {
  aspect-ratio: 3/2;
}
