﻿
/* CSS RESET */

* {
    margin: 0;
    outline: none;
    padding: 0;
    text-decoration: none;
    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;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    margin: 0;
    border: 0;
    padding: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea, button, select {
    border-radius: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
}

input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 1000px #fff;
    -webkit-transition-delay: 99999s;
}

script {
    display: none !important;
}


/* FONT FACES */


@font-face {
    font-family: 'аvenue-icons';
    src: url('../fonts/avenue_font.eot?');
    src: url('../fonts/avenue_font.eot?#iefix') format('embedded-opentype'), url('../fonts/avenue_font.ttf?') format('truetype'), url('../fonts/avenue_font.woff?') format('woff'), url('../fonts/avenue_font.svg?#аvenue_font') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*:before, *:after {
    font-family: 'аvenue-icons';
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}


/* GLOBAL STYLES */


html {
    overflow-x: hidden;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #444;
}

table {
    width: 100%;
    border-collapse: collapse;
}

p {
    line-height: 23px;
}

a {
    color: inherit;
    cursor: pointer;
}

p a {
    color: #222;
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea, select {
    height: 50px;
    border: 1px solid #ebebeb;
    box-shadow: none !important;
    padding: 0 15px;
    vertical-align: middle;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #777;
}

textarea {
    min-height: 200px;
    padding: 15px;
}

select {
    min-width: 60px;
    background: url('../img/select-arrow.png') right 10px center no-repeat;
    padding: 0 24px 0 12px; /*select padding is never cross-browser consistent*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    select::-ms-expand {
        display: none;
    }

    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus, select:focus {
        border-color: #f6f6f6;
        background-color: #f6f6f6;
        color: #222;
    }

        input:focus::-webkit-input-placeholder,
        textarea:focus::-webkit-input-placeholder {
            color: transparent;
        }

        input:focus::-moz-placeholder,
        textarea:focus::-moz-placeholder {
            color: transparent;
        }

        input:focus:-ms-input-placeholder,
        textarea:focus:-ms-input-placeholder {
            color: transparent;
        }

input[type="button"],
input[type="submit"],
button {
    border: none;
    background-color: transparent;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: inherit;
    cursor: pointer;
}

input[type="radio"],
input[type="checkbox"],
label, label + * {
    vertical-align: middle;
}

    input[type="radio"] + span,
    input[type="checkbox"] + span {
        vertical-align: middle;
    }
/*custom checkboxes and radio buttons*/
input[type="radio"],
input[type="checkbox"] {
    margin-right: -17px;
    opacity: 0;
}

    input[type="radio"] + label,
    input[type="checkbox"] ~ label {
        position: relative;
        padding-top: 1px; /*cross-browser consistency*/
        padding-left: 20px;
        color: #222;
        cursor: pointer;
    }

        input[type="radio"] + label:before,
        input[type="checkbox"] ~ label:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 12px;
            height: 12px;
            margin: auto;
            border: 1px solid #c5c5c5;
            box-shadow: inset 0 0 0 2px #fff;
            background-color: #fff;
        }

        input[type="radio"] + label:before {
            border-radius: 50%;
            box-shadow: inset 0 0 0 3px #fff;
        }

    input[type="radio"]:checked + label,
    input[type="checkbox"]:checked ~ label {
        color: #f61853;
    }

        input[type="radio"]:checked + label:before,
        input[type="checkbox"]:checked ~ label:before {
            border: 1px solid #f61853;
            background-color: #f61853;
        }

.master-wrapper-content {
    position: relative;
    z-index: 0; /*giving priority to header*/
    padding: 35px 4% 0;
}

.master-column-wrapper:after {
    content: "";
    display: block;
    clear: both;
}

.center-1,
.center-2 {
    margin: 0 0 65px;
}

.side-2 {
    margin: 0 0 50px;
}

    .side-2:after {
        content: "";
        display: block;
        clear: both;
    }

.page {
    min-height: 200px;
    text-align: center;
}

.page-title {
    margin: 0 0 30px;
}

    .page-title h1 {
        display: inline-block;
        position: relative;
        font-size: 25px;
        font-weight: 400;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #222;
    }

        .page-title h1:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -3px;
            height: 2px;
            background-color: #222;
        }

        .page-title h1:empty {
            display: none;
        }

    .page:after,
    .page-title:after,
    .page-body:after {
        content: "";
        display: block;
        clear: both;
    }

.buttons {
    text-align: center;
}

.home-page .title {
    margin: 0 0 35px;
    text-align: center;
    font-size: 21px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #222;
}

    .home-page .title strong {
        position: relative;
        font-weight: 800;
    }

        .home-page .title strong:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            background-color: #222;
        }

.category-description ul,
.manufacturer-description ul,
.vendor-description ul,
.full-description ul,
.topic-html-content ul,
.topic-page ul, .custom-tab ul,
.post-body ul, .news-body ul {
    margin: 20px 0;
    padding: 0 0 0 36px;
    list-style: disc;
}

.category-description ol,
.manufacturer-description ol,
.vendor-description ol,
.full-description ol,
.topic-html-content ol,
.topic-page ol, .custom-tab ol,
.post-body ol, .news-body ol {
    margin: 20px 0;
    padding: 0 0 0 36px;
    list-style: decimal;
}

.category-description td,
.manufacturer-description td,
.vendor-description td,
.full-description td,
.topic-html-content td,
.topic-page td, .custom-tab td,
.post-body td, .news-body td {
    border: 1px solid #ebebeb;
    padding: 10px 20px;
}

.category-description p,
.manufacturer-description p,
.vendor-description p,
.full-description p,
.topic-page p, .custom-tab p,
.topic-html-content p {
    margin: 0 0 10px;
    word-wrap: break-word;
}

.post-body p ~ p,
.news-body p ~ p {
    margin-top: 20px;
}

.post-body p ~ table,
.news-body p ~ table {
    margin-top: 20px;
}

.no-data {
    padding: 20px;
    text-align: center;
    color: #222;
}

.noscript {
    background-color: #ff9;
    padding: 20px;
    text-align: center;
}

.link-rss {
    display: none;
}


/* GLOBAL FORMS */


.fieldset, .section {
    margin: 0 0 60px;
}

    .fieldset + .buttons,
    .section + .buttons {
        margin-top: -25px;
    }

    .fieldset .title,
    .section .title {
        margin: 0 0 35px;
        text-align: center;
        font-size: 19px;
        line-height: 30px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #222;
    }

        .fieldset .title strong,
        .section .title strong {
            position: relative;
            font-weight: 800;
        }

            .fieldset .title strong:after,
            .section .title strong:after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -2px;
                height: 2px;
                background-color: #222;
            }

.form-fields {
    font-size: 0;
}

    .form-fields:after {
        content: "";
        display: block;
        clear: both;
    }

.inputs {
    position: relative;
    margin: 0 0 25px;
    text-align: center;
    font-size: 0;
    white-space: nowrap; /*keeps 'required' elements on the same line*/
}

    .inputs:after {
        content: "";
        display: block;
        clear: both;
    }

    .inputs label {
        display: block;
        margin: 0 0 10px;
        text-align: center;
        font-size: 14px; /*reset zeroing*/
        text-transform: uppercase;
        color: #222;
    }

    .inputs input[type="text"],
    .inputs input[type="password"],
    .inputs input[type="email"],
    .inputs input[type="tel"],
    .inputs select, .inputs textarea {
        width: 350px;
        max-width: 100%;
        vertical-align: middle;
    }

    .inputs .option-list {
        display: inline-block;
        white-space: normal;
    }

        .inputs .option-list li {
            margin: 10px 0;
        }

        .inputs .option-list label,
        .inputs.reversed label {
            display: inline;
            margin-bottom: 0;
            text-transform: none;
        }

.required {
    position: absolute;
    width: 5px;
    height: 5px;
    margin-left: 5px;
    border-radius: 50%;
    background-color: #f61853;
    font-size: 0;
}

.inputs .required {
    margin: 5px 0 0 -10px;
}

.inputs .option-list + .required {
    margin-left: 5px;
}

.message-error,
.field-validation-error,
.username-not-available-status,
.poll-vote-error, .password-error {
    display: block;
    text-align: center;
    font-size: 11px;
    color: #f61853;
}

.field-validation-valid,
.username-available-status {
    display: block;
    text-align: center;
    font-size: 11px;
    color: #1fc163;
}

.inputs .message-error,
.inputs .field-validation-error,
.inputs .field-validation-valid,
.inputs #username-availabilty {
    margin-top: 3px;
}

.accept-privacy-policy,
.terms-of-service {
    margin: 0 0 25px;
    text-align: center;
    color: #222;
}

    .accept-privacy-policy .read,
    .terms-of-service .read {
        color: #f61853;
        cursor: pointer;
    }

.fieldset + .accept-privacy-policy,
.fieldset + .terms-of-service {
    margin-top: -20px;
}

.accept-privacy-policy + .accept-consent,
.terms-of-service + .accept-consent {
    margin-top: -20px;
}

.accept-privacy-policy label:before,
.terms-of-service label:before {
    /*multi-line txt workaround*/
    bottom: auto !important;
    top: 4px !important;
}

.captcha-box {
    clear: both;
    margin: 30px 0 0;
    text-align: center;
}

    .captcha-box > div {
        display: inline-block;
    }

    .captcha-box iframe {
        margin: 0;
    }

    .captcha-box input {
        height: auto;
    }


/* GLOBAL TABLES */


.cart, .data-table,
.forums-table-section table {
    margin: 0 0 30px;
    border: 1px solid #ebebeb;
}

    .cart th, .data-table th,
    .forums-table-section th {
        border-width: 1px 0;
        border-style: solid;
        border-color: #ebebeb;
        padding: 20px 15px;
        text-align: left;
        font-size: 12px;
        font-weight: 800;
        color: #222;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .cart td, .data-table td,
    .forums-table-section td {
        min-width: 50px;
        border-width: 1px 0;
        border-style: solid;
        border-color: #ebebeb;
        padding: 20px 15px;
        text-align: left;
    }

    .cart a, .data-table a,
    .forums-table-section a {
        font-weight: 400;
        color: #222;
    }

    .cart .product,
    .data-table .product,
    .data-table .message,
    .data-table .info,
    .data-table .name {
        text-align: left;
    }

    .cart .remove-from-cart,
    .cart .add-to-cart,
    .data-table .select-boxes,
    .data-table .order {
        text-align: center;
    }

    .cart input + .td-title,
    .data-table input + .td-title {
        padding-left: 1px;
        font-size: 0;
    }

    .cart td.product-picture {
        font-size: 0;
    }

    .cart .product-picture a {
        display: inline-block;
        font-size: 0;
    }

    .cart .product-picture img {
        max-width: 60px;
    }

    .cart .attributes,
    .cart .edit-item {
        margin: 5px 0;
    }

        .cart .edit-item a {
            color: #f61853;
        }

    .cart .rental-info,
    .cart .message-error {
        margin: 5px 0;
    }

    .cart .unit-price {
        white-space: nowrap;
    }

    .cart .qty-input {
        width: 55px;
        text-align: center;
    }

    .cart .qty-dropdown {
        width: 55px;
    }

    .cart .product-subtotal {
        color: #f61853;
        white-space: nowrap;
    }

    .cart .subtotal .discount,
    .cart .subtotal .discount-info {
        margin: 5px 0;
        white-space: nowrap;
    }


/* NOTIFICATIONS & POPUPS */


.bar-notification {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1080;
    width: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    background-color: #fff;
    padding: 15px 30px 15px 15px;
    color: #fff !important;
}

    .bar-notification.success {
        background-color: #1fc163;
    }

    .bar-notification.error {
        background-color: #f61853;
    }

    .bar-notification.warning {
        background-color: #f6781c;
    }

    .bar-notification .content a {
        text-decoration: underline;
        color: inherit;
    }

    .bar-notification .close {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        height: 16px;
        margin: auto;
        padding: 0 15px;
        cursor: pointer;
    }

        .bar-notification .close:after {
            content: "\e905";
            display: block;
            font-size: 14px;
            line-height: 16px;
            color: #fff;
        }

.eu-cookie-bar-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    background-color: #222;
    padding: 25px;
    text-align: center;
    color: #fff;
}

    .eu-cookie-bar-notification .text {
        margin: 0 0 20px;
    }

    .eu-cookie-bar-notification .ok-button,
    .eu-cookie-bar-notification .learn-more {
        position: relative;
        margin: 0 10px;
        padding-left: 30px;
        text-transform: uppercase;
    }

        .eu-cookie-bar-notification .ok-button:before,
        .eu-cookie-bar-notification .learn-more:before {
            position: absolute;
            top: -2px;
            left: 0;
            font-size: 20px;
        }

        .eu-cookie-bar-notification .ok-button:before {
            content: "\e080";
        }

        .eu-cookie-bar-notification .learn-more:before {
            content: "\e079";
        }

.ui-dialog {
    position: absolute !important;
    z-index: 1080;
    width: 550px !important;
    max-width: 95%;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    background-color: #fff;
}

    .ui-dialog:before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background-color: #000;
        opacity: 0.6;
    }

    .ui-dialog:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        box-shadow: 0 0 20px rgba(0,0,0,0.15);
        background-color: #fff;
    }

.ui-dialog-titlebar {
    position: relative;
    background-color: #fff;
    padding: 25px 50px 0;
    text-align: center;
    font-size: 21px;
    line-height: 30px;
    font-weight: 400;
    color: #222;
}

    .ui-dialog-titlebar button {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        margin: auto;
        outline: 1px solid transparent;
        background-color: #222;
        font-size: 0;
        transition: all 0.2s ease;
    }

        .ui-dialog-titlebar button:after {
            content: "\e905";
            display: block;
            padding-left: 2px;
            font-size: 14px;
            color: #fff;
            transition: all 0.2s ease;
        }

        .ui-dialog-titlebar button:hover {
            outline-color: #222;
        }

.ui-dialog-content {
    height: auto !important;
    background-color: #fff;
    padding: 25px 20px 30px;
    text-align: center;
    line-height: 23px;
    overflow: auto;
}

    .ui-dialog-content .page {
        min-height: 0;
        text-align: center;
    }

    .ui-dialog-content .page-title {
        position: static;
        height: auto;
        background: none;
    }

        .ui-dialog-content .page-title h1 {
            margin: 0;
            font-size: 21px;
            line-height: 30px;
        }

    .ui-dialog-content .page-body p {
        margin: 20px 0 0;
    }

    .ui-dialog-content .page-body button {
        margin: 20px 0 0;
        outline: 1px solid transparent;
        background-color: #222;
        padding: 10px 25px;
        font-size: 11px;
        color: #fff;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

        .ui-dialog-content .page-body button:hover {
            outline-color: #222;
        }


/* PRE-LOADERS */


.master-loading-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.9);
}

