@font-face{
    font-family:MarkPro;
    src:url(/fonts/MarkPro-Bold.eot);
    src:url(/fonts/MarkPro-Bold.eot?#iefix) format("embedded-opentype"),url(/fonts/MarkPro-Bold.woff2) format("woff2"),url(/fonts/MarkPro-Bold.woff) format("woff"),url(/fonts/MarkPro-Bold.ttf) format("truetype"),url(/fonts/MarkPro-Bold.svg#MarkPro-Bold) format("svg");
    font-weight:700;
    font-style:normal;
    font-display:fallback
}
@font-face{
    font-family:MarkPro;
    src:url(/fonts/MarkPro.eot);
    src:url(/fonts/MarkPro.eot?#iefix) format("embedded-opentype"),url(/fonts/MarkPro.woff2) format("woff2"),url(/fonts/MarkPro.woff) format("woff"),url(/fonts/MarkPro.ttf) format("truetype"),url(/fonts/MarkPro.svg#MarkPro) format("svg");
    font-weight:400;
    font-style:normal;
    font-display:fallback
}
@font-face{
    font-family:MarkPro;
    src:url(/fonts/MarkPro-Medium.eot);
    src:url(/fonts/MarkPro-Medium.eot?#iefix) format("embedded-opentype"),url(/fonts/MarkPro-Medium.woff2) format("woff2"),url(/fonts/MarkPro-Medium.woff) format("woff"),url(/fonts/MarkPro-Medium.ttf) format("truetype"),url(/fonts/MarkPro-Medium.svg#MarkPro-Medium) format("svg");
    font-weight:500;
    font-style:normal;
    font-display:fallback
}
@font-face{
    font-family:MarkPro;
    src:url(/fonts/MarkPro-Heavy.eot);
    src:url(/fonts/MarkPro-Heavy.eot?#iefix) format("embedded-opentype"),url(/fonts/MarkPro-Heavy.woff2) format("woff2"),url(/fonts/MarkPro-Heavy.woff) format("woff"),url(/fonts/MarkPro-Heavy.ttf) format("truetype"),url(/fonts/MarkPro-Heavy.svg#MarkPro-Heavy) format("svg");
    font-weight:900;
    font-style:normal;
    font-display:fallback
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}


html,
body {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    width: 100%;
    min-height: 100%;
    height: 100%;
    padding: 0;
}

html, body {
    background: #f9f9f9;
    color: #333;
    font-family: 'MarkPro', sans-serif;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    font-weight:500;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 900;
}

input[type="submit"] {
    display: block;
    margin: 0 auto;
}
input[type="text"],
input[type="password"] {
    width: 100%;
    color: #333;
}

form {
    width: 100%;
    margin: 0 auto;
}

.alert {
    display: block;
    margin: -15px 0 0;
    border: solid 1px;
    padding: 3px 8px;
    font-size: 12px;
    line-height: 14px;
    border-radius: 0;
}

.alert.red {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert.yellow {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert.blue {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.expanded {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 99;
    display: none;
}
.expanded-frame {
    height: calc(100% - 65px);
    overflow: auto;
    background: rgba(0,0,0,0.05);
}
.expanded-frame .image {
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.expanded-frame .image img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
}
.expanded .qty-selector {
    display: block;
    width: 90%;
    height: 55px;
    margin: 5px;
    float: none;
    text-align: center;
    border-radius: 0;
    border: solid 2px #522979;
    display: flex;
    align-items: justify;
}
.expanded .qty-selector span {
    display: block;
    height: 100%;
    width: 33.33%;
    line-height: 55px;
    font-size: 18px;
    font-weight: 900;
}

.close {
  position: absolute;
  right: 0px;
  top: 5px;
  width: 45px;
  height: 45px;
  opacity: 0.3;
  z-index: 100;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 45px;
  width: 2px;
  background-color: #333;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}


.signin {
    min-height: 180px;
    position: relative;
}
.signin_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.after_button_link {
    display: block;
    cursor: pointer;
    margin: 8px 5px 0 auto;
    font-size: 14px;
    text-align: right;
    text-decoration: underline;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.loading {
    background: rgba(86,101,125,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    color: #fff;
    text-align: center;
    display: none;
}
.loading.active {
    display: block;
}
.loading span {
    line-height: 2em;
    margin: 0 auto -50px;
    display: block;
}
.loading>div {
    width: 100%;
    height: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.button {
    border: none !important;
    display: block;
    font-size: 16px;
    text-transform: capitalize;
    height: 65px;
    line-height: 65px;
    min-width: 160px;
    letter-spacing: -0.5px;
    border-radius: 0;
    transition: all 0.2s;
    height: auto;
}
.button.medium {
    height: 50px;
    line-height: 50px;
    min-width: 0;
}
.button.small {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
}

.button.blank{
    background: none;
    color: #62aedc;
}
.button.yellow {
    background: #f9d359;
    color: #000;
}
.button.purple {
    background: #522979;
    color: #fff;
}
.button.red {
    background: #721c24;
    color: #fff;
}
.button.grey {
    background: #aaa;
    color: #fff;
}
.button.green,
.green {
    background: #5da027;
    color: #fff;
    height: auto;
    transition: all 0.2s;
}
.button.blank:hover{
    color: #85bee0;
}
.button.green:hover,
.green:hover {
    background: #5a9a26;
    color: #fff;
}
.button.purple:hover {
    background: #7039a5;
}
.button.grey:hover {
    background: #929191;
}

.button.invert {
    background: none;
    border: solid 5px #222 !important;
    color: #222 !important;
}
.button.invert.unfavourable {
    border: none !important;
}

.button.text {
    color: #222 !important;
    background: none;
    border: none;
}
.button.button-block {
    display: block;
    width: 100%;
}
.button.bold {
    font-weight: 700;
}
.button.button-l {
    padding: 0.3em 1.3em;
    font-size: 30px;
    line-height: 1em;
    height: auto;
}
.button.button-xl {
    padding: 0.3em 1.3em;
    font-size: 60px;
    line-height: 1em;
    height: auto;
}
.button.button-xxl {
    padding: 0.6em 1.4em;
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1em;
    display: inline-block;
    margin: 1em 0;
}

.button.button-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 0.4em 0.6em;
    display: block;
    font-size: 61px;
    border-radius: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 700;
    text-align: center;
}

img {
    width: 100%;
}

h1 {
    font-size: 72px;
}
h3 {
    font-size: 38px;
    margin: 1.5em auto 60px;
    padding: 0 1em;
    line-height: 1.3em;
}
h4 {
    font-size: 27px;
    margin: 20px auto 10px;
    line-height: 1.9em;
}
h5 {
    margin: 1em 0;
}
h6 {
    font-size: 20px;
    font-weight: 400;
    margin: 0.5em 0 0;
}

h6.label {
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    margin: 0 0 5px;
    opacity: 0.7;
}

.margin-0 {
    margin: 0;
}
.margin-t-1em {
    margin-top: 1em;
}
.margin-t-2em {
    margin-top: 2em;
}
.margin-t-3em {
    margin-top: 3em;
}
.margin-t-5em {
    margin-top: 5em;
}
.margin-tb-2em {
    margin-top: 2em;
}

.delivery {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    transition: all 0.1s;
    top: -100%;
}
.showdelivery .delivery {
    opacity: 1;
    z-index: 99;
    top: 0;
}

.openinghours {
    width: 280px;
    margin: 10px auto 0;
}
.openinghours p {
    margin-bottom: 10px;
}
.openinghours ul {
    margin: 0 auto;
}
.openinghours ul li {
    margin: 0;
    padding: 0;
    text-align: left;
    list-style: none;
}

.option {
    width: 200px;
    height: 200px;
    background: #522979;
    margin: 15px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    border-radius: 20px;
    color: #fff;
}

.option img {
    width: 55%;
    display: block;
    margin: 0 auto 15px;
}
.option span {
    display: block;
    text-align: center;
}

.container {
    width: 100vw;
    height: 100%;
    max-width: none;
    max-height: none;
    background: #f3f3f3;
}

.content {
    position: relative;
    z-index: 2;
    padding: 2em;
    width: 100%;
}

.btn_container {
    margin: 0 auto 30px;
    width: 100%;
    padding: 0;
    text-align: center;
}
.btn_container:after {
    content: "";
    display: table;
    clear: both;
    float: none;
}
.btn_container.inline-button .button {
    display: inline-block;
    margin: 0 2em;
}
.btn_container.inline-button .button:first-child {
    margin-left: 0;
}
.btn_container.inline-button .button:last-child {
    margin-right: 0;
}

.btn-right {
    margin: 0 0 0 auto;
}
#logo {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 120px;
    z-index: 9;
}

.content.panel {
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    background: #f9f9f9;
    display: flex;
    flex: auto;
    flex-direction: column;
}
.content.panel.expand {
    overflow: hidden;
}


.panel-heading {
    padding: 20px 0;
    text-align: center;
    background: #007ac1;
    margin: 0;
    height: 85px;
    color: #fff;
    position: relative;
}
.panel-heading h4 {
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 1.2em;
}
.panel-body {
    height: calc(100% - 140px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.panel-body.expand {
    overflow: visible;
}
.panel-body.showdelivery {
    overflow: visible;
    height: 100%;
    width: 100%;
    z-index: 999;
}
.panel-body.with-cancel {
    min-height: calc(100% - 204px);
}
.panel-footer {
    height: 65px;
}
.panel-footer.with-cancel {
    height: 119px;
}
.productname {
    font-size: 17px;
    display: block;
    font-weight: 500;
}

.panel-body .category:nth-child(1) {
    padding-top: 15px;
}

.category-heading {
    text-align: left;
    margin: 15px 20px 5px;
    position: relative;
    font-size: 20px;
}
.category-heading:after {
    content: "";
    border: solid black;
    border-width: 0 3px 3px 0;
    display: block;
    padding: 3px;
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.category .item-list {
    height: 0;
    overflow: hidden;
    transition: all 0.2s;
}
.category.collapsed .item-list {
    height: auto;
}
.category.collapsed .category-heading:after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top: -7px;
}

.item-list {
    margin: 0 auto;
    padding: 0;
}
.item-list li {
    list-style: none;
    display: block;
    width: 100%;
    margin: 0;
    align-items: left;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.item-list li .item {
    font-weight: 500;
    font-size: 20px;
}

.item-list li select {
    float: right;
    margin: 0 10px 0 0;
}
.item-list li.active {
    background: #f4eee9;
}
.item-list li:after {
    content: "";
    display: table;
    clear: both;
    float: none;
}
.item-list li .price {
    font-weight: 500;
    font-size: 24px;
}
.item-list li .price sup {
    font-size: 0.6em;
    line-height: 1em;
}
.item-list li .price .cents {
    line-height: 1em;
    font-size: 0.7em;
}

.item-list li .timestamp {
    opacity: 0;
}

.item-list li .active {
    opacity: 1;
}

#payment {
    margin: 0 auto;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    background: #f9f9f9;
    width: 100%;
    padding: 20px;
    height: 100vh;
    overflow: auto;
    display: none;
    -webkit-overflow-scrolling: touch;
}

input.text,
#amount {
    color: #333;
    font-size: 25px;
    width: 100%;
    margin: 0 10px auto;
    padding: 0 5px;
    height: auto;
    background: none;
    border: none;
    border-bottom: solid 1px rgba(0,0,0,0.2);
    border-radius: 0;
    margin: 0 0 15px
}

input.error{
    border-bottom: solid 1px red;
}

button:disabled,
button.disabled {
    background: #ccc !important;
    opacity: 0.3;
}


/* Larger than Desktop HD */
@media (max-width: 1200px) {
}

/* Larger than desktop */
@media (max-width: 1024px) {
    ul#navigation {
        background: #e53693;
        position: absolute;
        top: 0;
        left: -100vw;
        width: 100%;
        height: 100%;
        z-index: 8;
        padding: 75px 0 0;
        transition: all 0.2s;
    }
    ul#navigation.active {
        left: 0;
    }
    ul#navigation li {
        display: block;
        float: none;
        text-align: left;
        border-bottom: solid 2px #fff;
        width: 85%;
        margin: 0 auto;
    }
    ul#navigation li a {
        display: block;
        font-size: 25px;
        font-weight: 600;
        padding: 15px 5px;
    }
    #importexcel {
        /*display: none !important;*/
    }
}

/* Larger than tablet */
@media (max-width: 750px) {
}

/* Larger than phablet (also point when grid becomes active) */
@media (max-width: 550px) {
}

/* Larger than mobile */
@media (max-width: 400px) {
}

.bt-spinner {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
}

-webkit-@keyframes spin {
  -webkit-from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  -webkit-to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@supports (-webkit-appearance: -apple-pay-button) {
    .apple-pay-button-with-text {
        display: inline-block;
        -webkit-appearance: -apple-pay-button;
        -apple-pay-button-type: pay;
    }
    .apple-pay-button-with-text > * {
        display: none;
    }
    .apple-pay-button-black-with-text {
        -apple-pay-button-style: black;
    }
    .apple-pay-button-white-with-text {
        -apple-pay-button-style: white;
    }
    .apple-pay-button-white-with-line-with-text {
        -apple-pay-button-style: white-outline;
    }
}

@supports not (-webkit-appearance: -apple-pay-button) {
    .apple-pay-button-with-text {
        --apple-pay-scale: 1; /* (height / 32) */
        display: inline-flex;
        justify-content: center;
        font-size: 12px;
        border-radius: 5px;
        padding: 0px;
        box-sizing: border-box;
        min-width: 200px;
        min-height: 32px;
        max-height: 64px;
    }
    .apple-pay-button-black-with-text {
        background-color: black;
        color: white;
    }
    .apple-pay-button-white-with-text {
        background-color: white;
        color: black;
    }
    .apple-pay-button-white-with-line-with-text {
        background-color: white;
        color: black;
        border: .5px solid black;
    }
    .apple-pay-button-with-text.apple-pay-button-black-with-text > .logo {
        background-image: -webkit-named-image(apple-pay-logo-white);
        background-color: black;
    }
    .apple-pay-button-with-text.apple-pay-button-white-with-text > .logo {
        background-image: -webkit-named-image(apple-pay-logo-black);
        background-color: white;
    }
    .apple-pay-button-with-text.apple-pay-button-white-with-line-with-text > .logo {
        background-image: -webkit-named-image(apple-pay-logo-black);
        background-color: white;
    }
    .apple-pay-button-with-text > .text {
        font-family: -apple-system;
        font-size: calc(0.8em * var(--apple-pay-scale));
        font-weight: 300;
        align-self: center;
        margin-right: calc(2px * var(--apple-pay-scale));
    }
    .apple-pay-button-with-text > .logo {
        width: calc(35px * var(--scale));
        height: 100%;
        background-size: 100% 60%;
        background-repeat: no-repeat;
        background-position: 0 50%;
        margin-left: calc(2px * var(--apple-pay-scale));
        border: none;
    }
}

.google-pay-button {
  min-width: 200px;
  min-height: 40px;
  padding: 11px 24px;
  background-color: #000;
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%22103%22%20height%3D%2217%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M.148%202.976h3.766c.532%200%201.024.117%201.477.35.453.233.814.555%201.085.966.27.41.406.863.406%201.358%200%20.495-.124.924-.371%201.288s-.572.64-.973.826v.084c.504.177.912.471%201.225.882.313.41.469.891.469%201.442a2.6%202.6%200%200%201-.427%201.47c-.285.43-.667.763-1.148%201.001A3.5%203.5%200%200%201%204.082%2013H.148V2.976zm3.696%204.2c.448%200%20.81-.14%201.085-.42.275-.28.413-.602.413-.966s-.133-.684-.399-.959c-.266-.275-.614-.413-1.043-.413H1.716v2.758h2.128zm.238%204.368c.476%200%20.856-.15%201.141-.448.285-.299.427-.644.427-1.036%200-.401-.147-.749-.441-1.043-.294-.294-.688-.441-1.183-.441h-2.31v2.968h2.366zm5.379.903c-.453-.518-.679-1.239-.679-2.163V5.86h1.54v4.214c0%20.579.138%201.013.413%201.302.275.29.637.434%201.085.434.364%200%20.686-.096.966-.287.28-.191.495-.446.644-.763a2.37%202.37%200%200%200%20.224-1.022V5.86h1.54V13h-1.456v-.924h-.084c-.196.336-.5.611-.91.826-.41.215-.845.322-1.302.322-.868%200-1.528-.259-1.981-.777zm9.859.161L16.352%205.86h1.722l2.016%204.858h.056l1.96-4.858H23.8l-4.41%2010.164h-1.624l1.554-3.416zm8.266-6.748h1.666l1.442%205.11h.056l1.61-5.11h1.582l1.596%205.11h.056l1.442-5.11h1.638L36.392%2013h-1.624L33.13%207.876h-.042L31.464%2013h-1.596l-2.282-7.14zm12.379-1.337a1%201%200%200%201-.301-.735%201%201%200%200%201%20.301-.735%201%201%200%200%201%20.735-.301%201%201%200%200%201%20.735.301%201%201%200%200%201%20.301.735%201%201%200%200%201-.301.735%201%201%200%200%201-.735.301%201%201%200%200%201-.735-.301zM39.93%205.86h1.54V13h-1.54V5.86zm5.568%207.098a1.967%201.967%200%200%201-.686-.406c-.401-.401-.602-.947-.602-1.638V7.218h-1.246V5.86h1.246V3.844h1.54V5.86h1.736v1.358H45.75v3.36c0%20.383.075.653.224.812.14.187.383.28.728.28.159%200%20.299-.021.42-.063.121-.042.252-.11.392-.203v1.498c-.308.14-.681.21-1.12.21-.317%200-.616-.051-.896-.154zm3.678-9.982h1.54v2.73l-.07%201.092h.07c.205-.336.511-.614.917-.833.406-.22.842-.329%201.309-.329.868%200%201.53.254%201.988.763.457.509.686%201.202.686%202.079V13h-1.54V8.688c0-.541-.142-.947-.427-1.218-.285-.27-.656-.406-1.113-.406-.345%200-.656.098-.931.294a2.042%202.042%200%200%200-.651.777%202.297%202.297%200%200%200-.238%201.029V13h-1.54V2.976zm32.35-.341v4.083h2.518c.6%200%201.096-.202%201.488-.605.403-.402.605-.882.605-1.437%200-.544-.202-1.018-.605-1.422-.392-.413-.888-.62-1.488-.62h-2.518zm0%205.52v4.736h-1.504V1.198h3.99c1.013%200%201.873.337%202.582%201.012.72.675%201.08%201.497%201.08%202.466%200%20.991-.36%201.819-1.08%202.482-.697.665-1.559.996-2.583.996h-2.485v.001zm7.668%202.287c0%20.392.166.718.499.98.332.26.722.391%201.168.391.633%200%201.196-.234%201.692-.701.497-.469.744-1.019.744-1.65-.469-.37-1.123-.555-1.962-.555-.61%200-1.12.148-1.528.442-.409.294-.613.657-.613%201.093m1.946-5.815c1.112%200%201.989.297%202.633.89.642.594.964%201.408.964%202.442v4.932h-1.439v-1.11h-.065c-.622.914-1.45%201.372-2.486%201.372-.882%200-1.621-.262-2.215-.784-.594-.523-.891-1.176-.891-1.96%200-.828.313-1.486.94-1.976s1.463-.735%202.51-.735c.892%200%201.629.163%202.206.49v-.344c0-.522-.207-.966-.621-1.33a2.132%202.132%200%200%200-1.455-.547c-.84%200-1.504.353-1.995%201.062l-1.324-.834c.73-1.045%201.81-1.568%203.238-1.568m11.853.262l-5.02%2011.53H96.42l1.864-4.034-3.302-7.496h1.635l2.387%205.749h.032l2.322-5.75z%22%20fill%3D%22%23FFF%22%2F%3E%3Cpath%20d%3D%22M75.448%207.134c0-.473-.04-.93-.116-1.366h-6.344v2.588h3.634a3.11%203.11%200%200%201-1.344%202.042v1.68h2.169c1.27-1.17%202.001-2.9%202.001-4.944%22%20fill%3D%22%234285F4%22%2F%3E%3Cpath%20d%3D%22M68.988%2013.7c1.816%200%203.344-.595%204.459-1.621l-2.169-1.681c-.603.406-1.38.643-2.29.643-1.754%200-3.244-1.182-3.776-2.774h-2.234v1.731a6.728%206.728%200%200%200%206.01%203.703%22%20fill%3D%22%2334A853%22%2F%3E%3Cpath%20d%3D%22M65.212%208.267a4.034%204.034%200%200%201%200-2.572V3.964h-2.234a6.678%206.678%200%200%200-.717%203.017c0%201.085.26%202.11.717%203.017l2.234-1.731z%22%20fill%3D%22%23FABB05%22%2F%3E%3Cpath%20d%3D%22M68.988%202.921c.992%200%201.88.34%202.58%201.008v.001l1.92-1.918c-1.165-1.084-2.685-1.75-4.5-1.75a6.728%206.728%200%200%200-6.01%203.702l2.234%201.731c.532-1.592%202.022-2.774%203.776-2.774%22%20fill%3D%22%23E94235%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  background-origin: content-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  outline: 0;
  cursor: pointer;
}


/**DASHBOARD**/

.content.panel.form-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 2em;
}
.form-container input,
.form-container select {
    border: solid 1px #ddd;
    background: #fefefe;
    border-radius: 2px;
    padding: 10px;
    font-size: 15px;
}
.form-container select {
    padding: 8px 10px 10px;
}
.form-container h2,
.form-container h3 {
    text-align: left;
    color: #522979;
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}
.form-container h2 {
    font-size: 28px;
}
.form-container h3 {
    margin-bottom: 10px;
}
.form-container .badge {
    display: inline-block;
    font-size: 0.8em;
    padding: 4px 8px;
    line-height: 1em;
}

.form-container .badge.green {
    background: #d4edda;
    color: #155724;
}
.form-container .badge.yellow {
    background: #fff3cd;
    color: #856404;
}
.form-container .button {
    width: 100%;
    margin: 30px auto 0;
}

.label {
    width: 175px;
    font-weight: bold;
    display: inline-block;
}

.copy-button,
.copy-link {
    padding: 0 10px;
    background: #522979;
    width: auto;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s;
    color: #fff;
    font-size: 0.9em;
    border-radius: 5px;
    text-decoration: none;
}
.copy-button img,
.copy-link img {
    width: 17px;
    display: inline-block;
    margin: 0 3px 3px 0;
    vertical-align: middle
}

.copy-button:hover,
.copy-link:hover {
    background: #7a48aa;
}
#shopurl {
    padding: 0 8px;
    font-size: 0.9em;
    background: #eee;
    border: solid 1px #aaa;
    height: auto;
    width: auto;
    margin: 0 0 20px;
    height: 30px;
    line-height: 30px;
    display: block;
}
#copied {
    font-size: 10px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    display: none;
}
#copied:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-left-color: #d4edda;
    border-width: 5px;
    margin-top: -5px;
}

.bsb .five.columns {
    width: 39.3333333333% !important;
}
.bsb .two.columns {
    width: 13.3333333333% !important;
}
h6.label {
    font-size: 16px;
    margin: 20px 0 5px;
}

.vendor-verify {
    margin: 10px auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px rgba(0,0,0,0.05);
    padding: 0 0 20px;
}
.vendor-verify span {
    display: block;
}
.vendor-verify .name {
    font-weight: 700;
    font-size: 17px;
    color: #522979;
}
.vendor-verify button {
    opacity: 0.3;
    transition: all 0.2s;
}
.vendor-verify button:hover {
    opacity: 1;
}

/* MENU */

#exit {
    float: left;
    position: relative;
    z-index: 9;
}

#header {
    background: #f5f6f8;
    padding: 1em 1em 1.5em;
    text-align: left;
    border-bottom: solid 1px rgba(0,0,0,0.15);
    height: 110px;
    position: relative;
    z-index: 3;
}
#header.nofocus {
    z-index: 1;
}
#header h3 {
    text-transform: none;
    margin: 0 0 0.3em;
    padding: 0;
    font-size: 1.8em;
    text-align: left;
}
#header button {
    display: block;
    width: 140px !important;
    min-width: 0;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    margin: 0 0 0 10px;
    padding: 0;
    font-size: 0.9em;
    text-transform: none;
    float: right;
}
#header.category-level #addBtn-product,
#header.product-level #addBtn-category,
#header.category-level #renameBtn-category {
    display: none;
}
#header.product-level #addBtn-product,
#header.category-level #addBtn-category,
#header.category-level #addBtn-category {
    display: block;
}

