@import url("font.css");
@import url("banner.css");
@import url("menu.css");
@import url("search.css");
@import url("content.css");
@import url("button.css");
@import url("productcard.css");
@import url("popup.css");
@import url("footer.css");
@import url("category.css");
@import url("checkbox.css");
@import url("slider.css");
@import url("selectbox.css");
@import url("productdetail.css");
@import url("zoom.css");
@import url("cart.css");
@import url("spinner.css");
@import url("thanks.css");
@import url("media_screen.css");
@import url("shopper.css");
@import url("blog.css");

html, body {
    margin: 0;
    padding: 0;
    z-index: 0;
    position: relative;
    width: 100%;
}

body {
    background-color: #f1f1f1;
    display: grid;
    grid-template-areas:
    "menu"
    "banner";

    overflow-x: hidden;
}

body:before {
    content: " ";
    width: 100%;
    background-color: white;
    height: 166px;
    top: 0;
    position: absolute;
    z-index: 0;
}

body:after {
    content: " ";
    width: 100%;
    background-color: #2b4c64;
    height: 48px;
    top: 166px;
    position: absolute;
    z-index: -1;
}

* {
    position: relative;
    outline: none;
}

p, u, i, h1, h2, h3, span, label, button {
    cursor: default;
}

.template-common {
    display: none!important;
}

.error-input {
    background-color: #FF6666;
}

.product-label {
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 10px;
    display: inline-block;
    border: 2px solid #2b4c64;
    color: white;
    background-color: #2b4c64;
    font-weight: bold;
}

.product-label.product-label-discount {
    background-color: #e31e24;
    border: 2px solid #e31e24;
}

.stock-not-available {
    color: #ff6347;
}

.stock-available, .free-delivery-notice {
    color: #228B22;
}

.no-vat {
    grid-area: product-card-price;
    font-size: 13px;
    color: gray;
    padding-top: 4px;
}

/* don't delete, used in admin wysiwyg */
body > .technical-files {
    display: none;
}

@media only screen and (max-width: 1400px) {  
    body::before,
    body::after {
        display: none;
    }
}

@media only screen and (max-width: 860px) {
    body {
        margin-top: 120px;
    }
}

@media only screen and (max-width: 640px) {
    body {
        margin-top: 120px;
    }
}