.ajax-loading-block-window {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100% !important;
    height: 100% !important;
    margin: auto !important;
    background: rgba(255,255,255,0.9);
}

    .master-loading-overlay:before,
    .ajax-loading-block-window:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 80px;
        margin: auto;
        border: 1px solid #f61853;
        border-top-color: transparent !important;
        border-radius: 50%;
        -webkit-animation: spin 0.5s linear infinite;
        animation: spin 1s linear infinite;
    }

@-webkit-keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* HEADER */


.header {
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.1);
    background-color: #fff;
}

.admin-header-links {
    background-color: #222;
    padding: 5px 15px;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}

    .admin-header-links a,
    .admin-header-links span {
        display: inline-block;
        margin: 0 8px;
        line-height: 23px;
    }

        .admin-header-links a:hover {
            text-shadow: 0 0 5px #fff;
        }

    .admin-header-links .impersonate {
        display: inline-block;
    }

        .admin-header-links .impersonate ~ a {
            display: none;
        }

.header-selects select {
    width: 100%;
    min-width: 100px;
    height: 60px;
    border-width: 0 0 1px;
    border-color: #ddd;
    padding: 0 10px; /*4px diff between Chrome and FF*/
    color: #222;
    text-transform: uppercase;
}

.language-list {
    max-width: 100%;
    font-size: 0;
}

    .language-list li {
        display: inline-block;
    }

    .language-list a {
        display: block;
        position: relative;
        width: 42px;
        height: 60px;
    }

    .language-list img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

.header-lower {
    display: table;
    width: 100%;
}

.header-lower-inner {
    display: table-row;
}

.header-lower .table-cell {
    display: table-cell;
    height: 60px;
    vertical-align: middle;
    font-size: 0;
}

.header-lower .nav-button {
    display: inline-block;
    vertical-align: middle;
}

    .header-lower .nav-button .trigger {
        display: block;
        position: relative;
        width: 40px;
        height: 50px;
        text-align: center;
        cursor: pointer;
    }

        .header-lower .nav-button .trigger:before {
            display: block;
            position: relative;
            font-size: 18px;
            line-height: 50px;
            color: #222;
        }

.header-lower .menu-button .trigger:before {
    content: "\e909";
    font-size: 14px;
}

.header-lower .search-button .trigger:before {
    content: "\e090";
    top: 1px;
    left: 2px;
}

.header-lower .personal-button .trigger:before {
    content: "\e005";
}

.header-lower .wishlist-button .trigger:before {
    content: "\e08a";
}

.header-lower .cart-button .trigger:before {
    content: "\e04f";
}

.header-logo-wrapper {
    padding: 5px 7px;
    text-align: left;
    white-space: nowrap;
}

.header-logo {
    display: inline-block;
    max-width: calc(100% - 43px);
    margin-left: 3px;
    vertical-align: middle;
}

    .header-logo a {
        display: block;
        max-width: 100%;
    }

        .header-logo a img {
            max-width: 100%;
        }

.responsive-nav-wrapper {
    padding: 5px 7px;
    text-align: right;
    white-space: nowrap;
}
    /*.responsive-nav-wrapper.nav-down {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.responsive-nav-wrapper.nav-up {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}*/
    .responsive-nav-wrapper .counter {
        position: absolute;
        top: 7px;
        right: 0px;
        width: 18px;
        border-radius: 50%;
        background-color: #f61853;
        text-align: center;
        font-size: 10px;
        line-height: 18px;
        letter-spacing: 0;
        font-weight: 400;
        color: #fff;
    }

.search-box {
    position: relative;
}

    .search-box .search-form {
        position: relative;
        margin: 20px;
    }

    .search-box .search-box-text {
        width: 100%;
        padding-right: 47px;
    }

    .search-box .search-box-button {
        position: absolute;
        top: 0;
        right: 0;
        width: 47px;
        height: 50px;
        font-size: 0;
    }

        .search-box .search-box-button:after {
            content: "\e090";
            margin-right: 3px;
            font-size: 16px;
            color: #222;
        }

.ui-helper-hidden-accessible {
    display: none;
}

.ui-autocomplete {
    position: absolute !important;
    width: auto;
    margin-top: 45px;
    background-color: #fff;
    padding: 0 20px 20px;
}

    .ui-autocomplete .ui-menu-item {
        padding: 5px 0;
    }

        .ui-autocomplete .ui-menu-item:first-child {
            padding-top: 0;
        }

        .ui-autocomplete .ui-menu-item:last-child {
            padding-bottom: 0;
        }

    .ui-autocomplete .ui-menu-item-wrapper {
        display: block;
        font-size: 0;
    }

    .ui-autocomplete .ui-menu-item-image {
        width: 50px;
        margin-right: 10px;
        vertical-align: middle;
    }

    .ui-autocomplete .ui-menu-item-text {
        display: inline-block;
        width: calc(100% - 60px);
        vertical-align: middle;
        font-size: 13px;
    }

    .ui-autocomplete .ui-state-active {
        color: #222;
    }

.mini-shopping-cart {
    padding: 20px;
}

    .mini-shopping-cart .count {
        margin: 0 0 20px;
    }

        .mini-shopping-cart .count a {
            color: #f61853;
        }

    .mini-shopping-cart .items {
        position: relative;
        max-height: 264px; /*two visible items*/
        overflow: hidden;
        width: calc(100% + 20px); /*scrollbar space*/
        padding-right: 20px; /*offset fix*/
    }

    .mini-shopping-cart .item {
        border-bottom: 1px solid #ebebeb;
        overflow: hidden;
        padding: 30px 0;
    }

        .mini-shopping-cart .item.first {
            padding-top: 0;
        }

    .mini-shopping-cart .picture {
        float: left;
        width: 80px;
        text-align: center;
        font-size: 0;
    }

        .mini-shopping-cart .picture a {
            display: inline-block;
            max-width: 100%;
        }

        .mini-shopping-cart .picture + .product {
            margin-left: 100px;
        }

    .mini-shopping-cart .product {
        position: relative;
        padding-right: 30px;
    }

    .mini-shopping-cart .name {
        max-height: 40px;
        overflow: hidden;
        margin: 0 0 10px;
        color: #222;
    }

    .mini-shopping-cart .attributes {
        margin: 10px 0;
    }

    .mini-shopping-cart .price {
        font-weight: 400;
        color: #f61853;
    }

    .mini-shopping-cart .remove {
        position: absolute;
        top: 24px;
        right: 0;
        height: 30px;
        font-size: 0;
        line-height: 30px;
        cursor: pointer;
    }

        .mini-shopping-cart .remove:after {
            content: "\e082";
            font-size: 18px;
            color: #222;
        }

    .mini-shopping-cart .totals {
        padding: 20px 0;
        font-size: 17px;
        font-weight: 400;
        color: #222;
        text-transform: uppercase;
    }

        .mini-shopping-cart .totals strong {
            font-weight: 400;
            color: #f61853;
        }

    .mini-shopping-cart .buttons {
        font-size: 0;
        white-space: nowrap;
    }

    .mini-shopping-cart .button-1 {
        width: 48.5%;
        height: 40px;
        margin-right: 3%;
        border: 1px solid #222;
        outline: 1px solid transparent;
        overflow: hidden;
        padding: 0 20px;
        font-size: 13px;
        line-height: 40px;
        text-transform: uppercase;
        white-space: nowrap;
        color: #222;
        transition: all 0.2s ease;
    }

        .mini-shopping-cart .button-1 + input {
            background-color: #222;
            color: #fff;
        }

        .mini-shopping-cart .button-1:only-child {
            width: 100%;
            background-color: #222;
            font-size: 14px;
            line-height: normal;
            color: #fff;
        }

        .mini-shopping-cart .button-1:hover {
            outline-color: #222;
        }


/* FOOTER */


.footer {
    text-align: center;
}

.newsletter {
    display: none;
}

.home-page-body
.newsletter {
    display: block;
}

.newsletter .title {
    margin: 0 0 20px;
    padding: 0 20px;
    font-size: 28px;
    color: #222;
}

    .newsletter .title .color {
        color: #f61853;
    }

.newsletter-subscribe {
    padding: 0 0 35px;
    font-size: 0;
}

.newsletter-email {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
}

.newsletter-subscribe-text {
    float: left;
    width: 100%;
    border-color: #666 !important;
    text-align: center;
}

.newsletter-subscribe-button {
    float: left;
    width: 100%;
    height: 46px;
    background-color: #222 !important;
    padding: 0 20px;
    font-size: 12px !important;
    color: #fff !important;
    text-transform: uppercase;
}

.newsletter-email .options {
    clear: both;
    height: 0; /*no options*/
    overflow: hidden;
}

    .newsletter-email .options span {
        display: inline-block;
        margin: 10px 5px 0;
        font-size: 12px;
    }

.newsletter-result {
    background-color: #ebebeb;
    padding: 15px 20px;
    line-height: 30px;
    text-transform: lowercase;
    color: #222;
}

    .newsletter-result:empty {
        display: none;
    }

.newsletter-validation {
    display: none !important;
}

.footer-middle {
    background-color: #091169;
    color: #ffffff;
}

.footer-text {
    padding: 60px 20px 55px;
}

    .footer-text .text {
        max-width: 700px;
        margin: 20px auto 30px;
        line-height: 28px;
    }

    .footer-text .read-more {
        display: inline-block;
        min-width: 130px;
        border: 1px solid #fff;
        padding: 8px 15px 7px;
        font-size: 11px;
        color: #fff;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

        .footer-text .read-more:hover {
            box-shadow: 0 0 5px rgba(255,255,255,0.4);
        }

.footer-block-wrapper {
    padding: 0 20px;
}

.footer-block .title {
    position: relative;
    margin: -1px 0 0;
    border-width: 1px 0;
    border-style: solid;
    border-color: #333;
    padding: 16px 20px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

    .footer-block .title:before,
    .footer-block .title:after {
        content: "\e910";
        position: absolute;
        top: 0;
        bottom: 0;
        height: 6px;
        margin: auto;
        font-size: 6px;
        color: #fff;
        transition: all 0.2s ease;
    }

    .footer-block .title:before {
        left: 5px;
    }

    .footer-block .title:after {
        right: 5px;
    }

    .footer-block .title.open:before,
    .footer-block .title.open:after {
        transform: rotate(180deg);
    }

    .footer-block .title strong {
        font-weight: 400;
    }

.footer-block .list {
    display: none;
    padding: 10px 0;
}

    .footer-block .list a {
        display: inline-block;
        padding: 7px 0;
        font-size: 13px;
        transition: all 0.1s ease;
    }

        .footer-block .list a:hover {
            color: #d5b600;
        }

.footer-lower {
    padding: 40px 0 50px;
}

.footer-social-buttons {
    margin: 0 0 20px;
}

    .footer-social-buttons ul {
        font-size: 0;
    }

    .footer-social-buttons li {
        display: inline-block;
        margin: 0 5px;
    }

    .footer-social-buttons a {
        display: block;
        width: 32px;
        height: 32px;
        text-align: center;
    }

        .footer-social-buttons a:before {
            font-size: 13px;
            line-height: 32px;
            color: #222;
        }

    .footer-social-buttons .facebook:before {
        content: "\e90a";
    }

    .footer-social-buttons .twitter:before {
        content: "\e90b";
    }

    .footer-social-buttons .google:before {
        content: "\e916";
        font-size: 12px;
    }

    .footer-social-buttons .pinterest:before {
        content: "\e90c";
    }

    .footer-social-buttons .instagram:before {
        content: "\e90d";
    }

    .footer-social-buttons .youtube:before {
        content: "\e917";
        font-size: 12px;
    }

    .footer-social-buttons .vimeo:before {
        content: "\e915";
        font-size: 12px;
    }

    .footer-social-buttons .rss:before {
        content: "\e90e";
    }

.footer-site-info {
    font-size: 13px;
    line-height: 23px;
    color: #222;
}

    .footer-site-info a {
        color: #f61853;
    }

.footer-payment-methods {
    margin: 30px 0 0;
}

    .footer-payment-methods ul {
        font-size: 0;
    }

    .footer-payment-methods li {
        display: inline-block;
        width: 34px;
        height: 22px;
        margin: 0 5px;
        background: url('../img/payment_sprite.png') no-repeat;
    }

    .footer-payment-methods .method1 {
        background-position: 0 0;
    }

    .footer-payment-methods .method2 {
        background-position: -34px 0;
    }

    .footer-payment-methods .method3 {
        background-position: -68px 0;
    }

    .footer-payment-methods .method4 {
        background-position: -102px 0;
    }

    .footer-payment-methods .method5 {
        background-position: -136px 0;
    }

    .footer-payment-methods .method6 {
        background-position: -170px 0;
    }

.theme-selector {
    position: relative;
    margin: -15px 0 30px;
}

    .theme-selector select {
        position: relative;
        width: 200px;
        border: none;
        outline: 25px solid #fff;
        background-color: #ebebeb !important;
        color: #222;
    }

    .theme-selector:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: 1px;
        margin: auto;
        background-color: #dfdfdf;
    }


/* HOMEPAGE INFO PANEL */


.information-panel {
    display: none; /*hidden on small screens*/
    margin: 0 0 60px;
    overflow: hidden;
    background: url('../img/pattern.png') repeat;
    padding: 10px;
}

.information-box {
    float: left;
    width: calc(100% - 20px);
    margin: 10px;
    background-color: #fff;
    padding: 25px;
    text-align: center;
}

    .information-box .image {
        margin: 0 0 25px;
        font-size: 0;
    }

    .information-box .title {
        margin: 0 0 15px;
        font-size: 26px;
        letter-spacing: 1px;
        text-transform: none;
    }

    .information-box .description {
        margin: 0 0 -5px;
        line-height: 23px;
    }


/* LEFT/RIGHT COLUMN */


.block {
    margin: 0 0 10px;
    text-align: left;
}

    .block .title {
        background-color: #222;
        padding: 14px 30px;
        letter-spacing: 1.2px;
        color: #fff;
        text-transform: uppercase;
        cursor: pointer;
    }

        .block .title:before {
            content: "\e910";
            margin-right: 5px;
            vertical-align: middle;
            font-size: 6px;
            color: #f61853;
        }

        .block .title strong {
            vertical-align: middle;
            font-weight: 800;
        }

    .block .listbox {
        display: none;
        margin: 0 0 12px;
        border-width: 0 1px 1px;
        border-style: solid;
        border-color: #ebebeb;
        padding: 0 25px;
    }

        .block .listbox:after {
            content: "";
            display: block;
            clear: both;
        }

        .block .listbox img {
            display: none;
        }

    .block .list li,
    .block .view-all {
        border-top: 1px solid #ebebeb;
    }

        .block .list a,
        .block .view-all a {
            display: block;
            overflow: hidden;
            padding: 15px 0;
            line-height: 20px;
            color: #222;
            transition: all 0.2s ease;
        }

            .block .list a:before,
            .block .view-all a:before {
                content: "\e902";
                float: left;
                margin-right: 10px;
                font-size: 7px;
                color: #f61853;
            }

            .block .list a:hover,
            .block .view-all a:hover {
                color: #f61853;
            }

    .block .list .active > a {
        color: #f61853;
    }

    .block .list .name {
        float: left;
    }

    .block .list .number {
        float: right;
        color: #222;
    }

    .block .sublist a {
        padding-left: 15px;
    }

    .block .sublist .sublist a {
        padding-left: 30px;
    }

    .block .view-all {
        font-weight: 400;
    }

    .block .tags {
        padding: 15px 0;
    }

        .block .tags ul {
            font-size: 0;
        }

        .block .tags li,
        .product-tags-all-page li {
            display: inline-block;
            position: relative;
            margin: 0 10px 0 0;
            overflow: hidden;
            font-size: 16px !important; /*base size*/
        }

        .block .tags a,
        .product-tags-all-page a {
            float: left;
            line-height: 30px;
            color: #222;
            transition: all 0.2s ease;
        }

            .block .tags a:hover,
            .product-tags-all-page a:hover {
                color: #f61853;
            }

        .block .tags + .view-all {
            margin-bottom: 20px;
            border: none;
        }

            .block .tags + .view-all a {
                padding: 0;
            }

    .block .poll {
        padding: 20px 0 25px;
    }

.poll strong {
    display: block;
    margin: 0 0 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #222;
}

.poll-options li,
.poll-results li {
    padding: 10px 0;
}

.poll .buttons {
    padding: 15px 0 0;
    text-align: left;
}

    .poll .buttons input {
        background-color: #222;
        padding: 8px 24px;
        font-size: 11px;
        text-transform: uppercase;
        color: #fff;
    }

    .poll .buttons .please-wait {
        display: none !important;
    }

.poll-total-votes {
    display: block;
    margin: 10px 0 0;
    line-height: 20px;
    color: #222;
}

.home-page-polls li,
.home-page-polls li {
    display: inline-block;
    margin: 0 10px;
}


/* CATEGORY PAGE */


.breadcrumb {
    background: url('../img/pattern.png') repeat;
    padding: 10px 0;
    text-align: center;
}

    .breadcrumb ul {
        font-size: 0;
    }

    .breadcrumb li {
        display: inline-block;
    }

    .breadcrumb a,
    .breadcrumb strong,
    .breadcrumb .delimiter {
        display: inline-block;
        padding: 5px;
        vertical-align: middle;
        font-size: 13px; /*reset zeroing*/
    }

    .breadcrumb strong {
        font-weight: 300;
    }

    .breadcrumb a:hover {
        color: #222;
    }

    .breadcrumb .delimiter {
        margin-top: -1px;
        font-size: 0;
    }

        .breadcrumb .delimiter:after {
            content: "\e902";
            font-size: 7px;
        }

.sub-category-list {
    margin: 3px 0 -20px;
    padding: 10px 0;
    font-size: 0;
}

.sub-category-item {
    display: inline-block;
    position: relative;
    padding: 0 10px;
    font-size: 14px;
}

    .sub-category-item:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -1px;
        width: 1px;
        height: 15px;
        margin: auto;
        background-color: #c5c5c5;
    }

    .sub-category-item:first-child:before {
        display: none;
    }

    .sub-category-item .name {
        display: block;
        padding: 5px;
    }

        .sub-category-item .name:hover {
            color: #222;
        }

