﻿/*=====================================================
    
    MAIN CSS / SMALLER MOBILE DEVICES

=====================================================*/


/*********** CSS RESET **********/


* {
    margin: 0;
    outline: none;
    padding: 0;
    text-decoration: none;
}

    *, *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

html {
    margin: 0 !important;
    -webkit-text-size-adjust: none;
}

ol, ul {
    list-style: none;
}

a img {
    border: none;
}

a:active {
    outline: none;
}

.fixes {
    border: 4px solid red;
}

p, label, a {
    word-break: break-word;
    white-space: normal;
}

bold {
    font-weight: 600
}

input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    margin: 0;
    border: 0;
    padding: 0;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="text"],
input[type="password"],
textarea {
    border-radius: 0;
}

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + *,
input[type="radio"] + * {
    vertical-align: middle;
}

label, label + * {
    vertical-align: middle;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

script {
    display: none !important;
}


/*********** GLOBAL STYLES **********/

:root {
    --white: #fff;
    --blue: #085288;
    --ice-blue: #ebf8ff;
    --light-blue: #085288;
    --light-green: #B5DC79;
    --dark-green: #92E73F;
    --dark-gray: #707070;
    --middle-gray: #989898;
    --light-gray: #EFEFEF;
    --light-black: #272727;
    --black: #000;
    --blue-grey: #7B909F;
    --dark-blue: #0C4269;
    --pink: #CE3771
}

.blue {
    color: #085288;
    font-weight: 500
}

.blueLink {
    color: #085288;
    font-weight: 600;
    text-decoration: underline
}

#service-booking-wrapper .blue {
    font-size: 14px;
    margin-top: 15px;
}

body {
    max-width: 100%;
    background: #fff;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: #444;
    font-weight: 500;
    overflow-x: hidden; /* responsive navigation & filters scroll bug fix*/
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    /*    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;*/
}

h1 {
    font-size: 36px
}

h2 {
    font-size: 32px
}

h3 {
    font-size: 24px;
    line-height: 32px;
}

h4 {
    font-size: 20px;
    line-height: 28px;
}

h5 {
    font-size: 16px;
    line-height: 22px;
}

h6 {
    font-size: 16px;
}

.bg-ice-blue {
    background-color: var(--ice-blue);
}
.blue{
    color:var(--blue);
}
a.product-document {
    display: block;
    padding-bottom: 6px;
}

    a.product-document[href$=".pdf"]:before {
        content: "\f1c1";
        font-family: 'Font Awesome 5 Free';
        padding-right: 10px;
    }

    a.product-document[href$=".doc"]:before {
        content: "\f1c2";
        font-family: 'Font Awesome 5 Free';
        padding-right: 10px;
    }

.separett-line {
    border-bottom: 3px solid var(--light-green);
    margin-top: 30px;
}

    .separett-line hr {
        border: 3px solid var(--blue);
        margin-bottom: 2px
    }

.separett-line-blue {
    border: 3px solid var(--blue);
    margin-bottom: 2px;
    clear: both;
}

.separett-line-green {
    clear: both;
    border: 1px solid #B5DC79;
}

.mega-menu .dropdown.fullWidth {
    width: 100vw !important;
    right: 0 !important
}
/*.mega-menu .dropdown{
    display:block!important
}*/

.mega-menu .dropdown .circle {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #B2C6D3;
    margin-left: auto;
    margin-right: auto;
    -moz-border-radius: 70px;
    -webkit-border-radius: 70px;
    border-radius: 70px;
}

    .mega-menu .dropdown .circle img {
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        max-height: 40px;
    }

a {
    color: inherit;
    cursor: pointer;
}

    a img {
        opacity: 0.99; /*firefox scale bug fix*/
    }