.mobile-nav {
    background: #333;
    height: 70px;
    width: 100%;
    z-index: 99;
    text-align: left;
}
.mobile-nav a {
    display: block;
    text-align: center;
    height: 100%;
    width: 50px;
    padding: 1em;
}
.mobile-nav img {
    height: 100%;
    width: auto;
    display: block;
    padding: 0.5em 0;
}
.mobile-nav button {
    height: 100%;
    line-height: 1em;
    padding: 0 20px 0;
    width: auto;
    min-width: 0;
    margin: 0;
    text-align: right;

}

.switch {
  display: inline-block;
  height: 24px;
  width: 190px;
  position: absolute;
  top: 20px;
  right: 0;
  cursor: pointer;
}
.switch span {
    width: 150px;
    position: absolute;
    top: 0;
    left: 50px;
    display: block;
}

.product-level .switch {
    display: none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
  width: 40px;
}

.slider:before {
  background-color: #fff;
  bottom: 2px;
  content: "";
  height: 20px;
  left: 2px;
  position: absolute;
  transition: .4s;
  width: 20px;
}

.switch.active .slider {
  background-color: #66bb6a;
}

.switch.active .slider:before {
  transform: translateX(16px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.editor {
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: #fefefe;
    text-align: left;
    transition: all 0.15s;
}
.editor.active {
    left: 0;
    display: block;
}
.editor-body {
    padding: 1em;
}
.editor-body input {
    width: 100%:;
}
.editor h4 {
    text-align: left;
    font-size: 1.35em;
    padding: 0;
    margin: 0;
    float: left;
    width: calc(100% - 60px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.editor-header {
    padding: 1.5em 1em;
    background: #fafafa;
    border-bottom: solid 1px rgba(0,0,0,0.05);
}

.closeeditor {
    height: 40px;
    line-height: 40px;
    padding: 0 8px;
    margin: 0 auto 1em;
    font-weight: 600;
    color: #2d89ec;
}
.closeeditor img {
    width: 100%;
    display: block;
}

.contents {
    position: relative;
    width: 100vw;
    top: 0;
    left: 0;
    height: calc(100% - 220px);
    transition: all 0.3s;
}
.contents.active {
    left: -100vw;
    z-index: 9;
}
.content.list-editor {
    background: #fefefe;
    padding: 0;
    width: 200vw;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 2;
}
.contents.active .content.list-editor {
    /*overflow: hidden;*/
    overflow: visible;
}
.content.product-list.active {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 9;
}
.list-editor ul {
    margin: 0;
}
.list-editor ul li {
    display: block;
    list-style: none;
    border-top: solid 1px rgba(0,0,0,0.1);
    padding: 1.5em 1em;
    margin: 0;
    cursor: pointer;
}
.list-editor ul li:first-child {
    border: none;
}
.list-editor ul li#product-marker {
    display: none;
    height: 1px;
}
.list-editor ul li.new-marker,
.list-editor ul li.new-category  {
    background: #d1ecf1;
}
.list-editor ul li.updated-category {
    background: #fff3cd;
}

.list-editor ul li.new-category:before,
.list-editor ul li.new-marker:before {
    content: "new";
    text-transform: uppercase;
    background: #0c5460;
    display: block;
    padding: 3px 6px;
    position: absolute;
    top: 50%;
    right: 5px;
    color: #fff;
    font-size: 0.6em;
    margin: -10px 0 0 0;
    border-radius: 3px;
}
.list-editor ul li.updated-category:before {
    content: "updated";
    text-transform: uppercase;
    background: #856404;
    display: block;
    padding: 3px 6px;
    position: absolute;
    top: 50%;
    right: 5px;
    color: #fff;
    font-size: 0.6em;
    margin: -10px 0 0 0;
    border-radius: 3px;
}
.list-editor ul li.category.active {
    z-index: 9;
}

.product-parent {
    position: fixed;
    top: 180px;
    left: 100vw;
    height: calc(100vh - 220px);
    overflow: auto;
    transition: all 0.2s;
}
.products > li,
.category > li {
    width: 100vw;
    position: relative;
}
.category li.active .product-parent {
    display: block;
    left: 0;
    overflow: visible;
}

#footer {
    text-align: center;
    display: block;
    margin: 0;
    background: #333;
    color: #fff;
    padding: 10px;
    height: 40px;
    font-size: 0.8em;
}