.category-description,
.manufacturer-description,
.vendor-description {
    margin: 0 0 30px;
}

.contact-vendor {
    display: none; /*hidden*/
    margin: 0 0 40px;
}

.contact-vendor-button {
    background-color: #222 !important;
    padding: 8px 24px;
    font-size: 12px !important;
    text-transform: uppercase;
    color: #fff !important;
}

.filters-button {
    display: none;
    margin: 0 0 15px;
    background-color: #222;
    padding: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

    .filters-button:before {
        content: "\e06c";
        margin-right: 5px;
        vertical-align: middle;
        font-size: 17px;
        color: #fff;
    }

    .filters-button span {
        vertical-align: middle;
    }

.product-filters {
    display: none; /*unsupported*/
}

.product-selectors {
    margin: 0 0 30px;
}

    .product-selectors:after {
        content: "";
        display: block;
        clear: both;
    }

.product-select-block {
    float: left;
    width: 48%;
    margin-right: 4%;
}

    .product-select-block.add {
        display: none;
    }

    .product-select-block span {
        display: none;
    }

    .product-select-block select {
        width: 100%;
        border-color: #666;
        background-color: #fff !important;
        text-transform: lowercase;
        color: #222;
    }

.product-page-size {
    margin-right: 0 !important;
}

.product-viewmode {
    display: none;
    font-size: 0;
}

    .product-viewmode a {
        display: inline-block;
        position: relative;
        width: 50px;
        height: 50px;
        text-align: center;
        vertical-align: middle;
        font-size: 0;
    }

        .product-viewmode a:after {
            display: block;
            position: relative;
            font-size: 18px;
            line-height: 50px;
        }

        .product-viewmode a.grid:after {
            content: "\e06a";
            left: 1px;
        }

        .product-viewmode a.list:after {
            content: "\e067";
        }

        .product-viewmode a.selected {
            background-color: #222;
            color: #fff;
        }

.item-grid:after {
    content: "";
    display: block;
    clear: both;
}

.item-box {
    position: relative;
    float: left;
    width: 48%; /*two per row*/
    margin: 0 0 30px 4%;
}

    .item-box:nth-child(2n+1) {
        clear: both;
        margin-left: 0;
    }

    .item-box .picture {
        margin: 0 0 20px;
    }

        .item-box .picture a {
            display: block;
            position: relative;
            overflow: hidden;
        }

            .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%;
            margin: auto;
        }

    .item-box .details {
        text-align: center;
    }

        .item-box .details .sku {
            margin: 0 0 10px;
        }

    .item-box .product-title {
        margin: 0 0 10px;
        overflow: hidden;
        font-size: 14px;
        font-weight: 300;
        color: #222;
    }

        .item-box .product-title a {
            display: block;
        }

    .item-box .rating-box {
        display: none; /*hidden*/
    }

    .item-box .rating-box,
    .overview .rating-box,
    .search-box .rating-box {
        margin: 0 0 10px;
        font-size: 0;
    }

    .item-box .rating-icons,
    .overview .rating-icons,
    .search-box .rating-icons {
        display: inline-block;
        position: relative;
        height: 11px;
        color: #f6e030;
        white-space: nowrap;
        letter-spacing: 3px;
    }

        .item-box .rating-icons:before,
        .overview .rating-icons:before,
        .search-box .rating-icons:before {
            content: "\e900 \e900 \e900 \e900 \e900";
            position: absolute;
            left: 0;
            font-size: 10px;
        }

        .item-box .rating-icons .rating,
        .overview .rating-icons .rating,
        .search-box .rating-icons .rating {
            position: relative;
            overflow: hidden;
        }

            .item-box .rating-icons .rating:before,
            .overview .rating-icons .rating:before,
            .search-box .rating-icons .rating:before {
                content: "\e901 \e901 \e901 \e901 \e901";
                font-size: 10px;
            }

    .item-box .description {
        display: none; /*unsupported*/
    }

    .item-box .old-price {
        text-decoration: line-through;
        margin: 0 3px;
        color: #999;
    }

    .item-box .actual-price {
        margin: 0 3px;
        font-size: 17px;
        font-weight: 400;
        color: #222;
    }

    .item-box .buttons {
        display: none; /*not available on small screens*/
    }

        .item-box .buttons button {
            display: inline-block;
            width: 40px;
            height: 40px;
            font-size: 0;
        }

            .item-box .buttons button:before {
                display: block;
                position: relative;
                font-size: 18px;
                line-height: 40px;
                color: #222;
            }

.quick-view-button:before {
    content: "\e090";
    top: 1px;
    left: 2px;
}

.add-to-compare-list-button:before {
    content: "\e059";
    top: -1px;
    left: 1px;
}

.add-to-wishlist-button:before {
    content: "\e08a";
}

.product-box-add-to-cart-button:before {
    content: "\e04f";
}

.manufacturer-item .title,
.vendor-item .title {
    background: url('../img/pattern.png') repeat;
    text-align: center;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    color: #222;
}

    .manufacturer-item .title a,
    .vendor-item .title a {
        display: block;
        padding: 14px 18px 12px;
    }

.manufacturer-item .picture,
.vendor-item .picture {
    margin-bottom: 0;
}

    .manufacturer-item .picture a:before,
    .vendor-item .picture a:before {
        padding-top: 65%;
    }

.product-grid .title {
    margin: 0 0 35px;
    text-align: center;
    font-size: 21px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #222;
}

    .product-grid .title strong {
        position: relative;
        font-weight: 800;
    }

        .product-grid .title strong:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            background-color: #222;
        }

.home-page .product-grid {
    margin: 0 0 20px;
}

.featured-product-grid .title {
    display: none;
}

.related-products-grid,
.also-purchased-products-grid {
    margin: 0 0 20px;
}

.product-grid.cross-sells {
    margin-top: 50px;
}

.pager {
    margin: 10px 0 0;
    text-align: center;
}

    .pager ul {
        font-size: 0;
    }

    .pager li {
        display: inline-block;
        margin: 0 -1px -1px 0;
        border: 1px solid #ebebeb;
        vertical-align: middle;
    }

        .pager li a,
        .pager li span {
            display: block;
            width: 48px;
            height: 48px;
            background-color: #fff;
            font-size: 14px; /*reset zeroing*/
            line-height: 49px; /*odd number for cross-browser consistency*/
            font-weight: 400;
            color: #222;
            cursor: pointer;
            transition: all 0.2s ease;
        }

            .pager li a:hover {
                background-color: #222;
                color: #fff;
            }

        .pager li span {
            border-color: #222;
            background-color: #222;
            color: #fff;
        }

    .pager .previous-page a,
    .pager .next-page a,
    .pager .first-page a,
    .pager .last-page a {
        font-size: 0;
        color: #444;
    }

        .pager .previous-page a:before,
        .pager .next-page a:before,
        .pager .first-page a:before,
        .pager .last-page a:before {
            display: block;
            font-size: 11px;
        }

        .pager .previous-page a:before {
            content: "\e903";
        }

        .pager .next-page a:before {
            content: "\e904";
        }

        .pager .first-page a:before {
            content: "\e913";
        }

        .pager .last-page a:before {
            content: "\e914";
        }


/* FEATURED CATEGORIES */


.featured-categories.default {
    margin: 0 0 20px;
}

    .featured-categories.default .title {
        margin-bottom: 25px;
        font-size: 17px;
    }

    .featured-categories.default .text,
    .featured-categories.default .button {
        display: none;
    }

    .featured-categories.default .picture {
        margin: 0;
    }

        .featured-categories.default .picture img {
            max-width: none;
            height: 100%;
        }

.featured-categories.in-header {
    position: relative;
    z-index: 0;
}

    .featured-categories.in-header .item-box {
        clear: none;
        width: 100%;
        margin: 0;
    }

    .featured-categories.in-header .wrapper {
        position: relative;
    }

    .featured-categories.in-header .details {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

    .featured-categories.in-header .table {
        display: table;
        width: 100%;
        height: 100%;
    }

    .featured-categories.in-header .table-cell {
        display: table-cell;
        vertical-align: middle;
    }

    .featured-categories.in-header .title {
        font-family: 'Times New Roman', serif;
        font-size: 9vw;
        /*letter-spacing: 0px;*/
        text-transform: uppercase;
        color: #fff;
    }

    .featured-categories.in-header .button {
        display: none; /*inline-block to show*/
        margin: 15px 0 0;
        border: 1px solid #fff;
        padding: 11px 25px 9px;
        font-size: 11px;
        white-space: nowrap;
        text-transform: uppercase;
        color: #fff;
    }

    .featured-categories.in-header .picture {
        margin: 0;
    }

        .featured-categories.in-header .picture:after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            opacity: 0.8;
        }

    .featured-categories.in-header
    .item-box:nth-child(3n+1) .picture:after {
        background-color: #f61853;
    }

    .featured-categories.in-header
    .item-box:nth-child(3n+2) .picture:after {
        background-color: #58c4ed;
    }

    .featured-categories.in-header
    .item-box:nth-child(3n+3) .picture:after {
        background-color: #e1c900;
    }

    .featured-categories.in-header img {
        max-width: none;
        height: 100%;
    }

    .featured-categories.in-header
    .sub-category-list {
        display: none;
    }

    .featured-categories.in-header
    .sub-category-item:before {
        background-color: #fff;
    }

    .featured-categories.in-header
    .sub-category-list .name {
        color: #fff;
        transition: all 0.1s ease;
    }

        .featured-categories.in-header
        .sub-category-list .name:hover {
            text-shadow: 0 0 0 #fff;
        }


/* PRODUCT PAGE */


.product-essential {
    margin: 0 0 30px;
}

    .product-essential:after {
        content: "";
        display: block;
        clear: both;
    }

.gallery {
    max-width: 600px;
    margin: 0 auto 40px;
}

    .gallery .picture {
        position: relative;
        overflow: hidden;
        text-align: center;
        font-size: 0;
    }

        .gallery .picture a {
            display: inline-block;
            max-width: 100%; /*Ie fix*/
        }

    .gallery .picture-thumbs {
        overflow: hidden;
        text-align: center;
        font-size: 0;
    }

    .gallery .thumb-item {
        position: relative;
        float: left;
        width: 22.75%;
        margin: 3% 0 0 3%;
        overflow: hidden;
    }

        .gallery .thumb-item:nth-child(4n+1) {
            clear: both;
            margin-left: 0;
        }

        .gallery .thumb-item:before {
            content: "";
            display: block;
            padding-top: 100%;
        }

        .gallery .thumb-item img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            max-width: 100%;
            max-height: 100%;
            margin: auto;
        }

.discontinued-product {
    margin: 0 0 10px;
    text-align: center;
}

    .discontinued-product h4 {
        font-size: 18px;
        font-weight: 400;
        color: #f61853;
    }

.overview .product-name {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 0 4%;
}

    .overview .product-name h1 {
        font-size: 20px;
        font-weight: 300;
        color: #222;
    }

.product-reviews-overview {
    margin: 7px 0 14px;
}

.overview .rating-box {
    display: inline-block;
    margin: 0;
}