.center-image {
    margin-left: auto;
    margin-right: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.col-50 {
    width: 50%
}

.col-33 {
    width: 33%
}

.col-60 {
    width: 60%
}

.col-40 {
    width: 40%
}

.col-70 {
    width: 70%
}

.col-30 {
    width: 30%
}

.img-padding {
    padding-left: 3rem;
}

.responsive-html {
    width: 100%;
    display: flex;
    margin-bottom: 50px
}

.img-padding-right {
    padding-right: 5px;
}

.img-padding-middle {
    padding-left: 5px;
    padding-right: 5px
}

.img-padding-left {
    padding-left: 5px;
}

.d-flex {
    display: flex;
}

.d-inline {
    display: inline
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

p {
    margin: 5px 0;
}

.customer-header-links p {
    margin: 0;
}

.italic {
    font-style: italic;
}

.p-0 {
    padding: 0 !important;
}

.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.m-0 {
    margin: 0 !important;
}

.m-5 {
    margin: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea, select {
    height: 36px; /*safari padding fix*/
    border: 1px solid #ddd;
    color: #444;
    padding: 8px 15px 8px 8px;
    vertical-align: middle;
    letter-spacing: 1px;
}

input, textarea {
    font: normal 13px 'Poppins', sans-serif;
}

textarea {
    min-height: 150px;
}

.step-indicator {
    color: var(--blue);
    font-size: 14px;
    font-weight: bold;
}

select {
    min-width: 50px;
    height: 36px; /*safari padding fix*/
    padding: 6px 20px 6px 6px;
    font-family: 'Poppins', sans-serif;
    color: #444;
    letter-spacing: 1px;
    background: url(../img/custom-select-arrow.png) no-repeat right 8px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    select::-ms-expand {
        display: none; /* hide the default arrow in ie10 and ie11 */
    }

    input[type="text"]:focus,
    input[type="password"]:focus,
    textarea:focus, select:focus {
        border-color: #ccc;
    }

input[type="checkbox"],
input[type="radio"] {
    vertical-align: middle;
    margin: 0 5px 0 0;
}

input[type="button"], input[type="submit"],
button, .button-1, .button-2 {
    cursor: pointer;
}

.inputs.custom-attributes {
    white-space: normal;
}

label {
    vertical-align: middle;
}

.master-wrapper-content {
    z-index: 1;
    position: relative;
}

.master-column-wrapper {
    width: 90%;
    margin: auto;
}

    .master-column-wrapper:after {
        content: "";
        display: block;
        clear: both;
    }

/*.center-2, .side-2 {
    margin: 60px auto;
}*/

.page {
    clear: both; /* because of forum breadcrumbs */
    /*text-align: center;*/
    margin: 0 0 70px;
}

.page-title {
    /*margin: 0 0 20px;*/
    position: relative;
}

.center-2 .page-title h1 {
    display: block;
    text-align: left;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--blue);
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
    display: flex;
    justify-content: center;
}


.center-1 .page-title h1 {
    display: block;
    text-align: left;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: var(--blue);
}

@media all and (max-width: 765px) {
    .center-1 .page-title h1 {
        font-size: 32px;
        line-height: 40px;
        margin-top: 20px;
    }
}


/*.center-1 .topic-block-body {
    text-align: center;
}*/


.page:after,
.page-title:after,
.page-body:after {
    content: "";
    display: block;
    clear: both;
}

.buttons {
    margin: 0 0 20px;
    /*text-align: center;*/
}

.link-rss {
    display: none;
    width: 20px;
    height: 20px;
    overflow: hidden;
    background: url('../img/rss-icon.png') no-repeat;
    text-indent: 999px;
}

.category-description ul,
.manufacturer-description ul,
.full-description ul,
.topic-block ul,
.topic-page ul,
.post-body ul,
.custom-tab ul {
    margin: 12px 0;
    padding: 0 0 0 36px;
    list-style: disc;
}

.category-description ol,
.manufacturer-description ol,
.full-description ol,
.topic-block ol,
.topic-page ol,
.post-body ol,
.custom-tab ol {
    margin: 12px 0;
    padding: 0 0 0 36px;
    list-style: decimal;
}

.category-description p,
.manufacturer-description p,
.full-description p,
.topic-block p,
.topic-page p,
.post-body p,
.news-body p,
.custom-tab p {
    margin: 10px 0;
    font-size: 13px;
}

.category-description a,
.manufacturer-description a,
.full-description a,
.topic-html-content a,
.topic-page a,
.post-body a,
.news-body a,
.custom-tab a {
    text-decoration: underline;
}

#goToTop {
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--light-green);
    overflow: hidden;
    z-index: 10001;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
    /*#goToTop:hover {
      
    }*/
    #goToTop i {
        color: var(--blue);
        margin: 12px 0px 15px 15px;
    }

.flyout-cart {
    display: none;
}

    .flyout-cart .active {
        background-color: none
    }
/*********** GLOBAL FORMS ***********/



.fieldset, .section {
    position: relative;
    margin: 0 0 50px;
}

    .fieldset .title,
    .section .title {
        margin: 0 0 10px;
        text-transform: uppercase;
    }

        .fieldset .title strong,
        .section .title strong {
        }

.form-fields {
    position: relative;
}

.inputs {
    position: relative;
    margin: 0 0 25px;
    /*text-align: center;*/
    white-space: nowrap;
    font-size: 0;
}

    .inputs:after {
        content: "";
        display: block;
        clear: both;
    }

    .inputs label {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
        font-size: 12px;
        text-transform: uppercase;
    }

    .inputs input[type="text"],
    .inputs input[type="password"],
    .inputs input[type="email"],
    .inputs input[type="tel"],
    .inputs select, .inputs textarea {
        width: 470px;
        max-width: 100%;
        vertical-align: middle;
        letter-spacing: 1px;
    }

        .inputs input[type="text"]:read-only,
        .inputs input[type="password"]:read-only,
        .inputs input[type="email"]:read-only,
        .inputs input[type="tel"]:read-only,
        .inputs select:read-only, .inputs textarea:read-only {
            background-color: var(--light-gray);
        }

        .login-page .inputs input[type="text"],
        .login-page .inputs input[type="password"],
        .login-page .inputs input[type="email"],
        .login-page .inputs input[type="tel"],
        .login-page .inputs select, .inputs textarea
        .login-page .inputs .option-list {
            width: 100%
        }

    .inputs .option-list {
        overflow: hidden;
        display: inline-block;
        vertical-align: middle;
    }

        .inputs .option-list li {
            float: left;
            margin: 0 15px 0 0;
            vertical-align: middle;
        }

        .inputs .option-list label {
            width: auto;
            display: inline;
        }

    .inputs.accept-consent label {
        width: auto;
        display: inline;
        cursor: pointer;
    }

    .inputs.reversed {
        margin: 0 0 20px;
        text-align: center;
    }

.required {
    margin: 0 -6px 0 3px; /*siblings offset fix*/
    font-size: 15px;
    color: #c00;
    font-weight: normal;
}

.message-error,
.field-validation-error,
.username-not-available-status,
.poll-vote-error,
.password-error {
    display: block;
    font-size: 11px;
    color: #c00;
}

.field-validation-valid {
    display: block;
    font-size: 11px;
    color: #75bfa1;
}

.captcha-box {
    margin: 0 0 15px;
    text-align: center;
    line-height: 0; /*firefox line-height bug fix*/
}

    .captcha-box > div {
        display: inline-block;
    }

    .captcha-box input {
        height: auto;
    }


/*********** NOTIFICATIONS & POPUPS  ***********/



.bar-notification {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10002;
    width: 100%;
    padding: 12px 25px 12px 10px;
    color: #fff;
    opacity: 0.95;
}

    .bar-notification.success {
        background: var(--blue);
        text-align: center;
        text-transform: uppercase;
    }

    .bar-notification.error {
        background: #f3594d;
        text-transform: uppercase;
        text-align: center;
    }

    .bar-notification.warning {
        background: #f19258;
        text-transform: uppercase;
        text-align: center;
    }

    .bar-notification .content {
        margin: 0 10px 0 0;
    }

        .bar-notification .content a {
            color: #fff;
            text-decoration: underline;
        }

    .bar-notification .close {
        position: absolute;
        top: 0;
        right: 0;
        width: 32px; /*even numbers only*/
        height: 32px; /*even numbers only*/
        margin: 5px;
        border: 1px solid #666;
        box-shadow: inset 0 0 1px #999;
        background: #fff url('../img/close.png') center no-repeat;
        cursor: pointer;
        opacity: 0.7;
    }

        .bar-notification .close:hover {
            opacity: 0.9;
        }

.ui-dialog {
    position: absolute !important;
    z-index: 1008;
    width: 50% !important;
    max-width: 95%;
    top: 40%;
    left: 25%;
    margin: 0 auto;
    right: 50%;
    border: none;
    box-shadow: 6px 6px 10px rgb(0 0 0 / 35%);
    overflow: hidden;
    background: #fff;
}

@media all and (max-width: 765px) {
    .ui-dialog {
        width: 80% !important;
        top: 40%;
        left: 10%;
    }
}


.ui-dialog-titlebar {
    overflow: hidden;
    background: var(--dark-blue);
    padding: 18px 30px;
    font-weight: bold;
}

    .ui-dialog-titlebar span {
        float: left;
        text-transform: uppercase;
        color: #fff;
        font-size: 16px;
    }

    .ui-dialog-titlebar button {
        position: absolute;
        top: 0;
        right: 0;
        width: 24px; /*even numbers only*/
        height: 24px; /*even numbers only*/
        margin: 6px;
        overflow: hidden;
        color: #fff;
        background: #fff url('../img/close.png') center no-repeat;
        border: none;
        text-indent: 999px;
        opacity: 0.7;
    }

        .ui-dialog-titlebar button:hover {
            opacity: 0.9;
        }

        .ui-dialog-titlebar button * {
            display: none;
        }

.ui-dialog-content {
    height: auto !important;
    padding: 16px 30px;
    line-height: 20px;
}

.ui-dialog .page-title {
    position: static;
    padding: 0;
    background: none;
    margin: 0 0 10px;
}

    .ui-dialog .page-title h1 {
        font-size: 16px;
        text-align: left;
    }

.ui-dialog-buttonset {
    padding: 10px;
    text-align: right;
}

    .ui-dialog-buttonset button {
        min-width: 60px;
        margin-left: 5px;
        border: 1px solid #bbb;
        box-shadow: 0 0 1px #ddd, inset 0 0 1px #fff;
        background: #eee;
        padding: 5px;
    }

        .ui-dialog-buttonset button:hover {
            background: #f6f6f6;
        }

.eu-cookie-bar-notification {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    color: #fff;
    background: var(--dark-blue);
    padding: 20px;
    text-align: center;
}


    .eu-cookie-bar-notification .text {
        display: inline-block;
        margin: 8px 20px 10px 0;
    }

    .eu-cookie-bar-notification button,
    .eu-cookie-bar-notification a {
        display: inline-block;
        border: 3px solid #fff;
        padding: 5px 15px;
        margin: 0 55px 10px;
        color: #fff;
        font-size: 14px;
        line-height: 1.2em;
        letter-spacing: 2px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: none;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

/*.eu-cookie-bar-notification button:hover,
        .eu-cookie-bar-notification a:hover {
            color: #fff;
            background: #75bfa1;
            border-color: #75bfa1;
        }*/


.sales-information-notification {
    position: absolute;
    left: 20%;
    right: 20%;
    top: 37%;
    z-index: 1002;
    background: var(--dark-blue);
    text-align: center;
    width: 60%;
    color: #fff;
}

    .sales-information-notification .text {
        display: inline-block;
        margin: 0 20px 10px 0;
    }

    .sales-information-notification button,
    .sales-information-notification a {
        display: inline-block;
        border: 3px solid #fff;
        padding: 5px 15px;
        margin: 0 55px 10px;
        color: #fff;
        font-size: 14px;
        line-height: 1.2em;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: none;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .sales-information-notification button:hover,
        .sales-information-notification a:hover {
            color: #fff;
            background: var(--light-green);
            border-color: var(--light-green)
        }

/*********** HEADER ***********/
.header {
    background-color: #0C4269;
    color: white;
}

.header-menu {
    float: right;
    text-transform: uppercase
}

.admin-header-links {
    background: #f3f3f3;
    border-bottom: 1px solid #ddd;
    text-align: center;
    position: unset !important;
    width: 100%;
    z-index: 1003;
}

    .admin-header-links a {
        display: inline-block;
        margin: 0 10px;
        line-height: 35px;
        font-weight: normal;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

        .admin-header-links a:only-child {
            display: block;
        }

.top-menu-tax-display {
    color: #085288;
    background: #F0F0F0;
    padding: 7px 7px;
    border-radius: 3px;
    margin-left: 14px;
    font-size: .9em;
}

.header {
    position: relative;
    z-index: 1002;
    text-align: center;
}

    .header:after {
        content: "";
        display: block;
        clear: both;
    }

.header-logo {
    text-align: center;
    /*margin: 15px auto;*/
    background-color: #085288;
    padding: 20px
}

    .header-logo img {
        width: 150px
    }

    .header-logo a {
        display: inline-block;
        line-height: 0; /*firefox line-height bug fix*/
    }
/*.header-logo a img {
	max-width: 75%;
    background-color: #75bfa1;
}*/
/*.header-options-wrapper {
    padding: 10px;
}*/

.header-links-wrapper {
    position: relative;
}

.header-links {
}

    .header-links ul {
        font-size: 0;
    }

    .header-links li {
        display: inline-block;
        margin: 0 10px;
        vertical-align: middle;
    }

    .header-links span,
    .header-links a {
        display: inline-block;
        font-size: 13px; /*reset zeroing*/
        line-height: 32px;
    }

    .header-links a {
    }

    .header-links .cart-qty {
        background: url('../img/cart-icon.png') left center no-repeat;
        padding: 0 0 0 20px;
    }

.close-filters span {
    padding: 22.5px 40px 17.5px 20px !important;
}

.search-box form {
    display: inline-block;
    position: relative;
}

    .search-box form:after {
        content: "";
        display: block;
        clear: both;
    }

.search-box input.search-box-text {
    float: left;
    width: 220px !important;
    height: 36px;
    border: none;
}

.search-box .search-box-button {
    float: left;
    width: 36px;
    height: 36px;
    border: none;
    overflow: hidden;
    background: url('../img/icon-search.png') center no-repeat;
    text-indent: 999px;
    border-left: 1px solid #f3f3f3;
    color: #666;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .embed-container iframe,
    .embed-container object,
    .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.ui-helper-hidden-accessible {
    display: none;
}

.ui-autocomplete.ui-menu.ui-widget.ui-widget-content {
    z-index: 1075 !important;
    width: 256px !important; /*default = txtfield + button*/
    max-width: 100%;
    border: 1px solid #ccc;
    overflow: hidden;
    background: #fff;
}

    .ui-autocomplete.ui-menu.ui-widget.ui-widget-content li {
        border-top: 1px solid #ccc;
        padding: 8px;
    }

.instant-search-item {
    display: flex;
    justify-content: start;
    align-items: center;
}

    .instant-search-item .img-block {
        height: 100px;
        width: 100px;
        text-align: center;
    }

    .instant-search-item .detail {
        flex-grow: 1;
        margin-left: 8px;
    }

.ui-autocomplete.ui-menu.ui-widget.ui-widget-content li:first-child {
    border-top: none;
}

.ui-autocomplete.ui-menu.ui-widget.ui-widget-content a {
    /*display: block;
        padding: 8px;*/
}

.ui-autocomplete.ui-menu.ui-widget.ui-widget-content img {
    /*display: none;*/
    margin-right: 5px;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.instant-search-item .detail .price {
    font-size: 14px;
    color: var(--blue);
}

.header-selectors-wrapper {
    /*font-size: 0;*/
    margin-bottom: 10px;
}

    .header-selectors-wrapper > div {
        display: block;
        margin: 0 5px 5px;
    }

    .header-selectors-wrapper select {
        min-width: 100px;
        font-family: 'Lato', sans-serif;
        letter-spacing: 1px;
        background-color: #fff;
    }

.language-box {
    display: none
}

.language-box-mobile {
    display: none
}

.language-box, .language-box-mobile {
    background-color: #EFEFEF;
    text-align: center;
    font-size: 14px;
    padding: 60px 40px;
    color: var(--light-black)
}

.International p {
    margin: 0 !important
}

.language-box h2, .language-box-mobile h2 {
    color: var(--blue);
    font-weight: 700;
    font-size: 40px;
}

.language-box .bg-light, .language-box-mobile .bg-light {
    background-color: #fff;
    display: flex;
    justify-content: space-between
}

.language-box .country img, .language-box-mobile .country img {
    vertical-align: text-top;
    height: 16px;
    margin-right: 10px;
    margin-top: 2px
}


.language-box .fa-globe, .language-box-mobile .fa-globe {
    color: #085288;
    margin-right: 10px;
    /*    font-size: 20px;*/
}

.language-box a, .language-box-mobile a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    cursor: pointer
}

    .language-box a:hover, .language-box-mobile a:hover {
        text-decoration: underline;
        color: #000;
    }

.language-box .language a, .language-box-mobile .language a {
    text-decoration: underline;
}

    .language-box .language a:not(:last-child), .language-box-mobile .language a:not(:last-child) {
        padding: 0 5px
    }

.language-box .cols > div, .language-box-mobile .cols > div {
    margin-bottom: 15px
}

.language-box .cols, .language-box-mobile .cols {
    columns: 3 400px;
}

@media (max-height: 992px) {
    .language-box .cols, .language-box-mobile .cols {
        columns: 3 400px;
    }
}

@media (max-height: 768px) {
    .language-box .cols, .language-box-mobile .cols {
        columns: 2 300px;
    }

    .language-box, .language-box-mobile {
        padding: 40px 10px;
    }
}

@media (max-height: 576px) {
    .language-box .cols, .language-box-mobile .cols {
        columns: 1 400px;
    }
}


.lang-options {
    /*  display: inline-flex;*/
    margin-top: 20px;
    color: var(--blue);
}

.show-language {
}

.select-group {
    margin-right: 30px;
    margin-bottom: 10px
}

    .select-group select {
        width: 120px
    }

    .select-group label {
        color: var(--blue);
    }



.header .language-list {
    max-width: 100%;
    margin: 6px 10px 0 15px;
    float: right
}

    .header .language-list span {
        display: block;
        font-size: 11px;
        padding: 0px 7px;
        line-height: 30px;
        min-width: 55px
    }

    .header .language-list li {
        margin: 0 1px;
    }

    .header .language-list a {
        display: flex;
        align-items: center;
    }

        .header .language-list a i {
            margin-left: 3px;
        }

    .header .language-list img {
        height: 14px;
    }

    .header .language-list .fa-chevron-down {
        font-size: 10px;
    }

    .header .language-list .fa-chevron-up {
        font-size: 10px;
    }


/*********** FOOTER ***********/



.footer {
    text-align: center;
}

.footer-blocks-holder {
    /*width: 85%;*/
    margin: 0 auto;
}

.footer-upper {
    margin: 0 0 20px;
    overflow: hidden;
}

.footer-upper-block {
    margin: 0 0 50px;
    font-size: 14px;
    line-height: 22px;
}

    .footer-upper-block .title {
        font-size: 14px;
        text-transform: uppercase;
        position: relative;
        font-weight: 400;
        line-height: 26px;
    }

        .footer-upper-block .title:after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            background: #ddd;
            position: absolute;
            bottom: 4px;
            z-index: -1;
        }

    .footer-upper-block p {
        color: #fff;
        font-size: 12px
    }

.mini {
    font-style: italic;
}

.footer-upper-block.newsletter p {
    margin: 0 0 15px;
}

.footer .fa-chevron-down:before {
    content: "\f078";
    color: grey !important;
}

.footer-middle .footer-menu li {
    display: flex;
}

    .footer-middle .footer-menu li i {
        margin: 4px 10px 0 0;
    }

.newsletter-subscribe {
    /*margin: 0 0 40px;*/
    /*height: 80px;*/ /*Mozilla Collapse Fix*/
    position: relative;
}

.footer-upper-block .newsletter .title {
    display: none;
}

.net-copyright {
    float: right;
    color: #fff;
    font-style: italic;
    padding: 0 20px 5px 0;
}

.newsletter-email input[type="email"] {
    width: 100%;
    /*background: #f1f1f1;*/
    border: none;
    height: 40px;
    padding: 8px 12px;
    font: italic 12px 'Poppins', sans-serif;
    color: #aaa;
    letter-spacing: 1.5px;
    font-size: 9px;
}

.newsletter-email input[type="button"] {
    /*width: 100%;*/
    border: none;
    display: block;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 10px;
    background: #707070;
    letter-spacing: 1.4px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

.newsletter-email button {
    width: 50px;
    border: none;
    display: block;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 10px;
    background: #707070;
    letter-spacing: 1.4px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}
/*.fa-paper-plane:after {
    content: "\f1d8";
    right:94px;
    position:absolute;
    top:13px
}*/
.newsletter-email input[type="button"]:hover {
    opacity: .95;
}

.newsletter-subscribe .options {
    position: absolute;
    bottom: -33px;
}

    .newsletter-subscribe .options span {
        display: inline-block;
        padding: 5px 0;
        margin: 0 10px 0 0;
    }

        .newsletter-subscribe .options span input {
            float: none;
            margin: 0;
        }

.newsletter-validation,
.newsletter-result {
    width: 100%;
    overflow: hidden;
    line-height: 18px;
}

    .newsletter-validation .please-wait {
        display: none !important;
    }

.social-sharing {
    margin-top: 8px;
}

    .social-sharing ul {
        /*font-size: 0;*/
    }

    .social-sharing li {
        display: inline-block;
        margin: 0 4px;
    }
/*.social-sharing a {
	display: block;
	width: 40px;
	height: 40px;
	background: #c6c6c6 url('../img/social_sprite.png') no-repeat;
    border-radius: 50%;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}*/
/*.social-sharing a:hover{
    background-color: #75bfa1;
}
.social-sharing .facebook {
	background-position: 0 0;
}
.social-sharing .twitter {
	background-position: -39px 0;
}
.social-sharing .google {
	background-position: -79px 0;
}
.social-sharing .youtube {
	background-position: -120px 0;
}
.social-sharing .pinterest {
	background-position: -160px 0;
}
.social-sharing .vimeo {
	background-position: -200px 0;
}
.social-sharing .rss {
	background-position: -240px 0;
}
.social-sharing a.instagram {
	background: #c6c6c6 url('../img/instagram.png') no-repeat center; 
}*/
.footer-middle {
    /*background: #EFEFEF;*/
    padding: 30px 0 0;
    overflow: hidden;
    color: #707070;
    font-weight: 100
}

.footer-line {
    border-top: 6px solid var(--blue);
    margin-bottom: 1px;
}

.footer {
    text-align: left;
    border-top: 3px solid var(--light-green)
}

.footer-middle .footer-menu {
    display: none;
}

.footer-menu li {
    text-align: left;
    color: #666;
    font-size: 12px;
    letter-spacing: 0.5px;
    overflow: hidden;
}

    .footer-menu li a {
        display: block;
        position: relative;
        padding: 0 0 10px 0;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

.footer-menu a:hover {
    color: var(--light-green);
}

    .footer-menu a:hover:before {
        background: #75bfa1;
    }

.footer-middle-block.opening-time .footer-menu li {
    padding: 10px 0 10px 20px;
    position: relative;
}

    .footer-middle-block.opening-time .footer-menu li:before {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        position: absolute;
        top: 16px;
        left: 7px;
        background: #d1d1d1;
    }

.footer-middle-block {
    margin: 0 0 15px;
}

    .footer-middle-block .klarna {
        width: 100%;
        max-width: 330px;
    }

    .footer-middle-block:last-child {
        margin-bottom: 0;
        padding-right: 0%;
    }

    .footer-middle-block.contact-info li.address {
        background: url(../img/contact-address.png) no-repeat center left;
    }

    .footer-middle-block.contact-info li.phone-fax {
        background: url(../img/contact-phone.png) no-repeat center left;
    }

    .footer-middle-block.contact-info li.email-website {
        background: url(../img/contact-mail.png) no-repeat center left;
    }

    .footer-middle-block.contact-info ul span {
        display: block;
        vertical-align: middle;
        line-height: 1.7em;
    }

    .footer-middle-block .title {
        font-size: 16px;
        text-transform: uppercase;
        position: relative;
        /*margin: 0 0 15px;*/
        z-index: 0;
        text-align: left;
        padding: 10px 22px 10px 0;
        cursor: pointer;
        text-decoration: underline !important
    }
        /*.footer-middle-block .title:after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: 14px;
    z-index: -1;
}*/

        .footer-middle-block .title span {
            display: inline-block;
            text-transform: uppercase;
        }

.footer-menu .day {
    float: left;
}

.footer-menu .time {
    float: right;
}

.accepted-payment-methods {
    margin: 20px 0 0;
}

    .accepted-payment-methods li {
        display: inline-block;
        width: 40px;
        height: 32px;
        background: url('../img/payment_sprite.png') no-repeat;
        margin: 0 3px;
    }

    .accepted-payment-methods .method1 {
        background-position: 0 0;
    }

    .accepted-payment-methods .method2 {
        background-position: -40px 0;
    }

    .accepted-payment-methods .method3 {
        background-position: -80px 0;
    }

    .accepted-payment-methods .method4 {
        background-position: -120px 0;
    }

    .accepted-payment-methods .method5 {
        background-position: -160px 0;
    }

.footer-lower {
    overflow: hidden;
    font-size: 14px;
    color: #fff;
    padding: 40px 0 0;
    background-color: #085288
}

    .footer-lower .footer-blocks-holder > div {
        padding: 0 3% 0 0;
        /*border-right: 1px solid white;*/
        /*min-height: 130px;*/
    }
/*.footer-lower .footer-blocks-holder > div:last-child {
        border-right: none;
    }*/
.footer-blocks-holder {
    padding: 0px 30px 20px;
}

.footer-disclaimer {
    font-size: 11px;
}

    .footer-disclaimer span {
        display: block;
    }

.footer-tax-shipping a {
    text-decoration: underline;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .footer-tax-shipping a:hover {
        color: #75bfa1;
    }

.footer-powered-by,
.footer-designed-by {
    font-size: 11px;
}

    .footer-powered-by a,
    .footer-designed-by a {
        color: #75bfa1;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .footer-powered-by a:hover,
        .footer-designed-by a:hover {
            text-decoration: underline;
        }

.footer-store-theme {
}

    .footer-store-theme select {
        width: 170px;
    }


/*********** HOME PAGE ***********/


body.home-page-body {
    background: #fff;
}

@media (min-width: 1024px) {
    .home-page {
        margin-bottom: 0px;
    }
}

.home-page-body .master-column-wrapper {
    width: 100%;
}

.home-page .topic-block,
.home-page-category-tabs .contents,
.home-page-category-tabs .titles,
.home-page .news-items,
.home-page .home-page-polls,
.home-page-slider-wrapper,
.home-page-bottom {
    width: 90%;
    margin: 30px auto;
}

.home-page .item-box .picture {
    background: rgba(0,0,0,0.1);
}

.titles {
    margin: 0 0 30px;
}

    .titles h3 {
        font-size: 24px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 0 0 20px;
    }

    .titles ul li {
        display: inline-block;
    }

    .titles ul span {
        display: block;
        color: #aaa;
        font-size: 16px;
        line-height: 1em;
        text-transform: uppercase;
        border-right: 1px solid #ddd;
        padding: 0 20px;
        cursor: pointer;
        margin-bottom: 5px;
    }

    .titles ul li.active span {
        color: #75bfa1;
    }

    .titles ul li:last-child span {
        border: none;
    }

.home-page-category-tabs .contents {
    position: relative;
}

.home-page-category-content {
    display: none;
}

    .home-page-category-content.active {
        display: block;
    }

.home-page-category-tabs .ajax-loading-overlay {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255,255,255, 0.9);
    z-index: 1;
}

.home-page-category-content .no-products-found {
    font-size: 14px;
    letter-spacing: 1.5px;
}

/* Home Page Tabs Loader */
.loader,
.loader:before,
.loader:after {
    background: #b5dc79;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}

    .loader:before,
    .loader:after {
        position: absolute;
        top: 0;
        content: '';
    }

    .loader:before {
        left: -1.5em;
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

.loader {
    display: block;
    text-indent: -9999em;
    margin: 15em auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

    .loader:after {
        left: 1.5em;
    }

@-webkit-keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0 #b5dc79;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em #b5dc79;
        height: 5em;
    }
}

@keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0 #b5dc79;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em #b5dc79;
        height: 5em;
    }
}

.home-page-category-tabs .ajax-loading-overlay.active {
    display: block;
}

.home-page-center-banner {
    margin: 70px 0;
}

.home-page-bottom {
    overflow: hidden;
}

.home-page-listbox {
    margin: 0 0 30px;
    text-align: left;
}

    .home-page-listbox .title {
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1.7px;
        position: relative;
        margin: 0 0 33px;
    }

        .home-page-listbox .title:after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            background: #ddd;
            position: absolute;
            bottom: 4px;
            z-index: -1;
        }

        .home-page-listbox .title strong {
            display: inline-block;
            box-shadow: 0 0 0 15px #fff;
            text-transform: uppercase;
            background: #fff;
        }

    .home-page-listbox .title {
        overflow: hidden;
    }

    .home-page-listbox .product-item {
        overflow: hidden;
    }

    .home-page-listbox .picture {
        width: 31%;
        float: left;
    }

        .home-page-listbox .picture a {
            display: block;
            position: relative;
        }

            .home-page-listbox .picture a:before {
                content: " ";
                display: block;
                padding-top: 100%;
            }

        .home-page-listbox .picture .item-overlay {
            display: none !important;
        }

        .home-page-listbox .picture img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            max-width: 100%;
            max-height: 100%;
            margin: auto;
            -webkit-transform: translateZ(0) scale(1.0, 1.0);
        }

    .home-page-listbox .product-item {
        margin-bottom: 25px;
    }

    .home-page-listbox .details {
        margin-left: 37%;
    }

        .home-page-listbox .details h2 {
            font-size: 13px;
            letter-spacing: 1.7px;
            text-transform: uppercase;
        }

            .home-page-listbox .details h2 a {
                display: block;
                min-height: 32px;
            }

    .home-page-listbox .description {
        display: none;
    }

    .home-page-listbox .actual-price {
        font-size: 14px;
        color: #75bfa1;
        font-weight: bold;
        letter-spacing: 1.5px;
        margin-right: 5px;
    }

    .home-page-listbox .old-price {
        font-size: 13px;
        color: #cdcdcd;
        text-decoration: line-through;
    }

    .home-page-listbox .buttons {
        display: none;
    }

    .home-page-listbox .compare-products {
        display: none;
    }

.home-page-banners .slider-wrapper {
    margin: 0 0 10px;
}


/*********** LEFT/RIGHT COLUMN ***********/

.indention ul {
    margin-left: 15px
}

.block {
    margin: 0 0 20px;
    text-align: center;
}

    .block .title, .filter-block .title {
        font-size: 14px;
        text-transform: uppercase;
        position: relative;
        z-index: 0;
        text-align: left;
        padding: 10px 22px 0 0;
        cursor: pointer;
        border-bottom: 3px solid var(--light-green) !important;
        word-break: break-all
    }

.filter-block a.toggleControl {
    color: #444 !important;
}

.filtersGroupPanel li.checked label, .filtersGroupPanel li > label:hover {
    color: #444 !important;
}

.filtersGroupPanel li > label {
    padding: 5px 10px 5px 33px !important;
    margin: 0 !important
}

.block .title strong {
    display: inline-block;
    text-transform: uppercase;
    background: #fff;
}


    .block .title strong::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        content: "\f0c9";
        color: grey !important;
        display: block;
        background-color: transparent;
        position: absolute;
        right: 0;
        bottom: 5px;
    }

.block .listbox {
    display: none;
}

.clearFilterOptions i {
    color: var(--pink);
    font-size: 14px;
    margin-top: 10px
}

.filtersGroupPanel li.checked label:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: var(--light-green);
    background-image: none !important;
    font-size: 16px
}

.block .listbox:after {
    content: "";
    display: block;
    clear: both;
}

.block .list {
}

    .block .list li {
        text-align: left;
    }

    .block .list a {
        display: inline-block;
        position: relative;
        /*padding: 12px 10px 12px 20px;*/
        font-size: 12px;
        /*letter-spacing: 1.5px;*/
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }
        /*.block .list a:before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7px;
    margin: auto;
    background: #d1d1d1;
}*/
        .block .list a:hover,
        .block .list a:hover, .block .list .active > a {
            color: var(--blue);
            text-transform: uppercase;
            font-weight: bold;
            border-left: 5px solid;
            padding-left: 10px;
        }

    .block .list .sublist > .inactive a:before {
        background: #d1d1d1;
    }

    .block .list a.active {
        color: #75bfa1;
    }

    .block .list a:hover:before,
    .block .list .active a:before,
    .block .list .sublist > .inactive:hover a:before {
        background: #75bfa1;
    }

    .block .list img {
        max-width: 100%
    }

.block .sublist {
    margin-left: 10px;
}

.block .view-all {
    margin: 10px 0 0;
    text-align: left;
}

    .block .view-all a {
        padding: 7px 3px;
        font-weight: bold;
        color: #75bfa1;
        display: inline-block;
    }

.block .tags {
    margin: 0 0 10px;
}

    .block .tags ul {
        /*font-size: 0;*/
    }

    .block .tags li,
    .product-tags-all-page li {
        display: inline-block;
        position: relative;
        margin: 0 10px;
        overflow: hidden;
        font-size: 16px !important; /*setting base size*/
    }

        .block .tags li a,
        .product-tags-all-page li a {
            float: left;
            line-height: 30px;
            -webkit-transition: all .10s ease-in-out;
            -moz-transition: all .10s ease-in-out;
            transition: all .10s ease-in-out;
        }

            .block .tags li a:hover,
            .product-tags-all-page li a:hover {
                color: #75bfa1;
            }

.block.block-recently-viewed-products .list a.product-picture {
    display: none;
}

.home-page-polls {
    margin: 0 0 50px;
    overflow: hidden;
}

    .home-page-polls .title {
        display: none;
    }

.poll {
    text-align: left;
    margin: 30px auto 50px;
}

.poll-title {
    display: block;
    margin: 0 0 10px;
    font-size: 15px;
    letter-spacing: 1.7px;
    position: relative;
}

    .poll-title::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #ddd;
        position: absolute;
        bottom: 4px;
        z-index: -1;
    }

.poll strong {
    display: inline-block;
    box-shadow: 0 0 0 10px #fff;
    text-transform: uppercase;
    background: #fff;
}

.poll-options,
.poll-results {
    margin: 0 0 15px;
    overflow: hidden;
}

    .poll-options li,
    .poll-results li {
        display: block;
        padding: 10px 0;
        font-size: 14px;
    }

        .poll-options li > * {
            display: inline-block;
            vertical-align: middle;
            cursor: pointer;
        }

.poll .buttons,
.poll-total-votes {
    text-align: left;
}

    .poll .buttons input {
        border: 3px solid #75bfa1;
        padding: 5px 15px;
        color: #444;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: none;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .poll .buttons input:hover {
            color: #fff;
            background: #75bfa1;
        }

.poll-total-votes {
    display: block;
    margin: 10px 0 0;
    font-weight: bold;
}


/********** CATEGORY PAGE **********/



.filters-button {
    display: none;
}


.breadcrumb ul {
    /*font-size: 0;*/
    padding-top: 10px;
}

.breadcrumb li {
    display: inline-block;
}

    .breadcrumb li > * {
        font-size: 12px;
        padding: 0;
        display: inline-block;
    }

.breadcrumb i {
    opacity: 0.6;
    font-size: 8px
}

.breadcrumb h1,
.breadcrumb strong {
    font-weight: normal;
    font-size: 12px;
    color: var(--blue);
}

.breadcrumb a:hover * {
}

.category-description,
.manufacturer-description,
.vendor-description {
    margin: 26px 0 20px;
}

.product-filters {
    display: none;
}

.product-selectors {
}

    .product-selectors:after {
        content: "";
        display: block;
        clear: both;
    }

    .product-selectors > div {
        display: block;
        width: 250px;
        margin: 5px auto;
        text-transform: uppercase;
        color: #555;
        vertical-align: middle;
    }

    .product-selectors select {
        height: 30px;
        margin: 0 5px;
        color: #555;
        background: #f1f1f1;
        border: none;
    }

/*div.product-viewmode {
    display: none;
}*/


.pager {
    margin: 20px 0;
    text-align: center;
    width: 100%;
}

    .pager ul {
        text-align: center;
    }

    .pager li {
        display: inline-block;
        margin: 5px;
    }

        .pager li * {
            display: block;
            min-width: 32px;
            overflow: hidden;
            padding: 8px;
            background: none;
            border: 1px solid var(--light-gray);
            text-align: center;
            font-size: 12px; /*reset zeroing*/
            cursor: pointer;
            color: #444;
            -webkit-transition: all .10s ease-in-out;
            -moz-transition: all .10s ease-in-out;
            transition: all .10s ease-in-out;
        }

        .pager li span {
            background-color: var(--blue);
            color: #fff;
        }


        .pager li.previous-page *,
        .pager li.next-page *,
        .pager li.first-page *,
        .pager li.last-page * {
            background-repeat: no-repeat;
            text-indent: -999px;
        }

        .pager li.previous-page * {
            background-image: url('../img/arrows-sprite.png');
            background-position: left -10px top -9px;
        }

        .pager li.next-page * {
            background-image: url('../img/arrows-sprite.png');
            background-position: right -10px top -9px;
        }

        .pager li.first-page * {
            background-image: url('../img/arrows-sprite.png');
            background-position: left -10px top -109px;
        }

        .pager li.last-page * {
            background-image: url('../img/arrows-sprite.png');
            background-position: right -10px top -109px;
        }

        .pager li.first-page *:hover {
            background-position: left -10px top -159px;
        }

        .pager li.last-page *:hover {
            background-position: right -10px top -159px;
        }

.addReadMore {
    overflow-y: hidden;
}

.readMore,
.readLess {
    font-weight: bold;
    margin-left: 2px;
    color: var(--blue);
    cursor: pointer;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

.addReadMoreWrapTxt.showmorecontent .SecSec,
.addReadMoreWrapTxt.showmorecontent .readLess {
    display: block;
}


.item-grid:after,
.product-grid:after,
.product-list:after,
.manufacturer-grid:after {
    content: "";
    display: block;
    clear: both;
}

.product-grid .item-box {
    /*position: relative;
    width: 100%;
    margin: 0 auto 60px;
    max-width: 300px;
    overflow: hidden;*/
    position: relative;
    width: 50%;
    overflow: hidden;
    float: left;
}

.product-list .item-box {
    width: 100%;
}

    .product-list .item-box .net-ups, .product-list .item-box .net-shipping {
        display: none;
    }



.item-box .picture {
    z-index: 1;
    overflow: hidden;
}

    .item-box .picture a {
        display: block;
        position: relative;
    }

    /*  .item-box .picture a:before {
                content: " ";
                display: block;
                padding-top: 100%;
            }*/

    .item-box .picture img {
        /*  position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;*/
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        /*-webkit-transform: translateZ(0) scale(1.0, 1.0);*/ /* fixes the bug of the 1px moving product images when hover on category */
    }

    .item-box .picture .compare-products {
        display: none;
    }

.item-box .details {
}

.item-box .product-title {
    margin-bottom: 12px;
    overflow: hidden;
    font-size: 16px !important;
    text-transform: uppercase;
}

    .item-box .product-title a,
    .item-box .title a {
        display: block;
    }

.item-box .product-rating-box {
    display: inline-block;
    margin: 0 0 5px;
    display: none;
}

.product-grid .item-box .picture {
    margin-bottom: 10px;
}

.product-box .add-product, .slick-slide .btn-mobile {
    display: none;
}

.product-grid .add-product, .product-grid .btn-mobile {
    display: none;
}

.product-list .product-box:hover .item-overlay {
    display: none;
}

.product-list .btn-mobile {
    position: absolute;
    right: 25px;
    top: 20%;
}

.product-list .topic-badge {
    right: unset;
    padding: 3px 5px;
}

.product-list .product-box-link {
    width: 60%;
}

.product-list .item-box {
    padding: 0 !important;
    border-bottom: unset !important;
}

    .product-list .item-box .text-center {
        text-align: left !important;
        display: block;
    }

    .product-list .item-box .product-box {
        height: 70px !important;
        margin: 5px 0 5px 0;
    }

        .product-list .item-box .product-box img {
            max-height: 65px;
        }

.product-list .product-box-info {
    height: 100%;
    padding: 10px 15px 10px 0px;
}

.product-list .product-box .product-price {
    left: 70%;
    position: absolute;
    margin-top: -38px;
}

.product-list .add-product {
    display: flex;
    align-items: center;
    position: absolute;
    left: 60%;
    top: 17px;
}

    .product-list .add-product input {
        width: 20%;
        text-align: center;
        padding: 0;
    }

.product-list .product-box h6 {
    width: 30%;
    margin-left: 100px;
    height: 48px
}

.product-item .rating {
    background: url('../img/rating1.gif') repeat-x top left;
    width: 70px;
    height: 12px;
    margin-bottom: 8%;
}

    .product-item .rating div {
        background: url('../img/rating2.gif') repeat-x top left;
        height: 12px;
    }

.non-profit {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: var(--blue-grey);
    color: #fff;
    margin-top: 40px
}

.blue-spot {
    background-color: var(--blue);
    width: 48%;
    color: #fff;
    padding: 75px;
    text-align: center;
    margin-right: 20px
}

.gray-spot {
    position: relative;
    width: 50%;
    padding: 75px;
    text-align: center;
    background-color: var(--light-gray);
}

    .gray-spot img {
        width: 120px;
        position: absolute;
        right: 0;
        top: 15px;
    }

.white-btn {
    background-color: #fff;
    text-transform: uppercase;
    color: var(--blue);
    display: inline-block;
    padding: 10px;
    border: 1px solid #fff;
}

.white-btn-border {
    background-color: transparent;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    padding: 10px;
}

.blue-btn-border {
    background-color: transparent;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--light-blue);
    border: 1px solid var(--light-blue);
    display: inline-block;
    padding: 10px;
}

.question-mark-text {
    color: var(--blue);
    font-size: 12px;
    font-style: italic;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: var(--blue) !important;
}

.slick-dots li button:before {
    font-size: 35px !important;
    line-height: 0 !important
}

.slick-dots li button:before {
    opacity: 0.15 !important
}

.product-box-link {
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    width: 100%;
}

.product-grid .product-box-link .text-center {
    margin-left: -15px;
    /*margin-top: 25px;*/
}

.product-box {
    background-color: var(--light-gray);
    padding: 15px;
    margin: 10px 10px 10px 0;
    height: 425px !important;
    position: relative;
    overflow: hidden;
}

.home-page-slider .product-box {
    margin: 0px 10px 10px 0;
}

.product-grid .net-grid .product-box {
    margin: 0 !important;
}

.product-box h6 {
    display: inline-block;
    width: 100%;
    line-height: 24px;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-box-image {
    height: 220px;
    text-align: center;
}

.product-box-info {
    position: absolute;
    bottom: 0;
    padding: 15px 15px 10px 0px;
    width: 95%;
}

.product-box img {
    max-height: 240px;
    padding: 10px 15px 0px;
}

.product-box-image img {
    max-height: 185px;
    padding: 15px
}

.product-box.product-price {
    font-size: 14px;
    letter-spacing: 0
}

.product-box .net-rating {
    position: absolute;
    bottom: 0
}

.product-box .net-price {
    position: absolute;
    /*bottom: 23px;*/
    right: 0
}

.product-box-movie {
    height: 200px
}

.product-box .item-overlay-content {
    padding: 30px 20px;
    color: #ffffff;
    line-height: 1.8;
}

.product-box .item-overlay {
    display: none
}

.product-box:hover .item-overlay {
    left: 0;
    display: block
}

.product-box .item-overlay {
    content: '';
    width: 100%;
    display: block;
    position: absolute;
    left: 105%;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(8,82,136,.9);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.video-guides h6 {
    font-weight: 600
}



/*.video-guides .user-manuals-box {
    //margin: 0 0.7% 0 0;
    padding: 0px 12px;
}*/
/* .video-guides .user-manuals-box iframe {
            border: none;
            max-width: 100%;
            height: auto;
        }*/

.user-film-box {
    padding: 0 5px;
}

    .user-film-box h5 {
        margin-top: 10px;
    }

.w-25 {
    width: 25%
}

.w-50 {
    width: 50%
}

.w-75 {
    width: 75%
}

.w-100 {
    width: 100%
}

.spots .net-recommended-products {
    padding-right: 15px
}

.spots h4 {
    color: var(--blue);
    font-size: 20px
}

#tab-product-facts {
}


.product-tabs table, th, td {
    margin: 20px 0px;
    padding: 4px 4px;
}

.product-tabs table, th, td {
    /*padding: 6px 8px !important;*/
    font-weight: inherit;
    /*font-size: 95%;*/
}

.product-tabs {
    margin-top: 60px
}

    .product-tabs tr:nth-child(even) {
        background-color: var(--light-gray);
    }

    .product-tabs .product-tabs-list li {
        float: left;
        padding: 10px 5px;
        background-color: var(--light-gray);
        width: 100%;
        text-transform: uppercase;
        align-items: center;
        text-align: center;
        display: flex !important;
        text-transform: uppercase;
    }


        .product-tabs .product-tabs-list li:hover {
            cursor: pointer;
        }

        .product-tabs .product-tabs-list li a {
            text-decoration: none;
            color: var(--light-black);
            font-size: 13px;
            text-align: center;
            width: 100%;
        }

        .product-tabs .product-tabs-list li.active a {
            color: var(--blue);
            font-weight: bold;
        }


@media (max-width: 765px) {
    .product-tabs tr:nth-child(even) {
        background-color: transparent;
    }

    .product-tabs th, .product-tabs td {
        display: grid;
    }

    .product-tabs table, .product-tabs th, .product-tabs td {
        margin: 0;
        padding: 5px 0px;
        font-weight: revert;
    }
}


.product-tabs .tab .show-tab {
    font-size: 18px;
    font-weight: 400;
}

.product-tabs .tab {
    width: auto;
    padding: 20px 15px;
    color: darkslategray;
    clear: both;
}

.product-tabs-list {
    display: flex
}

.product-tabs .tab h3 {
    border-bottom: 3px solid cornflowerblue;
    letter-spacing: 1px;
    font-weight: normal;
    padding: 5px;
}

.product-tabs .tab li {
    padding: 10px 0 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.product-tabs .show-tab i {
    float: right;
}

.product-tabs .tab-text {
    font-size: 14px;
    padding: 15px 0 30px 0;
}

    .product-tabs .tab-text iframe {
        width: 100%;
    }

.product-tabs .product-tabs-list li.active {
    background-color: transparent !important;
    color: black !important;
    border: 1px solid var(--light-gray);
    border-bottom: none;
}

/* media query */
@media (max-width:765px) {
    .product-box .item-overlay {
        background: transparent;
    }

        .product-box .item-overlay .item-overlay-content {
            display: none
        }

    .product-box:hover .item-overlay {
        left: 0;
        display: none !important;
    }

    .product-list .item-box .product-box {
        height: 135px !important;
    }

    .product-list .btn-mobile {
        position: absolute;
        right: 25px;
        top: 60%;
    }

    .product-list .add-product {
        display: flex;
        align-items: center;
        position: absolute;
        left: 18%;
        top: 80px;
    }

    .product-list .product-box-link {
        width: 97%
    }

    .product-list .product-box h6 {
        width: 43%;
        margin-left: 100px;
    }

    .product-list .product-box .product-price {
        left: unset;
        position: absolute;
        margin-top: -10px;
        right: -20px;
    }
}

.password-recovery-page .form-fields {
    margin: 0 !important;
}



.item-box .description {
    display: none;
}

    .item-box .description a {
        display: block;
        overflow: hidden;
    }

.item-box .prices {
    margin: 0 0 20px;
    overflow: hidden;
    letter-spacing: 2px;
}

.item-box .old-price {
    color: #c7c7c7;
    font-size: 15px;
    vertical-align: middle;
    text-decoration: line-through;
}

.item-box .actual-price {
    font-weight: bold;
    font-size: 17px;
    margin: 0 10px 0 0;
    color: #75bfa1;
    vertical-align: middle;
}

.item-box .buttons {
    margin: 0;
}

.item-box input[type="button"] {
    border: 3px solid #75bfa1;
    padding: 9px 25px;
    font-size: 14px;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
}

.sub-category-grid {
    margin: 70px auto;
}

.home-page-category-grid .item-box {
    margin-bottom: 20px
}

@media (min-width: 769px) and (max-width:1280px) {
    .home-page-category-grid .item-box {
        width: 100%
    }
}

@media (min-width: 1100px) and (max-width:1280px) {
    .home-page-category-grid {
        width: 100%;
        margin-bottom: 40px;
    }
}

.sub-category-grid .item-box {
    max-width: 280px;
    margin: 0 auto 15px;
}

.item-box .title {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 0;
    width: 92.5%;
    font-size: 19px;
    letter-spacing: 1.5px;
    color: #fff;
    background-color: var(--blue);
}

    .item-box .title:before {
        content: '';
        display: block;
        width: 28px;
        height: 4px;
        background: var(--light-green);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .item-box .title a {
        font-weight: normal;
        text-transform: uppercase;
        text-align: left;
        letter-spacing: 1.5px;
        padding: 11px 10px 11px 45px;
    }

.product-grid,
.product-list {
    margin: 0 auto;
}

    .product-grid .title {
        margin-bottom: 25px !important;
        font-size: 24px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        .product-grid .title strong {
            font-weight: bold;
        }

.item-box .manufacturer-item .title,
.item-box .vendor-item .title {
    position: static !important;
    font-size: 20px;
    background: none;
    color: #444;
    position: relative;
    margin: 0;
    width: 100%;
}

    .item-box .manufacturer-item .title:before,
    .item-box .vendor-item .title:before {
        display: none;
    }

    .item-box .manufacturer-item .title a,
    .item-box .vendor-item .title a {
        padding: 10px 15px;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }

.vendor-list li {
    display: inline-block;
    margin: 5px 0;
}

.vendor-list a {
    display: block;
    font-size: 18px;
    color: #888;
    padding: 10px 15px;
    border: 1px solid #ddd;
}

    .vendor-list a:hover {
        color: #fff;
        border-color: #75bfa1;
        background: #75bfa1;
    }

.contact-vendor input[type='button'] {
    border: 3px solid #ddd;
    padding: 9px 25px;
    font-size: 14px;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .contact-vendor input[type='button']:hover {
        color: #fff;
        background-color: #75bfa1;
        border-color: #75bfa1;
    }

.cross-sells .item-box input[type="button"] {
    margin: 0;
}

.tax-shipping-info {
    display: block;
}

    .tax-shipping-info a {
        text-decoration: underline;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .tax-shipping-info a:hover {
            color: #75bfa1;
        }


/********** PRODUCT PAGE **********/



/*.product-essential {
	margin: 39px 0 0;
}*/
.product-essential:after {
    content: "";
    display: block;
    clear: both;
}

.topic-badge {
    position: absolute;
    right: 10px;
    z-index: 999;
    /*  background-color: var(--pink);*/
    text-transform: uppercase;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px
}

    .topic-badge.new {
        background-color: var(--blue);
    }

    .topic-badge.bestseller {
        background-color: var(--blue);
    }

    .topic-badge.campaign {
        background-color: var(--pink);
    }

.gallery {
    margin: 0 0 30px;
}

    .gallery .picture-wrapper {
        margin: 0 0 10px;
    }

    .gallery .picture {
        position: relative;
        width: 560px;
        max-width: 100%;
        margin: 0 auto 10px;
        overflow: hidden;
        background: #fff;
    }

        .gallery .picture:before {
            content: "";
            display: block;
            padding-top: 100%;
        }

        .gallery .picture img,
        .gallery .picture-thumbs img,
        .variant-picture img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            max-width: 100%;
            max-height: 100%;
            margin: auto;
        }

    .gallery .picture-thumbs {
        overflow: hidden;
        /*font-size: 0;*/
    }

    .gallery .thumb-item {
        display: inline-block;
        position: relative;
        width: 18%;
        margin: 0 5px 10px;
        overflow: hidden;
        background: #fff;
        border: 2px solid transparent;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .gallery .thumb-item:before {
            content: "";
            display: block;
            padding-top: 100%;
        }

        .gallery .thumb-item:hover {
            border: 2px solid var(--light-green);
        }

.product-details-page .overview {
    position: relative;
    margin: 0 0 70px;
}

.product-details-page {
    margin-top: 15px;
}

.overview .product-name {
    margin: 10px 0 10px;
}

    .overview .product-name h1 {
        font-size: 36px;
        line-height: 42px;
        font-weight: 600
    }

.overview .short-description {
    font-size: 14px;
    /* letter-spacing: 1.5px; */
    margin: 15px 0 30px;
    font-weight: 100;
}

.net-add-to-basket {
    display: flex
}

.add-to-cart-product {
    display: flex;
    align-items: center;
    right: 220px;
    position: absolute;
}

.product-contact-us {
    font-style: italic;
    font-weight: 400;
    padding-top: 12px;
}

.net-product-number {
    /*color: black;*/
    font-size: 12px;
    font-weight: 600;
    padding-top: 12px
}

.net-add-to-basket div:last-child {
    position: absolute;
    right: 0;
}

.net-add-to-basket .net-product-number {
    color: #000;
}

.product-tabs-list li {
    width: auto
}

.overview .short-description:before {
    /*content: '';*/
    display: block;
    height: 4px;
    width: 37px;
    background: #444;
    margin: 25px auto;
}

.overview .buttons,
.back-in-stock-subscription,
.download-sample {
    margin: 0 0 15px;
    font-size: 0;
    vertical-align: top;
}

.back-in-stock-subscription-page .tooltip {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin: 0 0 30px;
}

.back-in-stock-subscription-page button {
    height: 35px;
    background: none;
    border: 2px solid #ddd;
    padding: 0 10px;
    text-transform: uppercase;
    color: #888;
    font-size: 12px;
    letter-spacing: 1.2px;
}

.overview .buttons div {
    display: inline-block;
    margin: 0 5px 10px;
}

.overview .add-to-wishlist-button,
.variant-overview .add-to-wishlist-button,
.overview .add-to-compare-list-button,
.overview .email-a-friend-button,
.overview .subscribe-button,
.download-sample a {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: none;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .overview .add-to-wishlist-button:hover,
    .variant-overview .add-to-wishlist-button:hover,
    .overview .add-to-compare-list-button:hover,
    .overview .email-a-friend-button:hover,
    .overview .subscribe-button:hover,
    .download-sample a:hover {
        background-color: #75bfa1;
        border-color: #75bfa1;
    }

.overview .add-to-wishlist-button,
.variant-overview .add-to-wishlist-button {
    background: url(../img/buttons-sprite.png) no-repeat top left;
}

    .overview .add-to-wishlist-button:hover,
    .variant-overview .add-to-wishlist-button:hover {
        background-position: left top -35px;
    }

.overview .add-to-compare-list-button {
    background: url(../img/buttons-sprite.png) no-repeat top left -37px;
}

    .overview .add-to-compare-list-button:hover {
        background-position: top -35px left -37px;
    }

.overview .email-a-friend-button {
    background: url(../img/buttons-sprite.png) no-repeat top left -74px;
}

    .overview .email-a-friend-button:hover {
        background-position: top -35px left -74px;
    }

.overview .subscribe-button {
    background: url(../img/buttons-sprite.png) no-repeat top left -148px;
    text-indent: initial;
    width: auto;
    padding: 0 10px 0 35px;
    text-transform: uppercase;
    color: #888;
    font-size: 12px;
    letter-spacing: 1.2px;
}

    .overview .subscribe-button:hover {
        background-position: top -35px left -148px;
        color: #fff;
    }

.download-sample a {
    background: url(../img/buttons-sprite.png) no-repeat top left -112px;
}

    .download-sample a:hover {
        background-position: top -35px left -112px;
    }

.overview .discontinued-product {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.9);
}

    .overview .discontinued-product h4 {
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 1.5px;
        font-size: 24px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        height: 60px;
    }

.overview .sku, .variant-overview .sku,
.overview .gtin, .variant-overview .gtin,
.overview .stock, .variant-overview .stock,
.overview .delivery-date, .variant-overview .delivery-date,
.overview .product-vendor, .variant-overview .product-vendor,
.overview .manufacturers, .manufacturer-part-number {
    margin: 0 0 5px;
    text-transform: uppercase;
}

.overview .value,
.variant-overview .value {
    color: #75bfa1;
}

    .overview .value a,
    .variant-overview .value a {
        text-decoration: underline;
    }

.free-shipping {
    display: inline-block;
    margin: 10px auto 15px;
    border: 2px solid #ddd;
    background: #eee;
    padding: 10px 17px;
    text-align: center;
    font-size: 12px;
    color: #888;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.overview .manufacturers {
    margin: 0 0 25px; /*not present in variant-overview*/
}

.product-no-reviews,
.product-reviews-overview {
    margin: 0; /*not present in variant-overview*/
}

.product-review-box {
    display: inline-block;
    margin: 0 0 5px;
}

    .product-review-box .rating {
        width: 70px;
        height: 12px;
        margin-right: 5px;
        background: url('../img/rating1.gif') repeat-x;
    }

        .product-review-box .rating div {
            height: 12px;
            background: url('../img/rating3.gif') repeat-x;
        }

    .product-review-box span {
        font-size: 11px;
        margin: -2px 0 0 3px;
        text-transform: uppercase;
    }

.product-review-links a:hover,
.product-no-reviews a:hover {
    color: var(--light-green);
    text-decoration: underline;
}

.write-review .inputs textarea {
    font-style: italic;
    font-size: 11px
}


.net-shipping {
    font-size: 12px;
    padding-top: 6px;
    float: left
}

    .net-shipping i {
        color: var(--blue)
    }

.overview .prices,
.variant-overview .prices {
    overflow: hidden;
}

    .overview .prices label,
    .variant-overview .prices label {
        display: none;
    }

    .overview .prices > div,
    .variant-overview .prices > div {
        margin: 0 0 5px;
        letter-spacing: 1.5px;
        display: inline-block;
        float: right
    }

.overview .old-product-price,
.variant-overview .old-product-price {
    font-size: 18px;
    color: #c6c6c6;
    text-decoration: line-through;
    display: inline-block;
}

    .overview .old-product-price > *,
    .variant-overview .old-product-price > * {
        vertical-align: top;
        margin-left: 10px;
    }

.overview .product-price,
.variant-overview .product-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--blue);
}

.non-discounted-price {
    display: block !important;
    font-size: 18px;
    color: #c6c6c6;
}

.prices .non-discounted-price > label,
.prices .non-discounted-price ~ .product-price > label {
    display: inline-block;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--blue);
    float: right;
}

.customer-entered-price {
    overflow: hidden;
    padding: 0 0 35px;
    margin: 0 0 35px;
    border-bottom: 1px solid #ddd;
}

    .customer-entered-price > div {
        display: inline-block;
    }

    .customer-entered-price .price-input {
        margin: 0 0 10px;
    }

    .customer-entered-price .enter-price-input {
        width: 60px;
        text-align: center;
        margin: 0 0 0 10px;
    }

    .customer-entered-price .enter-price-label {
        margin: 0 0 10px;
        white-space: nowrap;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .customer-entered-price .price-range {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #75bfa1;
        padding: 10.5px 0px;
    }

.overview .prices > div.tax-shipping-info {
    display: block;
}


.overview .add-to-cart-panel,
.variant-overview .add-to-cart-panel {
    float: right
}

    .overview .add-to-cart-panel > *,
    .variant-overview .add-to-cart-panel > * {
        float: left;
    }

.overview .qty-label,
.variant-overview .qty-label {
    line-height: 40px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 15px;
}

.overview .qty-input,
.variant-overview .qty-input {
    width: 42px;
    height: 40px;
    padding: 12px 5px;
    text-align: center;
    font-size: 14px;
    margin-right: 15px;
}

.overview .add-to-cart-button,
.variant-overview .add-to-cart-button {
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--light-green);
    color: var(--blue);
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
    font-weight: bold;
}

    .overview .add-to-cart-button:hover,
    .variant-overview .add-to-cart-button:hover {
        color: #fff;
        background-color: var(--blue);
    }

.overview .add-to-cart .add-to-wishlist-button {
    display: none; /*removes the old button*/
}

.min-qty-notification {
    margin: 0 0 10px;
    font-size: 13px;
}

.product-estimate-shipping {
    margin: 0 0 20px;
}

    .product-estimate-shipping a {
        display: inline-block;
    }

    .product-estimate-shipping i {
        display: inline-block;
        transform: rotate(45deg);
        margin: 0 0 3px 10px;
        border: solid grey;
        border-width: 0 1px 1px 0;
        padding: 2px 2px;
    }

    .product-estimate-shipping .shipping-loading {
        display: none !important; /*disable preloader*/
    }

    .product-estimate-shipping .shipping-title {
        margin: 0 0 5px;
        text-transform: uppercase;
    }

    .product-estimate-shipping .shipping-price {
        margin: 0 0 0 5px;
        color: #75bfa1;
    }

    .product-estimate-shipping .shipping-date {
        margin: 15px 0 0;
    }

.product-share-button {
    display: inline-block;
    overflow: hidden;
}

.full-description {
    clear: both;
    margin: 0 0 70px;
    line-height: 20px;
    font-size: 13px;
    color: #666;
    letter-spacing: 2px;
}

.product-collateral {
    margin: 30px 0 70px;
}

    .product-collateral .title {
        margin: 0 0 10px;
        font-size: 18px;
    }

        .product-collateral .title strong {
            font-size: 18px;
            margin: 0 0 10px;
            text-transform: uppercase;
        }

.tier-prices .prices-header {
    margin: 0 0 10px;
}

.tier-prices .field-header {
    min-width: 100px;
}

.product-variant-list {
}

.product-variant-line {
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px;
}

    .product-variant-line:last-child {
        border-bottom: none;
    }

    .product-variant-line:after {
        content: "";
        display: block;
        clear: both;
    }

.variant-picture {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.variant-overview {
    width: 100%;
}

    .variant-overview .variant-name {
        margin: 0 0 20px;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: bold;
    }

    .variant-overview .variant-description {
        margin: 0 0 15px;
        line-height: 20px;
    }

    .variant-overview .tier-prices {
        margin: 0 0 30px;
    }

    .variant-overview .add-to-cart {
        margin: 25px 0;
    }

    .variant-overview .add-to-wishlist-button {
        margin-left: 15px;
    }

/*Jquery Tabs start*/
.ui-tabs {
    margin: 0 0 20px;
}

    .ui-tabs .ui-tabs-nav {
        margin: 15px 0;
    }

        .ui-tabs .ui-tabs-nav li {
            display: inline-block;
        }

            .ui-tabs .ui-tabs-nav li a {
                display: inline-block;
                padding: 6px 15px 6px 0;
                font-size: 16px;
                font-weight: bold;
                text-transform: uppercase;
                color: #aaa;
                position: relative;
                -webkit-transition: all .10s ease-in-out;
                -moz-transition: all .10s ease-in-out;
                transition: all .10s ease-in-out;
            }

            .ui-tabs .ui-tabs-nav li:hover a {
                color: #75bfa1;
            }

            .ui-tabs .ui-tabs-nav li a:after {
                content: '/';
                display: inline;
                margin: 0 0 0 18px;
                color: #aaa !important;
            }

            .ui-tabs .ui-tabs-nav li:last-child a:after {
                display: none;
            }

            .ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
            .ui-tabs .ui-state-active.ui-tabs-active a {
                color: #444;
            }

                .ui-tabs .ui-tabs-nav li.ui-tabs-selected a:after,
                .ui-tabs .ui-state-active.ui-tabs-active a:after {
                    color: #444 !important;
                }

    .ui-tabs .ui-tabs-panel {
        background: #fff;
        padding: 12px 0;
    }

        .ui-tabs .ui-tabs-panel p {
            margin: 10px 0;
            line-height: 20px;
        }

    .ui-tabs .ui-tabs-hide {
        display: none;
    }
/*Jquery Tabs end*/

.product-specs-box,
.product-tags-box {
    margin: 0 0 20px;
}

.product-tags-list {
    font-size: 0;
}

    .product-tags-list li {
        display: inline-block;
        font-size: 13px; /*reset zeroing*/
    }

        .product-tags-list li.separator {
            margin: 0 5px 0 3px;
        }

    .product-tags-list a {
        display: inline-block;
        line-height: 24px;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

    .product-tags-list li a:hover {
        color: #75bfa1;
    }

.attributes {
    margin: 20px 0;
}

    .attributes dl {
        overflow: hidden;
    }

    .attributes dt {
        display: block;
        margin: 0 0 10px;
        white-space: nowrap;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .attributes dd {
        margin: 0 0 10px;
    }

    .attributes li {
        margin: 10px 0;
    }

    .attributes select {
        width: auto;
        max-width: 100%;
        height: 35px;
        color: #aaa;
    }

    .attributes .option-list li > * {
        display: inline;
        padding: 0 5px;
        vertical-align: middle;
    }

    .attributes .option-list.attribute-squares li > * {
        display: inline-block;
    }

    .attributes input[type='text'] {
        width: 100%;
        max-width: 100%;
    }

    .attributes textarea {
        min-height: 60px;
        width: 100%;
    }

    .attributes .date-pickers select {
        width: 33.3333%;
        border-left: none;
    }

        .attributes .date-pickers select:first-child {
            border-left: 1px solid #ddd;
        }

    .attributes .qq-upload-button {
        text-transform: uppercase;
        width: 140px;
        background: #75bfa1;
        padding: 10px 15px;
        margin: 0 auto;
    }

        .attributes .qq-upload-button:hover {
            opacity: .9;
        }

    .attributes .required {
        vertical-align: middle;
        line-height: 15px;
    }

.customer-enters-quantity {
    margin: 5px 0 0;
    text-transform: uppercase;
}

    .customer-enters-quantity input[type='text'] {
        width: 45px;
        text-align: center;
    }

.attributes .datepicker {
    width: 100%;
}

.ui-datepicker {
    width: 280px;
    background-color: #fff;
    text-align: center;
    margin-top: -1px;
}

.ui-datepicker-header {
    position: relative;
    height: 32px;
    background-color: #f3f3f3;
    color: #444;
}

    .ui-datepicker-header a {
        position: absolute;
        top: 0;
        z-index: 1;
        width: 40px;
        height: 32px;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

        .ui-datepicker-header a.ui-datepicker-prev {
            left: 0;
            background: url('../img/arrows-sprite.png') top -8px left -8px no-repeat;
        }

        .ui-datepicker-header a.ui-datepicker-next {
            right: 0;
            background: url('../img/arrows-sprite.png') top -8px right -8px no-repeat;
        }

.ui-datepicker-title {
    position: relative;
    z-index: 0;
    line-height: 32px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #ddd;
    border-bottom: none;
}

.ui-datepicker-calendar th {
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
    width: 14.285%;
    border: 1px solid #ddd;
}

    .ui-datepicker-calendar th span,
    .ui-datepicker-calendar td a {
        display: block;
        min-height: 32px;
        line-height: 32px;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .ui-datepicker-calendar td a:hover {
            color: #75bfa1;
        }

.ui-datepicker-calendar .ui-state-active {
    background: #f5f5f5;
}

.ui-datepicker-calendar .ui-datepicker-today {
    color: #75bfa1;
}

.attribute-squares {
    font-size: 0;
}

    .attribute-squares li {
        display: inline-block;
        margin: 0;
    }

.attribute-square-container {
    display: block;
    border: 2px solid transparent;
    position: relative;
    z-index: 0;
}

.attribute-squares label {
    overflow: hidden;
}

.attribute-square-container span {
    display: block !important;
    width: 26px !important;
    height: 26px !important;
    border: 2px solid #ddd !important;
    cursor: pointer;
}

.selected-value .attribute-square-container {
    border-color: #ddd;
}

    .selected-value .attribute-square-container span {
        border-color: transparent !important;
    }

.attribute-squares li input {
    position: relative;
    z-index: -1;
    margin: -30px 5px 0;
}

.spec-value .attribute-square {
    cursor: default;
}

.tooltip-container {
    position: absolute;
    width: 200px;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #ddd;
    text-align: center;
    visibility: hidden;
}

    .tooltip-container:before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -7px;
        width: 0;
        height: 0;
        border-bottom: 7px solid #ddd;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
    }

    .tooltip-container:after {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -6px;
        width: 0;
        height: 0;
        border-bottom: 6px solid #f3f3f3;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
    }

.attribute-squares li:hover .tooltip-container {
    visibility: visible;
    margin-left: -85px;
    margin-top: 5px;
    z-index: 999;
    padding: 0;
}

.tooltip-container .tooltip-header {
    background-color: #F6F6F6;
    height: 25px;
    padding-top: 5px;
    width: 198px;
    font-size: 11px;
    border-bottom: 1px #f3f3f3 solid;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.tooltip-container .tooltip-body {
    margin: 5px;
}

    .tooltip-container .tooltip-body img {
        border: 0px #FFF;
        width: 190px;
    }

.giftcard {
    margin: 0 0 20px;
    overflow: hidden;
    clear: both;
}

    .giftcard div {
        margin: 0 0 20px;
    }

    .giftcard label {
        display: block;
        margin: 0 0 10px;
        white-space: nowrap;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .giftcard input,
    .giftcard textarea {
        width: 350px;
        max-width: 100%;
    }

    .giftcard textarea {
        height: 150px;
    }


/********** ESTIMATE SHIPPING **********/


.estimate-shipping-popup {
    position: relative;
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 25px;
    transform: scale(0.8);
    transition: all 0.2s ease;
    opacity: 0;
}

    .estimate-shipping-popup strong {
        visibility: hidden;
    }

.mfp-ready .estimate-shipping-popup {
    transform: scale(1);
    opacity: 1;
}

.mfp-removing .estimate-shipping-popup {
    transform: scale(0.8);
    opacity: 0;
}

.estimate-shipping-popup-zoom-in.mfp-removing {
    transition: all 0.3s ease;
    opacity: 0;
}

.estimate-shipping-row {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    position: relative;
}

.estimate-shipping-row-item {
    flex: 0 1 100%;
}

.mfp-container .address-item {
    margin: 10px 0 0;
}

    .mfp-container .address-item + div {
        padding: 0 0 0 15px;
    }

.estimate-shipping-address-control {
    width: 100%;
}

.mfp-container .address-item .required {
    position: absolute;
    top: -5px;
    right: -3px;
}

.mfp-container .shipping-options {
    position: relative; /*preloader referrence*/
    margin: 10px 0 25px;
}

.mfp-container .shipping-header-item {
    align-self: flex-end;
    border: none !important;
    padding: 12px 5px !important;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mfp-container .shipping-options-body {
    display: table;
    table-layout: fixed;
    width: 100%;
    border: 1px solid #ddd;
    border-collapse: collapse;
}

.mfp-container .shipping-option {
    display: table-row;
    font-size: 13px;
    cursor: pointer;
}

    .mfp-container .shipping-option.active {
        font-weight: bold;
        color: #333;
    }

    .mfp-container .shipping-option > div {
        display: table-cell;
        border-top: 1px solid #ddd;
        padding: 12px 11px;
    }

.mfp-container .shipping-item {
    border-right: 1px solid #ddd;
    overflow: hidden;
    padding: 8px 0;
    overflow-wrap: break-word;
}

.estimate-shipping-row-item-radio {
    flex: 0 0 30px;
    width: 24px;
}

.estimate-shipping-radio {
    display: none;
}

    .estimate-shipping-radio + label {
        display: inline-block;
        position: relative;
        bottom: 1px;
        width: 14px;
        height: 14px;
        border: 1px solid #333;
        border-radius: 50%;
        font-size: 0;
    }

    .estimate-shipping-radio:checked + label:after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 6px;
        height: 6px;
        border-radius: 50px;
        background-color: #333;
    }

.apply-shipping-button-container {
    text-align: center;
}

.mfp-container .apply-shipping-button {
    border: 3px solid #75bfa1;
    padding: 9px 35px;
    color: #444;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .mfp-container .apply-shipping-button:hover {
        background: #75bfa1;
        color: #fff;
    }

.mfp-container .no-shipping-options {
    padding: 30px 15px;
    text-align: center;
}

.mfp-container .message-failure {
    margin: 10px 0 -5px;
}

@media all and (max-width: 600px) {

    .estimate-shipping-popup {
        padding: 25px 3%;
    }

    .mfp-container .shipping-address {
        flex-flow: column;
    }

    .mfp-container .address-item {
        width: 100%;
    }

        .mfp-container .address-item + div {
            padding: 0;
        }
}


/********** PRODUCT REVIEWS **********/



.product-reviews-page h1 a {
    color: #75bfa1;
    font-weight: normal;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .product-reviews-page h1 a:before,
    .product-reviews-page h1 a:after {
        content: "''";
    }

.product-reviews-page .title {
    margin: 0 0 25px;
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
}

.write-review {
    margin: 10px 0 50px;
}

    .write-review .form-fields {
        margin: 0 0 25px;
    }

.ui-tabs .form-fields {
}

.write-review .review-rating {
    margin-bottom: 20px;
    text-align: center;
}

    .write-review .review-rating label,
    .write-review .review-rating .name-description {
        display: block;
        vertical-align: middle;
        margin: 0 0 10px;
        white-space: nowrap;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

.review-rating ul {
    font-size: 0;
    vertical-align: middle;
}

.write-review .review-rating > div {
    display: inline-block;
    cursor: default;
    vertical-align: middle;
    font-size: 14px;
    text-transform: uppercase;
}

.write-review .rating-wrapper > div {
    display: inline-block;
    vertical-align: top;
}

.write-review .review-rating div.first {
    color: #c00;
}

.write-review .review-rating .rating-options {
    margin: 0 5px;
    padding-top: 2px;
}

    .write-review .review-rating .rating-options input {
        margin: 0 2px;
        vertical-align: baseline;
    }

.write-review .review-rating div.last {
    color: #690;
}

.write-review .review-rating + .review-rating {
    /*display: none;*/
}

.write-review .captcha-box {
    margin: 15px 0 0;
}

.write-review .button-1 {
    border: 3px solid var(--blue);
    padding: 4px 9px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--blue);
    margin-top: 30px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

.write-review .fieldset {
    margin: 0
}

.write-review .button-1:hover {
    color: #fff;
}

.product-reviews-page .result,
.product-reviews-page .validation-summary-errors {
    margin: 10px 0 25px;
    font-size: 17px;
    text-transform: uppercase;
}

.product-review-list {
    overflow: hidden;
}

.product-review-item {
    /*margin: 0 0 30px;*/
    font-size: 13px;
    letter-spacing: 1.5px;
}

.review-content {
    font-style: italic;
    font-size: 11px
}

.product-review-item .review-item-head,
.product-review-item .review-type-rating-ext {
    position: relative;
    padding: 15px 0;
}

.product-review-item .review-title {
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    position: relative;
    z-index: 1;
}

    .product-review-item .review-title strong,
    .product-review-item .review-title i {
        display: inline-block;
        box-shadow: 0 0 0 10px #fff;
        text-transform: uppercase;
        background: #fff;
    }

    .product-review-item .review-title:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #ddd;
        position: absolute;
        bottom: 4px;
        z-index: -1;
    }

/*.product-review-item .product-review-box {
        margin: 15px 0;
    }*/

.review-type-rating-ext {
    display: none; /*disabled*/
}

.product-review-item .review-text {
    margin: 0 0 25px;
    line-height: 1.5em;
}

.product-review-item .review-avatar {
    width: 120px;
    margin: 0 auto 20px;
    line-height: normal;
}

    .product-review-item .review-avatar a {
        display: block;
    }

    .product-review-item .review-avatar img {
        max-width: 100%;
    }

.product-review-item .review-info {
    margin: 0 0 15px;
}

.product-review-helpfulness {
    color: #999;
    font-size: 12px;
}

    .product-review-item .review-info a,
    .product-review-helpfulness .vote {
        display: inline-block;
        padding: 0 5px;
        font-weight: bold;
        text-decoration: underline;
        cursor: pointer;
    }

.review-info:first-child strong {
    display: none;
}

.product-review-item .review-info a {
    color: #75bfa1;
    text-transform: uppercase;
    text-decoration: none;
}

.product-review-helpfulness .question {
    margin: 0 5px 0 0;
}

.product-review-helpfulness .result {
    margin: 0 0 0 10px;
}

.product-review-item .reply {
    margin: 25px 0 0;
}

.product-review-item .reply-header {
    font-weight: bold;
    margin: 0 0 15px;
}

.product-review-item .reply-text {
    line-height: 1.5em;
}

/********** WISHLIST & COMPARE LIST **********/



.wishlist-page {
    margin: 70px 0;
}

    .wishlist-page .page-title {
        top: 50px;
        text-align: center;
        background: none;
    }

        .wishlist-page .page-title h1 {
            float: none;
        }

        .wishlist-page .page-title:before {
            display: none;
        }

.wishlist-content {
    margin: 0 0 20px;
}

    .wishlist-content .message-error {
        margin: 0 0 10px;
    }

    .wishlist-content .tax-shipping-info {
        text-align: center;
        padding: 20px 0 0;
    }

    .wishlist-content .buttons {
        font-size: 0;
        padding: 20px;
        text-align: center;
    }

    .wishlist-content .button-2 {
        min-width: 205px;
        border: 3px solid #ddd;
        padding: 9px 25px;
        margin: 0 5px 10px;
        font-size: 14px;
        color: #444;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: none;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .wishlist-content .button-2:hover {
            color: #fff;
            background-color: #75bfa1;
            border-color: #75bfa1;
            background-position: top left -36px;
        }
/*.wishlist-content .wishlist-add-to-cart-button{
    border-color: #75bfa1;
}*/
.net-cart {
    background-color: #B5DC79;
    min-width: 75px;
    margin-right: 0 !important;
    height: 71px;
    padding: 0px 0px !important;
}

    .net-cart .count {
        color: #444
    }

.free-delivery-cart {
    text-align: center;
    font-style: italic;
    padding-right: 6px;
    background: #085288;
    padding: 20px;
    font-size: 120%;
    color: #ffffff;
}

.free-delivery-product {
    float: right;
    color: var(--blue);
    font-style: italic;
    margin-top: 10px;
    font-weight: 600;
}

.wishlist-page .share-info a {
    display: block;
    margin: 0 0 5px;
    font-weight: bold;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .wishlist-page .share-info a:hover {
        text-decoration: underline;
        color: #75bfa1;
    }

.no-items-found,
.no-data,
.no-address,
.no-orders {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 10px 0 20px;
    text-align: center;
    position: relative;
}

.compare-products-page {
    overflow: hidden;
}

    .compare-products-page .clear-list {
        display: inline-block;
        margin: 5px 0 6px;
        padding: 10px;
        text-transform: uppercase;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .compare-products-page .clear-list:hover {
            color: #75bfa1;
        }

.compare-products-table {
    display: none;
}

.compare-products-table-mobile {
    margin: 0 0 70px;
}

.compare-products-page .button-2 {
    background: none;
    border: 2px solid #ddd;
    padding: 5px 10px;
    text-transform: uppercase;
    color: #888;
    font-size: 12px;
    letter-spacing: 1.2px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .compare-products-page .button-2:hover {
        color: #fff;
        background-color: #75bfa1;
        border-color: #75bfa1;
    }

.compare-products-page img {
    max-width: 100%;
}

.compare-products-page .attribute-square {
    cursor: default;
}


/*********** TOPICS ***********/



.topic-block {
    margin: 0 0 20px;
}

.home-page .topic-block {
    margin: 0 auto 40px;
}

    .home-page .topic-block p {
        font-size: 14px;
        letter-spacing: 1.5px;
        line-height: 22px;
    }

.green-btn {
    color: var(--blue);
    border: none;
    border-color: #B5DC79;
    padding: 10px 12px;
    background: #B5DC79;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.blue-btn {
    color: #fff;
    background-color: var(--blue);
    padding: 10px;
    text-transform: uppercase;
    border: none
}

.green-btn i {
    margin-left: 20px
}

#service-what-is-included {
    margin-top: 30px
}

.topic-block-title h2 {
    letter-spacing: 2px;
    font-size: 24px;
    text-transform: uppercase;
}

.topic-block-body {
    line-height: 20px;
}

.topic-block a,
.topic-page a {
    text-decoration: underline;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .topic-block a:hover,
    .topic-page a:hover {
        color: var(--light-green);
    }

.topic-page .page-body {
    line-height: 20px;
}

.topic-password {
    text-align: center;
}

.enter-password-title {
    margin: 0 0 10px;
    color: #c00;
    text-transform: uppercase;
}

.enter-password-form {
    display: inline-block;
    overflow: hidden;
}

    .enter-password-form input[type="password"] {
        float: left !important;
        width: 200px !important;
        height: 36px !important;
    }

    .enter-password-form input[type="submit"] {
        float: left !important;
        width: auto !important;
        height: 36px !important;
        border: none !important;
        background: none !important;
        padding: 0 15px !important;
        font-size: 16px !important;
        text-transform: uppercase;
        color: #888;
        font-size: 12px;
        letter-spacing: 1.2px;
        line-height: 32px;
        border: 2px solid #ddd !important;
        margin: 0 0 0 10px;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .enter-password-form input[type="submit"]:hover {
            color: #fff;
            border-color: #75bfa1 !important;
            background: #75bfa1 !important;
        }

.password-error {
    margin: 0 0 10px;
}


/*********** CONTACT & EMAIL A FRIEND ***********/

.contact-error {
    background-color: #EFEFEF
}

    .contact-error .page-body {
        padding: 60px;
    }

        .contact-error .page-body h1, .contact-error .page-body p {
            margin-bottom: 40px
        }

    .contact-error .form-fields {
        margin: 0 !important
    }

        .contact-error .form-fields label {
            color: #085288
        }

        .contact-error .form-fields select {
            background-color: #fff !important
        }

            .contact-error .form-fields select input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea, select {
                height: 36px;
                border: 1px solid #ddd;
                /*color: #085288;*/
                /*padding: 8px;*/
                vertical-align: middle;
                letter-spacing: 1px;
            }


.contact-page .form-fields,
.email-a-friend-page .form-fields,
.apply-vendor-page .form-fields {
    margin: 0 0 15px;
}

.contact-page .message-error,
.email-a-friend-page .message-error,
.apply-vendor-page .message-error {
    margin: 0 0 10px;
}

.contact-page .button-1,
.email-a-friend-page .button-1,
.apply-vendor-page .button-1 {
    border: 3px solid var(--blue);
    padding: 9px 35px;
    color: var(--blue);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

.contact-page .topic-block-body {
    text-align: left
}

.contact-page .page-body .form-fields {
    width: 100%
}

    .contact-page.page-body .form-fields .inputs input, .contact-page .page-body .form-fields .inputs textarea {
        width: 100% !important;
    }

.contact-page .page-body .buttons {
    float: right
}
/*.contact-page .button-1:hover,
    .email-a-friend-page .button-1:hover,
    .apply-vendor-page .button-1:hover {
        color: #fff;
        background: #75bfa1;
    }*/


.contact-page .page-body .result {
    color: var(--blue);
    font-size: 16px;
}

.email-a-friend-page .title {
    margin: 10px 0 25px;
}

    .email-a-friend-page .title h2 {
        font-size: 17px;
        text-transform: uppercase;
    }

    .email-a-friend-page .title a:hover {
        color: #75bfa1;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

.contact-page .d-flex {
    align-items: start;
}

.contact-page .item-box {
    min-height: 433px;
}


/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/



.registration-page .title {
    font-size: 17px;
    text-transform: uppercase;
    position: relative;
    margin: 10px 0 25px;
    z-index: 0;
}

/*.registration-page .title strong {
        display: inline-block;
        box-shadow: 0 0 0 10px #fff;
        text-transform: uppercase;
        background: #fff;
    }*/
.unreadNotifications {
    float: right;
    color: var(--pink);
    font-weight: 600;
    margin-top: 2px
}

.unreadNotificationsMobile {
    color: var(--pink);
    font-weight: 600;
    margin: 0;
    padding-left: 5px
}

.registration-page .date-of-birth select,
.account-page .date-of-birth select {
    width: 156.5px; /*birth-date selectors, always single line*/
    max-width: 33.333%;
    border-left: none;
}

    .registration-page .date-of-birth select:nth-of-type(1),
    .account-page .date-of-birth select:nth-of-type(1) {
        border-left: 1px solid #ddd;
    }

.registration-page select + select,
.account-page select + select {
    margin: 0;
}

.register {
    margin: 0 0 30px;
    background-color: var(--light-gray);
    padding: 30px;
    margin-right: 10px;
}

.gender span {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    width: 235px;
    max-width: 50%;
    border: 1px solid #ddd;
}

    .gender span:nth-of-type(1) {
        border-right: none;
    }

    .gender span > * {
        display: inline !important;
        vertical-align: middle;
        line-height: 36px;
    }

.gender label {
    padding: 0 0 0 5px;
}

.date-picker-wrapper {
    display: inline-block;
    max-width: 470px;
    width: 100%;
    vertical-align: middle;
}

#check-availability-button {
    font-size: 12px;
    margin: 20px 0;
    padding: 5px 15px;
    border: 3px solid #75bfa1;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    #check-availability-button:hover {
        color: #fff;
        background: #75bfa1;
    }

#username-availabilty {
    display: block;
    margin: 5px 0 0;
    font-size: 11px;
}

    #username-availabilty:empty {
        display: none;
    }

.email-to-revalidate {
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
}

.vat-status,
.vat-note,
.email-to-revalidate-note {
    display: block;
    margin: 5px 0 0;
    font-size: 12px; /*reset zeroing*/
}

.accept-consent {
    margin: 0 0 20px;
}

    .accept-consent > * {
        display: inline-block;
        line-height: 32px;
        vertical-align: middle;
    }

    .accept-consent a {
        font-weight: bold;
    }

.registration-page .button-1,
.registration-result-page .button-1,
.login-page .button-1,
.password-recovery-page .button-1,
.account-page .button-1,
.return-request-page .button-1 {
    border: 3px solid var(--blue);
    padding: 9px 35px;
    margin: 0 10px 10px 0;
    color: #444;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

/*.registration-page .button-1:hover,
    .registration-result-page .button-1:hover,
    .login-page .button-1:hover,
    .password-recovery-page .button-1:hover,
    .account-page .button-1:hover,
    .return-request-page .button-1:hover {
        color: #fff;
        background: #75bfa1;
    }*/

.registration-result-page .result {
    margin: 10px 0 20px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
}

.login-page .customer-blocks {
    margin: 0 0 30px;
    display: flex
}

.login-page .page-title {
    margin: 0
}

.login-page .title {
    margin: 10px 0 25px;
    font-size: 17px;
    text-transform: uppercase;
}

.login-page h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--blue);
}

.login-page .new-wrapper {
    margin: 0 0 30px;
    background-color: var(--light-gray);
    padding: 30px;
    margin-right: 10px
}

.login-box {
    background-color: var(--blue);
    color: #fff;
    padding: 30px
}

.login-page .returning-wrapper .green-btn {
    width: 100%
}

.login-page .returning-wrapper {
    margin-bottom: 30px;
    margin-left: 10px;
}

.login-page .reversed {
    text-align: left
}

.login-page input[type="button"] {
    min-width: 150px;
    margin-bottom: 5px
}

.login-page .email, .login-page .password {
    background-color: var(--blue);
    color: #fff !important
}

.login-page .inputs ::placeholder {
    color: #fff
}

.login-page .inputs {
    width: 100%
}

.login-page .form-fields {
    width: 100% !important
}

.login-page .text {
    margin: 0 0 25px;
    line-height: 1.5em;
}

.login-page .inputs.reversed * {
    margin: 5px 5px 0 0;
    font-size: 12px; /*reset zeroing*/
    text-transform: uppercase;
    display: inline-block;
    width: auto;
    vertical-align: top;
}

.login-page .inputs.reversed .forgot-password {
    margin: 5px 0 5px 25px;
    float: right
}

    .login-page .inputs.reversed .forgot-password a {
        margin: 0;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .login-page .inputs.reversed .forgot-password a:hover {
            color: var(--light-green);
        }


.login-page .topic-block-title:after {
    display: none;
}

.external-authentication {
    margin: 0 0 20px;
    overflow: hidden;
    text-align: center;
}

    .external-authentication fieldset {
        float: none !important;
    }

.password-recovery-page .tooltip {
    margin: 26px 0 20px;
}

.password-recovery-page .result {
    margin: 0 0 5px;
    font-weight: bold;
}

.account-page .title {
    font-size: 17px;
    text-transform: uppercase;
    position: relative;
    margin: 10px 0 25px;
    z-index: 0;
}

    /*.account-page .title:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #ddd;
        position: absolute;
        bottom: 4px;
        z-index: -1;
    }*/

    .account-page .title strong {
        display: inline-block;
        box-shadow: 0 0 0 10px #fff;
        text-transform: uppercase;
        background: #fff;
    }

.account-page .button-2,
.order-details-page .page-title a {
    border: none;
    background: none;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0 15px;
    padding: 0 0 0 15px;
    font-size: 12px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .account-page .button-2:hover,
    .order-details-page .page-title a:hover {
        color: #75bfa1;
    }

.account-page .edit-address-button,
.account-page .order-details-button,
.account-page .delete-address-button,
.account-page .return-items-button,
.order-details-page .page-title a {
    background: #444 url(../img/account-page-btns.png) no-repeat;
}

.account-page .edit-address-button,
.account-page .order-details-button {
    background-position: top -3px left 0;
}

.account-page .delete-address-button,
.account-page .delete-selected-biss-button {
    background-position: top -24px left 0;
}

.account-page .return-items-button {
    background-position: top -43px left 0;
}

.order-details-page .page-title .pdf-invoice-button {
    background-position: top -84px left 0;
}

.order-details-page .page-title .pdf-order-button {
    background-position: top -84px left 0;
}

.order-details-page .page-title .print-order-button {
    background-position: top -62px left 0;
}

.account-page .edit-address-button:hover,
.account-page .order-details-button:hover,
.account-page .delete-address-button:hover,
.account-page .return-items-button:hover,
.order-details-page .page-title a:hover {
    background-color: #75bfa1;
}

.order-details-buttons-wrapper {
    margin-top: 20px;
}

.account-page .edit-address {
    margin: 26px 0 20px;
}

.account-page .description {
    margin: 0 0 20px;
}

.account-page .delete-selected-biss-button {
    display: inline-block;
    border: 2px solid #ddd;
    padding: 6.5px 10px;
    color: #444;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: none;
    margin: 15px 0;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .account-page .delete-selected-biss-button:hover {
        color: #fff;
        background: #75bfa1;
        border-color: #75bfa1;
    }

.back-in-stock-subscription-list-page,
.forum-subscriptions-page,
.downloadable-products-page,
.change-password-page,
.avatar-page {
    margin-top: 26px;
}

.section.address-item,
.section.order-item {
    margin: 0 0 40px;
}

.address-list-page .info,
.order-list-page .info {
    margin: 0 0 40px;
    line-height: 20px;
}

.address-list-page section .address-item {
    padding: 25px;
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.1);
}

    .address-list-page section .address-item .buttons {
        position: absolute;
        top: 20px;
        right: 20px;
    }

.address-list-page .add-button {
    margin: 0 0 15px;
}

.return-request-file .qq-upload-button {
    text-transform: uppercase;
    width: 140px;
    font-size: 12px;
    background: #75bfa1;
    padding: 10px 15px;
}

.return-request-list-page li {
    margin: 0 0 5px;
}

.return-request-list-page a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .return-request-list-page a:hover {
        color: #75bfa1;
    }

.return-request-list-page .comments {
    margin: 15px 0 0;
}

.downloadable-products-page td {
    text-align: center;
}

    .downloadable-products-page td.product,
    .downloadable-products-page th.product,
    .back-in-stock-subscription-list-page th.product,
    .forum-subscriptions-page th.info {
        text-align: left;
        font-size: 12px !important;
    }

.reward-points-page .pager {
    margin: 15px 0;
}

.reward-points-overview,
.reward-points-history .title {
    margin: 0 0 15px;
}

.avatar-page .message-error {
    margin: 0 0 10px;
}

.avatar-page .fieldset {
    margin: 0 0 15px;
}

.avatar-page .image {
    margin: 0 0 10px;
}

    .avatar-page .image img {
        border: 1px solid #ddd;
    }

.avatar-page input[type="file"] {
    width: 250px;
    overflow: hidden;
}

.avatar-page input[type="submit"].upload-avatar-button {
    padding: 4px 10px;
    color: #fff;
    font-size: 12px;
    background: #75bfa1;
}

    .avatar-page input[type="submit"].upload-avatar-button:hover {
        opacity: .9;
    }

.avatar-page .info {
    margin: 0 0 20px;
}

.terms-of-agreement {
    padding: 0 0 30px 0;
}

.user-agreement-page {
    text-align: left;
}

    .user-agreement-page .button-1 {
        background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
        border: 3px solid #75bfa1;
        color: #444444;
        font-size: 14px;
        letter-spacing: 2px;
        margin: 0 10px 10px 0;
        padding: 9px 35px;
        text-transform: uppercase;
        transition: all 0.1s ease-in-out 0s;
        -webkit-transition: all 0.1s ease-in-out 0s;
        -ms-transition: all 0.1s ease-in-out 0s;
    }

.my-product-reviews-list-page .product-review-item .review-item-head {
    padding: 10px 0;
}

.my-product-reviews-list-page .product-review-item .review-title {
    font-size: 17px;
}

.gdpr-tools-page .form-fields {
    font-size: 13px;
    margin: 0 0 25px;
    line-height: 1.5em;
}

.check-gift-card-balance-page .captcha-box {
    text-align: left;
}

/********** SHOPPING CART & CHECKOUT **********/



.order-progress {
    margin: 50px 0;
    text-align: center;
}

    .order-progress ul {
        font-size: 0;
    }

    .order-progress li {
        display: inline-block;
        margin: 10px;
        width: 90px;
    }

    .order-progress a {
        display: block;
        font-size: 12px; /*reset zeroing*/
        text-transform: uppercase;
    }

        .order-progress a:before {
            content: '';
            display: block;
            width: 50px;
            height: 50px;
            background: url(../img/arrows-sprite.png) no-repeat right -4px top -3px;
            border: 3px solid #d3d3d3;
            margin: 0 auto 10px;
        }

    .order-progress li.active-step a {
        cursor: pointer;
    }

        .order-progress li.active-step a:before {
            border-color: var(--blue);
        }

    .order-progress li.inactive-step a {
        color: #888;
        cursor: default;
    }

.shopping-cart-page .buttons {
    margin: 0 0 70px;
}

.shopping-cart-page .page-title h1 {
    float: none;
    margin-bottom: 24px;
}

/*.shopping-cart-page .page-title {
    margin: 50px 0 20px;
}*/
.shopping-cart-page .page-title {
    padding-bottom: 0
}

    .shopping-cart-page .page-title:before {
        display: none;
    }

.shopping-cart-page .button-1,
.checkout-page .button-1,
.shopping-cart-page .button-2,
.checkout-page .button-2,
.estimate-shipping-button,
.order-details-page .button-1 {
    border: 1px solid var(--blue);
    padding: 9px 25px;
    margin: 0 5px 10px;
    font-size: 14px;
    color: var(--blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .shopping-cart-page .button-1:hover,
    .checkout-page .button-1:hover,
    .shopping-cart-page .button-2:hover,
    .checkout-page .button-2:hover,
    .estimate-shipping-button:hover {
        background-color: none;
        border-color: var(--blue);
        background-position: top left -36px;
    }

    .shopping-cart-page .button-1:disabled {
        opacity: .5;
        cursor: default;
    }

        .shopping-cart-page .button-1:disabled:hover {
            color: inherit;
            background: #fff;
        }

.remove-discount-button,
.remove-gift-card-button {
    width: 18px;
    height: 18px;
    margin: 0 0 0 5px;
    border: 1px solid #ccc;
    background: #fff url('../img/close.png') left 4px center no-repeat;
    cursor: pointer;
}

.shopping-cart-page .message-error {
    margin: 0 0 20px;
    font-size: 13px;
}

.shopping-cart-page .selected-checkout-attributes {
    display: none;
}

.selected-checkout-attributes {
    margin: 10px 0 20px;
    text-align: center;
}

.shopping-cart-page .common-buttons {
    font-size: 0;
    padding: 20px 0;
    text-align: center;
    float: right;
}

    .shopping-cart-page .common-buttons input,
    .shopping-cart-page .common-buttons a {
        display: inline-block;
        min-width: 260px;
        margin: 0 5px 5px;
    }

.shopping-cart-page .tax-shipping-info {
    padding: 10px 0 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
}

.checkout-attributes {
    margin: 20px 0 0;
    text-align: center;
}

    .checkout-attributes dt {
        margin: 15px 0 5px;
        font-weight: bold;
    }

    .checkout-attributes dd {
        overflow: hidden;
    }

    .checkout-attributes ul {
    }

    .checkout-attributes li {
        line-height: 24px;
    }

        .checkout-attributes li * {
            vertical-align: middle;
            text-transform: uppercase;
        }

    .checkout-attributes select {
        border-left: none;
    }

        .checkout-attributes select:first-child {
            border-left: 1px solid #ddd;
        }

    .checkout-attributes .attribute-squares li {
        line-height: initial;
    }

    .checkout-attributes .qq-upload-button {
        margin: 0 auto;
        text-transform: uppercase;
        width: 120px;
        background: #75bfa1;
    }

        .checkout-attributes .qq-upload-button:hover {
            opacity: .9;
        }


.checkout-data .payment-info {
    line-height: 1.5em;
}

    .checkout-data .payment-info td select,
    .checkout-data .payment-info td input {
        margin-bottom: 5px;
    }

    .checkout-data .payment-info td input {
        width: 300px !important;
    }

.checkout-page .order-completed {
    text-align: center;
}

.cart-footer:after {
    content: "";
    display: block;
    clear: both;
}

.cart-footer .totals {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
}

.cart-footer .total-info {
    margin: 0 0 15px;
}

.cart-total {
    width: 100%;
    border: 30px solid var(--blue);
    background: var(--blue);
    color: #fff;
    text-transform: uppercase
}

    .cart-total td {
        width: 50%;
        padding: 5px;
        font-size: 14px;
    }

.cart-total-left,
.cart-total-left-below {
    /*text-align: right;*/
}

.cart-total-right {
    text-align: right;
}

.cart-total strong {
    font-weight: 600;
}

.order-total-price * {
    font-size: 18px;
}

.order-total-price .cart-total-left {
    text-transform: uppercase;
}

.order-total-price .cart-total-right {
    /*color: #75bfa1;*/
}

.cart-total .order-total {
    font-size: 16px;
    font-weight: bold;
}

.terms-of-service {
    margin: 0 0 20px;
    float: right
}

    .terms-of-service label {
        cursor: pointer;
        color: #666;
    }

    .terms-of-service span {
        font-weight: bold;
        cursor: pointer;
        text-decoration: underline;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .terms-of-service span:hover {
            color: #75bfa1;
        }

.cart-footer .button-1 {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff
}

.cart-collaterals {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
}

    .cart-collaterals > div {
        margin: 0 0 30px;
    }

    .cart-collaterals .title {
        margin: 0 0 15px;
        font-size: 18px;
        position: relative;
    }

        .cart-collaterals .title:after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            background: #ddd;
            position: absolute;
            bottom: 4px;
            z-index: -1;
        }

        .cart-collaterals .title strong {
            display: inline-block;
            box-shadow: 0 0 0 10px #fff;
            text-transform: uppercase;
            background: #fff;
        }

    .cart-collaterals .hint {
        margin: 0 0 15px;
        color: #666;
        font-size: 13px;
    }

    .cart-collaterals .deals > div {
        margin: 0 0 43px;
        position: relative;
    }

    .cart-collaterals .coupon-code {
        overflow: hidden;
        font-size: 0;
    }

    .cart-collaterals .deals .hint {
        min-height: 41px;
    }

    .cart-collaterals .coupon-code input[type="text"] {
        float: left;
        width: 45%;
        height: 36px; /*safari padding fix*/
        margin: 0 -1px 0 0;
    }

    .cart-collaterals .coupon-code input[type="submit"] {
        float: left;
        width: 55%;
        height: 36px; /*safari padding fix*/
        margin: 0;
        padding: 3px;
        font-size: 12px !important;
        color: #fff;
        background-color: var(--blue)
    }

tr.checkout-button-row {
    display: none;
}

.shopping-cart-page tr.checkout-button-row {
    display: table-row;
}

.shopping-cart-page td.checkout-button-cell {
    width: 100%;
    vertical-align: bottom;
    padding: 0;
    padding: 20px 0 0;
}

    .shopping-cart-page td.checkout-button-cell button {
        margin: 0;
        float: right
    }

.cart-collaterals .message {
    margin: 5px 0 0;
    color: #c00;
}

.cart-collaterals .current-code {
    color: #75bfa1;
}

.cart-collaterals .shipping-results {
    margin: 20px 0 0;
}

    .cart-collaterals .shipping-results li {
        margin: 15px 0;
    }

    .cart-collaterals .shipping-results strong {
        text-transform: uppercase;
        display: block;
    }

.checkout-page .button-1 {
    margin: 0;
}

.checkout-page input[type='submit'] {
    border-color: var(--blue)
}

.checkout-page .section {
    margin: 30px 0;
}

    .checkout-page .section .title {
        font-size: 18px;
        margin: 20px 0;
        font-weight: bold;
    }

.checkout-page .order-summary-body {
    margin: 70px 0;
}

.checkout-page .section .selector {
    margin: 0 0 10px;
}

.checkout-page .address-grid {
    overflow: hidden;
}

.checkout-page .address-item {
    margin: 0 0 20px;
}

    .checkout-page .address-item .select-button {
        margin: 20px 0 0;
    }

    .checkout-page .address-item li {
        padding: 2px 0;
        margin: 0 0 5px;
    }

    .checkout-page .address-item .custom-attributes-view {
        line-height: 2em;
    }

    .checkout-page .address-item li.name {
        margin: 0 0 10px;
        text-transform: uppercase;
    }

    .checkout-page .address-item li.country {
        margin: 5px 0 0;
        font-size: 16px;
    }

.checkout-page .edit-address {
    margin: 0 0 20px;
}

    .checkout-page .edit-address .custom-attributes .option-list li > * {
        width: auto;
        display: inline-block;
        margin: 0 6px 6px 0;
    }

.checkout-page .select-pickup-point {
    margin: 0 0 20px;
}

.checkout-page .pickup-points label {
    display: block;
    margin: 0 0 10px;
}

.checkout-page .pickup-points-map {
    height: 300px;
}

.shipping-method .method-list,
.payment-method .method-list {
    margin: 0 0 20px;
}

    .shipping-method .method-list li,
    .payment-method .method-list li {
        margin: 0 0 20px;
    }

        .shipping-method .method-list li label,
        .payment-method .method-list li label {
            font-weight: bold;
            text-transform: uppercase;
        }

.shipping-method .method-description {
    margin: 5px 0 0;
}

.use-reward-points {
    margin: 0 0 15px;
}

.payment-info .info {
    margin: 0 0 20px;
}

.method-name .payment-method label {
    display: block;
}

.payment-info .info td {
    display: block;
}

.payment-info .info td {
    text-transform: uppercase;
}

.payment-info .info tr:only-child td {
    text-transform: none;
}

.min-order-warning {
    display: block;
    text-align: center;
}

.confirm-order .buttons {
    text-align: center;
}

.confirm-order .button-1 {
    margin: 0 0 20px;
    font-size: 18px;
    border-color: #75bfa1;
}

.order-review-data, .order-details-area {
    padding: 32px;
    background: #eee;
}

    .order-review-data ul,
    .shipment-overview ul,
    .order-details-area ul {
        margin: 0 0 30px;
    }

    /*.order-review-data li,
.shipment-overview li {
    padding: 2px 0;
}*/

    .order-review-data .title,
    .shipment-overview .title,
    .order-details-area .title,
    .order-number strong {
        margin: 20px 0;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #085288;
    }

        .order-review-data .title:first-child,
        .shipment-overview .title:first-child,
        .order-details-area .title:first-child {
            margin-top: 0;
        }

.order-completed .details {
    margin: 0 0 20px;
}

    .order-completed .details a {
        display: block;
        margin: 5px 0 0;
        font-weight: bold;
    }

.order-completed .button-2 {
    margin: 0;
}


#shipping-new-address-form, #billing-new-address-form {
    padding: 15px;
    background-color: #f1f1f1;
}


.opc-page .page-title h1 {
    float: none;
}

.opc-page .page-title:before {
    display: none;
}

.opc .step-title {
    margin-bottom: 1px;
    overflow: hidden;
    padding: 10px;
    text-transform: uppercase;
    position: relative;
}

    .opc .step-title:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #ddd;
        position: absolute;
        bottom: 14px;
        z-index: -1;
    }

    .opc .step-title span,
    .opc .step-title h2 {
        box-shadow: 0 0 0 10px #fff;
        display: inline-block;
        background: #fff;
    }

.opc .select-billing-address select,
.opc .select-shipping-address select {
    width: 470px;
    max-width: 100%;
}

.opc .allow .step-title,
.opc .allow .step-title * {
    cursor: pointer;
}

.opc .active .step-title {
}

    .opc .active .step-title * {
    }

.opc .step-title * {
    float: left;
    font-size: 16px;
}

.opc .step-title span {
    margin: 0 10px 0 0;
}


.opc .section {
    margin: 0 0 15px;
}

    .opc .section > label {
        display: block;
        margin: 0 0 10px;
    }

.opc input[type="text"],
.opc select {
    max-width: 100%;
}

.opc .buttons {
    margin-bottom: 0;
}

.opc .back-link {
    margin: 0 0 10px;
    padding-right: 10px;
}

    .opc .back-link small {
        display: none;
    }

    .opc .back-link a {
        font-weight: bold;
        text-transform: uppercase;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .opc .back-link a:hover {
            color: #75bfa1;
        }

.opc .please-wait {
    display: block;
    margin: 10px 0 0;
}

.opc .section.confirm-order {
}

.opc .terms-of-service {
    text-align: center;
}

.opc .order-summary-body {
    margin: 70px 0 0;
}

#checkout-step-confirm-order .buttons {
    text-align: right;
}

    #checkout-step-confirm-order .buttons .button-1 {
        border-color: #75bfa1;
    }

.order-details-page .order-overview {
    margin: 0 0 30px;
    line-height: 20px;
}

.order-details-page li {
    /*margin: 5px 0;*/
}

.order-details-area {
    margin: 0 0 20px;
    overflow: hidden;
}

    .order-details-area td {
        float: left;
        width: 100%;
        margin: 0 0 20px;
        vertical-align: top;
    }

.order-details-page .data-table a:hover {
    color: #75bfa1;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

.order-details-page td.price,
.order-details-page td.quantity,
.order-details-page td.total {
    font-size: 14px;
}

.order-details-page td.price {
    font-weight: bold;
}

.order-details-page td.total,
.return-request-page td.price {
    color: #75bfa1;
    font-weight: bold;
}

.order-details-page .tax-shipping-info {
    text-align: center;
    margin: 10px 0;
}

.order-details-page .repost .re-order-button {
    height: 35px;
    background: none;
    border: 2px solid #ddd;
    padding: 0 10px;
    text-transform: uppercase;
    color: #888;
    font-size: 12px;
    letter-spacing: 1.2px;
    margin: 10px 0 15px;
}

.order-details-page .actions {
    margin: 20px 0 0;
    overflow: hidden;
    font-size: 0;
}

    /*.order-details-page .actions input {
        margin: 0 0 0 10px;
        border: 3px solid #ddd;
        padding: 9px 25px;
        font-size: 14px;
        color: #444;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: none;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }*/

    .order-details-page .actions input:hover {
        color: #fff;
        background-color: #75bfa1;
        border-color: #75bfa1;
        background-position: top left -36px;
    }

.order-details-page .cart-total {
    width: 100%;
    margin: 0 auto 30px;
    border: 30px solid var(--blue);
    background: var(--blue);
}

.order-details-page .order-total-price * {
    font-size: 16px;
}

.shipment-details-page .shipment-overview {
    overflow: hidden;
    margin: 0 0 20px;
}

    .shipment-details-page .shipment-overview > ul {
        text-align: left;
    }

        .shipment-details-page .shipment-overview > ul:first-child {
            margin: 0 0 20px;
        }

.shipment-details-page .section {
    width: 100%;
}

.forum-subscriptions-page .buttons {
    margin: 30px 0;
}


/*********** SEARCH & SITEMAP ***********/



.search-input input + label {
    display: inline;
    margin: 0 0 0 2px;
}

.search-input .inputs.reversed {
    text-align: left;
}

.basic-search {
    margin: 0 0 20px;
}

    .basic-search input[type="text"] {
        width: 470px;
        max-width: 100%;
        letter-spacing: 1.5px;
    }

.advanced-search {
    margin: 0 0 20px;
}

    .advanced-search .price-range {
        display: inline-block;
        overflow: hidden;
    }

        .advanced-search .price-range input {
            width: 117px;
            border-left: none;
            float: left;
        }

            .advanced-search .price-range input:first-child {
                border-left: 1px solid #ddd;
            }

.search-input .button-1 {
    border: 3px solid #75bfa1;
    padding: 9px 25px;
    font-size: 14px;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .search-input .button-1:hover {
        color: #fff;
        background-color: #75bfa1;
    }

.search-input .warning,
.search-results .result {
    display: block;
    margin: 10px 0 0;
    font-weight: normal;
    color: #c00;
}

.search-results {
    margin: 30px 0 0;
}

.sitemap-page .description {
    margin: 0 0 35px;
}

.sitemap-page .entity {
    margin: 0 0 35px;
}

.sitemap-page .entity-title {
    margin: 0 0 15px;
    position: relative;
}

    .sitemap-page .entity-title:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #ddd;
        position: absolute;
        bottom: 4px;
        z-index: -1;
    }

    .sitemap-page .entity-title h2 {
        display: inline-block;
        box-shadow: 0 0 0 10px #fff;
        text-transform: uppercase;
        background: #fff;
    }

.sitemap-page .entity-body {
    line-height: 24px;
}

.sitemap-page li {
    display: inline-block;
}

.sitemap-page a {
    display: block;
    line-height: 35px;
    text-transform: uppercase;
    margin-right: 25px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .sitemap-page a:hover {
        color: #75bfa1;
    }

    .sitemap-page a:empty {
        display: none;
    }


/***********SERVICE***************/
.banner-image {
    height: 300px;
    background-size: cover;
    background-position: center center;
}

.service-page .page-description {
    font-size: 14px;
    margin-top: 15px
}

.service-page .breadcrumb {
    position: relative
}

    .service-page .breadcrumb li {
        font-size: 12px;
        padding: 10px 0px;
        display: inline-block;
    }

.category-page h1, .service-page h1, .topic-block-title h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: var(--blue);
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-top: 10px;
}

@media all and (max-width: 765px) {

    .category-page h1, .service-page h1, .topic-block-title h1 {
        font-size: 30px;
        line-height: 38px;
        font-weight: 600;
        margin-top: 10px;
    }

    .product-grid, .product-list {
        margin: 0 auto;
        /*        padding-top: 15px;*/
    }
}

.service-page .net-left-menu {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase
}

.service-page .blue-box, .contact-page .blue-box {
    text-align: center;
    width: 23.6%;
    background-color: var(--blue);
    color: #fff;
    margin: 9px 9px 9px 0;
    float: left;
    padding: 40px 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-page .blue-box h5 {
        font-weight: 600
    }
/********** BLOG & NEWS **********/
.year strong {
    display: block;
    font-size: 15px;
    cursor: default;
}

.blog-page .post,
.news-items .news-item {
    position: relative;
    margin: 0 0 50px;
}

.post-title,
.news-title {
    display: inline-block;
    margin: 0 0 15px;
    font-size: 18px;
    color: #555;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

.blog-page .post-title,
.news-list-page .news-title {
    box-shadow: 0 0 0 10px #fff;
    background: #fff;
    color: #444;
}

    .blog-page .post-title:hover,
    .news-list-page .news-title:hover {
        color: #555;
    }

.post-date,
.news-date {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: var(--pink);
    margin-bottom: 15px;
}

.post-head,
.news-head {
    position: relative;
}

.blog-page .post-head:after,
.news-list-page .news-head:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 16px;
    z-index: -1;
}

.blog-page .post-head a,
.news-list-page .news-head a {
    display: inline-block;
    font-size: 17px;
    box-shadow: 0 0 0 10px #fff;
    text-transform: uppercase;
    background: #fff;
}

.blogpost-page .post-date,
.news-item-page .news-date {
    margin-top: 26px;
}

.blogpost-page a, .topic-block-body a, form-fields a {
    color: var(--blue);
}

.blogpost-page .blog-preamble p {
    font-weight: bold;
    font-size: 110%;
}

.post-body,
.news-body {
    margin: 0 0 20px;
    font-size: 13px;
    color: #666;
    letter-spacing: 1.5px;
    line-height: 1.5em;
}

    .post-body h1,
    .news-body h1,
    .post-body h2,
    .news-body h2,
    .post-body h3,
    .news-body h3 {
        line-height: initial;
    }

.blog-page .tags,
.blogpost-page .tags {
    margin: 0 0 20px;
    font-size: 14px;
    overflow: hidden;
}

    .blog-page .tags label,
    .blogpost-page .tags label {
        display: block;
        text-transform: uppercase;
        font-weight: bold;
        line-height: 35px;
    }

    .blog-page .tags ul,
    .blogpost-page .tags ul {
        font-size: 0;
    }

    .blog-page .tags li,
    .blogpost-page .tags li {
        font-size: 0;
        display: inline-block;
        margin: 0 7px 7px 0;
    }

        .blog-page .tags li.separator,
        .blogpost-page .tags li.separator {
            display: none;
        }

    .blog-page .tags a,
    .blogpost-page .tags a {
        display: block;
        font-size: 13px;
        text-transform: capitalize;
        color: #888;
        padding: 9px;
        border: 1px solid #ddd;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .blog-page .tags a:hover,
        .blogpost-page .tags a:hover {
            color: #fff;
            background: #75bfa1;
            border-color: #75bfa1;
        }

.blog-posts .buttons a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

.img-caption {
    font-style: italic;
    font-size: 11px;
    margin-top: 0;
}

.img-right {
    float: right;
    padding-left: 20px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.img-two {
    margin-top: 40px;
    margin-bottom: 20px;
}

    .img-two img {
        width: 100%;
        max-width: 400px;
        margin-bottom: 10px;
    }

.img-three {
    margin: 20px 0px;
}

    .img-three img {
        width: 100%;
        max-width: 280px;
        margin-bottom: 10px;
    }

.content-slider {
    background-color: white;
}

    .content-slider .content-box {
        text-align: center;
        width: 60%;
        margin: auto;
    }

    .content-slider > div .inner {
        min-height: 100px;
        padding: 2vw;
    }

    .content-slider h1 {
        color: #fff;
        line-height: 60px;
        font-size: 48px;
        font-weight: 600;
        margin-top: 150px;
        text-align: center;
    }

    .content-slider p {
        color: #fff;
        font-size: 14px;
        font-weight: 300;
        text-align: center;
    }

    .content-slider .btn-content-slider {
        padding: 10px 12px;
        background: #b5dc79;
        color: #085288;
        border: none;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 34px;
        max-width: 80%
    }

    .content-slider .green-button {
        padding: 10px 12px;
        background: #b5dc79;
        color: #085288;
        border: none;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 34px;
        max-width: 80%
    }

    .content-slider .white-button {
        padding: 10px 12px;
        background: none;
        color: #fff;
        border: none;
        font-size: 14px;
        border: 3px solid #fff;
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 34px;
        max-width: 80%
    }



    .content-slider .slick-dots {
        position: absolute;
        bottom: 60px;
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        color: #b5dc79;
        font-size: 16px;
        font-weight: 600;
    }

        .content-slider .slick-dots .slick-active {
            text-decoration: underline;
            color: #fff
        }

    .content-slider .fa-angle-right {
        margin-left: 10px
    }

    .content-slider .slick-dots {
        display: flex;
        justify-content: space-evenly
    }

        .content-slider .slick-dots li {
            width: auto;
        }

    .content-slider .slick-dots {
        bottom: 0;
        justify-content: center !important
    }

    .content-slider .slick-dotted.slick-slider {
        margin-left: 0 !important
    }

    .content-slider .slick-dots li {
        margin-bottom: 15px
    }

        .content-slider .slick-dots li button:before {
            color: white !important;
            opacity: 0.6 !important;
            font-size: 60px !important;
        }

        .content-slider .slick-dots li.slick-active button:before {
            opacity: 1 !important;
            color: var(--light-green) !important;
        }

@media all and (max-width: 768px) {

    .content-slider h1 {
        font-size: 32px;
        margin-top: 135px;
        line-height: 38px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .content-slider .content-box {
        width: 100%
    }

    .content-slider p {
        width: 90%;
        margin: auto;
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .content-slider .slick-dots li button {
    }

    .content-slider .slick-dots li {
        margin-bottom: 15px
    }

        .content-slider .slick-dots li button:before {
            color: white !important;
            opacity: 0.6 !important;
            font-size: 60px !important;
        }

        .content-slider .slick-dots li.slick-active button:before {
            opacity: 1 !important;
            color: var(--light-green) !important;
        }


    .img-right {
        float: center;
        padding-left: 0px;
    }

    .img-three img {
        width: 100%;
        max-width: 400px;
    }
}

.blog-posts .buttons a:hover {
    color: #75bfa1;
}

.new-comment {
    margin: 0 0 50px;
}

    .new-comment .title {
        margin: 50px 0 20px;
        font-size: 18px;
    }

    .new-comment .notifications {
        margin: 0 0 10px;
    }

    .new-comment .result {
        color: #75bfa1;
    }

    .new-comment .form-fields {
        margin: 0 0 15px;
    }

    .new-comment .inputs label {
        display: none;
    }

    .new-comment textarea {
        width: 100%;
    }

    .new-comment .button-1 {
        border: 3px solid var(--blue);
        padding: 9px 35px;
        color: #444;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: none;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .new-comment .button-1:hover {
            color: #fff;
            background: var(--blue);
        }

.news-list-page,
.blog-page {
    margin-top: 10px;
}

    .news-list-page .page-title {
        margin: 0 0 50px;
    }

@media all and (max-width: 765px) {
    .page-title {
        margin: 0 0 0px;
    }
}

.news-list-page .news-details {
    font-size: 13px;
}

.comment-list {
}

    .comment-list .title {
        margin: 0 0 30px;
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
    }

.blog-comment,
.news-comment {
    margin: 0 0 30px;
}

    .blog-comment:after,
    .news-comment:after {
        content: "";
        display: block;
        clear: both;
    }

.comment-info {
    width: 120px;
    margin: 0 auto 10px;
}

    .comment-info .username {
        text-align: center;
        display: block;
        padding: 5px;
        text-transform: uppercase;
    }

    .comment-info .avatar {
        position: relative;
        width: 120px;
        height: 120px;
        overflow: hidden;
    }

        .comment-info .avatar img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            max-width: 100%;
            max-height: 100%;
            margin: auto;
        }

.comment-content {
}

.comment-time {
    margin: 0 0 10px;
    font-weight: bold;
    color: var(--pink);
}

.comment-body {
    line-height: 20px;
}

.news-list-page .news-details {
    color: #666;
    letter-spacing: 1.5px;
    line-height: 1.5em;
}

.news-list-page .news-items .buttons {
    margin: 30px 0 0;
}

.news-list-page .news-items .read-more {
    display: inline-block;
    border: 3px solid #ddd;
    padding: 6px 25px;
    color: #444;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
}

    .news-list-page .news-items .read-more:hover {
        color: #fff;
        border-color: #75bfa1;
        background: #75bfa1;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

.news-item-page .inputs:first-child label {
    display: block;
}

.news-list-homepage {
    margin: 0 0 70px;
    background: url(../img/news-background.png) no-repeat center;
    background-size: cover; /*to be removed after paralax effect*/
    padding: 35px 0;
}

    .news-list-homepage .title {
        margin: 0 0 35px;
        font-size: 18px;
        text-align: center;
        color: #fff;
    }

    .news-list-homepage .news-items {
        margin: 0 auto;
        overflow: hidden;
    }

        .news-list-homepage .news-items .news-item {
            margin: 0 0 10px;
            padding: 20px;
            background: rgba(255,255,255, .8);
            text-align: left;
        }

        .news-list-homepage .news-items .news-title {
            font-size: 16px;
            color: #444;
            text-transform: uppercase;
            font-weight: bold;
            margin: 0 0 10px;
        }

        .news-list-homepage .news-items .news-date {
            font-size: 13px;
            font-weight: bold;
            color: #75bfa1;
            font-style: normal;
        }

        .news-list-homepage .news-items .news-head {
            text-align: left;
            margin: 0 0 10px;
        }

        .news-list-homepage .news-items .news-body {
            font-size: 13px;
            color: #666;
            line-height: 16px;
            max-height: 50px;
            overflow: hidden;
            margin: 0 0 15px;
        }

        .news-list-homepage .news-items .buttons {
            margin: 0;
        }

        .news-list-homepage .news-items .read-more {
            color: #75bfa1;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: bold;
            -webkit-transition: all .10s ease-in-out;
            -moz-transition: all .10s ease-in-out;
            transition: all .10s ease-in-out;
        }

            .news-list-homepage .news-items .read-more:hover {
                text-decoration: underline;
            }

    .news-list-homepage .view-all {
        font-size: 14px;
        color: #fff;
        clear: both;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .news-list-homepage .view-all a:hover {
            opacity: 1;
        }

    .news-list-homepage .title strong {
        font-weight: normal;
        font-size: 26px;
        text-transform: uppercase;
    }

    .news-list-homepage .view-all {
    }

        .news-list-homepage .view-all a {
            display: inline-block;
            border: solid 2px #fff;
            opacity: 0.8;
            padding: 7px 15px;
            text-transform: uppercase;
            margin-top: 18px;
        }


/********** FORUM & PROFILE **********/



.forums-main-page .topic-block-title {
    margin: 0;
}

.forums-header {
    overflow: hidden;
    margin: 0 0 20px;
}

.forums-main-header:after {
    content: "";
    display: block;
    clear: both;
}

.current-time {
    line-height: 36px;
    font-size: 13px;
    font-weight: bold;
    color: #75bfa1;
}

.search-box.forum-search-box {
    display: block !important;
    padding: 0 !important;
    margin: 0 auto 20px;
    position: relative !important;
}

    .search-box.forum-search-box .basic {
        overflow: hidden;
    }

    .search-box.forum-search-box .advanced {
        position: absolute;
        bottom: -20px;
        left: 0;
        right: 0;
    }

        .search-box.forum-search-box .advanced a {
            font-size: 14px;
            color: #75bfa1;
        }

.forums-table-section {
    margin: 0 0 70px;
}

    .forums-table-section:last-child {
        margin: 0 0 150px;
    }

    .forums-table-section a {
        vertical-align: middle;
        font-weight: bold;
    }

.forums-table-section-title {
    margin: 0 0 15px;
    overflow: hidden;
}

    .forums-table-section-title > a,
    .forums-table-section-title strong {
        float: left;
        font-weight: bold;
        font-size: 18px !important;
        text-transform: uppercase;
    }

    .forums-table-section-title span {
        float: right;
    }

.forums-table-section .view-all {
    line-height: 24px;
    color: #75bfa1;
}

.forums-table-section-title .link-rss {
    margin: 0 0 0 10px;
}

.forums-table-section .latest-post {
    min-width: 200px;
}

.forums-table-section .image {
    min-width: 100px;
}

    .forums-table-section .image div {
        width: 30px;
        height: 24px;
        margin: auto;
        background: url('../img/folder1.png') center no-repeat;
    }

        .forums-table-section .image div.announcement {
            background: url('../img/folder2.png') center no-repeat;
        }

        .forums-table-section .image div.sticky {
            background: url('../img/folder3.png') center no-repeat;
        }

/* breadcrumb, pagers, search, forum-page */


.forum-breadcrumb {
}

.pager.upper {
    display: none;
}

.forum-search-page .search-input {
    width: 470px;
    margin: auto;
    max-width: 100%;
}

.forum-search-page .basic-search div:first-child {
    display: inline-block;
    margin: 0 0 10px;
    overflow: hidden;
    max-width: 100%;
}

.forum-search-page input[type='text'].forum-search-text {
    width: 470px !important;
}

.forum-search-page .advanced-search {
    margin: 15px 0 0;
}

.forum-search-page .search-error {
    padding: 15px;
    text-align: center;
    color: #c00;
}

.forum-search-page .search-results {
    margin: 0 0 15px;
}

.forum-search-page .buttons {
    text-align: center;
}

.forum-page .forum-top {
    margin: 0 0 20px;
}

.forum-page .forum-info {
    position: relative;
    margin: 20px 0;
}

    .forum-page .forum-info:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #ddd;
        position: absolute;
        top: 17px;
        z-index: -1;
    }

.forum-page .forum-name h1,
.forum-topic-page .topic-name h1 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 0 10px #fff;
    text-transform: uppercase;
    background: #fff;
}

.forum-description {
    margin: 10px 0 0;
}

.forum-page .link-rss {
    position: absolute;
    top: 0;
    right: 0;
    margin: -3px 0 0;
}

.forum-page .actions {
    margin: 0 0 20px;
}

    .forum-page .actions a {
        margin: 0 10px 0 0;
        padding: 2px 0 2px 23px;
        text-transform: uppercase;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

        .forum-page .actions a:hover {
            color: #75bfa1;
        }

.forum-page .new-topic {
    background: url('../img/forum_icon6.png') left 3px center no-repeat;
}

.forum-page .watch-forum {
    background: url('../img/forum_icon5.png') left center no-repeat;
}

/* topic page & profile page */


.forum-breadcrumb li:last-child a {
    color: #75bfa1;
}

.forum-topic-page {
    margin-bottom: 30px;
}

    .forum-topic-page .topic-name {
        margin: 0 0 20px;
        font-size: 18px;
        text-transform: uppercase;
        position: relative;
    }

        .forum-topic-page .topic-name:after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            background: #ddd;
            position: absolute;
            bottom: 4px;
            z-index: -1;
        }

        .forum-topic-page .topic-name span {
            display: inline-block;
            box-shadow: 0 0 0 10px #fff;
            text-transform: uppercase;
            background: #fff;
        }

    .forum-topic-page .topic-actions.upper {
        margin: 0 0 20px;
        overflow: hidden;
    }

    .forum-topic-page .topic-actions .actions a {
        display: inline-block;
        margin: 0 15px 10px 0;
        padding: 2px 0 2px 25px;
        text-transform: uppercase;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

        .forum-topic-page .topic-actions .actions a:hover {
            color: #75bfa1;
        }

    .forum-topic-page .reply-topic-button,
    .topic-footer .reply-topic-button {
        background: url('../img/forum_icon4.png') left center no-repeat;
    }

    .forum-topic-page .watch-topic-button,
    .topic-footer .watch-topic-button {
        background: url('../img/forum_icon5.png') left 3px center no-repeat;
    }

    .forum-topic-page .edit-topic-button,
    .forum-topic-page .edit-post-button {
        background: url('../img/forum_icon1.png') left 5px center no-repeat;
    }

    .forum-topic-page .delete-topic-button,
    .forum-topic-page .delete-post-button {
        background: url('../img/forum_icon2.png') left 5px center no-repeat;
    }

    .forum-topic-page .move-topic-button {
        background: url('../img/forum_icon3.png') left 5px center no-repeat;
    }

.topic-post {
    margin: 0 0 35px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    padding: 5px 0 35px;
}

    .topic-post .post-info,
    .profile-info-box .user-details {
        max-width: 300px;
        margin: 0 auto;
    }

    .topic-post .manage-post {
        overflow: hidden;
    }

    .topic-post .post-actions .manage-post a {
        text-transform: uppercase;
        line-height: 20px;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
        margin: 0 0 0 10px;
        padding: 5px 0 5px 25px;
        text-decoration: none;
    }

        .topic-post .post-actions .manage-post a:first-child {
            margin-left: 0;
        }

    .topic-post .edit-post-link-button,
    .topic-post .delete-post-link-button {
        background-position: 5px center;
    }

    .topic-post .user-info,
    .profile-info-box .user-details {
        padding-right: 15px; /*align control*/
    }

        .topic-post .user-info li {
            margin: 0 0 5px;
        }

        .topic-post .user-info label {
            text-transform: uppercase;
            vertical-align: middle;
            display: inline-block;
        }

        .topic-post .user-info span {
            vertical-align: middle;
            display: inline-block;
        }

    .topic-post .username {
        display: inline-block;
        background: #f1f1f1;
        padding: 7.5px 10px;
        display: block;
        margin: 0 0 15px;
        font-weight: bold;
        text-transform: uppercase;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

        .topic-post .username:hover {
            color: #75bfa1;
        }

    .topic-post .avatar,
    .profile-info-box .avatar {
        position: relative;
        height: 200px; /*adjust as you like*/
        margin: 0 0 10px;
        border: 1px solid #ddd;
        overflow: hidden;
    }

        .topic-post .avatar img,
        .profile-info-box .avatar img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            max-width: 100%;
            max-height: 100%;
            margin: auto;
        }

    .topic-post .user-stats {
        margin: 0 0 20px;
        font-size: 12px;
    }

        .topic-post .user-stats span,
        .profile-info-box .profile-stats span {
            margin: 0 0 0 3px;
            font-weight: bold;
            vertical-align: middle;
        }

    .topic-post .pm-button,
    .profile-info-box .pm-button {
        display: inline-block;
        border: 2px solid #ddd;
        text-transform: uppercase;
        padding: 5px 10px;
        -webkit-transition: all .10s ease-in-out;
        -moz-transition: all .10s ease-in-out;
        transition: all .10s ease-in-out;
    }

        .topic-post .pm-button:hover,
        .profile-info-box .pm-button:hover {
            color: #fff;
            background: #75bfa1;
            border-color: #75bfa1;
        }

    .topic-post .post-content,
    .profile-info-box .profile-stats {
        margin-top: 20px;
    }

    .topic-post .post-head {
        margin: 0 0 10px;
        background: #f1f1f1;
        overflow: hidden;
    }

        .topic-post .post-head a {
            margin: 0 0 0 5px;
            line-height: 30px;
            text-decoration: underline;
            -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

            .topic-post .post-head a:hover {
                color: #75bfa1;
            }

    .topic-post .post-time {
        padding: 7px 10px;
    }

    .topic-post .post-body .posttext b {
        display: block;
        text-transform: uppercase;
    }

    .topic-post .post-body .quote {
        padding: 10px 20px;
        position: relative;
        display: inline-block;
    }

        .topic-post .post-body .quote:before {
            content: '"';
            display: block;
            width: 20px;
            height: 20px;
            font-size: 35px;
            position: absolute;
            top: 10px;
            left: 0;
        }

        .topic-post .post-body .quote:after {
            content: '"';
            display: block;
            width: 20px;
            height: 20px;
            font-size: 35px;
            text-align: right;
            position: absolute;
            bottom: 10px;
            right: 0;
        }

    .topic-post .post-vote {
        position: relative;
        width: 40px;
        padding: 15px 0;
        text-align: center;
        font-size: 22px;
        margin: auto;
        color: #444;
    }

        .topic-post .post-vote span {
            cursor: pointer;
        }

        .topic-post .post-vote .vote.up {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            margin: auto;
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-bottom: 10px solid #444;
        }

        .topic-post .post-vote .vote.down {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-top: 10px solid #444;
        }

.profile-info-box {
    overflow: hidden;
}

    .profile-info-box .title {
        margin: 0 0 10px;
        font-size: 18px;
        text-transform: uppercase;
    }

    .profile-info-box .profile-stats label {
        text-transform: uppercase;
    }

    .profile-info-box .profile-stats li {
        margin-bottom: 5px;
    }

    .profile-info-box .avatar {
        width: 200px;
        margin: auto;
    }

.profile-page .topic {
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 30px;
}

.profile-page .topic-title {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: bold;
}

    .profile-page .topic-title a {
        vertical-align: middle;
        text-transform: uppercase;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

        .profile-page .topic-title a:hover {
            color: #75bfa1;
        }

.profile-page .topic-data {
    color: #75bfa1;
    font-weight: bold;
}

    .profile-page .topic-data > * {
        vertical-align: middle;
    }

.profile-page .topic-body {
    color: #555;
}

    .profile-page .topic-body b {
        text-transform: uppercase;
    }

.profile-page .quote {
    margin: 10px 0;
    line-height: 20px;
}

/* forum edit & send message */


.forum-edit-page .form-fields,
.private-message-send-page .form-fields,
.move-topic-page .form-fields {
    width: 470px;
    max-width: 100%;
    margin: auto;
}

.forum-edit-page .page-body,
.private-message-send-page .page-body {
}

.forum-edit-page strong,
.private-message-send-page a {
    font-size: 18px;
    font-weight: bold;
    vertical-align: middle;
    text-transform: uppercase;
}

.forum-edit-page .buttons,
.private-message-send-page .buttons,
.private-messages-page .buttons,
.move-topic-page .buttons,
.private-message-send-page .buttons {
    margin: 15px 0 0;
    text-align: center;
}

.forum-edit-page .inputs.reversed > * {
    display: inline-block;
    vertical-align: middle;
}

.forum-edit-page .buttons input,
.move-topic-page .buttons input,
.private-message-send-page .buttons input,
.private-messages-page .buttons input,
.private-message-view-page .buttons input {
    border: 3px solid #ddd;
    margin: 0 5px 0 0;
    padding: 9px 25px;
    font-size: 14px;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

    .forum-edit-page .buttons input:hover,
    .move-topic-page .buttons input:hover,
    .private-message-send-page .buttons input:hover,
    .private-messages-page .buttons input:hover,
    .private-message-view-page .buttons input:hover {
        color: #fff;
        background: #75bfa1;
        border-color: #75bfa1;
    }

    .forum-edit-page .buttons input[type="submit"],
    .move-topic-page .buttons input[type="submit"],
    .private-messages-page .buttons input[type="submit"],
    .private-message-send-page .buttons input[type="submit"],
    .private-message-view-page .buttons input.button-1 {
        border-color: #75bfa1;
    }

.forum-edit-page .inputs span {
    vertical-align: middle;
    margin-left: 5px;
    font-size: 12px;
}

.private-message-send-page .message label {
    display: none;
}

/* inbox & view message */


.private-messages-page td.date {
    width: 15%;
    white-space: nowrap;
}

.private-messages-page .mark-unread-pm-button {
    display: none;
}

.private-message-view-page .view-message {
}

    .private-message-view-page .view-message li {
        display: inline-block;
        font-size: 13px;
        margin: 15px 0;
    }

.private-message-view-page label {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 2px 0 0;
}

.private-message-view-page span {
    margin: 0 10px 0 0;
    vertical-align: middle;
    text-transform: uppercase;
}

    .private-message-view-page span:after {
        content: "/";
        margin: 0 0 0 10px;
    }

.private-message-view-page .message-body {
    display: block !important;
    margin: 15px 0 25px !important;
    border: 1px solid #ddd;
    padding: 15px;
    padding: 25px;
    line-height: 1.5em;
}

    .private-message-view-page .message-body span {
        text-transform: none;
    }

        .private-message-view-page .message-body span:after {
            display: none;
        }

.private-message-view-page .buttons {
    display: block !important;
    overflow: hidden;
}

    .private-message-view-page .buttons input {
        margin: 0 0 5px;
    }

/* 404 + kontaktsida */
.pnf-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    align-items: start;
}

.pnf-page {
    padding: 0 24px 24px 0;
    text-align: left;
    width: 50%;
}

.pnf-contact {
    width: 50%;
    margin-right: 10px;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .address-list-page section .address-item .buttons {
        position: relative !important;
        float: right !important;
        top: 0;
        right: 0;
        margin-top: 15px;
    }

    .address-list-page section .address-item {
        padding: 25px 25px 50px 25px;
    }

    .pnf-wrapper {
        flex-direction: column;
    }

    .pnf-page {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .pnf-contact {
        width: 100%;
        margin: 0;
    }
}

/* BB codes */
pre {
    white-space: pre-wrap;
    white-space: normal;
    word-wrap: break-word;
}

.csharpcode {
    margin: 10px 0;
    border: 1px dashed #ccc;
    background-color: #fff;
    padding: 10px;
    font-family: "Courier New", Courier, monospace;
    color: #000;
}

    .csharpcode .rem {
        color: green;
    }

    .csharpcode .kwrd {
        color: #00f;
    }

    .csharpcode .str {
        color: #006080;
    }

    .csharpcode .op {
        color: #00c;
    }

    .csharpcode .preproc {
        color: #c63;
    }

    .csharpcode .asp {
        background-color: #ff0;
    }

    .csharpcode .html {
        color: maroon;
    }

    .csharpcode .attr {
        color: red;
    }

    .csharpcode .alt {
        width: 100%;
        margin: 0;
        background-color: #f6f6f6;
    }

    .csharpcode .lnum {
        color: #666;
    }


.user-manuals h6 {
    font-weight: 600
}

.user-manuals-box i {
    color: var(--blue);
    margin-right: 5px
}

.user-manuals-box .product-box {
    padding: 15px;
    margin: 10px 10px 10px 0;
    position: relative;
    min-height: 550px;
    /*height: auto  !important;*/
}

@media all and (max-width: 768px) {
    .user-manuals-box .product-box {
        min-height: auto;
        height: auto !important;
    }
}

.user-manuals-box a {
    text-transform: uppercase;
    color: var(--blue);
    vertical-align: super;
}
/********** LOADER **********/
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100000;
}

    .loader-overlay .loader {
        margin: 25% auto;
    }


/********** RE-CAPTCHA **********/

.recaptchatable #recaptcha_response_field {
    height: auto !important;
}

@media (max-width: 444px) {
    .recaptchatable #recaptcha_image {
        margin: 0 !important;
        width: 200px !important;
        float: left !important;
    }

        .recaptchatable #recaptcha_image img {
            max-width: 100%;
        }

    .recaptchatable .recaptcha_r1_c1, .recaptchatable .recaptcha_r3_c1, .recaptchatable .recaptcha_r3_c2, .recaptchatable .recaptcha_r7_c1, .recaptchatable .recaptcha_r8_c1, .recaptchatable .recaptcha_r3_c3, .recaptchatable .recaptcha_r2_c1, .recaptchatable .recaptcha_r4_c1, .recaptchatable .recaptcha_r4_c2, .recaptchatable .recaptcha_r4_c4, .recaptchatable .recaptcha_image_cell, .recaptchatable .recaptcha_r2_c2 {
        background: none !important;
    }

    .product-tabs .product-tabs-list li {
        width: 100%
    }

    .product-tabs-list {
        display: block
    }
}



/* Hide all steps by default: */
.tab {
    display: none;
}

.mobile-header .language-list {
    display: none;
}

.mobile-header-links, .mobile-footer-line {
    display: none
}

.footer-middle-block i {
    display: none
}

.mobile-sub-header #topcartlink {
    display: none
}

.mobile-sub-header {
    display: none
}

    .mobile-sub-header .search-box {
        display: none
    }


.mobile-header .language-list li {
    display: flex
}

.mobile-sub-header {
    width: 100%;
    margin-top: 15px
}

    .mobile-sub-header i {
        color: #fff;
        font-size: 1.5em;
        float: left;
        cursor: pointer
    }

    .mobile-sub-header .fa-shopping-cart {
        margin-right: 25px
    }

    .mobile-sub-header .fa-search {
        padding-right: 15px;
        cursor: pointer
    }

.mobile-header .language-list img {
    width: 22px
}

.mobile-header .language-list i {
    font-size: 10px;
    color: var(--white);
    /*        opacity: 0.7;*/
}

.tab-text .text iframe {
    width: 100%;
}

.net-ups ul {
    /*display: flex;*/
    color: var(--light-black);
    font-size: 12px
}

.net-ups.spot ul {
    display: inline;
    color: var(--light-black);
    font-size: 12px
}

.net-ups li {
    padding-right: 10px;
    font-size: 10px;
    display: inline-block;
}

.net-ups i {
    color: var(--light-green);
    margin-right: 5px
}

.spots .net-ups {
    height: 35px
}


    .spots .net-ups ul {
        display: inline !important;
        font-size: 10px
    }

    .spots .net-ups li {
        float: left
    }

.product-box .product-price {
    font-size: 16px;
    letter-spacing: 0
}

.net-filter .filter-product {
    display: none
}

.filter-search, .in-stock-sort {
    position: relative
}

.net-filter .filter-product {
    border: 1px solid #ddd;
    padding: 8px;
    margin-right: 10px;
}

.net-filter .search-product {
    position: absolute;
    font-style: italic;
}

.net-filter input[type="text"] {
    position: relative;
    font-style: italic;
    width: 100%
}

.net-filter i {
    color: var(--blue)
}

.net-filter {
    min-height: 50px;
}

    .net-filter .search-product i {
        position: absolute;
        right: 2px;
        top: 10px;
        font-size: 16px;
    }


@media (min-width: 1026px) {
    .in-stock-sort {
        margin-left: -24px;
    }
}

.net-filter .sort {
    position: absolute;
    right: 0
}

    .net-filter .sort select {
        color: var(--blue);
        font-weight: 600;
        width: 100%;
        margin-top: -10px;
        padding-left: 15px;
        padding-right: 30px;
    }

@media all and (max-width: 765px) {
    .in-stock-sort {
        min-width: 100%;
        float: none;
    }
}

.partial-find-partner-box-container {
    margin: 30px 0
}

.partial-find-partner-box {
    height: 300px
}

    .partial-find-partner-box h3 {
        font-weight: 600
    }

    .partial-find-partner-box.box-one {
        float: left;
        width: 48.5%;
        overflow: hidden;
        background-color: #085288;
        padding: 80px;
        text-align: center;
        color: #ffffff;
    }

        .partial-find-partner-box.box-one .box-title {
            text-align: center;
            /*word-break: break-all*/
        }


    .partial-find-partner-box.box-two {
        width: 48.5%;
        overflow: hidden;
        text-align: center;
        border: 1px solid var(--light-gray)
    }

        .partial-find-partner-box.box-two img {
            height: 300px;
            padding: 35px;
        }

.block .list li {
    margin-top: 10px;
    text-transform: uppercase
}

.ajax-loading-block-window {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    background: url('../img/loading.gif') center no-repeat;
}

.new-product-spot-text h3, .new-product-spot-text-2 h3 {
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
}

@media (min-width: 1025px) {
    .mega-menu .dropdown {
        display: none;
        position: absolute;
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
        overflow: hidden;
        background: #fff;
        padding: 15px;
        z-index: 3;
    }
}

@media (min-width: 1025px) {
    .footer-middle-block {
        padding: 0px 50px 22px 0px;
    }
}

@media (max-width: 1025px) {
    .net-filter {
        height: 120px;
    }

    .product-grid .net-grid .product-box {
        margin: 5px 10px 5px 0 !important;
    }

    .net-filter .filter-product {
        display: flex;
    }

    .net-filter .filter-search a {
        width: 35%
    }

    .net-filter .search-product {
        right: 0
    }

    .net-filter .inStock {
        margin-left: 2px
    }

    .net-filter .search-product, .net-filter .sort {
        width: 64%
    }

    .net-filter .product-viewmode {
        position: absolute;
        margin-top: -10px;
        left: 0;
    }

    .net-filter .product-page-size {
        position: absolute;
        top: 30px;
    }

    .product-page-size > span:first-child {
        display: none;
    }

    .net-filter .product-viewmode span {
        display: none;
    }

    .net-filter .in-stock-sort {
        margin-top: 15px
    }

    .footer-lower .newsletters, .footer-lower .social-block {
        width: 50%
    }

    .footer-middle-block {
        float: none !important
    }

        .footer-middle-block i {
            display: inline;
            float: right;
            opacity: 0.6;
            margin-right: -20px
        }

    .header-logo {
        min-height: 80px;
        display: grid
    }

        .header-logo .logo {
            max-width: 25%;
            float: left
        }

    .mobile-header .language-list {
        display: flex;
        float: right
    }

    .header-options-wrapper .language-list {
        display: none
    }

    .mobile-sub-header #topcartlink {
        display: grid
    }

    .mobile-sub-header {
        display: block
    }

    .wishlist-qty, .cart-qty {
        display: block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--light-green);
        color: #fff;
        font-size: 12px;
        text-align: center;
        line-height: 14px;
        padding: 2px 0 0 2px;
        position: absolute;
        right: 13px;
        margin-top: -8px;
    }

    .mobile-header-links, .mobile-footer-line {
        display: block
    }

    .partial-find-partner-box.box-one {
        padding: 65px;
    }

    .service-page .blue-box {
        width: 48.6%;
    }

    /*.video-guides .user-manuals-box {
            margin: 0 2% 0 0;
        }*/

    .sales-information-notification {
        top: 65%;
        width: 80%;
        left: 10%;
        right: 10%;
        padding: 30px;
    }

    .product-box-image img {
        max-height: 235px;
    }
}

@media (max-width: 992px) {
    .banner-img h1 {
        font-size: 48px;
    }

    .new-product-spot {
        display: block
    }

    .new-product-spot-img, .new-product-spot-text {
        width: 100%
    }
}

.home-page-slider-wrapper .inspiration .item-box h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-list .add-to-cart-product {
    bottom: 25%;
}

@media (max-width: 768px) {
    .home-page-slider-wrapper {
        margin: 30px auto 40px;
    }

    .new-product-spot-text div {
        padding: 60px 20px;
    }

    .product-list .add-to-cart-product {
        bottom: 10%;
    }

    .new-product-spot-text h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .col-33, .col-30, .col-40, .col-50 .col-60, .col-70 {
        width: 100%
    }

    .img-padding {
        padding-left: 0
    }

    .responsive-html {
        display: block
    }

        .responsive-html .d-flex {
            display: block
        }

        .responsive-html .col-50 {
            width: 100%
        }

    .img-padding-right {
        padding-right: 0;
    }

    .banner-img h1 {
        font-size: 40px;
    }

    .banner-img div:first-child {
        padding: 150px 350px;
    }

    .banner-img p {
        font-size: 12px;
    }

    .footer-lower .newsletters, .footer-lower .social-block {
        width: 100%
    }

    .partial-find-partner-box.box-one, .partial-find-partner-box.box-two, .service-page .blue-box, .errorcode-box.box-img, .errorcode-box.box-text {
        width: 100%;
    }

    .errorcode-box-container {
        display: block
    }

    .spots {
        display: block
    }

    .net-recommended-products, .net-related-products {
        width: 100%
    }

    .product-review-item .review-item-head, .product-review-item .review-type-rating-ext {
        padding: 0;
    }

    .spot50 {
        display: block
    }

    .blue-spot, .gray-spot {
        width: 100%
    }

    .non-profit .master-column-wrapper div {
        width: 100% !important
    }

    .non-profit .master-column-wrapper {
        display: block
    }

    .login-page .customer-blocks {
        display: block
    }

    .login-page .new-wrapper, .login-page .returning-wrapper {
        width: 100%;
        margin-left: 0
    }
}

@media (min-width: 468px) {
    /*.btn-mobile {
            display: none !important;
        }*/
}



@media (max-width: 468px) {
    .home-page-slider-wrapper {
        margin: 30px auto 40px !important
    }

    .login-page .inputs.reversed .forgot-password {
        float: unset
    }

    .item-box {
        margin: 0 0 10px 0;
        max-width: unset;
        overflow: unset !important;
    }

    .lang-options {
        display: block;
    }

    .select-group select {
        width: 100%;
    }

    .select-group label {
        color: var(--blue);
        float: left;
        margin-top: 10px;
    }

    .language-box h2 {
        font-size: 32px;
    }

    .product-no-reviews, .product-reviews-overview {
        margin: 0
    }

    .overview .product-name h1 {
        font-size: 26px;
        line-height: 30px;
    }

    .net-add-to-basket {
        display: inline-block;
        width: 100%
    }

        .net-add-to-basket div:last-child {
            position: relative;
            display: grid;
        }

    .add-to-cart-product {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        position: unset;
    }

    .product-list .add-to-cart-product {
        bottom: 10%;
        position: absolute;
        margin-bottom: 0;
    }

    .overview .short-description {
        margin: 15px 0 5px;
    }

    .net-product-number {
        margin-bottom: 10px
    }

    .product-box .net-rating {
        bottom: 18px;
    }

    .banner-img div:first-child {
        padding: 50px
    }

    .whats-active ul {
        display: block
    }

    .new-product-spot-text div {
        padding: 60px 20px;
    }

    .home-page-slider .product-box {
        padding: 0;
        margin: 0px 10px 10px 0;
    }

    .home-page-slider .product-box-link {
        left: 0px;
        padding: 15px
    }

        .home-page-slider .product-box-link .text-center {
            margin-top: 0px;
        }

    .home-page-slider .slick-dots {
        bottom: -35px;
    }

    .product-box-image img {
        max-height: 185px;
    }

    .new-product-spot-text h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .product-box .net-ups, .product-box .product-reviews-overview {
        display: none;
    }

    .product-box img {
        max-height: 135px;
    }

    .product-box-link .text-center {
        margin-top: 10px;
    }

    .product-box {
        height: 285px !important;
        margin-bottom: -5px;
    }

        .product-box h6, .product-box .product-price {
            font-size: 14px;
        }

        .product-box .add-product, .slick-slide .btn-mobile {
            font-size: inherit;
            display: block;
            width: 94%;
            position: absolute;
            bottom: 0;
        }

    .product-grid .btn-mobile {
        font-size: 12px;
        display: block;
        width: 94%;
        position: absolute;
        padding: 8px 6px;
        bottom: 0;
    }

    .product-box-info {
        bottom: unset;
    }

    .product-list .btn-mobile {
        font-size: inherit;
        display: block;
        right: 25px !important;
        top: 70% !important;
        margin-left: 5px
    }

    .free-delivery-product {
        float: left
    }

    .product-list .item-box .product-box {
        height: 175px !important;
    }

    .product-list .product-box h6 {
        width: 75%;
        margin-left: 90px;
        margin-top: 20px;
    }

    .product-list .product-box .product-price {
        right: -5px;
        position: absolute;
        margin-top: 10px;
        left: unset;
    }

    .product-list .add-product {
        display: flex;
        align-items: center;
        position: absolute;
        left: 12%;
        top: 123px;
    }
}



#big-search-box-form {
    position: absolute;
    top: 15px;
    right: 100px;
    background-color: white;
}

    #big-search-box-form i {
        margin-top: 5px;
        margin-right: 5px;
        cursor: pointer;
        color: #666;
    }

#mega-menu-search-box {
    height: unset;
}

.img-serienumber {
    margin-left: 25px;
    /*float: right;*/
    margin-top: 0px;
    margin-right: 30px;
    width: 200px;
    margin-bottom: 20px;
}

.invalid {
    border: 1px solid var(--pink) !important;
}

input[type="checkbox"], input[type="radio"] {
    vertical-align: middle;
    margin: 0 5px 0 0;
    width: 10px !important;
}

.product-link {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.product-buy {
    position: relative !important;
    bottom: 50px !important;
    left: 20px !important;
    width: 95% !important;
}

.checkoutstepcounter {
    float: right;
    vertical-align: middle;
    line-height: 60px;
    font-size: 26px;
    font-weight: 600;
    color: var(--blue);
}

.page.checkout-page .page-title h1 {
    display: initial;
}

.opc-info-part h2.title, .opc-confirm_order h2.title {
    background-color: var(--light-gray);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 6px 1px 0px 12px;
    padding-bottom: 2px;
    margin-bottom: 20px;
}

#checkout-confirm-order-load h2.title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#checkout-info-load > .opc-info-part > .checkout-data {
    padding: 0px 15px;
}

.customer-header-links li select {
    border: none;
    font-weight: 500;
    padding: 0px 20px 4px 0px;
    line-height: 35px;
}

#checkout-step-confirm-order .buttons .button-1 {
    border-color: #B5DC79;
    padding: 10px 12px;
    background: #B5DC79;
    color: #085288;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.customer-header-links li select {
    border: none;
    font-weight: 500;
    padding: 0px 20px 4px 0px;
    line-height: 35px;
}

#checkout-step-confirm-order .buttons .button-1 {
    border-color: #B5DC79;
    padding: 10px 12px;
    background: #B5DC79;
    color: #085288;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.removefromcartbutton {
    cursor: pointer;
}

.content-collapsible {
    background-color: #005187;
    color: #ffffff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

    .content-collapsible.active, .content-collapsible:hover {
        background-color: #0C4269;
    }

.content-collapisble-show {
    padding: 0 18px;
    display: none;
    overflow: hidden;
}

.net-product-number {
    color: #ffffff;
    padding-bottom: 10px;
}

.news-item-page .page-title {
    padding-bottom: 0px;
}

/*TINY PAGE CSS*/

.tiny-page .pr-10 {
    padding-right: 10px
}

.tiny-page .pl-10 {
    padding-left: 10px
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.tiny-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -1rem;
    padding-bottom: 2rem;
    /*    max-height: 530px;*/
    /*  overflow-x: scroll;
    -ms-overflow-style: none!important; 
    scrollbar-width: none!important;*/
}

    .tiny-gallery::-webkit-scrollbar {
        display: none;
    }



.tiny-gallery-item {
    position: relative;
    flex: 1 0 9rem;
    margin: 1rem;
    color: #fff;
    cursor: pointer;
}

    .tiny-gallery-item:hover .tiny-gallery-item-info,
    .tiny-gallery-item:focus .tiny-gallery-item-info {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }


.tiny-gallery-item-type {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
}

.fa-clone,
.fa-comment {
    transform: rotateY(180deg);
}

.tiny-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiny-gallery {
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    grid-gap: 1rem;
}


.tiny-gallery-item,
.tiny-gallery {
    width: auto;
    margin: 0;
}

.tiny-page .card {
    border: unset
}

.tiny-page .px-15 {
    padding-right: 15px;
    padding-left: 15px;
}

.tiny-page .pl-5, .tiny-page .px-5 {
    padding-left: 3rem !important;
}

.tiny-page .pr-3, .tiny-page .px-3 {
    padding-right: 1rem !important;
}

.tiny-page .text-right {
    text-align: right !important;
}

.tiny-page .pt-4, .tiny-page .py-4 {
    padding-top: 1.5rem !important;
}



.tiny-quote {
    border-left: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
    border-radius: unset;
    position: relative;
    border-right: unset !important
}

    .tiny-quote .quote-sign {
        height: 50px;
        top: 0px;
        left: -10px;
        position: absolute
    }

    .tiny-quote:before {
        content: '';
        width: 300px;
        height: 1px;
        background: black;
        position: absolute;
    }

.tiny-page .emblem {
    height: 100px;
    position: absolute
}

.tiny-page h5 {
    font-style: italic
}

.tiny-page .w-2 {
    widows: 2 !important
}

.tiny-page .w-1 {
    widows: 1 !important
}

.tiny-page footer {
    font-size: 16px
}

.black-link {
    background-color: black;
    color: white;
    text-align: center;
    font-size: 14px
}

    .black-link .fa-arrow-right {
        color: #fff;
        position: absolute;
        left: 0;
        margin-top: 18px;
    }

.video-responsive {
    position: relative;
    display: block;
    overflow: hidden;
}


    .video-responsive::before {
        display: block;
        content: "";
        padding-top: 56.25%;
    }

    .video-responsive iframe {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.card-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 3rem;
    orphans: 1;
}

    .card-columns .card, .tiny-quote {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

.tiny-slide .tiny-slide-img {
    background-repeat: no-repeat;
    background-size: cover;
    height: 320px;
    background-position: center;
}

.tiny-slide-img {
    margin: 10px
}

.tiny-slide .slick-prev:before, .tiny-slide .slick-next:before {
    color: #b89270 !important
}

.tiny-page .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.tiny-page .compact-living .usp {
    display: flex;
    text-align: center;
    color: black;
    font-weight: 600
}

    .tiny-page .compact-living .usp p {
        font-size: 11px
    }

    .tiny-page .compact-living .usp div {
        padding: 5px
    }

@media (max-width: 1200px) {

    .tiny-gallery-item {
        flex: 1 0 8rem;
    }
}

@media (max-width: 992px) {

    .tiny-gallery-item {
        flex: 1 0 6rem;
    }
}

@media (max-width: 768px) {
    .card-columns {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

    .tiny-page .col-50 {
        position: relative;
        width: 100%;
    }

    .tiny-page .d-flex {
        display: block;
    }

    .tiny-page .pr-10 {
        padding-right: 0px
    }

    .tiny-page .pl-10 {
        padding-left: 0px
    }

    .tiny-page .emblem {
        height: 85px
    }

    .tiny-gallery-item {
        flex: 1 0 12rem;
    }
}

@media (max-width: 675px) {
    .tiny-gallery-item {
        flex: 1 0 9rem;
    }
}

@media (max-width: 520px) {
    .tiny-gallery-item {
        flex: 1 0 15rem;
    }
}

@media (min-width: 576px) {

    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

/*TINY PAGE CSS END*/


/*@media (min-width: 769px) and (max-width: 1024px){
    .side-2 {
        padding-top: 30px;
    }
        .side-2 .block{
            margin:0
        }
  
}*/
@media (max-width: 765px) {
    .center-2 {
        padding-top: 0px !important;
    }
}

.parallax-img {
    background: #EFEFEF;
}

.gallery .picture-wrapper .picture, .cloudzoom-zoom-inside {
    background: #EFEFEF;
}

.gallery .picture-thumbs {
    background: #fff;
}

.green-underline {
    border-bottom: 3px solid var(--light-green) !important;
}

.invoiceDetails {
    display: flex;
}

@media (max-width: 765px) {
    .invoiceDetails {
        display: block;
    }

        .invoiceDetails div:last-child {
            margin-top: 20px
        }
}

.filtersGroupPanel li > label {
    word-break: keep-all;
}
