html, body {
    height: 100%;
}

body {
    background-color: #fff;
    font-family: "Roboto", "Open Sans", "Helvetica Neue";
    font-size: 14px;
    margin: 0;
}

body app-root {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

:root {
    --posit-turquoise: #33cabb;
    --dark-blue: #090784;
    --mustard-yellow: #d69d03;
    --chelsea-gem: #8e6904;
    --red: #dc1010;
    --boulder: #7b7b7b;
    --emperor: #545353;
    --dove-grey: #656565;
    --mine-shaft: #393838;
    --white: #fff;
    --alabaster: #f7f7f7;
}


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

.nogap {
    margin: 0 !important;
    padding: 0 !important;
}

.align-center {
    text-align: center !important;
}

.container-wrap {
    flex: 1 0 auto;
    background-color: white;
}

.full-width {
    width: 100%;
    margin-top: 100px
}

.flex {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}

.inline-flex {
    display: inline-flex
}

.flex-column {
    flex-direction: column
}

.main-topbar {
    background-color: #fff;
    display: block;
    height: 80px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, .3) 0 2px 5px 0;
    padding: 0
}

header {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    padding: 5px 0;
}

.category-header h2 {
    background: #505050;
    color: white;
    text-align: center;
    padding: 8px;
}

.product-wrap {
    width: 100%;
    padding: 20px 0 50px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.product-header {
    text-align: center;
    padding: 4px;
    color: #d09800;
    color: #333;
    font: 700 16px 'Rubik', "Open Sans", "Helvetica Neue";
}

.pricelist-header {
    text-align: center;
    padding: 8px;
}

.product-list {
    width: 50%;
    align-items: center;
    flex-direction: column;
    position: relative;
}

    .product-list:after {
        content: '';
        width: 80%;
        height: 3px;
        margin: 0;
        background-image: radial-gradient(circle closest-side,rgba(176,152,139,.25) 80%,#fff 0);
        background-position: bottom;
        background-repeat: repeat-x;
        background-size: 4px 2px;
        z-index: 1;
        position: absolute;
        bottom: -10px;
    }

.product {
    padding-left: 80px;
    padding-right: 80px;
}

    .product h5 {
        text-align: center;
        padding: 4px;
        color: #d09800;
        color: #333;
        font: 700 16px Rubik,Open Sans,Helvetica Neue;
    }

    .product .description {
        font-size: 13px;
        color: #757575;
    }

.product-category-description {
    font-size: 14px;
    color: #757575;
    padding-bottom: 4px;
}

.product-price {
    color: var(--mustard-yellow);
    font: 500 15px 'Rubik', "Open Sans", "Helvetica Neue";
    margin-top: 20px;
}

.separator {
    height: 3px;
    margin: 0;
    background-image: radial-gradient(circle closest-side, rgba(176, 152, 139, 0.25) 80%, #fff 10%);
    background-position: center bottom;
    background-repeat: repeat-x;
    background-size: 4px 2px;
    z-index: 1;
}

.count-method {
    font-size: x-small;
}


footer {
    flex-shrink: 0;
}

.footer-container {
    background-color: #1f1f1f;
    color: #fff;
    font-size: 11px;
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.powered, .powered a {
    font-size: 12px;
    color: #fff;
    margin: 12px 0;
    padding: 4px 0;
    transition: all .3s ease-in-out;
}

.powered-logo {
    width: 72px;
    height: 14px;
    background-image: url("https://easy-ordering.azureedge.net/wwwcdn/img/posit-logo-white.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    display: inline-flex;
}


@media only screen and (max-width: 601px) {
    .product {
        padding-left: 40px;
        padding-right: 40px;
    }

    .product-list {
        width: 100%;
    }
}