.product-no-reviews,
.product-review-links {
    margin: 5px 0 0;
}

    .product-no-reviews a,
    .product-review-links a {
        font-size: 13px;
        color: #222;
    }

.overview .prices label,
.variant-overview .prices label {
    display: none;
}

.overview .rental-price,
.variant-overview .rental-price {
}

.overview .old-product-price,
.variant-overview .old-product-price,
.overview .non-discounted-price,
.variant-overview .non-discounted-price {
    text-decoration: line-through;
    color: #999;
}

.overview .product-price,
.variant-overview .product-price {
    font-size: 28px;
    color: #f61853;
}

.overview .value,
.variant-overview .value {
}

    .overview .value a,
    .variant-overview .value a {
        color: #f61853;
    }

.manufacturers {
    margin: 0 0 30px;
    text-transform: uppercase;
}

    .manufacturers .label {
        display: none;
    }

    .manufacturers +
    .additional-details {
        margin-top: -25px;
    }

.additional-details {
    margin: 0 0 20px;
    line-height: 28px;
}

    .additional-details .sku,
    .additional-details .mpn,
    .additional-details .gtin {
        text-decoration: underline;
    }

.short-description {
    max-width: 800px;
    margin: 0 auto 26px;
    line-height: 23px;
}

.delivery {
    margin: 0 0 40px;
}

    .delivery .free-shipping {
        font-weight: 400;
        text-transform: uppercase;
        color: #222;
    }

        .delivery .free-shipping:before {
            content: "\e00c";
            position: relative;
            top: -2px;
            margin: 0 7px 0 -10px;
            vertical-align: middle;
            font-size: 20px;
        }

.download-sample {
    margin: 0 0 40px;
}

.download-sample-button {
    font-weight: 400;
    text-transform: uppercase;
    color: #f61853;
}

    .download-sample-button:before {
        content: "\e083";
        position: relative;
        top: -1px;
        margin-right: 7px;
        vertical-align: middle;
        font-size: 20px;
    }

.attributes {
    margin: 20px 0;
}

    .attributes dt {
        display: block;
        margin: 30px 0 15px;
        font-weight: 400;
        text-transform: uppercase;
        color: #222;
    }

    .attributes dd {
        margin: 15px 0 15px;
    }

    .attributes dt:first-child {
        margin-top: 0;
    }

    .attributes dd:last-child {
        margin-bottom: 0;
    }

    .attributes dt label {
        display: inline-block; /*reserves space for "*"*/
    }

    .attributes li {
        margin: 15px 0;
    }

    .attributes select {
        width: auto;
        min-width: 150px;
        max-width: 290px; /*percentage is not working*/
    }

    .attributes .qty-box {
        margin-left: -5px;
    }

        .attributes .qty-box label {
            display: none;
        }

        .attributes .qty-box input {
            width: 60px;
            padding: 0 1px 0 0;
            text-align: center;
        }

            .attributes .qty-box input:focus {
                border-color: #ebebeb;
                background-color: #fff;
            }

.rental-attributes {
    font-size: 0;
}

    .rental-attributes .attribute-item {
        display: inline-block;
        margin: 0 5px;
        font-size: 14px; /*reset zeroing*/
    }

    .rental-attributes .attribute-label {
        display: block;
        margin: 0 0 10px;
        font-weight: 400;
        text-transform: uppercase;
        color: #222;
    }

    .rental-attributes .datepicker {
        width: 130px;
        text-align: center;
    }

.ui-datepicker {
    width: 290px;
    background-color: #fff;
    text-align: center;
}

.ui-datepicker-header {
    position: relative;
    height: 42px;
    background-color: #222;
    color: #fff;
}

    .ui-datepicker-header .ui-datepicker-prev,
    .ui-datepicker-header .ui-datepicker-next {
        position: absolute;
        top: 0;
        z-index: 1;
        width: 40px;
        height: 42px;
        overflow: hidden;
        font-size: 0;
        line-height: 42px;
    }

    .ui-datepicker-header .ui-datepicker-prev {
        left: 0;
    }

    .ui-datepicker-header .ui-datepicker-next {
        right: 0;
    }

        .ui-datepicker-header .ui-datepicker-prev:before,
        .ui-datepicker-header .ui-datepicker-next:after {
            position: absolute;
            font-size: 11px;
        }

    .ui-datepicker-header .ui-datepicker-prev:before {
        content: "\e903";
        left: 15px;
    }

    .ui-datepicker-header .ui-datepicker-next:after {
        content: "\e904";
        right: 14px;
    }

.ui-datepicker-title {
    line-height: 42px;
    font-weight: 400;
    text-transform: uppercase;
}

.ui-datepicker-calendar th {
    font-weight: 400;
    color: #222;
    text-shadow: 0 0 0 #222;
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
    width: 14.285%;
    border: 1px solid #ebebeb;
}

    .ui-datepicker-calendar th span,
    .ui-datepicker-calendar td a {
        display: block;
        min-height: 36px;
        line-height: 36px;
        transition: all 0.1s ease;
    }

        .ui-datepicker-calendar td a:hover {
            color: #000;
        }

.ui-datepicker-calendar a.ui-state-active,
.ui-datepicker-calendar a.ui-state-active:hover {
    color: #f61853;
}

.attribute-squares {
    margin-bottom: -10px;
    font-size: 0;
}

    .attribute-squares li {
        display: inline-block;
        position: relative;
        margin: 2px;
        text-align: center;
    }

    .attribute-squares label {
        display: block;
        position: relative;
        overflow: hidden;
        padding: 0;
    }

    .attribute-squares input {
        position: absolute;
        top: 5px;
        left: 6px;
        z-index: -1;
        margin: 0;
    }

.attribute-square-container {
    display: block;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
}

    .attribute-square-container span {
        display: block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        cursor: pointer;
    }

    .attribute-square-container[title~="White"] span {
        border: 1px solid #ddd;
    }

.selected-value .attribute-square-container {
    border-color: #ddd;
}

.image-squares .attribute-square {
    width: 32px;
    height: 32px;
}

.image-squares .tooltip-container {
    display: none;
    position: absolute;
    bottom: 56px;
    left: -79px;
    width: 200px;
    height: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    background-color: #fff;
    padding: 10px;
}

    .image-squares .tooltip-container:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        margin-left: -10px;
        border-width: 10px 10px 0;
        border-style: solid dashed dashed;
        border-color: #fff transparent transparent;
        filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.06));
    }

.image-squares li:hover .tooltip-container {
    display: block;
}

.page .qq-upload-button,
.k-window .qq-upload-button {
    width: 100%;
    min-width: 280px;
    height: 50px;
    border: 1px solid #ebebeb;
    background-color: #fff;
    padding: 15px;
    text-align: left;
    font-size: 14px;
    color: #777;
}

.page .qq-upload-list li,
.k-window .qq-upload-list li {
    background: none !important;
    color: #333 !important;
    font-size: 12px;
}

.page .qq-upload-list span,
.k-window .qq-upload-list span {
    margin: 0 5px;
}

    .page .qq-upload-list span:empty,
    .k-window .qq-upload-list span:empty {
        display: none;
    }

.giftcard {
    max-width: 380px;
    margin: 0 auto 30px;
}

    .giftcard div {
        margin: 10px 0;
    }

    .giftcard label {
        display: block;
        margin: 0 0 5px;
        color: #222;
        text-transform: uppercase;
    }

    .giftcard input,
    .giftcard textarea {
        width: 100%;
        background-color: #f6f6f6;
    }

    .giftcard textarea {
        min-height: 150px;
    }

.tier-prices {
    margin: 0 0 20px;
}

    .tier-prices .title {
        margin: 0 0 10px;
        text-transform: uppercase;
        color: #222;
    }

        .tier-prices .title strong {
            font-weight: 400;
        }

    .tier-prices .prices-table {
        border: 1px solid #ebebeb;
        overflow: hidden;
    }

    .tier-prices .prices-row {
        float: left;
        width: 50%;
    }

        .tier-prices .prices-row > div {
            border-top: 1px solid #ebebeb;
            padding: 10px;
        }

        .tier-prices .prices-row.thead > div {
            border-right: 1px solid #ebebeb;
        }

    .tier-prices .field-header {
        border-top: none !important;
        color: #222;
    }

    .tier-prices .item-quantity {
        color: #222;
    }

.product-estimate-shipping {
    margin: 35px 0 25px !important;
}

    .product-estimate-shipping a {
        display: inline-block;
    }

    .product-estimate-shipping i {
        display: inline-block;
        transform: rotate(45deg);
        margin: 0 0 3px 10px;
        border: solid black;
        border-width: 0 1px 1px 0;
        padding: 3px 3px;
    }

    .product-estimate-shipping .shipping-loading {
        display: none !important; /*disable preloader*/
    }

    .product-estimate-shipping .shipping-title {
        margin: 0 0 5px;
        font-size: 16px;
        font-weight: 400;
        color: #222;
    }

    .product-estimate-shipping .shipping-price {
        margin: 0 0 0 5px;
        vertical-align: middle;
    }

    .product-estimate-shipping .shipping-date {
        margin: 15px 0 0;
    }

.cart-buttons-wrapper {
    margin: 0 0 20px;
    font-size: 0;
}

.customer-entered-price {
    margin: 0 0 10px;
    font-size: 14px; /*reset zeroing*/
}

    .customer-entered-price .enter-price-label {
        display: block;
        margin: 0 0 10px;
        font-weight: 400;
        text-transform: uppercase;
        color: #222;
    }

    .customer-entered-price .enter-price-input {
        width: 300px;
        max-width: 100%;
        text-align: center;
        font-size: 13px;
        letter-spacing: 1px;
    }

.pre-order-availability-date {
    margin: 0 0 10px;
    font-size: 14px; /*reset zeroing*/
}

    .pre-order-availability-date label {
        display: block;
        color: #222;
    }

.min-qty-notification {
    margin: 0 0 10px;
    font-size: 14px; /*reset zeroing*/
    color: #222;
}

.overview .add-to-cart,
.variant-overview .add-to-cart {
    display: inline-block;
    vertical-align: middle;
}

.add-to-cart .qty-input,
.add-to-cart .qty-dropdown {
    width: 64px;
    height: 42px;
    margin: 8px 4px;
    border: none;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 0 20px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    color: #fff;
    transition: all 0.2s ease;
}

.add-to-cart .qty-dropdown {
    background-image: url('../img/select-arrow-white.png');
}

    .add-to-cart .qty-input:hover,
    .add-to-cart .qty-dropdown:hover {
        outline-color: #222;
    }

.overview .qty-input:focus,
.variant-overview .qty-input:focus {
    outline-color: #222;
    background-color: #222;
    color: #fff;
}

.overview .add-to-cart-button,
.variant-overview .add-to-cart-button {
    min-width: 180px;
    height: 42px;
    margin: 8px 4px;
    outline: 1px solid transparent;
    overflow: hidden;
    background-color: #222;
    padding: 0 20px;
    vertical-align: middle;
    font-size: 14px;
    line-height: 41px; /*odd number for cross-browser consistency*/
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.2s ease;
}

    .overview .add-to-cart-button:before,
    .variant-overview .add-to-cart-button:before {
        content: "+";
        display: inline-block;
        position: relative;
        top: -1px;
        left: -5px;
        height: 42px;
        vertical-align: middle;
        font-size: 18px;
    }

    .overview .add-to-cart-button span,
    .variant-overview .add-to-cart-button span {
        vertical-align: middle;
    }

    .overview .add-to-cart-button:hover,
    .variant-overview .add-to-cart-button:hover {
        outline-color: #222;
    }

.overview-buttons {
    display: inline-block;
    vertical-align: middle;
}

    .overview-buttons .add-to-wishlist,
    .overview-buttons .compare-products {
        display: inline-block;
        margin: 8px 4px;
        vertical-align: middle;
    }

    .overview-buttons .email-a-friend,
    .overview-buttons .email-a-friend-button {
        display: none !important;
    }

    .overview-buttons .add-to-wishlist-button,
    .overview-buttons .add-to-compare-list-button,
    .overview-buttons .variants-scroll-button {
        display: block;
        width: 45px;
        height: 42px;
        outline: 1px solid transparent;
        background-color: #222;
        font-size: 0;
        color: #fff;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

.group-product .add-to-compare-list-button {
    width: auto;
    margin: -10px 0 10px;
    outline: none !important;
    background-color: transparent;
    font-size: 14px; /*reset zeroing*/
    color: #222;
}

.overview-buttons .variants-scroll-button {
    width: auto;
    min-width: 200px;
    margin: 0 0 40px;
    padding: 0 20px;
    font-size: 14px; /*reset zeroing*/
}

    .overview-buttons .add-to-wishlist-button:hover,
    .overview-buttons .add-to-compare-list-button:hover,
    .overview-buttons .variants-scroll-button:hover {
        outline-color: #222;
    }

    .overview-buttons .add-to-wishlist-button:before,
    .overview-buttons .add-to-compare-list-button:before,
    .overview-buttons .variants-scroll-button:before {
        display: block;
        font-size: 15px;
        letter-spacing: 0;
        color: #fff;
    }

.overview-buttons .add-to-compare-list-button:before {
    content: "\e059";
    position: relative;
    top: -2px;
    left: 0;
}

.group-product .add-to-compare-list-button:before {
    display: inline;
    top: 1px;
    margin-right: 10px;
    color: #222;
}

.overview-buttons .variants-scroll-button:before {
    content: "\e07b";
    display: inline;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

.availability {
    margin: 0 0 30px;
}

    .availability .stock {
        text-decoration: underline;
    }

.back-in-stock-subscription {
    margin: 5px 0 0;
    font-size: 0;
    color: #f61853;
}

.product-share label {
    display: block;
    margin: 0 0 5px;
    font-weight: 400;
    text-transform: uppercase;
    color: #222;
}

.product-share .share-item {
    display: inline-block;
}

.product-share .share-link {
    display: block;
    width: 32px;
    height: 32px;
    text-align: center;
}

    .product-share .share-link:before {
        font-size: 13px;
        line-height: 32px;
        color: #222;
    }

.product-share .facebook a:before {
    content: "\e90a";
}

.product-share .twitter a:before {
    content: "\e90b";
}

.product-share .pinterest a:before {
    content: "\e90c";
}

.product-share .google a:before {
    content: "\e916";
    font-size: 12px;
}

.product-share .rss a:before {
    content: "\e90e";
}

.product-variant-line {
    margin: 0 0 30px;
    border-bottom: 1px solid #ebebeb;
    padding: 0 0 20px;
}

    .product-variant-line:after {
        content: "";
        display: block;
        clear: both;
    }

.variant-picture {
    position: relative;
    max-width: 320px;
    margin: 0 auto 35px;
    overflow: hidden;
    font-size: 0;
}

.variant-overview .prices {
    margin: 0 0 25px;
}

.variant-overview .variant-name {
    margin: 0 0 10px;
    font-size: 20px;
    color: #222;
}

.variant-overview .variant-description {
    margin: -5px 0 35px;
    line-height: 23px;
}

.full-description {
    max-width: 1700px;
    margin: 0 auto 70px;
    text-align: center;
    line-height: 23px;
}

.product-collateral .title {
    margin: 0 0 35px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #222;
}

    .product-collateral .title strong {
        position: relative;
        font-weight: 800;
    }

        .product-collateral .title strong:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            background-color: #222;
        }

.product-specs-box {
    margin: 0 0 70px;
}

    .product-specs-box .data-table {
        margin: 0;
    }

    .product-specs-box .spec-name,
    .product-specs-box .spec-value {
        width: 50%;
        padding: 15px;
        text-align: center;
    }

    .product-specs-box .spec-name {
        color: #222;
    }

    .product-specs-box thead {
        display: none;
    }

    .product-specs-box
    .attribute-square-container {
        border-color: #ddd;
    }

    .product-specs-box .attribute-squares {
        display: inline-block;
        vertical-align: middle;
        margin: 0;
    }

    .product-specs-box .attribute-square {
        cursor: default;
    }

.product-tags-list {
    margin: 0 0 70px;
    text-align: center;
    font-size: 0;
    font-weight: 400;
    color: #f61853;
}

    .product-tags-list li {
        display: inline-block;
        font-size: 14px; /*reset zeroing*/
    }

        .product-tags-list li.separator {
            margin: 0 5px 0 3px;
        }

.ui-tabs {
    margin: 0 0 30px;
    border-width: 1px 0;
    border-style: solid;
    border-color: #ebebeb;
    padding: 30px 0;
}

    .ui-tabs .ui-tabs-nav {
        margin: 0 0 20px;
        text-align: center;
    }

        .ui-tabs .ui-tabs-nav li {
            padding: 7px 0;
        }

        .ui-tabs .ui-tabs-nav a {
            display: inline-block;
            position: relative;
            font-size: 18px;
            font-weight: 800;
            color: #222;
            text-transform: uppercase;
        }

            .ui-tabs .ui-tabs-nav a:after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -2px;
                height: 2px;
                background-color: transparent;
            }

    .ui-tabs .ui-tabs-active,
    .ui-tabs .ui-tabs-selected {
        margin-bottom: 5px;
    }

        .ui-tabs .ui-tabs-active a,
        .ui-tabs .ui-tabs-selected a {
            color: #f61853;
        }

            .ui-tabs .ui-tabs-active a:after,
            .ui-tabs .ui-tabs-selected a:after {
                background-color: #f61853;
            }

    .ui-tabs .ui-tabs-panel {
        max-width: 1400px;
        margin: auto;
        text-align: center;
    }

    .ui-tabs .ui-tabs-hide {
        display: none;
    }


/* 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;
        font-weight: 300;
        text-transform: uppercase;
        color: #222;
    }

.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%;
    height: 44px !important;
}

.mfp-container .address-item .required {
    top: 5px;
    right: 5px;
}

.mfp-container .shipping-options {
    position: relative; /*preloader referrence*/
    margin: 10px 0 25px;
}

.mfp-container .shipping-options-header {
    font-size: 14px;
    color: #222;
    text-transform: uppercase;
}

.mfp-container .shipping-header-item {
    align-self: flex-end;
    border: none !important;
    padding: 12px 5px !important;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mfp-container .shipping-options-body {
    display: table;
    table-layout: fixed;
    width: 100%;
    border: 1px solid #ebebeb;
    border-collapse: collapse;
}

.mfp-container .shipping-option {
    display: table-row;
    font-size: 13px;
    cursor: pointer;
}

    .mfp-container .shipping-option.active {
        font-weight: 700;
        color: #222;
    }

    .mfp-container .shipping-option > div {
        display: table-cell;
        border-top: 1px solid #ebebeb;
        padding: 11px;
    }

.mfp-container .shipping-item {
    border-right: 1px solid #ebebeb;
    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;
}

.apply-shipping-button-container {
    text-align: center;
}

.mfp-container .apply-shipping-button {
    min-width: 180px;
    height: 44px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 0 25px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .mfp-container .apply-shipping-button:hover {
        outline-color: #222;
    }

.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 {
    font-style: italic;
}

    .product-reviews-page h1 a:before,
    .product-reviews-page h1 a:after {
        content: "''";
    }

.write-review {
    margin: 50px 0;
    text-align: center;
}

.write-review-button {
    display: inline-block;
    border: 1px solid #222;
    outline: 1px solid transparent;
    padding: 10px 25px;
    font-weight: 300;
    color: #222;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .write-review-button:hover {
        outline-color: #222;
    }

    .write-review-button .close {
        display: none;
    }

.write-review .review-form {
    display: none;
    margin: 50px -3% 0;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.write-review .form-wrapper {
    background-color: #fff;
    padding: 30px 5%;
}

.write-review .message-error {
    margin: -10px 0 30px;
}

.write-review .review-rating {
    text-align: center;
}

    .write-review .review-rating + div {
        margin: 20px 0 0;
    }

    .write-review .review-rating > label {
        display: block;
        margin: 0 0 10px;
        font-size: 14px;
        text-transform: uppercase;
        color: #222;
    }

.write-review .rating-options {
    display: inline-block;
}

    .write-review .rating-options input {
        position: absolute;
        margin: 1px 0 0 5px;
    }

    .write-review .rating-options label {
        display: inline-block;
        max-width: 16px;
        margin: 0 2.5px;
        padding: 0;
    }

        .write-review .rating-options label:before {
            content: "\e901";
            display: block;
            position: static;
            width: auto;
            height: auto;
            border: none !important;
            background: none !important;
            box-shadow: none;
            font-size: 14px;
            color: #f6e030;
        }

    .write-review .rating-options
    input:checked + label ~ label:before {
        content: "\e900";
    }

.write-review .button-1 {
    min-width: 180px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 15px 25px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .write-review .button-1:hover {
        outline-color: #222;
    }

.write-review-result {
    margin: 50px 0;
    text-align: center;
    color: #222;
}

.product-review-list {
    max-width: 900px;
    margin: auto;
}

.product-review-item {
    border-top: 1px solid #ebebeb;
    padding: 30px 0;
}

.review-item-head {
    margin: 0 0 20px;
    overflow: hidden;
}

    .review-item-head .title {
        margin: 0 0 10px;
        font-size: 15px;
        font-weight: 400;
        color: #222;
    }

    .review-item-head .rating-box {
        display: inline-block;
        font-size: 0;
    }

    .review-item-head .rating-icons {
        display: inline-block;
        position: relative;
        height: 11px;
        color: #f6e030;
        white-space: nowrap;
        letter-spacing: 3px;
    }

        .review-item-head .rating-icons:before {
            content: "\e900 \e900 \e900 \e900 \e900";
            position: absolute;
            left: 0;
            font-size: 10px;
        }

        .review-item-head .rating-icons .rating {
            position: relative;
            overflow: hidden;
        }

            .review-item-head .rating-icons .rating:before {
                content: "\e901 \e901 \e901 \e901 \e901";
                font-size: 10px;
            }

.review-type-rating-ext {
    display: none; /*disabled by default*/
}

.product-review-item .review-text {
    margin: 0 0 20px;
    overflow: hidden;
    line-height: 23px;
}

.product-review-item .review-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    font-size: 0;
    line-height: normal;
}

    .product-review-item .review-avatar a {
        display: block;
        height: 100%;
    }

    .product-review-item .review-avatar img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        border: 1px solid #ebebeb;
        border-radius: 50%;
    }

.product-review-item .review-info {
    overflow: hidden;
    font-size: 13px;
}

.product-review-helpfulness {
    margin: 10px 0 0;
    font-size: 0;
}

    .product-review-helpfulness > span {
        display: inline-block;
        margin: 0 3px;
        font-size: 13px; /*reset zeroing*/
    }

    .product-review-helpfulness .vote {
        padding: 0 5px;
        font-weight: 400;
        color: #f61853;
        cursor: pointer;
    }

    .product-review-helpfulness .result {
        display: block;
        margin-top: 10px;
    }

        .product-review-helpfulness .result:empty {
            display: none;
        }

.product-review-item .reply {
    margin: 30px 0 0;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.product-review-item .reply-wrapper {
    background-color: #fff;
    padding: 30px 15px;
}

.product-review-item .reply-header {
    margin: 0 0 10px;
    font-weight: 400;
    font-style: italic;
    color: #222;
}

.product-review-item .reply-text {
    line-height: 23px;
}


/* WISHLIST & COMPARE LIST */


.wishlist-content {
    margin: 15px 0 50px;
}

    .wishlist-content .message-error {
        margin: 0 0 25px;
    }

    .wishlist-content .tax-shipping-info {
        margin: 0 0 30px;
        text-align: center;
    }

    .wishlist-content .buttons {
        font-size: 0;
    }

    .wishlist-content .button-2 {
        min-width: 200px;
        margin: 0 5px 5px;
        border: 1px solid #222;
        outline: 1px solid transparent;
        padding: 10px 25px;
        color: #222;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

        .wishlist-content .button-2:hover {
            outline-color: #222;
        }

    .wishlist-content .buttons
    .wishlist-add-to-cart-button {
        background-color: #222;
        color: #fff;
    }

.wishlist-page .share-info {
    text-align: center;
    color: #222;
}

    .wishlist-page .share-info a {
        display: block;
        margin: 0 0 5px;
        color: #f61853;
    }

.compare-products-table {
    display: none;
}

.compare-products-page .page-body {
    position: relative;
    margin: 0 -3%;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.compare-products-page .clear-list,
.compare-products-page .remove-button {
    display: inline-block;
    border: 1px solid #222;
    outline: 1px solid transparent;
    background-color: #fff;
    padding: 5px 15px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .compare-products-page .clear-list:before,
    .compare-products-page .remove-button:before {
        content: "\e054";
        position: relative;
        top: 1px;
        margin-right: 5px;
        font-size: 14px;
    }
/*.compare-products-page .clear-list:hover,
.compare-products-page .remove-button:hover {
	outline-color: #222;
}*/
.compare-section {
    margin: 20px 0 0;
    border: 1px solid #ebebeb;
    background-color: #fff;
}

    .compare-section .title {
        border-bottom: 1px solid #ebebeb;
        padding: 15px 10px;
        text-align: center;
        font-weight: 800;
        text-transform: uppercase;
        color: #222;
    }

    .compare-section .item {
        display: table;
        width: 100%;
        padding: 15px;
        text-align: left;
    }

        .compare-section .item + .item {
            margin-top: -15px;
        }

    .compare-section .cells {
        display: table-cell;
        padding: 0;
        vertical-align: middle;
        text-align: left;
    }

    .compare-section .picture {
        width: 50px;
        font-size: 0;
    }

        .compare-section .picture a {
            display: block;
        }

        .compare-section .picture img {
            width: 50px;
            max-width: 300px;
        }

        .compare-section .picture + .cells {
            padding: 0 15px;
        }

    .compare-section .button {
        width: 33px;
        font-size: 0;
    }

    .compare-section .remove-button {
        width: 33px;
        height: 33px;
        padding: 0;
        font-size: 0;
    }

        .compare-section .remove-button:before {
            display: block;
            top: 0;
            left: 1px;
            margin: 0;
        }


/* TOPICS */


.topic-block {
    max-width: 1700px;
    margin: 0 auto 30px;
    text-align: center;
}

.topic-block-title {
    display: none;
    color: #222;
}

.topic-block-body,
.topic-page .page-body {
    line-height: 23px;
}

.topic-block a, .topic-page a {
    text-decoration: underline;
    color: #222;
}

.home-page .topic-block {
    margin: 0 auto 40px;
}

.home-page .topic-block-title {
    display: block;
    margin: 0 0 20px;
    text-transform: none;
}

    .home-page .topic-block-title h2 {
        font-size: 25px;
        font-weight: 400;
    }

.ui-dialog .topic-page {
    margin: 0;
}

    .ui-dialog .topic-page p {
        margin: 0;
    }

        .ui-dialog .topic-page p + p {
            margin-top: 20px;
        }

.not-found-page p {
    margin: 30px 0;
}

.not-found-page strong {
    font-weight: 400;
    color: #222;
}

.topic-password {
    margin: 0 -3%;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
    text-align: center;
}

    .topic-password form {
        background-color: #fff;
        padding: 30px 5%;
    }

.enter-password-title {
    margin: 0 0 15px;
    color: #222;
}

.topic-password #password {
    display: block;
    width: 350px;
    max-width: 100%;
    margin: 0 auto 20px;
}

.topic-password #button-password {
    min-width: 180px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 15px 25px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .topic-password #button-password:hover {
        outline-color: #222;
    }

.topic-password .password-error {
    margin: 10px 0 0;
}


/* CONTACT PAGES */


.contact-page form,
.contact-page .form,
.email-a-friend-page form,
.apply-vendor-page form {
    margin: -5px -3% 0;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.contact-page .fieldset,
.email-a-friend-page .fieldset,
.apply-vendor-page .wrapper {
    margin-bottom: 0;
    background-color: #fff;
    padding: 30px 5%;
}

.contact-page .message-error,
.email-a-friend-page .message-error,
.apply-vendor-page .message-error {
    max-width: 1000px;
    margin: 0 auto 20px;
}

.contact-page .buttons,
.email-a-friend-page .buttons {
    background-color: #fff;
    padding-bottom: 30px;
}

.contact-page .button-1,
.email-a-friend-page .button-1,
.apply-vendor-page .button-1 {
    min-width: 180px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 15px 25px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .contact-page .button-1:hover,
    .email-a-friend-page .button-1:hover,
    .apply-vendor-page .button-1:hover {
        outline-color: #222;
    }

.contact-page .topic-block,
.email-a-friend-page .title,
.apply-vendor-page .topic-block {
    padding: 30px 0;
}

    .contact-page .topic-block ~ form .message-error,
    .email-a-friend-page .title ~ form .message-error,
    .apply-vendor-page .topic-block ~ form .message-error {
        margin-top: -20px;
    }

.email-a-friend-page .title {
    margin-bottom: 5px;
    text-align: center;
}

    .email-a-friend-page .title h2 {
        letter-spacing: 1.5px;
        font-weight: 400;
        color: #222;
        text-transform: uppercase;
    }


/* REGISTRATION & LOGIN */


.registration-page .page-body {
    max-width: 900px;
    margin: 0 -3%;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.registration-page form {
    background-color: #fff;
    padding: 30px 5%;
}

.gender span {
    display: inline-block;
    margin: 5px 10px;
}

.gender label,
.news-letter label {
    display: inline-block;
    margin-bottom: 0;
    text-transform: none;
}

.news-letter .wrapper {
    display: inline-block;
    margin: 10px 0 15px;
}

.date-of-birth >
.date-picker-wrapper {
    display: inline-block;
    width: 350px;
    max-width: 100%;
}

.date-of-birth select {
    width: 31% !important;
}

    .date-of-birth select + select {
        margin-left: 3.5%;
    }

#check-availability-button {
    margin: 20px 0 0;
    background-color: #222;
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}

#availability-check-progress {
    display: none !important;
}

#username-availabilty:empty {
    display: none;
}

.vat-status, .vat-note {
    display: block;
    margin: 5px 0 0;
    text-align: center;
    font-size: 13px; /*reset zeroing*/
    white-space: normal;
}

.login-page .button-1,
.registration-page .button-1,
.registration-result-page .button-1,
.password-recovery-page .button-1 {
    min-width: 180px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 15px 25px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .login-page .button-1:hover,
    .registration-page .button-1:hover,
    .registration-result-page .button-1:hover,
    .password-recovery-page .button-1:hover {
        outline-color: #222;
    }

.registration-result-page .result,
.account-activation-page .result {
    margin: 60px 0;
    text-align: center;
    color: #222;
}

.registration-page .message-error,
.customer-blocks .message-error {
    margin: -10px 0 30px;
}

.customer-block {
    margin: 0 -3% -21px;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
    text-align: center;
}

    .customer-block .wrapper {
        background-color: #fff;
        padding: 30px 5%;
    }

    .customer-block .title {
        display: block;
        margin: 0 0 30px;
        font-size: 17px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #222;
    }

        .customer-block .title strong {
            font-weight: 800;
        }

    .customer-block .input-name {
        display: none; /*replaced with placeholder text*/
    }

    .customer-block .remember,
    .customer-block .forgot-password {
        margin: 0 5px;
        padding-top: 1px;
        font-size: 14px; /*reset zeroing*/
        color: #222;
        transition: all 0.1s ease;
    }

        .customer-block .remember:hover,
        .customer-block .forgot-password:hover {
            text-shadow: 0 0 0 #222;
        }

    .customer-block .captcha-box {
        margin-bottom: 35px;
    }

    .customer-block .text {
        min-height: 165px;
        margin: 0 0 30px;
        line-height: 23px;
    }

        .customer-block .text:before {
            content: "\e060";
            display: block;
            width: 60px;
            height: 60px;
            margin: 0 auto 30px;
            background-color: #222;
            padding: 17px 18px 19px;
            font-size: 28px;
            color: #fff;
        }

    .customer-block .guest-button {
        display: block;
        min-width: 215px;
        margin: 0 auto 10px;
    }

        .customer-block .guest-button + input {
            min-width: 215px;
        }

.customer-blocks ~ .topic-block {
    margin-top: 70px;
}

.external-authentication {
    margin-top: 50px;
    text-align: center;
    font-size: 0;
}

    .external-authentication .title {
        display: none;
    }

    .external-authentication .facebook-btn {
        width: 244px;
        height: 42px;
        outline: 1px solid transparent;
        background: url('../img/fb-login.png') no-repeat !important;
        transition: all 0.2s ease;
    }

        .external-authentication .facebook-btn:hover {
            outline-color: #222;
        }

.password-recovery-page .tooltip {
    margin: 0 0 20px;
    padding: 30px 0;
    text-align: center;
}

.password-recovery-page .result {
    margin: 0 0 5px;
    font-weight: bold;
}


/* ACCOUNT PAGES */


.block.block-account-navigation {
    float: none;
    width: auto;
    max-width: 450px;
    margin: auto;
}

.block-account-navigation .list a:before {
    font-size: 14px;
    color: #222;
}

.block-account-navigation .customer-info a:before {
    content: "\e005";
}

.block-account-navigation .customer-addresses a:before {
    content: "\e069";
}

.block-account-navigation .customer-orders a:before {
    content: "\e00c";
}

.block-account-navigation .downloadable-products a:before {
    content: "\e083";
}

.block-account-navigation .back-in-stock-subscriptions a:before {
    content: "\e051";
}

.block-account-navigation .return-requests a:before {
    content: "\e050";
}

.block-account-navigation .reward-points a:before {
    content: "\e028";
}

.block-account-navigation .change-password a:before {
    content: "\e08c";
}

.block-account-navigation .customer-avatar a:before {
    content: "\e021";
}

.block-account-navigation .forum-subscriptions a:before {
    content: "\e02c";
}

.block-account-navigation .customer-reviews a:before {
    content: "\e09b";
}

.block-account-navigation .customer-vendor-info a:before {
    content: "\e04c";
}

.block-account-navigation .customer-gdpr a:before {
    content: "\e08e";
}

.block-account-navigation
.customer-check-gift-card-balance a:before {
    content: "\e918";
}

.block-account-navigation .price-match-requests a:before {
    content: "$";
    position: relative;
    top: -1px;
    font-size: 15px;
}

.customer-pages-body .center-2 {
    margin-top: -15px;
    margin-left: -3%;
    margin-right: -3%;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.customer-pages-body .page-title {
    display: none;
}

.customer-pages-body .page-body {
    max-width: 900px;
    margin: auto;
}

.account-page .button-1,
.return-request-page .button-1,
.user-agreement-page .button-1 {
    min-width: 180px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 15px 25px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .account-page .button-1:hover,
    .return-request-page .button-1:hover,
    .user-agreement-page .button-1:hover {
        outline-color: #222;
    }

.account-page .button-2 {
    min-width: 100px;
    border: 1px solid #222;
    outline: 1px solid transparent;
    padding: 8px 24px;
    font-size: 12px;
    color: #222;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .account-page .button-2:hover {
        outline-color: rgba(34,34,34,0.8);
        text-shadow: 0 0 0 rgba(34,34,34,0.5);
    }

.account-page .message-error {
    margin: -10px 0 30px;
}

.account-page .data-table {
    background-color: #fff;
}

.account-page .description {
    margin: 0 0 30px;
    text-align: center;
    color: #222;
}

.customer-info-page,
.address-edit-page,
.change-password-page,
.customer-avatar-page,
.customer-reviews-list,
.giftcard-balance-page,
.vendor-info-page {
    background-color: #fff;
    padding: 30px 5%;
}

.email-to-revalidate,
.email-to-revalidate-note {
    display: block;
    margin: 5px 0 0;
    text-align: center;
    font-size: 13px; /*reset zeroing*/
    white-space: normal;
}

.add-more-external-records {
    font-size: 14px; /*reset zeroing*/
}

.address-list-page .no-data {
    display: none;
}

.address-list-page .section,
.order-list-page .section,
.return-request-list .section,
.gdpr-tools-page .section,
.price-match-list.section {
    margin: 0 0 20px;
    border: 1px solid #ebebeb;
    background-color: #fff;
    padding: 30px 0;
}

.address-list-page .title {
    margin-bottom: 15px;
}

.order-list-page .title,
.return-request-list .title,
.gdpr-tools-page .title,
.price-match-list .title {
    margin-bottom: 20px;
}

.address-list-page strong:after,
.order-list-page strong:after,
.return-request-list strong:after,
.reward-points-page strong:after,
.gdpr-tools-page strong:after,
.price-match-list strong:after {
    display: none;
}

.address-list-page .buttons {
    margin-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 30px;
}

.order-list-page .buttons,
.gdpr-tools-page .buttons {
    margin-top: 25px;
}

.address-list button:before,
.order-list button:before {
    margin-right: 5px;
    vertical-align: middle;
}

.edit-address-button:before {
    content: "\e05f";
}

.delete-address-button:before {
    content: "\e054";
}

.return-items-button:before {
    content: "\e050";
}

.address-list-page span,
.order-list-page span {
    vertical-align: middle;
}

.address-list-page .info,
.order-list-page .info,
.return-request-list .info,
.gdpr-tools-page .info,
.price-match-list .info {
    padding: 0 5%;
    text-align: center;
    line-height: 23px;
}

    .address-list-page .info .name,
    .address-list-page .info .email {
        font-weight: 400;
        color: #222;
    }

    .address-list-page .info .email {
        margin: 0 0 20px;
    }

.address-list-page .add-button {
    text-align: center;
}

.recurring-payments form {
    margin: 0 -1px;
}

.return-request-list .link,
.price-match-list .link {
    color: #f61853;
}

.return-request-list .comments {
    margin: 20px 0 0;
    color: #222;
}

.downloadable-products-page table {
    margin: 0;
}

.downloadable-products-page .link,
.back-in-stock-subscription-list a {
    color: #f61853;
}

.terms-of-agreement {
    margin: 40px 0;
    text-align: center;
}

.reward-points-history {
    margin-bottom: 0;
}

.reward-points-overview {
    margin: 0 0 40px;
    border: 1px solid #ebebeb;
    background-color: #fff;
    padding: 30px 5%;
    text-align: center;
    color: #222;
}

    .reward-points-overview strong {
        display: block;
        margin: 10px 0;
        font-size: 20px;
        font-weight: 800;
    }

    .reward-points-overview span {
        font-size: 20px;
        color: #f61853;
    }

.reward-points-page .title {
    margin-bottom: 25px;
}

.reward-points-page .pager {
    margin-bottom: 15px;
}

.reward-points-page .total-summary {
    display: none;
}

.change-password-page label {
    display: none;
}

.customer-avatar-page {
    text-align: center !important;
}

    .customer-avatar-page .wrapper {
        margin: 0 0 15px;
    }

    .customer-avatar-page .image {
        margin: 0 0 20px;
    }

        .customer-avatar-page .image img {
            border: 1px solid #ebebeb;
            border-radius: 50%;
        }

    .customer-avatar-page .select-image {
        text-align: center;
    }

    .customer-avatar-page .buttons {
        margin: 40px 0 0;
    }

    .customer-avatar-page .button-1,
    .customer-avatar-page .button-2 {
        min-width: 115px;
        margin: 0 3px;
        border: 1px solid #222;
        padding: 10px 25px;
        font-size: 14px;
    }

.customer-reviews-page
.product-review-item:first-child {
    border-top: none;
    padding-top: 0;
}

.customer-reviews-page
.product-review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.customer-reviews-page .review-title {
    font-size: 16px;
    color: #222;
}

.customer-reviews-page .title-text {
    font-weight: 400;
}

.customer-reviews-page .rating-box {
    margin-top: 10px;
}

.customer-reviews-page .product-name {
    color: #f61853;
}

.customer-reviews-page .review-info {
    line-height: 23px;
}

.customer-reviews-page .separator {
    margin: 0 5px;
}

.giftcard-balance-page .result {
    margin: 0 0 30px;
    text-align: center;
    color: #222;
}

.vendor-info-page .vendor-picture {
    margin: 20px 0;
}


/* SHOPPING CART */


.order-progress {
    margin: 0 0 30px;
    text-align: center;
    font-size: 0;
}

    .order-progress ul {
        display: inline-block;
        overflow: hidden;
    }

    .order-progress li {
        float: left;
        width: calc(50% - 3px);
        margin: 1.5px;
    }

    .order-progress a {
        display: block;
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .order-progress li.active-step a {
        background-color: #f61853;
        color: #fff;
        cursor: pointer;
    }

    .order-progress li.inactive-step a {
        background-color: #ebebeb;
        cursor: default;
    }

.shopping-cart-page .message-error {
    margin: 0 0 25px;
}

.cart-options {
    margin: 0 0 30px;
    text-align: center;
}

    .cart-options .buttons {
        overflow: hidden;
        padding: 1px;
        font-size: 0;
    }

    .cart-options button, .email-a-quote .button-2 {
        min-width: 240px;
        margin: 0 5px 5px;
        border: 1px solid #222;
        outline: 1px solid transparent;
        padding: 10px 20px;
        text-align: left;
        font-size: 12px;
        color: #222;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

        .cart-options button:hover, .email-a-quote .button-2:hover {
            outline-color: #222;
        }

        .cart-options button span {
            vertical-align: middle;
        }

        .cart-options button:before {
            margin-right: 10px;
            vertical-align: middle;
            font-size: 18px;
        }

.update-cart-button:before {
    content: "\e098";
}

.clear-cart-button:before {
    content: "\e054";
}

.more-shopping-button:before {
    content: "\e04e";
    position: relative;
    top: -1px;
}

.cart-footer {
    max-width: 900px;
    margin: auto;
}

.cart-collaterals {
    margin: 0 0 30px;
}

    .cart-collaterals .box {
        margin-bottom: -1px;
        border: 1px solid #ebebeb;
    }

    .cart-collaterals .box-title {
        position: relative;
        background: url('../img/pattern.png') repeat;
        padding: 15px 20px;
        text-align: left;
        font-weight: 800;
        color: #222;
        text-transform: uppercase;
        cursor: pointer;
    }

        .cart-collaterals .box-title:after {
            content: "\e910";
            position: absolute;
            top: 0;
            right: 18px;
            bottom: 0;
            height: 8px;
            margin: auto;
            font-size: 6px;
            color: #f61853;
        }

        .cart-collaterals .box-title strong {
            vertical-align: middle;
            font-weight: 800;
        }

    .cart-collaterals .box-wrapper {
        display: none;
        border-top: 1px solid #ebebeb;
        padding: 7%;
    }

.coupon-box + .giftcard-box {
    margin-top: 30px;
}

.cart-collaterals .box .title {
    margin: -5px 0 10px;
    color: #222;
    text-transform: uppercase;
}

.cart-collaterals .box .hint {
    display: none;
    margin: 0 0 10px;
}

.cart-collaterals .box .button-2 {
    height: 42px;
    border: 1px solid #222;
    outline: 1px solid transparent;
    padding: 0 20px;
    font-size: 12px;
    color: #222;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .cart-collaterals .box .button-2:hover {
        outline-color: #222;
    }

.cart-collaterals .coupon-code {
    position: relative;
}

.cart-collaterals .discount-coupon-code,
.cart-collaterals .gift-card-coupon-code {
    width: 100%;
}

.cart-collaterals .coupon-code .button-2 {
    width: 100%;
    background-color: #222;
    color: #fff;
}

.cart-collaterals .message-failure {
    margin-top: 10px;
    color: #f61853;
}

.cart-collaterals .message-success {
    margin-top: 10px;
    color: #1fc163;
}

.cart-collaterals .current-code {
    position: relative;
    margin-top: 10px;
}

.remove-discount-button:after,
.remove-giftcard-button:after {
    content: "\e905";
    display: block;
    font-size: 11px;
    color: #222;
}

.remove-discount-button,
.remove-giftcard-button {
    margin-left: 5px;
    vertical-align: middle;
    font-size: 0;
}

.applied-discount-code {
    vertical-align: middle;
}

.giftcard-remaining {
    display: block;
}

.estimate-shipping-button {
    border: 1px solid #222;
    outline: 1px solid transparent;
    padding: 12px 20px;
    font-size: 12px;
    color: #222;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .estimate-shipping-button:hover {
        outline-color: #222;
    }

.estimate-shipping .title {
    display: none;
}

.estimate-shipping-result {
    padding-top: 15px;
}

    .estimate-shipping-result:empty {
        display: none;
    }

    .estimate-shipping-result li {
        margin-top: 15px;
    }

    .estimate-shipping-result strong {
        display: block;
        margin-bottom: 2px;
        color: #222;
    }

    .estimate-shipping-result span {
        font-size: 13px;
    }

.attributes-wrapper {
    margin-bottom: -1px;
    border: 1px solid #ebebeb;
    padding: 7%;
}

.checkout-attributes,
.selected-checkout-attributes {
    margin: 0;
}

.cart-footer .totals {
    border: 1px solid #ebebeb;
    padding: 7%;
}

.cart-footer .total-info {
    margin: 0 0 30px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
}

.cart-footer .cart-total td {
    width: 50%;
    padding: 5px;
}

.cart-footer .cart-total-left {
    text-align: left;
}

.cart-footer .cart-total-right {
    text-align: right;
}

.cart-footer .order-total {
    font-size: 16px;
    font-weight: 400;
    color: #f61853;
}

.cart-footer .checkout-buttons {
    text-align: center;
}

.cart-footer .checkout-button, .email-a-quote .button-1 {
    min-width: 200px;
    height: 50px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 0 25px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .cart-footer .checkout-button:hover, .email-a-quote .button-1:hover {
        outline-color: #222;
    }

.cart-footer .checkout-disabled {
    font-size: 18px;
    color: #f61853;
}

.cart-footer .addon-buttons {
    text-align: center;
}


/* CHECKOUT */


.checkout-page .section {
    margin: 0 0 30px;
    text-align: center;
}

    .checkout-page .section .title {
        margin: 0 0 25px;
    }

.checkout-page .title strong:after {
    display: none;
}

.checkout-page .button-1 {
    min-width: 180px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 15px 25px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .checkout-page .button-1:hover {
        outline-color: #222;
    }

.checkout-page .order-summary {
    margin: 60px 0 0;
}

.checkout-page .cart label {
    display: none;
}

.checkout-page .total-info {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.new-billing-address,
.new-shipping-address {
    display: none;
}

.checkout-page .address-grid,
.checkout-page .new-address {
    margin: 0 -3%;
    overflow: hidden;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.checkout-page .address-item,
.checkout-page .enter-address {
    background-color: #fff;
    padding: 30px 5%;
}

.checkout-page .address-item {
    margin: 0 0 20px;
}

.checkout-page .address-box {
    margin: 0 0 25px;
    line-height: 23px;
}

    .checkout-page .address-box .name,
    .checkout-page .address-box .email {
        font-size: 16px;
        color: #222;
    }

    .checkout-page .address-box .email {
        margin: 0 0 20px;
    }

.checkout-page .address-item.add-new {
    margin-bottom: 0;
}

.address-item.add-new .address-box {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
}

.address-item.add-new .new:before {
    content: "\e096";
    display: block;
    height: 180px;
    font-size: 150px;
    color: #c5c5c5;
    transition: all 0.2s ease;
}

.address-item.add-new .active:before {
    color: #f61853;
}

.address-item.add-new button .close {
    display: none;
}

.pickup-in-store .description {
    margin: 5px 0 0;
}

.checkout-page .pickup-points {
    margin: 0;
}

.checkout-page .single-pickup-point {
    display: inline-block;
    margin: 0 5px;
}

.checkout-page .select-address select {
    max-width: 100%;
}

.checkout-page .pickup-points-map {
    height: 300px;
    margin: 30px 0;
}

.select-pickup-point + .buttons {
    margin-top: 30px;
}

.method-list {
    margin: 0 -3% 30px;
    overflow: hidden;
    background: url('../img/pattern.png') repeat;
    padding: 0 20px;
}

    .method-list li {
        margin: 20px 0;
        background-color: #fff;
        padding: 30px 5%;
    }

.method-description {
    max-width: 300px;
    margin: 5px auto 0;
}

.use-reward-points {
    margin: 0 0 30px;
}

li .payment-logo {
    display: none;
}

.payment-info .wrap {
    margin: 0 -3% 30px;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.payment-info .info {
    background-color: #fff;
    padding: 30px 5%;
}

.payment-info tr {
    display: block;
    max-width: 500px;
    margin: auto;
}

.payment-info td {
    display: block;
    width: 100%;
    padding: 5px;
}

.payment-info label {
    color: #222;
}

.payment-info select {
    width: 100%;
}

.payment-info td input {
    width: 100% !important;
}

.payment-info #ExpireMonth,
.payment-info #ExpireYear {
    width: calc(50% - 7px);
}

.payment-info .message-error {
    margin: 0 0 20px;
}

.confirm-order .terms-of-service {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
}

.confirm-order input.button-1 {
    margin: 15px 0 0;
    font-size: 16px;
}

.order-completed .details {
    margin: 0 -3% 30px;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.order-completed .wrapper {
    background-color: #fff;
    padding: 30px 5%;
}

.order-completed .order-number {
    text-transform: uppercase;
    color: #222;
}

.order-completed .details-link {
    margin: 10px 0 0;
    color: #f61853;
}

.opc.default {
    margin: 0 -3%;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
    text-align: center;
}

    .opc.default > li + li {
        margin-top: 15px;
    }

.opc .step-title {
    background-color: #fff;
    padding: 20px 5%;
}

    .opc .step-title .number,
    .opc .step-title .title {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 400;
        color: #c5c5c5;
        text-transform: uppercase;
    }

    .opc .step-title .number {
        margin-right: 8px;
    }

.opc .allow .step-title {
    cursor: pointer;
}

.opc .active .step-title {
    cursor: default;
}

.opc .allow .step-title .number,
.opc .allow .step-title .title {
    font-weight: 800;
    color: #222;
    cursor: pointer;
}

.opc .active .step-title .number,
.opc .active .step-title .title {
    color: #f61853;
    cursor: default;
}

.opc .step-body {
    border-top: 1px solid #f6f6f6;
    background-color: #fff;
    padding: 30px 5%;
}

.opc .checkout-data {
    margin: 0 !important;
}

.opc .section i {
    font-style: normal;
    color: #222;
}

.opc .section > label {
    display: block;
    margin: 0 0 10px;
}

.opc .address-select {
    max-width: 100%;
}

.opc .new-billing-address {
    display: block; /*checkout as guest*/
}

.opc .enter-address {
    padding-bottom: 0 !important;
}

.opc .edit-address {
    margin-bottom: 0;
}

.opc .pickup-points {
    margin-bottom: 30px;
}

    .opc .pickup-points .title {
        display: none;
    }

    .opc .pickup-points .buttons {
        display: none;
    }

.opc .method-list {
    overflow: visible;
    background: none;
    padding: 0;
}

    .opc .method-list li {
        margin: 0;
        padding: 15px 5%;
    }

.opc .use-reward-points {
    margin: 0 0 20px;
}

.opc .payment-info {
    margin-bottom: 0;
}

    .opc .payment-info .info {
        padding-top: 0;
    }

.opc .confirm-tab .wrap {
    margin: 0;
    background: none;
    padding: 0;
}

.opc .confirm-tab ul {
    margin: 0;
    padding: 0;
}

.opc .order-summary {
    margin: 0 0 15px;
}

.opc .terms-of-service {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
}

.opc .back-link {
    display: inline-block;
    min-width: 100px;
    margin: 10px 0;
    border: 1px solid #222;
    outline: 1px solid transparent;
    padding: 14px 24px;
    font-weight: 400;
    color: #222;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .opc .back-link:hover {
        outline-color: #222;
    }

.opc .please-wait {
    display: block;
    margin: 10px 0 0;
}


/* ORDER DETAILS & RETURN REQUEST */


.order-review-data,
.order-details-area,
.shipment-details-area {
    margin: 0 0 60px;
}

    .order-review-data > div,
    .order-details-area > div,
    .shipment-details-area > div {
        margin: 0 0 30px;
    }

    .order-review-data .wrap,
    .order-details-area .wrap,
    .shipment-details-area .wrap {
        margin: 0 -3% 30px;
        background: url('../img/pattern.png') repeat;
        padding: 20px;
    }

    .order-review-data ul,
    .order-details-area ul,
    .shipment-details-area ul {
        background-color: #fff;
        padding: 30px 5%;
    }

    .order-review-data li,
    .order-details-area li,
    .shipment-details-area li {
        padding: 5px 0;
    }

    .order-review-data .name,
    .order-details-area .name,
    .order-review-data .email,
    .order-details-area .email {
        font-size: 16px;
        color: #222;
    }

    .order-review-data .email,
    .order-details-area .email {
        margin: 0 0 20px;
    }

.payment-method-info ul,
.shipping-method-info ul {
    margin-top: -40px;
    font-size: 16px;
    color: #222;
}

.payment-method-info .label,
.shipping-method-info .label,
.payment-method-info .value,
.shipping-method-info .value {
    display: block;
    padding: 5px 0;
}

.order-details-page .title {
    margin-bottom: 25px;
    font-size: 17px;
}

.order-details-page .button-2 {
    display: inline-block;
    margin: 0 3px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 12px 24px;
    font-size: 14px; /*reset zeroing*/
    line-height: normal;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .order-details-page .button-2:hover {
        outline-color: #222;
    }

.order-details-page .order-overview {
    margin-bottom: 30px;
    text-align: center;
    line-height: 28px;
}

.order-details-page .order-buttons {
    margin: 0 0 30px;
    font-size: 0;
}

.order-details-page .order-number {
    margin: 0 0 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #222;
}

.order-details-page .order-info {
    font-weight: 400;
    color: #222;
}

.order-details-page .order-price {
    font-weight: 400;
    color: #f61853;
}

.order-details-area,
.shipment-details-area {
    text-align: center;
}

    .order-details-area .title,
    .shipment-details-area .title {
        font-weight: 800;
    }

.order-details-page .repost p {
    margin: 5px 0 0;
}

.order-details-page .view-detail,
.order-details-page .download a {
    color: #f61853;
}

.order-tax + .order-attributes {
    margin-top: 15px;
}

.order-details-page .cart-footer {
    color: #222;
}

.order-details-page .actions {
    text-align: center;
    font-size: 0;
}

    .order-details-page .actions input {
        min-width: 180px;
        margin: 0 3px 5px;
    }

.shipment-details-area .title {
    margin-bottom: 15px;
}

.return-request-page .title {
    margin: 0 0 20px;
}

.return-request-page .fix:after {
    display: none;
}

.return-request-page .wrapper {
    margin: 0 -3%;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.return-request-page .form-fields {
    background-color: #fff;
    padding: 30px 5%;
}

.return-request-file > label {
    white-space: normal;
}

.return-request-page .buttons {
    margin: 35px 0 10px;
}


/* SEARCH & SITEMAP */


.search-input {
    margin: 0 -3%;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

    .search-input form {
        background-color: #fff;
        padding: 30px 5%;
    }

.basic-search,
.advanced-search {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

    .advanced-search .price-from,
    .advanced-search .price-to {
        width: calc(50% - 5px) !important;
        max-width: 150px !important;
    }

    .advanced-search .price-to {
        margin-left: 9px;
    }

.search-input .button-1 {
    min-width: 180px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 15px 25px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .search-input .button-1:hover {
        outline-color: #222;
    }

.search-input ~ .search-results {
    margin: 60px 0 0;
}

.search-results .filters-button {
    min-width: 180px;
    margin: -20px 0 30px;
}

.search-results .warning,
.search-results .no-result {
    text-align: center;
    color: #222;
}

.sitemap-page .entity {
    margin: 0 0 50px;
    text-align: center;
}

.sitemap-page .entity-title {
    margin: 0 0 25px;
    text-align: center;
    font-size: 19px;
    line-height: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #222;
}

.sitemap-page .entity-body {
    margin: 0 -3%;
    background: url('../img/pattern.png') repeat;
    padding: 20px;
}

.sitemap-page .entity-list {
    background-color: #fff;
    padding: 30px 0;
}

    .sitemap-page .entity-list li {
        display: inline-block;
        margin: 8px 15px;
    }

    .sitemap-page .entity-list a {
        display: block;
        color: #222;
    }

        .sitemap-page .entity-list a:hover {
            color: #f61853;
        }

        .sitemap-page .entity-list a:empty {
            display: none;
        }

.sitemap-page .description {
    margin: 0 0 50px;
    text-align: center;
}


/* BLOG & NEWS */


.block .year strong {
    display: block;
    padding: 15px 0;
    font-weight: 800;
    color: #222;
}

.blog-post, .news-item {
    margin: 0 auto 50px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 40px;
}

    .blog-post .post-head,
    .news-item .news-head {
        margin: 0 0 25px;
        text-align: center;
    }

    .blog-post .post-title,
    .news-item .news-title {
        display: table;
        position: relative;
        margin: 0 auto 30px;
        font-size: 30px;
        font-weight: 400;
        color: #222;
    }

        .blog-post .post-title:after,
        .news-item .news-title:after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -15px;
            left: 0;
            width: 30px;
            height: 2px;
            margin: auto;
            background-color: #f61853;
        }

    .blog-post .post-date,
    .news-item .news-date {
        display: inline-block;
        line-height: 30px;
    }

    .blog-post .post-comments,
    .news-item .news-comments {
        display: inline-block;
        line-height: 30px;
        color: #f61853;
    }

    .blog-post .post-body,
    .news-item .news-body {
        line-height: 23px;
    }

        .blog-post .post-body a:hover,
        .news-item .news-body a:hover {
            color: #f61853;
        }

.blog-posts .buttons,
.news-items .buttons {
    margin: 30px 0 0;
}

.blog-posts .read-more,
.news-items .read-more {
    display: inline-block;
    min-width: 130px;
    outline: 1px solid transparent;
    background-color: #222;
    padding: 12px 24px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

    .blog-posts .read-more:hover,
    .news-items .read-more:hover {
        outline-color: #222;
    }

.blog-page .tags {
    margin: 30px 0 0;
}

    .blog-page .tags label {
        margin: 0 5px;
        color: #222;
    }

    .blog-page .tags ul,
    .blogpost-page .tags ul {
        display: inline-block;
        font-size: 0;
    }

    .blog-page .tags li,
    .blogpost-page .tags li {
        display: inline-block;
        font-size: 14px; /*reset zeroing*/
    }

        .blog-page .tags li.separator,
        .blogpost-page .tags li.separator {
            margin-right: 5px;
        }

    .blog-page .tags a,
    .blogpost-page .tags a {
        display: block;
        color: #f61853;
    }

.blogpost-page .subtitle,
.news-item-page .subtitle {
    margin: 25px 0 0;
}

.blogpost-page .post-comments,
.news-item-page .news-comments {
    color: #f61853;
}

.blogpost-page .post-body,
.news-item-page .news-body {
    margin: 0 0 35px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 30px;
}

.new-comment {
    margin: 60px 0;
    text-align: center;
}

    .new-comment button {
        display: inline-block;
        border: 1px solid #222;
        outline: 1px solid transparent;
        padding: 10px 25px;
        font-weight: 300;
        color: #222;
        cursor: pointer;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

        .new-comment button:hover {
            outline-color: #222;
        }

        .new-comment button .close {
            display: none;
        }

    .new-comment .message-error {
        margin-top: 30px;
    }

    .new-comment .result {
        margin-top: 30px;
        color: #222;
    }

    .new-comment .form {
        display: none;
        margin: 30px -3% 0;
        background: url('../img/pattern.png') repeat;
        padding: 20px;
    }

    .new-comment .wrapper {
        background-color: #fff;
        padding: 30px 5%;
    }

    .new-comment .inputs label {
        display: none;
    }

    .new-comment .buttons {
        margin-top: 25px;
    }

    .new-comment .button-1 {
        min-width: 180px;
        outline: 1px solid transparent;
        background-color: #222;
        padding: 15px 25px;
        color: #fff;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

        .new-comment .button-1:hover {
            outline-color: #222;
        }

.blog-comment,
.news-comment {
    margin: 0 0 40px;
    border-bottom: 1px solid #ebebeb;
    overflow: hidden;
    padding-bottom: 35px;
}

.comment .avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    overflow: hidden;
}

    .comment .avatar a {
        display: block;
        height: 100%;
    }

    .comment .avatar img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        border: 1px solid #ebebeb;
        border-radius: 50%;
    }

.comment-head {
    margin: 0 0 20px;
    overflow: hidden;
}

.comment-author {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
}

.comment-time {
    display: block;
    margin-top: 5px;
    font-size: 11px;
}

.comment-body {
    line-height: 23px;
}

.news-list-homepage,
.home-page-polls {
    margin: 0 0 50px;
    text-align: center;
}

    .news-list-homepage .news-item {
        max-width: 900px;
        margin: 0 auto 30px;
    }

    .news-list-homepage .news-title {
        font-size: 28px;
        line-height: 33px;
    }

    .news-list-homepage .news-body,
    .news-list-homepage .buttons,
    .home-page-polls .buttons {
        text-align: center !important;
    }

    .news-list-homepage .view-all {
        margin-top: 40px;
    }

        .news-list-homepage .view-all a {
            font-weight: 800;
            text-transform: uppercase;
            color: #222;
        }
/*StarPromotions*/
.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
}

.ui-widget {
    font-size: 1.1em;
    font-family: 'Nunito Sans', sans-serif;
}

.ui-widget-content {
    background: #fff;
    color: #222;
}

body .ui-tooltip {
    border-width: 2px;
}

.ui-widget.ui-widget-content {
    border: 1px solid #d3d3d3;
}

.ui-widget-shadow {
    -webkit-box-shadow: -8px -8px 8px #aaa;
    box-shadow: -8px -8px 8px #aaa;
}

.tier-prices .prices-table.prices-table-decoration {
    position: static;
}

    .tier-prices .prices-table.prices-table-decoration tbody tr td,
    .tier-prices .prices-table.prices-table-decoration tbody tr th {
        display: table-cell;
        border: 1px solid #ebebeb !important;
        padding: 15px;
    }

@media (min-width: 1201px) {
    .product-details-page .overview {
        text-align: left;
    }
}

.popup-embrodary td {
    padding: 5px;
}

.price-matrix {
    background: #222;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px;
    float: right;
}

    .price-matrix:hover {
        background-color: #222;
        text-decoration: none;
    }

.new-tier-prices table th {
    border: 1px solid #ddd;
    padding: 10px;
    color: #444;
}

.new-tier-prices .last2 {
    background-color: #eaeaea;
}

.new-tier-prices {
    margin: 10px 0 5px;
}

.radio-dropdown-list {
    border: 1px solid #ddd;
    padding: 10px;
}

    .radio-dropdown-list .ico-help {
        color: #000000;
        font-size: 1.17em;
    }

    .radio-dropdown-list .dts0 {
        padding: 10px 0 10px;
    }

    .radio-dropdown-list .text-prompt {
        font-weight: bold;
        padding-right: 10px;
    }

    .radio-dropdown-list .tooltip {
        border-bottom: none;
        margin-right: 5px;
    }

    .radio-dropdown-list .dts0 .label {
        font-weight: bold;
    }

.table-wrapper h3 span {
    font-size: 14px;
    color: #6c6d6e;
    font-weight: normal;
}

.attributes h3 {
    margin-bottom: 10px;
}

.m-t-0 {
    margin-top: 0 !important;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.size-dropdown-list {
    display: inline-block;
}

    .size-dropdown-list li {
        float: left;
        padding: 5px;
    }

    .size-dropdown-list .att-size-detail {
        text-align: center;
        padding: 6px;
        font-weight: bold;
        color: #000;
        background: #eaeaea;
    }

    .size-dropdown-list .att-qty-detail {
        width: 108px;
        font-weight: bold;
        padding: 6px !important;
        text-align: center;
    }

.item-box .prices, .overview .prices, .variant-overview .prices {
    display: none;
}

@media (min-width: 1001px) {
    .footer-upper {
        width: 1105px;
    }

    .footer-block {
        width: 200px;
    }

    .follow-us {
        width: 230px !important;
    }
}

.payment-icon {
    background: url('../images/payment-icon.png') left center no-repeat;
    height: 32px;
    margin-top: 15px;
    width: 105px;
    margin-bottom: 30px;
}

.addres-o li {
    line-height: 15px;
    margin: 10px 0;
    padding-left: 30px !important;
}

.addre-icon {
    background: url('../img/footer-add-icon.png') left top no-repeat;
}

.email-icon {
    background: url('../img/footer-email-icon.png') left center no-repeat;
}

.phone-icon {
    background: url('../img/footer-phone-icon.png') left center no-repeat;
}

.addres-o .list a {
    padding: 0;
}

@media (min-width: 768px) {
    .addres-o li {
        line-height: 23px;
    }
}

@media (min-width: 1001px) {
    .email-a-quote .inputs label {
        width: 60px;
        display: inline-block;
        margin: 0 50px 0 0;
    }

    .email-a-quote .inputs input[type="text"], .email-a-quote .inputs input[type="email"], .email-a-quote .inputs input[type="tel"], .email-a-quote .inputs input[type="password"], .email-a-quote .inputs select, .email-a-quote .inputs textarea {
        width: 340px;
        font-size: 14px;
        font-family: 'Nunito Sans', sans-serif;
        color: #777;
    }

    .email-a-quote .fieldset, .email-a-quote .buttons {
        margin-bottom: 5px;
    }

    .email-a-quote .form-fields {
        padding: 15px;
    }
}
/*
.overview .qty-label, .variant-overview .qty-label {
	padding: 14px 14px 14px 0;
	display: block !important;
}*/

.m-b-1 {
    margin-bottom: 10px;
}

.overview .manufacturers {
    display: none;
}

.follow-us .social ul {
    border-bottom: none;
    padding: 0;
}

.w-300 {
    width: 300px;
}

.f-left {
    float: left;
}

.h-95 {
    height: 95px;
}

.h-100 {
    height: 100px;
}

.h-110 {
    height: 110px;
}

.upload-text {
    padding-left: 15px;
}

.upload-input .text-prompt {
    padding-right: 0;
    color: #000000;
}

.upload-input .qq-uploader-selector, .custom-color-squares .color-squares {
    margin-top: 10px;
    margin-bottom: 10px;
}

.ui-dialog-content .brandingImageRight {
    float: right;
}

.custom-color-squares {
    margin-bottom: 15px !important;
}

    .custom-color-squares .attribute-squares .attribute-square {
        display: block !important;
        width: 16px !important;
        cursor: pointer;
        float: left;
        border: 1px solid #ddd;
    }

        .custom-color-squares .attribute-squares .attribute-square.only-one {
            width: 32px !important;
        }

.branding-template {
    font-size: 30px;
}

    .branding-template a {
        padding: 10px;
        background-color: #f5f5f5;
    }

.attribute-square-container span {
    height: 32px;
    border-radius: 0;
}
/****** MEGA MENU - STAR PROMOTIONS ******/
.star-promo-menu > .header-links-wrapper {
    width: 38%;
    background: #ffda00;
}

    .star-promo-menu > .header-links-wrapper .header-links a,
    .star-promo-menu > .header-links-wrapper .header-links span {
        line-height: 40px;
        font-size: 14px;
        color: #555;
    }

.star-promo-menu > ul.mobile {
    display: none !important;
}

.star-promo-menu .sublist li a {
    padding: 10px 20px;
}

.star-promo-menu .sublist ul {
    display: grid;
}

.star-promo-menu .sublist .five-auto-cols {
    grid-template-columns: auto auto auto auto auto;
}

.star-promo-menu .sublist .four-auto-cols {
    grid-template-columns: auto auto auto auto;
}

.star-promo-menu .sublist li a:before {
    content: unset;
    padding: 10px 20px;
}

.star-promo-menu ul > li > a > img {
    width: 60px;
    vertical-align: middle;
    margin-right: 10px;
}

.star-promo-menu .sublist .sublist-header {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #545454;
    text-transform: uppercase;
}

    .star-promo-menu .sublist .sublist-header .title {
        color: #091169;
    }

    .star-promo-menu .sublist .sublist-header .description {
        color: #545454;
        float: right;
    }

.star-promo-menu.header-menu > ul > li > a {
    padding: 5px 0;
    font-size: 12px;
    font-weight: 500;
}

.star-promo-menu.header-menu .sublist li a::before {
    display: none
}

.pull-right {
    float: right;
}

.ico-help {
    width: 13px;
    height: 13px;
    display: inline-block;
    position: relative;
    top: 4px;
    background-image: url('../img/info.png');
    background-size: 100%;
}

.branding-template a.file-template {
    display: block;
    background-image: url('../img/pdf.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    width: 30px;
    height: 30px;
}

.overview .attributes .price-matrix {
    position: relative;
    top: -9px;
}

.category-page-body .page-title {
    background: none;
}

.category-page-body .with-subcategories h1 {
    margin-top: 0 !important;
}

.header-logo a img {
    max-height: 50px;
}

.star-promo-menu.header-menu .sublist {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 10px 0;
    text-align: left;
    top: 38px;
    -webkit-box-shadow: 0 0 15px -5px black;
    -moz-box-shadow: 0 0 15px -5px black;
    box-shadow: 0 0 15px -5px black;
    width: 100%;
    left: 0;
}

.star-promo-menu.header-menu ul li:hover > .sublist {
    display: block;
}

@media (min-width: 1001px) {
    .star-promo-menu {
        position: relative;
        z-index: 999;
        float: left;
        width: 80%;
        padding: 7px 0px;
        text-align: left !important;
    }

        .star-promo-menu .top-menu > li > a {
            color: #000;
        }

    .menu-toggle, .sublist-toggle {
        display: none;
    }
}

.our-contacts .list {
    text-align: left;
    margin-left: 10px !important;
}

.res-star-promo-menu.header-menu {
    display: none;
}

.page {
    min-height: initial;
}

.manufacturers + .additional-details {
    margin-top: 0;
}

.add-to-cart .qty-input, .add-to-cart .qty-dropdown {
    width: 75px;
}

.tier-prices {
    overflow: auto;
}

.email-a-quote .button-2 {
    height: 50px;
    font-size: 16px;
    text-align: center;
}

.color-black {
    color: #000000;
}

.email-black-icon {
    background: url('../img/email-icon.png') left center no-repeat;
    background-size: 20px;
}

.phone-black-icon {
    background: url('../img/call-icon.png') left center no-repeat;
    background-size: 20px;
}
.pin-black-icon {
    background: url('../img/pin-icon.png') left center no-repeat;
    background-size: 20px;
}
.email-icon-s {
    background: url('../img/email-icon-s.png') left center no-repeat;
    background-size: 20px;
}

.phone-icon-s {
    background: url('../img/call-icon-s.png') left center no-repeat;
    background-size: 20px;
}

.email-icon-h {
    background: url('../img/email-icon-h.png') left center no-repeat;
    background-size: 20px;
}

.phone-icon-h {
    background: url('../img/call-icon-h.png') left center no-repeat;
    background-size: 20px;
}

.email-icon-a {
    background: url('../img/email-icon-a.png') left center no-repeat;
    background-size: 20px;
}

.phone-icon-a {
    background: url('../img/call-icon-a.png') left center no-repeat;
    background-size: 20px;
}

.email-icon-b {
    background: url('../img/email-icon-b.png') left center no-repeat;
    background-size: 20px;
}

.phone-icon-b {
    background: url('../img/call-icon-b.png') left center no-repeat;
    background-size: 20px;
}

.email-icon-e {
    background: url('../img/email-icon-e.png') left center no-repeat;
    background-size: 20px;
}

.phone-icon-e {
    background: url('../img/call-icon-e.png') left center no-repeat;
    background-size: 20px;
}
.top-menu-contact {
    font-size: 14px;
    padding-bottom: 15px;
}

    .top-menu-contact span {
        padding-left: 25px;
    }

        .top-menu-contact span:first-child {
            margin-right: 10px;
        }

@media (max-width: 1001px) {
    .top-menu-contact {
        padding-top: 0;
    }
}

@media (max-width: 769px) {
    .top-menu-contact {
        display: none;
    }
}
.header-lower-inner .topic-block {
    margin: 0;
    text-align: unset;
}

    .header-lower-inner .topic-block a {
        text-decoration: none;
    }

.footer-middle .topic-block .footer-block {
    border-left: none;
}

@media (max-width: 1201px) {
    .ui-autocomplete {
        position: static !important;
        width: auto !important;
        margin: -20px 20PX 20PX 20PX;
        background-color: #fff;
        padding: 0 20px 0;
    }
}
.search-page .search-input ~ .search-results {
    margin: 0;
}

.search-page .search-input {
    display: none;
}
.imagePopup > a{
    padding:10px;
}
.imagePopup a > img {
    margin-bottom:10px;
}