html {
    background: #fff;
    color: #000;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Roboto', sans-serif, Arial, Helvetica;
    font-size: 10px;
    font-weight: normal;
    line-height: 1.4;
    max-width: 100%;
    position: relative;
}
body {
    font-size: 16px;
    font-size: 1.6rem;
    max-width: 100%;
    position: relative;
}

a {
    color: #aaa;
    outline: 0 !important;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: underline;
}
a:active {
    outline: 0 !important;
}
a:before,
a:after,
.a:before,
.a:after {
    content: '';
}

a,
a:before,
a:after,
a *,
a *:before,
a *:after,
.a,
.a:before,
.a:after,
.a *,
.a *:before,
.a *:after {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

p,
.p {
    margin: 0;
    padding: 0.8rem 0;
}
ul,
ol {
    margin: 0;
    padding: 0;
}

hr {
    background: none;
    border: 0 solid #ccc;
    border-top-width: 1px;
    height: 10px;
    margin: 20px 0 10px;
}

/*
 * Lists
 */
ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
ol {
    margin-left: 35px;
}
ol li {
    padding: 1px 0 1px 0;
}

/*
 * canvas, iframe, img, svg
 */
canvas,
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
iframe {
    border: 0;
    max-width: 100%;
}
svg {
    max-width: 100%;
}

/*
 * Table
 */
table {
    margin: 1em auto;
    max-width: 100%;
}
td,
th {
    border: 1px solid #eee;
    padding: 0.5em 1em;
}
th {
    font-weight: bold;
}
thead {
    background-color: #f7f7f7;
}
tfoot {
    background-color: #f7f7f7;
    color: #888;
}
.tableHover tr:hover td {
    background-color: #f7f7f7;
}
.tableFull {
    width: 100%;
}
.tableFixed {
    table-layout: fixed;
}
.tableFixed td {
    padding: 10px 5px;
}

/*
 * Checkbox / Radio
 */

.checkbox,
.radio {
    background: #fff;
    border: 1px solid #bcbcbc;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    margin: 0 1px;
    overflow: hidden;
    position: relative;
    top: 3px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 20px;
}
.checkbox input,
.radio input {
    margin-left: -22px;
    opacity: 0;
    position: relative;
}

label:hover .checkbox,
label:hover .radio {
    border-color: #777;
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
}

.checkbox:after {
    background: none;
    border-bottom: 2px solid rgba(255, 255, 255, 1);
    border-right: 2px solid rgba(255, 255, 255, 1);
    bottom: 9px;
    content: '';
    display: block;
    height: 0;
    opacity: 0;
    position: absolute;
    left: 2px;
    -webkit-transform-origin: left bottom;
    -moz-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    -o-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);

    -webkit-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    -moz-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    -o-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    width: 0px;
}
.checkbox:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #282828;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    width: 30px;
    margin: -15px 0 0 -15px;
    height: 30px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.checkbox.active:before {
    content: '';
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.checkbox.active,
.radio.active {
    border-color: #000;
}

.checkbox.active:after {
    -webkit-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    -moz-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    -o-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    /*border-color: #000;*/
    height: 12px;
    opacity: 1;
    width: 7px;
}
.checkbox {
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2) inset;
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2) inset;
}
.checkbox.active {
    -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5) inset;
    -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5) inset;
    background: #f5f5f5;
}

.radio {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.radio.active {
    background: #282828;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 0px 1px 1px #bcbcbc;
    -moz-box-shadow: 0px 0px 1px 1px #bcbcbc;
    box-shadow: 0px 0px 1px 1px #bcbcbc;
}
label:hover .radio.active {
    background: #777;
    border-color: #fff;
}

/*
 * Input
 */
.input {
    background: #fff;
    border: 1px solid #aaa;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.2;
    max-width: 100%;
    padding: 9px 8px 9px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: middle;
    width: 220px;
}
.input--long {
    width: 350px;
}
.input--full {
    width: 100%;
}
.input--number {
    text-align: center;
    width: 80px;
}
.input--short {
    text-align: center;
    width: 70px;
}
.input--textarea {
    height: 90px;
    line-height: 1.2em;
    max-width: 500px;
    vertical-align: top;
    width: 100%;
}
.input--full {
    max-width: none;
}
.input--textarea--medium {
    height: 200px;
}
.input--textarea--large {
    height: 400px;
}
.input:focus {
    border-color: #282828;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.input--invalid {
    border-color: #d47171;
}

/*
 * Button
 */
.button,
.input-file {
    background: #bbb;
    border: 0 solid rgba(255, 255, 255, 0);
    -webkit-border-radius: 1.8rem;
    -moz-border-radius: 1.8rem;
    border-radius: 1.8rem;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Roboto Condensed';
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2rem;
    margin: 0;
    max-width: 100%;
    min-width: 155px;
    overflow: hidden;
    padding: 8px 15px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
    z-index: 3;
}
.button--large {
    font-size: 1.4rem;
    padding: 13px 18px 12px;
}
.button--biger {
    font-size: 1.8rem;
    margin-top: 15px;
    padding: 16px 10px;
}
.button--full {
    width: 100%;
}
.button:hover,
a:hover .button,
.input-file:hover {
    border-color: rgba(255, 255, 255, 0);
    color: #fff;
    text-decoration: none;
}
.button:active,
.input-file:active {
    background: #bbb;
    border-color: rgba(255, 255, 255, 0);
}
.button:before,
.input-file:before {
    background: rgba(255, 255, 255, 0.25);
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
    bottom: 0;
    content: '';
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
}
.button:hover:before,
a:hover .button:before,
.input-file:hover:before {
    height: 100%;
    width: 100%;
}

/*
 * Select
 */
select,
select.input,
.select,
.fake-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url('../images/select.svg') no-repeat scroll right center;
    -webkit-border-radius: 0;
    border-radius: 0;
    min-width: 150px;
    outline: medium none !important;
    padding: 4px 2.5px 4px 5px;
    text-overflow: '';
    z-index: 1;
}
select::-ms-expand {
    display: none;
}
select:disabled {
    background-color: regba(0, 0, 0, 0.1);
}
.select--full {
    width: 98%;
}

.input-file {
    overflow: hidden;
    position: relative;
}
.input-file-remove {
    opacity: 0;
    max-width: 0;
    text-decoration: none !important;
    padding: 5px 0;
    display: inline-block;
}
.input-file-remove.active {
    padding: 5px;
    opacity: 1;
    max-width: 30px;
}
.input-file input {
    opacity: 0;
    left: 0;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/*
 * Form
 */
.form {
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.18);
    margin: 0 auto 40px;
    max-width: 800px;
    padding: 30px;
}
/* fill */
.fill .input,
.fill .button,
.fill .select,
.fill .input--textarea {
    padding: 13px 8px 2px;
    width: 100%;
}
.fill-name {
    color: #808080;
    font-size: 1.6rem;
    font-weight: 300;
    left: 30px;
    z-index: 1;
    line-height: 1.4em;
    margin-top: -0.7em;
    pointer-events: none;
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    top: 1.8rem;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.fill-name.fill-focus,
.no-js .fill-name {
    color: #aaa;
    font-size: 1.1rem;
    top: 9px;
}

.label,
.formActions {
    clear: both;
    display: block;
    padding: 3px 0 3px 120px;
}
.label-name {
    float: left;
    font-size: 1.3rem;
    margin-left: -120px;
    padding-right: 5px;
    padding-top: 5px;
    text-align: right;
    width: 110px;
}
.label-value {
    display: inline-block;
    padding: 5px 0 0 0;
}
.label-help {
    color: #aaa;
    display: block;
    font-size: 1.1rem;
    line-height: 1.2em;
}
.label-help--after {
    display: inline-block;
    vertical-align: middle;
}
.label--invalid {
    color: #b72b2b;
}
.label--invalid .input {
    border-color: #d92e2e;
}

.label--big {
    padding-left: 210px;
}
.label--big .label-name {
    margin-left: -210px;
    width: 200px;
}

.label--small {
    padding-left: 80px;
}
.label--small .label-name {
    margin-left: -80px;
    width: 70px;
}

.formActions {
    margin: 1em 0;
    padding-bottom: 15px;
    padding-top: 15px;
}

.formActions--center {
    padding-left: 0;
    text-align: center;
}
.formActions--sides {
    overflow: hidden;
    padding: 15px;
}
.formActions--sides-left {
    float: left;
}
.formActions--sides-right {
    float: right;
}

/*
 * Loading
 */
.loading {
    position: relative;
}
.loading--full {
    background-color: #fff;
    bottom: 0;
    left: 0;
    filter: alpha(opacity = 80);
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
}
.loading-text {
    position: absolute;
    text-align: center;
    top: 51%;
    width: 100%;
}
.loading:after {
    -webkit-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    -moz-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    -o-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #282828;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 1;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-o-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*
 * Media element
 * /
.media {
    display: block;
    margin: .8em 0;
    overflow: hidden;
}
    .media-image {
        float: left;
        margin-right: .8em;
    }
    .media-content {
        margin: 0;
        overflow: hidden;
    }
    .media--triple,
    .media--double {
        display: inline-block;
        margin: .8em .4%;
        vertical-align: top;
        width: 48.8%;
    }
    .media--triple {
        width: 32%;
    }

.media2 {
    display: table;
    margin: .8em 0;
}
    .media2-image,
    .media2-content {
        display: table-cell;
        vertical-align: middle;
    }
    .media2-image {
        padding: 0 .6em 0 0;
    }
    .media2-image--after {
        padding: 0 0.6em;
    }
    .media2--double {
        display: inline-block;
        margin: .4em .4% .8em;
        vertical-align: top;
        width: 48.9%;
    }
    .media2--inline {
        display: inline-block;
        margin: .8em .3em;
        vertical-align: middle;
    }

/*
 * Table Grid
 * /
.grid {
    display: table;
    width: 100%;
}
    .grid--fixed {
        table-layout: fixed;
    }
    .grid-cell {
        display: table-cell;
        vertical-align: middle;
    }
    .grid-cell--tabloid {
        width: 1px;
    }

/*
 * Dropdown
 * /
.dropdown {
    position: relative;
}
    .dropdown-content {
        display: none;
        left: 0;
        position: absolute;
        top: 100%;
        z-index: 500;
    }

/*
 * Hint
 */
.hint {
    color: #999;
    font-size: 0.8em;
    line-height: 1.3em;
}

/*
 * Container
 */
.container {
    margin: 0 auto;
    max-width: 1110px;
    padding: 0 10px;
    position: relative;
}

/*
 * Left
 * /
.leftBlock {
    display: table-cell;
    -webkit-flex: 3;
       -moz-flex: 3;
        -ms-flex: 3;
            flex: 3;
    min-width: 200px;
    padding-right: 20px;
    vertical-align: top;
    width: 200px;
    position: relative;
}

.scrollBody {
    left: 0;
    top: 0;
    position: relative;
}
.scroll .scrollBody {
    position: fixed;
    top: 0;
    max-height: 100% !important;
    overflow: hidden;
}
.scrollbottom {
    position: relative;
}

.scrollbottom .scrollBody {
    position: absolute !important;
}

/*
 * Right
 * /
.rightBlock {
    display: table-cell;
    min-width: 200px;
    padding-left: 20px;
    vertical-align: top;
    width: 200px;
}

/*
 * Content
 * /
.content {
    display: block;
    vertical-align: top;

    overflow-wrap: break-word;
    word-wrap: break-word;

    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;

}
    .content img {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        max-width: 100%;
    }
    .content-noimg img {
        -webkit-box-sizing: content-box;
           -moz-box-sizing: content-box;
                box-sizing: content-box;
        max-width: none;
    }
    .content ul, .content ol {
        margin: .8em 0 15px 22px;
    }
    .content ul {
        list-style: square;
    }
        .content ul li {
            background: no-repeat 0 0.65em url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFAQMAAAC3obSmAAAABGdBTUEAALGPC/xhBQAAAANQTFRFfHx8IKinAwAAAAtJREFUCNdjYIABAAAKAAHn+Nr6AAAAAElFTkSuQmCC);
            padding: 1px 0 1px 12px;
        }

    .content .dropdown-content {
        background: #FFF;
        border: 1px solid #E6E6E6;
        -webkit-border-radius: 4px;
           -moz-border-radius: 4px;
                border-radius: 4px;
        -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
           -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        font-size: 1.4rem;
        min-width: 140px;
        padding: 5px 10px;
    }

/*
 * Breadcrumbs
 * /
.breadcrumbs {
    color: #777;
    font-size: 1.2rem;
    margin: -17px 0 1em;
}
    .breadcrumbs a,
    .breadcrumbs b,
    .breadcrumbs span {
        color: inherit;
        display: inline-block;
        text-decoration: none;
        vertical-align: middle;
    }
    .breadcrumbs a:hover {
        text-decoration: underline;
    }

/*
 * Slider
 */
.slider {
    overflow: visible;
    position: relative;
    width: 100%;
}
.swiper-container {
    overflow: hidden;
}
.swiper-wrapper {
}
.swiper-slide {
    background: none;
    cursor: pointer;
    text-align: center;
}
.swiper-button-next,
.swiper-button-prev {
    background: none;
    border: 0;
    color: #000;
    font-size: 38px;
    height: 38px;
    line-height: 38px;
    margin: -19px auto 0;
    opacity: 0.22;
    overflow: hidden;
    text-align: center;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 38px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.5;
}
.swiper-button-next .icon,
.swiper-button-prev .icon {
    line-height: 38px;
}
.swiper-button-prev {
    left: 5%;
    right: auto;
}
.slider:hover .swiper-button-prev {
}
.swiper-button-next {
    left: auto;
    right: 5%;
}
.slider:hover .swiper-button-next {
}
.swiper-button-disabled {
    display: none;
}
.swiper-pagination {
    bottom: 20px;
    display: table;
    font-size: 0.00001px;
    left: 0;
    margin: 0 auto;
    opacity: 1;
    right: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: auto;
}
.swiper-pagination:hover {
    opacity: 1;
}
.slider:hover .swiper-pagination {
    bottom: 20px;
}
.swiper-pagination:before {
    background: none;
    border: 0;
    bottom: -15px;
    content: '';
    left: -15px;
    position: absolute;
    right: -15px;
    top: -15px;
}
.swiper-pagination-bullet {
    background: #fff;
    border: 1px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 13px;
    margin: 0 3px;
    opacity: 0.5;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 13px;
}
.swiper-pagination:hover .swiper-pagination-bullet {
    opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet:hover {
    background: #000;
    border-color: #000;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #000;
    border-color: #000;
    opacity: 1;
}
.swiper-slides {
    position: relative;
}
.swiper-thumbs {
    position: relative;
}

.slider-banners {
    padding: 0;
}

.slider-product {
}
.slider-product .swiper-button-prev {
    left: 8px;
}
.slider-product .swiper-button-next {
    right: 8px;
}
.slider-product .swiper-thumbs {
    overflow: hidden;
    padding: 8px 0 0;
}
.slider-product .swiper-thumbs .swiper-container {
    margin: 0 -8px;
}
.slider-product .swiper-thumbs .swiper-slide {
    overflow: visible;
    padding: 8px;
    text-align: center;
    width: 33.33%;
}
.slider-product .swiper-thumbs .active:after,
.slider-product .swiper-thumbs .swiper-slide-thumb-active:after {
    border: 1px solid #bbb;
    bottom: 8px;
    content: '';
    left: 8px;
    position: absolute;
    right: 8px;
    top: 8px;
}
.slider-product .swiper-thumbs .swiper-button-prev,
.slider-product .swiper-thumbs .swiper-button-next {
    display: none;
}

/*
 * Pagination
 */
.pagination {
    text-align: center;
}
.pagination-info {
    color: #ccc;
    padding-bottom: 0;
}
.pagination-element {
    /*border: 1px solid #DDD;*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #777;
    display: inline-block;
    margin: 0 -1px 0;
    padding: 3px 10px;
    text-decoration: none;
}
.pagination-element--left,
.pagination-element--right {
    background-color: #eee;
    padding: 3px 15px;
}
.pagination-element:hover {
    background-color: #ddd;
    color: #444;
    position: relative;
    text-decoration: none;
}
.pagination-element--active,
.pagination-element--active:hover {
    background: #666;
    color: #fff;
    font-weight: bold;
}
.pagination-element--disabled,
.pagination-element--disabled:hover {
    background-color: transparent;
    color: #ccc;
    font-weight: normal;
}

/*
 * Items
 * /
.item {
    background: none;
    display: inline-block;
    margin: 0;
    padding: 5px 0 20px;
    text-align: center;
    vertical-align: top;
}
    .item--2 {
        width: 49.5%;
    }
    .item--3 {
        width: 32.5%;
    }
    .item--4 {
        width: 24.5%;
    }
    .item--5 {
        width: 20%;
    }

    .item-image {
        display: block;
        height: 140px;
        line-height: 140px;
    }
        .item-image img {
            vertical-align: middle;
        }

    .item-name {
        display: block;
        font-weight: normal;
        line-height: 1.2em;
        margin: 0 auto;
        max-width: 70%;
        min-height: 2.4em;
    }

/*
 * Box
 */
.box {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    color: #666;
    line-height: 1.4em;
    margin: 0.9em 0;
    padding: 0.7em 1em;
    position: relative;
    text-align: left;
}
.box-close {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    color: #666;
    cursor: pointer;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    right: -6px;
    text-align: center;
    top: -6px;
    width: 16px;
}
.box-close:hover {
    font-weight: bold;
    height: 18px;
    line-height: 18px;
    right: -7px;
    top: -7px;
    width: 18px;
}

.box--ok,
.box--ok .box-close {
    background: #f7ffed;
    border-color: #78ca52;
    color: #4dab01;
}
.box--error,
.box--error .box-close {
    background: #fff0f0;
    border-color: #ff9494;
    color: #d92a2a;
}
.box--info,
.box--info .box-close {
    background: #e9f1ff;
    border-color: #81aeff;
    color: #2f5db3;
}
.box--alert,
.box--alert .box-close {
    background: #ffffde;
    border-color: #e1d042;
    color: #a99b27;
}

.box--error a {
    color: #333;
}
.box--error a:hover {
    color: #000;
}

/*
 * Produkty
 * /
.productFilters {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 40px 0 30px;
}

.dubleColums {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.dubleColums-item {
    width: 50%;
    display: table-cell;
}
.dubleColums-item-mini {
    width: 20%;
}




 .productWrapper {
    text-align: justify;
    font-size: 0;
    margin: 20px -10px;
}
    .productWrapper:after {
        content: '';
        display: inline-block;
        width: 31%;
        width: calc(33.3% - 20px);
        line-height: 1.4;
    }

    @supports (display: grid) {
        .productWrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 20px;
            margin: 20px 0;
        }
    }

/*
 * Top dropdown
 */
.top-dropdown-adv {
    background: #fff;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.51);
    -moz-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.51);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.51);
    color: #000;
    margin-top: -2px;
    padding: 15px;
    position: absolute;
    right: 0;
    text-align: left;
    top: 100%;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 200px;
    z-index: 200;
}
.top-dropdown-adv:before {
    border-bottom: 10px solid #fff;
    border-left: 10px solid rgba(255, 255, 255, 0);
    border-right: 10px solid rgba(255, 255, 255, 0);
    content: '';
    display: none;
    position: absolute;
    right: 31px;
    top: -10px;
    z-index: 10;
}
.top-dropdown-adv:after {
    border-bottom: 11px solid #e6e6e6;
    border-left: 11px solid rgba(255, 255, 255, 0);
    border-right: 11px solid rgba(255, 255, 255, 0);
    content: '';
    display: none;
    position: absolute;
    right: 30px;
    top: -11px;
    z-index: 8;
}
.top-dropdown-adv.top-dropdown-adv--hide {
    filter: alpha(opacity = 0);
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    visibility: hidden;
}
.top-dropdown-adv-right {
    left: auto;
    right: 0;
}

/*
 * Top
 */
.top {
    background: #fff;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 15;
}
.top .t-1 {
    background: #bbb;
    color: #fff;
    min-height: 2.7rem;
    position: relative;
}
.top .t-2 {
    min-height: 7.6rem;
    position: relative;
}

/*
 * Nav
 */
.nav {
    background: none;
    clear: both;
    position: relative;
    text-align: left;
}
.nav .container {
    position: static;
}
.nav-1 {
    position: relative;
    z-index: 5;
}
.nav-ul {
    display: table;
    height: 2.7rem;
    margin: 0 auto 0 0;
}
.nav-li {
    display: table-cell;
    padding: 0 3px;
    position: relative;
    vertical-align: middle;
}
.nav-a {
    color: #fff;
    display: block;
    font-family: 'Roboto Condensed';
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 15px;
    position: static;
    text-decoration: none;
    text-transform: uppercase;
}
.nav-a:hover {
}
.nav-a:before {
    background: rgba(255, 255, 255, 0.31);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 0;
    height: 0;
    left: 50%;
    margin: auto;
    position: absolute;
    right: 50%;
    top: 0;
}
.nav-a:hover:before {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 100%;
    left: 3px;
    right: 3px;
}

.nav-ulul {
    background: #fff;
    -webkit-box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
    display: block;
    left: 0;
    max-height: 75vh;
    max-height: calc(100vh - 3.3rem);
    opacity: 0;
    overflow: auto;
    padding: 0.5rem 1rem;
    pointer-events: none;
    position: absolute;
    top: 2.7rem;
    visibility: hidden;
    width: 27rem;
}
.nav-li:hover .nav-ulul {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    visibility: visible;
}
.nav-lili {
    padding: 0.3rem 0;
}
.nav-aa {
    display: block;
    font-size: 1.2rem;
}

/*Menu na mobilke*/

.c-hamburger {
    display: none;
}
.c-hamburger-bg {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .nofon {
        display: none;
    }
    .c-hamburger-bg {
        background: rgba(0, 0, 0, 0.3);
        display: block;
        height: 120%;
        left: 0;
        opacity: 0;
        position: fixed;
        right: 0;
        top: 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        will-change: opacity;
        z-index: 1000;
    }
    .c-hamburger {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        -webkit-border-radius: none;
        -moz-border-radius: none;
        border-radius: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        cursor: pointer;
        display: block;
        font-size: 0;
        height: 50px;
        left: 5px;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        /*right: 0;*/
        text-indent: -9999px;
        top: 4rem;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        width: 50px;
        will-change: transform;
        z-index: 1010;
    }
    .c-hamburger.active {
        -webkit-transform: translateX(250px);
        -moz-transform: translateX(250px);
        -ms-transform: translateX(250px);
        -o-transform: translateX(250px);
        transform: translateX(250px);
    }
    .c-hamburger.active + .c-hamburger-bg {
        opacity: 1;
        visibility: visible;
    }
    .c-hamburger:focus {
        outline: none;
    }
    .c-hamburger span {
        background: #fff;
        display: block;
        height: 4px;
        left: 9px;
        position: absolute;
        right: 9px;
        top: 23px;
        will-change: background;
    }
    .c-hamburger span::before,
    .c-hamburger span::after {
        background: #fff;
        content: '';
        display: block;
        height: 4px;
        left: 0;
        position: absolute;
        width: 100%;
        will-change: transform;
    }
    .c-hamburger span::before {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .c-hamburger span::after {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    .c-hamburger--htx {
        background: #ccc;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }
    .c-hamburger--htx span {
        /*transition: background 0s 0.5s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
    }
    .c-hamburger--htx span::before,
    .c-hamburger--htx span::after {
        /*transition-delay: 0.5s, 0s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
    }
    .c-hamburger--htx span::before {
        -webkit-transition-property: top, transform;
        -moz-transition-property: top, transform;
        -o-transition-property: top, transform;
        transition-property: top, transform;
    }
    .c-hamburger--htx span::after {
        -webkit-transition-property: bottom, transform;
        -moz-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        transition-property: bottom, transform;
    }
    /* active state, i.e. menu open */
    .c-hamburger--htx.active {
        background-color: #c61e1e;
        background-image: -webkit-gradient(linear, top, bottom, from(#ed4545), to(#c61e1e));
        background-image: -webkit-linear-gradient(top, #ed4545, #c61e1e);
        background-image: -moz-linear-gradient(top, #ed4545, #c61e1e);
        background-image: -o-linear-gradient(top, #ed4545, #c61e1e);
        background-image: linear-gradient(to bottom, #ed4545, #c61e1e);
    }
    .c-hamburger--htx.active span {
        background: rgba(255, 255, 255, 0);
        /*opacity: 0;*/
    }
    .c-hamburger--htx.active span::before {
        /*top: 0;*/
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .c-hamburger--htx.active span::after {
        /*bottom: 0;*/
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .c-hamburger--htx.active span::before,
    .c-hamburger--htx.active span::after {
        /*transition-delay: 0s, 0.5s;*/
    }
    .nav {
        background: #fff;
        bottom: 0;
        -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        clear: both;
        display: block;
        float: none;
        height: 100%;
        left: 0;
        margin: 0;
        max-width: 100%;
        padding: 0;
        position: fixed;
        top: 0;
        -webkit-transform: translateX(-300px);
        -moz-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        -o-transform: translateX(-300px);
        transform: translateX(-300px);
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        width: 300px !important;
        will-change: transform;
        z-index: 1005;
    }
    .nav.active {
        overflow-y: auto;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
        visibility: visible;
    }
    .table {
        display: block;
        width: 100%;
    }
    .table li {
        display: inline-block;
        float: left;
        width: 100%;
    }
    .nav {
        display: block;
        width: 100%;
    }
}

/* shipment */
.shipment {
    font-family: 'Roboto Condensed';
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 0 0 21px;
    position: absolute;
    right: 5px;
    text-transform: uppercase;
    top: 0.5rem;
}
.shipment .icon {
    font-size: 16px;
    height: 16px;
    left: 0;
    margin: -8px 0 0;
    position: absolute;
    top: 50%;
    width: 16px;
}
/* end */

/*
 * Logo
 */
.logo {
    display: block;
    margin: 0;
    padding: 0;
}
.logo-1 {
    font-size: 1.4rem;
    position: relative;
    z-index: 3;
}
.logo a {
    color: #000;
    display: block;
}
.logo img {
    display: block;
    margin: auto;
    width: 100%;
}

/* infoline */
.infoline {
    color: #000;
    font-family: 'Roboto Condensed';
    font-size: 1.2rem;
    padding: 0 0 0 40px;
    position: absolute;
    top: 2.2rem;
}
.infoline .icon {
    font-size: 36px;
    left: 0;
    position: absolute;
    top: 2px;
}
.infoline div {
}
.infoline a {
    color: #bbb;
    font-family: 'Roboto Condensed';
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.8rem;
    text-decoration: none;
}
/* end */

/* top cart */
.top .cart {
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 5px;
    top: 2.2rem;
    width: auto;
    z-index: 100;
}
.top .cart > div > a {
    color: #000;
    display: block;
    line-height: 1.2;
    padding: 0 0 0 50px;
    position: relative;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}
.top .cart.active > div > a {
}
.top .cart > div > a .icon {
    font-size: 34px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 0;
}
.top .cart.active > div > a .icon {
}
.top .cart > div > a .title {
    display: block;
    font-family: 'Roboto Condensed';
    font-size: 1.2rem;
}
.top .cart > div > a .quantity {
    background: #bbb;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    display: none;
    font-size: 1.2rem;
    font-weight: bold;
    height: 20px;
    left: 24px;
    line-height: 19px;
    min-width: 20px;
    padding: 0 2px;
    position: absolute;
    text-align: center;
    top: -11px;
    z-index: 1;
}
.top .cart.active > div > a .quantity {
    display: block;
}
.top .cart > div a .text {
    display: none;
}
.top .cart > div > a .amount {
    display: none;
    font-family: 'Roboto Condensed';
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
    text-align: left;
    white-space: nowrap;
}
.top .cart.active > div > a .amount {
    display: block;
}
.top .cart > div > a .empty {
    color: #aaa;
    display: block;
    font-size: 1.6rem;
    text-align: left;
    text-transform: uppercase;
}
.top .cart.active > div > a .empty {
    display: none;
}
.top .cart .top-dropdown-adv {
    border: 0;
    display: none;
    margin: 0;
    padding: 0;
    right: 0;
    top: 100%;
    width: 400px;
}
.top .cart.active .top-dropdown-adv {
    display: block;
}
.sideCart {
    line-height: 1.2;
    padding: 0;
    text-align: center;
}
.sideCart .title {
    color: #000;
    display: block;
    font-family: 'Roboto Condensed';
    font-size: 1.4rem;
    font-weight: 300;
    padding: 30px 20px 10px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.sideCart .title:after {
    border-bottom: 1px solid #e4e4e4;
    bottom: 0;
    content: '';
    left: 20px;
    margin: 0 auto;
    position: absolute;
    right: 20px;
    width: auto;
}
.sideCart .items {
    display: block;
    margin: 0;
    max-height: 300px;
    max-height: calc(100vh - 300px);
    overflow: auto;
}
.sideCart-list {
    display: table;
    padding: 0 20px;
    text-align: left;
    width: 100%;
}
.sideCart-item {
    display: table-row;
}
.sideCart-item > span {
    border-bottom: 1px solid #e4e4e4;
    display: table-cell;
    font-size: 0.00001px;
    padding: 15px 10px 15px 0;
    vertical-align: top;
    width: 130px;
}
.sideCart-item > span + span {
    padding: 15px 10px 15px 10px;
    width: auto;
}
.sideCart-item > span + span + span {
    padding: 15px 0 15px 10px;
    vertical-align: middle;
    width: 30px;
}

.sideCart-item-img {
    border: 0;
    display: inline-block;
    overflow: hidden;
}
.sideCart-item img {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    will-change: transform;
}
.sideCart-item a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.sideCart-item-name {
    display: block;
    font-family: 'Roboto Condensed';
    font-size: 1.4rem;
    font-weight: bold;
    overflow: hidden;
    padding: 0;
    text-transform: none;
    /*white-space: nowrap;*/
}
.sideCart-item-desc {
    color: #808080;
    display: block;
    font-size: 1.2rem;
    padding: 0 0 10px;
}
.sideCart-item-name a {
    display: inline-block;
    padding: 0 0 2px;
    position: relative;
    text-decoration: none;
}
.sideCart-item-name a:hover {
    /*color: #ff9100;*/
    text-decoration: underline;
}
.sideCart-item-name a:after {
}
.sideCart-item-attr {
    color: #ababab;
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
    padding: 0;
    text-transform: uppercase;
}
.sideCart-item-attr span {
}
.sideCart-item-attr span + span {
}
.sideCart-item-count {
    color: #000;
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 10px 0 0;
    text-transform: uppercase;
}
.sideCart-item-price {
    color: #000;
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.sideCart-item-total {
    color: #000;
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
}
.sideCart-item-remove {
    background: #acacac;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0);
    display: block;
    font-size: 0.000001px;
    height: 22px;
    line-height: 0;
    margin: auto;
    position: relative;
    text-align: center;
    width: 22px;
}
.sideCart-item-remove:hover {
    background: #dd352c;
    text-decoration: none;
}
.sideCart-item-remove:before,
.sideCart-item-remove:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    bottom: 5px;
    content: '';
    left: 5px;
    margin: auto;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 0;
}
.sideCart-item-remove:before {
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
.sideCart-item-remove:after {
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}
.sideCart-item-remove:hover:before,
.sideCart-item-remove:hover:after {
    border-color: #fff;
}
.sideCart .total {
    display: table;
    line-height: 1;
    padding: 15px 10px 0;
    text-transform: uppercase;
    width: 100%;
}
.sideCart .total span {
    color: #000;
    display: table-cell;
    font-size: 1.5rem;
    font-weight: 300;
    padding: 5px 10px;
    text-align: left;
    vertical-align: bottom;
}
.sideCart .total span + span {
    font-size: 3rem;
    font-weight: bold;
    text-align: right;
    white-space: nowrap;
}
.sideCart .shipment {
    color: #000;
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    padding: 0 20px;
    position: relative;
    text-align: right;
    text-transform: uppercase;
}
.sideCart .btns {
    display: block;
    font-size: 0.000001px;
    padding: 15px 20px 20px;
    position: relative;
    text-align: justify;
}
.sideCart .btns:after {
    content: '';
    display: inline-block;
    width: 100%;
}
.sideCart .button {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    font-size: 0.000001px;
    padding: 14px 10px;
    width: 100%;
}
.sideCart .button span {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 22px;
    margin: 0 5px;
    vertical-align: middle;
}
.sideCart .button .icon {
    font-size: 4rem;
    line-height: 1;
}
.sideCart .box {
    margin: 0;
}

.body-info {
    background-color: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
    color: #282828;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 300;
    filter: alpha(opacity = 0);
    opacity: 0;
    padding: 20px;
    position: fixed;
    right: 10px;
    top: -25%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 400px;
    z-index: 99999;
}
.body-info.visible {
    filter: alpha(opacity = 100);
    opacity: 1;
    top: 25px;
}
.body-info > span {
    display: block;
    font-weight: bold;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.body-info > .lower {
    display: block;
    margin: -5px 0;
}
.body-info .sideCart {
    margin: 0 -20px;
}
.body-info .sideCart .btns {
    padding-bottom: 0;
}

/*
 * Search
 */
.search {
    border: 0;
    float: right;
    min-width: 300px;
    padding: 20px 0;
    text-align: right;
    white-space: nowrap;
}
.search legend {
    display: none;
}

/*
 * Main
 */
.main {
    clear: both;
    display: block;
    min-height: 500px;
    min-height: 100vh;
    overflow: visible; /* sticky position required */
    padding: 10.3rem 0 2rem;
    position: relative;
    width: 100%;
}

.main .container > .ibs {
    overflow: visible;
}

.section {
    padding: 10px 0;
    position: relative;
}

.section .path {
    color: #aaa;
    font-family: 'Roboto Condensed';
    font-size: 1.2rem;
    font-weight: 300;
    padding: 5px 0 0;
    text-align: left;
    text-transform: none;
}
.section .path a {
    color: inherit;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.section .path a:hover {
    color: inherit;
}
.section .path a:after {
    border-bottom: 1px solid #aaa;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.section .path a:hover:after {
    width: 100%;
}
.section .path span {
    color: inherit;
    display: inline-block;
}

.section .header {
    color: #bbb;
    font-family: 'Roboto Condensed';
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    overflow: hidden;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
}
.section .path + .header {
    color: #000 !important;
    font-size: 3.4rem;
    padding: 0 0 0.5rem;
}
.section .header u {
    display: inline-block;
    position: relative;
}
.section .header u:before,
.section .header u:after {
    border-top: 1px solid #707070;
    content: '';
    opacity: 0.11;
    position: absolute;
    top: 50%;
}
.section .header u:before {
    right: 100%;
}
.section .header u:after {
    left: 100%;
}

.section .center {
    text-align: center;
}

.section.hap {
}
.hap .path {
    text-align: center;
}
.hap .header:first-child {
    color: #000 !important;
    font-size: 3.4rem;
    padding: 2rem 0 0.5rem;
}

.section.slider-banners {
    padding: 0;
    position: relative;
}

.section.banner {
    padding: 0;
    position: relative;
}
.banner img {
    width: 100%;
}

.section.general {
}
.general .inner {
    margin: 0 -10px;
    overflow: hidden;
}
.general .inner .img {
    float: left;
    margin: 0 10px 5px 0;
    max-width: 33%;
    padding: 10px;
    text-align: center;
}
.general .inner .grp {
    overflow: hidden;
    padding: 10px 10px 40px;
}
.general .inner .con {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    text-align: justify;
}

.general .nodes {
    padding: 10px 0;
}
.nodes .item a {
    color: #000;
    display: block;
    text-align: center;
    text-decoration: none;
}
.nodes .item .img {
    display: block;
    overflow: hidden;
    padding: 100% 0 0;
    position: relative;
}
.nodes .item img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
}
.nodes .item a:hover img {
    opacity: 1;
}
.nodes .item .name {
    font-size: 1.6rem;
    text-align: left;
    text-transform: none;
}

.section.categories {
}
.categories .records {
    padding: 10px 0 0;
}
.categories .item {
}
.categories .item a {
    color: #000;
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}
.categories .item .imgs {
    bottom: 45px;
    left: 0;
    overflow: visible;
    position: absolute;
    top: 0;
    width: 100%;
}
.categories .ib-12 .imgs {
    bottom: 0;
}
.categories .item .imgs img {
    position: absolute;
}
.categories .item .imgs .img-1 {
    max-height: 100%;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    right: 0;
    top: 0;
}
.categories .ib-12 .imgs .img-1 {
    left: 0;
    right: auto;
}
.categories .item .imgs .img-2 {
    bottom: -45px;
    margin: 0 auto;
    max-width: 315px;
    left: 0;
    right: 0;
    width: 44.78%;
}
.categories .ib-12 .imgs .img-2 {
    display: none;
}
.categories .item .grp {
    font-family: 'Roboto Condensed';
    min-height: 305px;
    padding: 20px 50% 20px 20px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
}
.categories .ib-12 .grp {
    min-height: 261px;
    padding: 30px 75% 30px 40px;
}
.categories .item .add {
    background: #fff;
    -webkit-border-radius: 1.1rem;
    -moz-border-radius: 1.1rem;
    border-radius: 1.1rem;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2.2rem;
    margin: 0 0 2.5rem;
    padding: 0 2.3rem;
}
.categories .item .name {
    color: #000;
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 0.3rem 0;
    text-shadow: 1px 0px 0px #f5f5f5;
}
.categories .item .desc {
    font-size: 1.4rem;
    font-weight: 300;
    padding: 0.3rem;
    text-shadow: 1px 0px 0px #f5f5f5;
}
.categories .item .button {
    margin: 1rem 0 0;
}

.section.products {
}
.ibs .ib .products {
    margin-top: -25px;
}
.products .options {
}
.products .records {
    overflow: visible;
    padding: 10px 0;
    position: relative;
}
.products .records .ib {
    width: 25%;
}
.ib .products .records .ib {
    width: 50%;
}
.products .records .item {
    display: block;
    height: 33rem; /* 280px */
    margin: auto;
    max-width: 100%;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100%; /* 260px */
}
.products .item a {
    background: #fff;
    border: 1px solid #e4e4e4;
    display: block;
    left: 0;
    min-height: 100%;
    overflow: visible;
    padding: 0;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
    z-index: 3;
}
.products .item a:hover {
    z-index: 5;
}
.products .item .imgs {
    display: block;
    margin: 0;
    overflow: hidden;
    padding: 80% 0 0;
    position: relative;
}
.products .item .imgs img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 96%;
    max-width: 96%;
    position: absolute;
    right: 0;
    top: 0;
}
.products .item .imgs .img-1,
.products .item a:hover .imgs .img-2 {
    opacity: 1;
    visibility: visible;
}
.products .item .imgs .img-2,
.products .item a:hover .imgs .img-2 + .img-1 {
    opacity: 0;
    visibility: hidden;
}
.products .adds {
}
.products .item .grp {
    display: block;
    line-height: 1.2;
    padding: 3px 10px;
    position: relative;
}
.products .item .name {
    color: #000;
    display: block;
    font-family: 'Roboto Condensed';
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.9rem;
    margin: 0;
    max-height: 1.9rem;
    min-height: 1.9rem;
    overflow: hidden;
    padding: 0;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
    will-change: max-height, white-space;
}
.products .item a:hover .name {
    max-height: 5.7rem;
    white-space: normal;
}
.products .item .desc {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.5rem;
    max-height: 5rem;
    min-height: 5rem;
    overflow: hidden;
    padding: 0.5rem 0 0;
    will-change: max-height;
}
.products .item a:hover .desc {
    max-height: 9.5rem;
}
.products .item .price {
    display: block;
    font-family: 'Roboto Condensed';
    font-size: 0.000001px;
    line-height: 1.1;
    padding: 11px 40px 10px 0;
    text-align: left;
    text-transform: none;
}
.products .item .price i {
    color: #000;
    display: inline-block;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    padding: 2px 0 0;
    vertical-align: middle;
}
.products .item .price .old {
    color: #bbb;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
    margin: 0;
    padding: 0 5px;
    text-decoration: line-through;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}
.products .item .price .new {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0 5px;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}
.products .item .price .old + .new {
}
.products .item .icon {
    background: #bbb;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 11px;
    color: #fff;
    font-size: 22px;
    height: 37px;
    padding: 7px 0 0 1px;
    position: absolute;
    right: 13px;
    text-align: center;
    width: 37px;
}
.products .grade {
}
.products .grade .icon-grade {
    font-size: 1.5rem;
}

.section.product {
}
.product .imgs {
    overflow: hidden;
    padding: 5px 0;
    text-align: left;
}
.product .imgs .ibs {
    margin: 0 -8px;
}
.product .imgs .ib {
    padding: 8px;
    position: relative;
    vertical-align: middle;
    width: 100%;
}
.product .imgs .ib + .ib {
    width: 33.33%;
}
.product .imgs .item {
    display: block;
    margin: 0;
    padding: 0;
    width: auto;
}
.product .imgs .item a,
.product .imgs .item .a {
    background: #fff;
    display: block;
    overflow: hidden;
    padding: 80% 0 0;
    position: relative;
}
.product .imgs .item a:after,
.product .imgs .item .a:after {
    border: 2px solid #e4e4e4;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.product .imgs .item img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    will-change: transform;
}
.product .imgs .item a:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}
.product .grp {
    padding: 10px 0;
}
.product .hap {
}
.product .name {
    color: #000;
    font-family: 'Roboto Condensed';
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    padding: 0.8rem 0;
    text-transform: uppercase;
}
.product .price {
    display: block;
    font-family: 'Roboto Condensed';
    font-size: 0.000001px;
    line-height: 1.1;
    padding: 10px 0;
    text-align: left;
    text-transform: none;
}
.product .price i {
    color: #000;
    display: inline-block;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 300;
    min-width: 55px;
    padding: 2px 0 0;
    vertical-align: middle;
}
.product .price .old {
    color: #bbb;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    padding: 0 5px;
    text-decoration: line-through;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}
.product .price .new {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 0 5px;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}
.product .price .old + .new {
}
.product form {
}
.product .attrs {
}
.product .btns {
    margin: 0 -5px;
    padding: 0 0 20px;
}
.product .btns .left {
    padding: 5px;
    width: 36%;
}
.product .btns .right {
    padding: 5px;
    width: 64%;
}
.product .qty {
    font-family: 'Roboto Condensed';
    display: block;
    line-height: 1.1;
    padding: 0.3rem 0 0.3rem 60px;
    position: relative;
}
.product .qty i {
    color: #000;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 300;
    left: 0;
    line-height: 2.4rem;
    margin-top: -1.2rem;
    padding: 2px 0 0;
    position: absolute;
    top: 50%;
    width: 60px;
}
.product .qty div {
    padding: 0 35px;
    position: relative;
}
.product .qty .input {
    background: #f5f5f5;
    border-color: #f5f5f5;
    font-size: 2.2rem;
    font-weight: 300;
    padding: 6px 4px;
    width: 100%;
}
.product .qty a {
    bottom: 0;
    color: #000;
    left: 0;
    position: absolute;
    text-decoration: none;
    top: 0;
    width: 35px;
}
.product .qty .input + a {
    left: auto;
    right: 0;
}
.product .qty a:hover {
}
.product .qty .icon {
    font-size: 2.4rem;
    left: 0;
    line-height: 2.4rem;
    margin-top: -1.2rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}
.product .btns .button {
    -webkit-border-radius: 2.4rem;
    -moz-border-radius: 2.4rem;
    border-radius: 2.4rem;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 2.9rem;
    padding: 1rem 15px;
    width: 100%;
}
.product .btns .button > span {
    display: inline-block;
    padding: 0 0 0 43px;
    position: relative;
}
.product .btns .button .icon {
    font-size: 33px;
    height: 30px;
    left: 0;
    line-height: 1;
    margin: -16px 0 0;
    position: absolute;
    top: 50%;
}
.product .anchors {
    font-size: 1.8rem;
    padding: 20px 0 0;
}
.product .anchors a {
    color: #000;
    line-height: 1.6;
}
.product .desc {
    font-size: 1.6rem;
}
.product .desc .header {
    font-size: 2.5rem;
}
.product .desc-1 {
    line-height: 1.2;
}
.product .desc-1 .con ul > li {
    padding: 0.8rem 0 0.8rem 25px;
}
.product .desc-1 .con ul > li:before {
    background: none !important;
    border: 4px solid #bbb;
    border-left: 0;
    border-top: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 17px;
    left: 3px;
    top: 0.8rem;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
    width: 10px;
}
.product .desc-2 {
    line-height: 1.6;
    padding: 3rem 0;
    text-align: center;
}
.product .desc-3 {
    line-height: 1.6;
}
.product .desc-3 > div {
    border-top: 1px solid #ebebeb;
    padding: 2.5rem 0;
}
.product .desc-3 .ib {
    vertical-align: middle;
}
.product .desc-3 .header,
.product .desc-3 .con {
    text-align: left;
}
.product .desc-3 > div:nth-child(even) .ibs {
    direction: rtl;
}
.product .desc-3 > div:nth-child(even) .ib {
    direction: initial;
}
.product .desc-3 > div:nth-child(even) .header,
.product .desc-3 > div:nth-child(even) .con {
    text-align: right;
}
.product .grade {
}
.product .grade + a {
    color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
}
.product .reviews {
    padding: 1rem 0;
}
.product .reviews .label {
    padding: 0.5rem 0;
    position: relative;
}
.product .reviews .records {
    padding: 1rem 0;
}
.product .reviews .records .item {
    display: block;
    padding: 1rem 0;
    text-align: left;
}
.product .reviews .desc {
    font-size: 1.4rem;
    padding: 0.3rem 0;
}
.product .reviews .txt {
    font-size: 1.8rem;
    padding: 1.5rem 0 0;
}
.product .reviews form .grade {
    margin: 0.5rem 0 1rem;
}
.product .reviews form .grade label,
.product .reviews form .grade .icon-grade {
    font-size: 2.3rem;
}
.product .reviews form .grade i {
    font-size: 1.4rem;
}
.product .reviews form textarea {
    height: 13rem;
    max-width: 100%;
    width: 100%;
}

.grade {
    display: block;
    margin: 0.5rem 0;
    font-size: 0.000001px;
    overflow: hidden;
    padding: 0;
    position: relative;
    white-space: nowrap;
}
.grade label {
    background: none;
    cursor: pointer;
    font-size: 1.9rem;
    height: 1em;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 1em;
    z-index: 3;
}
.grade label + label {
    left: 1.25em;
}
.grade label + label + label {
    left: 2.5em;
}
.grade label + label + label + label {
    left: 3.75em;
}
.grade label + label + label + label + label {
    left: 5em;
}
.grade label:hover {
    background: rgba(255, 255, 255, 0.5);
}
.grade input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.grade .icon-grade {
    color: #bbb;
    display: inline-block;
    font-size: 1.9rem;
    height: 1em;
    letter-spacing: 0.25em;
    margin: 0;
    position: relative;
    vertical-align: middle;
    z-index: 1;
}
.grade .icon-grade:before,
.grade .icon-grade:after {
    content: '\e912\e912\e912\e912\e912';
}
.grade .icon-grade:after {
    bottom: 0;
    color: #f9dd29;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 1;
}
.grade.grade-10 .icon-grade:after {
    width: 8%;
}
.grade.grade-20 .icon-grade:after,
.grade input:checked + input + input + input + input + .icon-grade:after {
    width: 18%;
}
.grade.grade-30 .icon-grade:after {
    width: 28%;
}
.grade.grade-40 .icon-grade:after,
.grade input + input:checked + input + input + input + .icon-grade:after {
    width: 38%;
}
.grade.grade-50 .icon-grade:after {
    width: 48%;
}
.grade.grade-60 .icon-grade:after,
.grade input + input + input:checked + input + input + .icon-grade:after {
    width: 58%;
}
.grade.grade-70 .icon-grade:after {
    width: 68%;
}
.grade.grade-80 .icon-grade:after,
.grade input + input + input + input:checked + input + .icon-grade:after {
    width: 78%;
}
.grade.grade-90 .icon-grade:after {
    width: 88%;
}
.grade.grade-100 .icon-grade:after,
.grade input + input + input + input + input:checked + .icon-grade:after {
    width: 98%;
}
.grade i {
    color: #bbb;
    display: inline-block;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 300;
    margin: 0 0 0 0.5rem;
    vertical-align: middle;
}
.grade input:checked + input + input + input + input + .icon-grade + i:before {
    content: '1.0';
}
.grade input + input:checked + input + input + input + .icon-grade + i:before {
    content: '2.0';
}
.grade input + input + input:checked + input + input + .icon-grade + i:before {
    content: '3.0';
}
.grade input + input + input + input:checked + input + .icon-grade + i:before {
    content: '4.0';
}
.grade input + input + input + input + input:checked + .icon-grade + i:before {
    content: '5.0';
}

.section.faq {
}
.con .expander {
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    will-change: border;
}
.con .expander.active {
    border-bottom-color: rgba(255, 255, 255, 0);
}
.con .expander:after {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e90e';
    color: #bbb;
    font-size: 30px;
    margin-top: -15px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    will-change: transform;
}
.con .expander.active:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.con .expander + * {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 35px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    visibility: hidden;
    will-change: border, max-height, opacity, overflow, padding, visibility;
}
.con .expander.active + * {
    border-bottom-color: #e7e7e7;
    max-height: 500px;
    opacity: 1;
    overflow: auto;
    padding-bottom: 1.2rem;
    visibility: visible;
}

.section.why {
}
.why .inner {
    position: relative;
}
.why img {
    z-index: 1;
}
.why .img-1 {
}
.why .img-2 {
    /*max-width: 315px;
    width: 29%;*/
    width: 315px;
}
.why .title {
    font-family: 'Roboto Condensed';
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}
.why .records {
    background: #f5f5f5;
    padding: 5px 0;
    text-align: center;
}
.why .item .a {
    display: block;
    font-family: 'Roboto Condensed';
    line-height: 1.4;
    padding: 5px 3px 10px;
    position: relative;
    text-transform: uppercase;
}
.why .item .a:before {
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -100%;
    height: 0;
    left: -100%;
    margin: auto;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: -100%;
    top: -100%;
    visibility: hidden;
    width: 0;
}
.why .item .a:hover:before {
    opacity: 1;
    padding: 120% 0 0;
    visibility: visible;
    width: 120%;
}
.why .item .icon {
    display: block;
    height: 61px;
    line-height: 61px;
    position: relative;
}
.why .item .icon-like {
    font-size: 44px;
}
.why .item .icon-realization {
    font-size: 61px;
}
.why .item .icon-medal {
    font-size: 46px;
}
.why .item .icon-open {
    font-size: 53px;
}
.why .item .icon-love {
    font-size: 45px;
}
.why .item .icon-coins {
    font-size: 42px;
}
.why .item .name {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    position: relative;
}
.why .item .desc {
    font-size: 1.3rem;
    font-weight: 300;
    position: relative;
}

.contactIco {
    padding-left: 35px;
    position: relative;
}
.contactIco .icon {
    font-size: 2.5rem;
    left: 0;
    position: absolute;
    top: 0.7rem;
}

/*
.fluidTabs {
    overflow: hidden;
    padding-top: 42px;
}
    .fluidTabs .fluidTabs-tabs {
        display: table;
        width: 100%;
        margin: 0;
        padding: 0;
        table-layout: fixed;
        -webkit-box-shadow: inset 0px -31px 22px -30px rgba(0,0,0,0.12);
        -moz-box-shadow: inset 0px -31px 22px -30px rgba(0,0,0,0.12);
        box-shadow: inset 0px -31px 22px -30px rgba(0,0,0,0.12);
    }
        .fluidTabs .fluidTabs-tabs li {
            background: none;
            color: #282828;
            cursor: pointer;
            display: table-cell;
            font-size: 1.5rem;
            font-weight: bold;
            padding: 0 1px;
            position: relative;
            text-align: center;
            -webkit-transition: all 0.2s ease-out;
               -moz-transition: all 0.2s ease-out;
                 -o-transition: all 0.2s ease-out;
                    transition: all 0.2s ease-out;
            vertical-align: middle;
        }

        .fluidTabs .fluidTabs-tabs li.active {
        }
        .fluidTabs .fluidTabs-tabs li:before {
            -webkit-box-shadow: 0px 0px 30px -6px rgba(0,0,0,0);
            -moz-box-shadow: 0px 0px 30px -6px rgba(0,0,0,0);
            box-shadow: 0px 0px 30px -6px rgba(0,0,0,0);
            border-top: 4px solid #e7184d;
            background: #fff;
            content: "";
            display: block;
            height: 100%;
            left: 100%;
            z-index: 1;
            position: absolute;
            right: 0;
            top: 0px;
            -webkit-transition: all 0.3s ease-out 0s;
               -moz-transition: all 0.3s ease-out 0s;
                 -o-transition: all 0.3s ease-out 0s;
                    transition: all 0.3s ease-out 0s;
        }        
        .fluidTabs .fluidTabs-tabs li.active:before {
            -webkit-box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.14);
            -moz-box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.14);
            box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.14);
        }
        .fluidTabs .fluidTabs-tabs li.active ~ li:before {
            left: 0;
            right: 100%;
        }
        .fluidTabs .fluidTabs-tabs li.active:before {
            z-index: 2;
            left: 0 !important;
            right: 0 !important;
        }
            .fluidTabs .fluidTabs-tabs li a {
                overflow: hidden;
                text-overflow: ellipsis;
                padding: 15px 5px;
                color: #282828;
                border-top: none;
                position: relative;
                z-index: 3;
                display: block;
            }
            .fluidTabs .fluidTabs-tabs li a:hover {
                text-decoration: none;
            }

            .fluidTabs .fluidTabs-tabs li:hover a, .fluidTabs .fluidTabs-tabs li.active a {
                color: #e7184d;
            }



    .fluidTabs .fluidTabs-tab-box {
        margin-bottom: -30px;
        overflow: hidden;
        padding-bottom: 50px;
        position: relative;
        white-space: nowrap;
        width: 100%;
        z-index: 9;
    }
    .fluidTabs .fluidTabs-tab-div {
        background: #fff none repeat scroll 0 0;
        display: inline-block;
        max-height: 0px;
        overflow: visible;
        padding: 10px;
        -webkit-transition: all 0.8s ease 0s;
           -moz-transition: all 0.8s ease 0s;
             -o-transition: all 0.8s ease 0s;
                transition: all 0.8s ease 0s;
        vertical-align: top;
        white-space: normal;
        width: 100%;
    }
    .fluidTabs .fluidTabs-tab-div.active {
        max-height: 1500px;
        filter: alpha(opacity = 100);
        opacity: 1;
    }

/*
 * Footer
 */
.footer {
    clear: both;
    color: #fff;
    font-family: 'Roboto Condensed';
    overflow: hidden;
    padding: 0;
    position: relative;
}

.footer .f-1 {
    padding: 45px 0 20px;
}
.f-1 .logo {
    margin: 0 auto;
    max-width: 294px;
    width: 100%;
}

.footer .f-2 {
    line-height: 1.4;
    padding: 15px 0 30px;
}
.f-2 .ibs .ib {
    font-size: 1.4rem;
    font-weight: 300;
    padding: 20px 10px;
}
.f-2 .ib .ico {
    padding: 0 0 2rem 54px;
    position: relative;
}
.f-2 .ib .ico .icon {
    color: #fff;
    font-size: 36px;
    left: 0;
    position: absolute;
}
.f-2 .ib .ico .icon-pin {
    top: 0.5rem;
}
.f-2 .ib .ico .icon-call {
    top: 1rem;
}
.f-2 .ib h4 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    padding: 1rem 0 2rem;
    text-transform: uppercase;
}
.f-2 .ib div {
    padding: 0;
}
.f-2 .ib ul {
    padding: 0;
}
.f-2 .ib ul li {
    padding: 0;
}
.f-2 .ib a {
    display: inline-block;
    text-decoration: none;
}

.f-2 .ib {
    text-transform: uppercase;
}
.f-2 .ib + .ib + .ib {
    text-transform: none;
}
.f-2 .ib .phone {
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1;
    padding: 0.5rem 0 0;
}
.f-2 .ib .phone a {
    color: #fff;
}
.f-2 .ib .hours {
    color: #fff;
}

.footer .f-3 {
    font-size: 0.000001px;
    padding: 1rem 0;
    text-align: center;
}
.f-3 div {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
    padding: 0 15px;
    position: relative;
}
.f-3 span,
.f-3 a {
    color: inherit;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.redhand {
}
.redhand:hover {
    color: #ff001d;
}
.redhand:after {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6UlEQVR4AZXPQUcFURiH8UPEEK0iUlzO6q6ibatWcVd3dYn5AK2ib9BqaBsx24j5BhEREcN8gLZtY4hZDcO/ZzGHVzpnmsXPOYv3fXid3GHKMQocwMFjHy74vbCHO5zDoYFwjwxfaFKBawgdPB4hfGAJAfGARw/hHTk0WsUCCzR4xREKaHSLAcJDLLA0Q584RQuht38Iw18n5CbyjQpKyGACsBHzxtzYQCyS0mHHBqxL6B/ObGAba2xwghqakNtACc20DoEtvKGFZtiEgLXAFZ7QQwllCMTs4gIFniGjQmYCkzxqvGAFF/wAE9ukCYLfD9EAAAAASUVORK5CYII=');
    bottom: 10%;
    display: block;
    height: 16px;
    left: 50%;
    margin-left: -6px;
    opacity: 0;
    position: absolute;
    -webkit-transform: rotate(-95deg);
    -moz-transform: rotate(-95deg);
    -ms-transform: rotate(-95deg);
    -o-transform: rotate(-95deg);
    transform: rotate(-95deg);
    -webkit-transform-origin: 8px 10px;
    -moz-transform-origin: 8px 10px;
    -ms-transform-origin: 8px 10px;
    -o-transform-origin: 8px 10px;
    transform-origin: 8px 10px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 16px;
}
.redhand:hover:after {
    bottom: 100%;
    margin-left: -8px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

/*
 * Modyfikatory
 */
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alignLeft {
    text-align: left;
}
.alignRight {
    text-align: right;
}
.alignCenter {
    text-align: center;
}

.right {
    float: right;
}
.left {
    float: left;
}

.pullLeft {
    float: left;
    margin: 0.7em 0.7em 0.7em 0;
}
.pullRight {
    float: right;
    margin: 0.7em 0 0.7em 0.7em;
}
.pullRight:first-child,
.pullLeft:first-child {
    margin-top: 0;
}

.pullCenter {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: auto;
}

.movie {
    display: block;
    padding: 56.25% 0 0;
    position: relative;
    width: 100%;
}
.movie > iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.button-basketUpdate {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    float: right;
    margin-right: 27.1%;
    opacity: 0;
    position: relative;
    -webkit-transform: translate(0, -30px);
    -ms-transform: translate(0, -30px);
    transform: translate(0, -30px);
    visibility: hidden;
}
.button-basketUpdate-show {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: 5;
    animation-iteration-count: 3;
    -webkit-animation-name: basketUpdate;
    animation-name: basketUpdate;
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
    visibility: visible;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes basketUpdate {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
/* Standard syntax */
@keyframes basketUpdate {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* read more link */
.more {
    font-family: 'Roboto Condensed';
    font-size: 1.4rem;
    font-weight: 300;
    padding: 0 5px;
}

/* price hightlight style */
.price {
    color: #bbb;
    font-size: 2rem;
    font-weight: bold;
}

/* multiline indent */
.rr {
    display: inline-block;
    vertical-align: top;
}

/* invisible link */
.il {
    color: inherit;
    text-decoration: inherit;
}
.il:hover {
    color: inherit;
    text-decoration: underline;
}

.mt30 {
    margin-top: 30px;
}
.pt0 {
    padding-top: 0;
}
.mt0 {
    margin-top: 0;
}
.mb0 {
    margin-bottom: 0;
}
.mb20 {
    margin-bottom: 20px;
}
.mb60 {
    margin-bottom: 60px;
}

.block {
    display: block;
}
.hide {
    display: none;
}

.ninja {
    border: 0 !important;
    height: 1px;
    left: -1px;
    margin: 0 !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute !important;
    text-indent: 1px;
    top: -1px;
    width: 1px;
}

.relative {
    position: relative;
}

.clearfix:before,
.clearfix:after {
    content: '';
    display: table;
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
}

.pointer {
    cursor: pointer;
}

/****************************************************************************/

/* layouts and colors */
h1 u,
h2 u,
h3 u,
h4 u,
h5 u {
    color: #bbb;
    text-decoration: none;
}
.color-x {
    color: #bbb !important;
}

/* layout 2 */
.color-2,
.color-2 u,
.lay-2 .color-x {
    color: #2680eb !important;
}
.lay-2 h1 u,
.lay-2 h2 u,
.lay-2 h3 u,
.lay-2 h4 u,
.lay-2 h5 u,
.lay-2 .con .expander:after,
.lay-2 .price,
.lay-2 .header,
.lay-2 .nodes .item a:hover,
.lay-2 .product .anchors a:hover {
    color: #2680eb;
}
.lay-2 .product .desc-1 .con ul > li:before {
    border-color: #2680eb;
}
.lay-2 .con ul > li:before,
.lay-2 .con .expander:before,
.lay-2 .button,
.lay-2 .input-file,
.lay-2 .top .cart > div > a .quantity,
.lay-2 .products .item .icon {
    background: #2b5a90;
    background: -webkit-linear-gradient(90deg, #2b5a90 0%, #2682ee 100%);
    background: -moz-linear-gradient(90deg, #2b5a90 0%, #2682ee 100%);
    background: -ms-linear-gradient(90deg, #2b5a90 0%, #2682ee 100%);
    background: -o-linear-gradient(90deg, #2b5a90 0%, #2682ee 100%);
    background: linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
}
.lay-2 .top .t-1 {
    background: #2b5a90;
    background: -webkit-linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
    background: -moz-linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
    background: -ms-linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
    background: -o-linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
    background: linear-gradient(270deg, #2b5a90 0%, #2682ee 100%);
}

.lay-2 .logo-1 {
    margin: 0;
    top: 2.2rem;
    width: 30.2rem;
}

.lay-2 .infoline {
    right: 190px;
}

.lay-2 .section > .header {
    text-align: left;
}
.lay-2 .section > .header u {
    padding: 0 20px 0 0;
}
.lay-2 .section .header u:after {
    width: 1600px;
}

.lay-2 .why img {
    position: relative;
}
.lay-2 .why .img-1 {
    display: none;
}
.lay-2 .why .img-2 {
    display: block;
    margin: 0 auto;
}
.lay-2 .why .title {
    padding: 0 0 1.5rem;
    text-align: center;
}

.lay-2 .footer {
    background: #2b5a90;
    background: -webkit-linear-gradient(90deg, #2b5a90 0%, #2682ee 100%);
    background: -moz-linear-gradient(90deg, #2b5a90 0%, #2682ee 100%);
    background: -ms-linear-gradient(90deg, #2b5a90 0%, #2682ee 100%);
    background: -o-linear-gradient(90deg, #2b5a90 0%, #2682ee 100%);
    background: linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
}
.lay-2 .f-2 .ibs .ib {
    color: rgba(255, 255, 255, 1);
}
.lay-2 .f-2 .ib a {
    color: rgba(255, 255, 255, 1);
}
.lay-2 .f-2 .ib a:hover {
    color: rgba(255, 255, 255, 0.5);
}
.lay-2 .f-3 div {
    color: rgba(255, 255, 255, 0.66);
}

/* layout 1 */
.color-1,
.color-1 u,
.lay-1 .color-x {
    color: #ff8c09 !important;
}
.lay-1 h1 u,
.lay-1 h2 u,
.lay-1 h3 u,
.lay-1 h4 u,
.lay-1 h5 u,
.lay-1 .con .expander:after,
.lay-1 .price,
.lay-1 .header,
.lay-1 .nodes .item a:hover,
.lay-1 .product .anchors a:hover {
    color: #ff8c09;
}
.lay-1 .product .desc-1 .con ul > li:before {
    border-color: #ff8c09;
}
.lay-1 .con ul > li:before,
.lay-1 .con .expander:before,
.lay-1 .button,
.lay-1 .input-file,
.lay-1 .top .cart > div > a .quantity,
.lay-1 .products .item .icon {
    background: #ff8c09;
    background: -webkit-linear-gradient(90deg, #ff8c09 0%, #ffbe0d 100%);
    background: -moz-linear-gradient(90deg, #ff8c09 0%, #ffbe0d 100%);
    background: -ms-linear-gradient(90deg, #ff8c09 0%, #ffbe0d 100%);
    background: -o-linear-gradient(90deg, #ff8c09 0%, #ffbe0d 100%);
    background: linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
}
.lay-1 .top .t-1 {
    background: #ff8c09;
    background: -webkit-linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
    background: -moz-linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
    background: -ms-linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
    background: -o-linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
    background: linear-gradient(270deg, #ff8c09 0%, #ffbe0d 100%);
}

.lay-1 .logo-1 {
    margin: 0 auto;
    top: 0.9rem;
    width: 28.8rem;
}

.lay-1 .infoline {
    left: 5px;
}

.lay-1 .section > .header {
    text-align: center;
}
.lay-1 .section > .header u {
    padding: 0 20px 0;
}
.lay-1 .section .header u:before,
.lay-1 .section .header u:after {
    width: 175px;
}

.lay-1 .why img {
    position: absolute;
}
.lay-1 .why .img-1 {
    max-width: 350px;
    right: 18%;
    top: 0;
    width: 32%;
}
.lay-1 .why .img-2 {
    right: 3%;
    top: 5rem;
}
.lay-1 .why .title {
    padding: 8.5rem 0 1.5rem;
    width: 50%;
}

.lay-1 .footer {
    background: #000;
}
.lay-1 .f-2 .ibs .ib {
    color: rgba(255, 255, 255, 0.8);
}
.lay-1 .f-2 .ib a {
    color: rgba(255, 255, 255, 0.8);
}
.lay-1 .f-2 .ib a:hover {
    color: #ff8c09;
}
.lay-1 .f-3 div {
    color: rgba(255, 255, 255, 0.3);
}

/****************************************************************************/

@media only screen and (min-width: 1600px) {
    html {
        font-size: 12px;
    }

    .container {
        max-width: 1600px;
    }

    .general .inner .img {
        margin: 0 20px 10px 0;
    }

    .categories .ib-6 .grp {
        min-height: 425px;
        padding: 60px 50% 30px 60px;
    }
    .categories .ib-12 .grp {
        min-height: 379px;
        padding: 60px 75% 30px 60px;
    }
    .categories .ib-12 .add {
        margin: 0 0 6rem;
    }

    .products .records .item {
        height: 37.5rem; /*387px*/
    }

    .lay-1 .why .title {
        padding: 7.5rem 0 1.5rem;
    }
}

/****************************************************************************/

@media only screen and (max-width: 1200px) {
}

/****************************************************************************/

@media only screen and (max-width: 1000px) {
    .top {
        position: absolute;
    }

    .nav-1 {
        padding: 25px 50px 25px 10px;
    }
    .nav-ul {
        display: block;
        height: auto;
    }
    .nav-li {
        display: block;
        padding: 10px 3px;
    }

    .nav-ulul {
        background: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        left: auto;
        max-height: none;
        opacity: 1;
        padding-left: 2rem;
        pointer-events: auto;
        position: relative;
        top: auto;
        visibility: visible;
        width: auto;
    }
    .nav-aa {
        color: inherit;
    }

    .shipment {
    }

    .infoline {
        color: #fff;
        left: 5px;
        padding: 0 0 0 25px;
        right: auto;
        top: -2.4rem;
    }
    .infoline .icon {
        font-size: 22px;
        top: 0;
    }
    .infoline div {
        display: inline-block;
        vertical-align: middle;
    }
    .infoline a.color-x {
        color: #fff !important;
    }

    .slider-product .swiper-thumbs {
        display: none;
    }
    .product .ibs .ib-6 {
        width: 100%;
    }
    .product .imgs {
        padding: 0;
    }
    .product .imgs .item a,
    .product .imgs .item .a {
        padding: 66% 0 0;
    }
    .product .grp {
        padding: 0;
    }

    .lay-1 .nav {
        background: #ff8c09;
        background: -webkit-linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
        background: -moz-linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
        background: -ms-linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
        background: -o-linear-gradient(180deg, #ff8c09 0%, #ffbe0d 100%);
        background: linear-gradient(270deg, #ff8c09 0%, #ffbe0d 100%);
    }

    .lay-1 .why .img-1 {
        right: 50%;
        margin-right: -40px;
        width: 240px;
    }
    .lay-1 .why .img-2 {
        right: 50%;
        margin-right: -160px;
        width: 240px;
    }
    .lay-1 .why .title {
        padding-top: 15rem;
        text-align: center;
        width: auto;
    }

    .lay-2 .nav {
        background: #2b5a90;
        background: -webkit-linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
        background: -moz-linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
        background: -ms-linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
        background: -o-linear-gradient(180deg, #2b5a90 0%, #2682ee 100%);
        background: linear-gradient(270deg, #2b5a90 0%, #2682ee 100%);
    }

    .lay-2 .infoline {
        right: auto;
    }

    .lay-2 .logo-1 {
        margin-left: 50px;
    }
}

/****************************************************************************/

@media only screen and (max-width: 800px) {
    .content,
    .leftBlock,
    .rightBlock {
        display: block;
        min-width: auto;
        padding: 0;
        width: auto;
    }

    .general .inner .img {
        max-width: 50%;
    }

    .categories .item .imgs {
        bottom: 0;
        left: auto;
        overflow: hidden;
        padding: 75% 0 0;
        position: relative;
        top: auto;
    }
    .categories .ib-12 .imgs {
        padding: 38% 0 0;
    }
    .categories .item .imgs .img-1 {
        max-width: 200%;
        min-height: 0;
    }
    .categories .ib-12 .imgs .img-1 {
        left: -100%;
        margin: 0 auto;
        right: -100%;
    }
    .categories .item .imgs .img-2 {
        bottom: 0;
        z-index: 1;
    }
    .categories .item .grp {
        background: #e5e5e5;
        background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #e5e5e5 25%);
        background: -webkit-linear-gradient(90deg, rgb(255, 255, 255, 0) 0%, #e5e5e5 25%);
        background: -o-linear-gradient(90deg, rgb(255, 255, 255, 0) 0%, #e5e5e5 25%);
        background: -ms-linear-gradient(90deg, rgb(255, 255, 255, 0) 0%, #e5e5e5 25%);
        background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, #e5e5e5 25%);
        margin: -100px 0 0;
        padding: 100px 20px 20px;
    }
    .categories .item .add {
        margin: 0 0 1rem;
    }
    .categories .item .name br {
        display: none;
    }

    .ibs .ib .products {
        margin: 0;
    }
    .products .records .item {
        height: 29rem; /* 236px */
    }

    .why .records .ib {
        width: 33.33%;
    }

    .f-2 .ibs .ib {
        width: 50%;
    }
}

/****************************************************************************/

@media only screen and (max-width: 600px) {
    .top .t-1 {
        min-height: 4.3rem;
        padding: 2rem 0 0;
        text-align: right;
    }

    .c-hamburger {
        top: 4.7rem;
    }

    .shipment {
        display: inline-block;
        position: relative;
        right: auto;
        top: auto;
    }

    .top .t-2 {
        min-height: 6rem;
    }

    .infoline {
        top: -4.2rem;
    }

    .top .cart {
        top: 1.5rem;
    }
    .top .cart > div > a {
        padding-left: 45px;
    }
    .top .cart > div > a .title {
        display: none;
    }
    .top .cart.active > div > a .amount {
        display: none;
    }
    .top .cart > div > a .empty {
        display: none;
    }
    .top .cart .top-dropdown-adv {
        width: 300px;
    }
    .top .cart.active .top-dropdown-adv {
        display: none;
    }

    .categories .records {
        margin: -5px;
    }
    .categories .item {
        padding: 5px;
        width: 50%;
    }
    .categories .ib-12 {
        width: 100%;
    }
    .categories .item .grp {
        margin-top: -50px;
        min-height: 0;
        padding: 50px 5px 10px;
    }
    .categories .ib-12 .grp {
        padding: 50px 10px 10px;
    }
    .categories .item .add {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .categories .item .name {
        font-size: 2rem;
    }
    .categories .item .button {
        margin-top: 0.5rem;
        min-width: 0;
    }

    .main .container > .ibs {
        margin: -5px;
    }
    .main .container > .ibs > .ib {
        padding: 5px;
        width: 50%;
    }
    .products .records {
        margin: -5px;
    }
    .products .records .ib {
        padding: 5px;
        width: 50%;
    }
    .ib .products .records .ib {
        width: 100%;
    }
    .products .records .item {
        height: 35.5rem; /* 300px */
    }

    .product .btns .left {
        max-width: 240px;
        width: auto;
    }
    .product .btns .right {
        width: auto;
    }

    .lay-1 .logo-1 {
        width: 21rem;
    }

    .lay-2 .logo-1 {
        width: 21rem;
    }
}

/****************************************************************************/

@media only screen and (max-width: 480px) {
    .span {
        float: none;
        margin-left: 0 !important;
        width: auto;
    }
    .label--invalid .tooltip-bottom {
        margin-bottom: 50px;
    }
    /*
    .media--double,
    .media2--double {
        display: block;
        margin: .8em 0;
        width: auto;
    }
    */
    .general .inner .img {
        float: none;
        margin: 0;
        max-width: none;
    }

    .products .records .item {
        height: 31rem; /* 246px */
    }
    .products .item .grp {
        padding: 3px 5px;
    }
    .products .item .price .new {
        font-size: 2rem;
    }
    .products .item .icon {
        bottom: 8px;
        right: 8px;
    }

    .why .item .name {
        font-size: 1.2rem;
    }
    .why .item .desc {
        font-size: 1.2rem;
    }

    .f-2 .ibs .ib {
        width: 100%;
    }
}

/****************************************************************************/

@media only screen and (max-width: 360px) {
    .products .records .item {
        height: 27rem;
    }
    .products .item .price i {
        display: block;
    }
}

/****************************************************************************/

/****************************************************************************\
|********************************** SHOP ************************************|
\****************************************************************************/

/*
 * Cart rabat
 */
.cart-rabat {
    background: #f2f2f2;
    margin: 0 0 20px;
    padding: 25px 20px 5px;
}
.cart-rabat-name {
    color: #282828;
    font-size: 2.7rem;
    font-weight: 300;
    margin: 0 5px 3px 5px;
    padding: 0;
    text-transform: none;
}
.box--rabat {
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    clear: both;
    display: inline-block;
    font-weight: 300;
    padding: 15px 20px;
}
.box--rabat strong {
    font-size: 2.2rem;
    font-weight: 300;
}
.box--rabat .button--smallCircle {
    bottom: 7px;
    margin-bottom: -10px;
    margin-left: -30px;
    padding: 1px 10px 2px;
    position: relative;
    right: -65px;
}

/*
 * Login box
 */

.loginBox {
    background: #f2f2f2;
    margin: 0 auto 20px;
    max-width: 500px;
    padding: 0 20px 5px;
}
.loginBox .label-help {
    font-size: 1.4rem;
    margin-top: 15px;
}
.loginBox-header {
    margin-top: 0;
    text-align: center;
}
.loginBox .box {
    border: none;
    margin: 0 -20px 20px;
    padding: 20px;
}
.loginBox .formActions {
    background: none;
    padding: 0;
}

/*
 * Cart Steps
 */

.stepsWrapper {
    display: table;
    margin: 10px 0 10px;
    overflow: hidden;
    padding: 0 0 30px;
    table-layout: fixed;
    width: 100%;
}
.step {
    background: none !important;
    border-left: 1px solid #ccc;
    color: #bbbbbb;
    display: table-cell;
    list-style: inside;
    padding: 0px 20px !important;
}
.step:first-child {
    border: none;
    padding-left: 0;
}
.step:last-child {
    padding-right: 0;
}
.step--active {
    color: #282828;
    opacity: 1;
}
.step b {
    display: block;
    font-size: 2.2rem;
    font-weight: 300;
}
.step .hint {
    line-height: 1.1em;
    margin: 5px 24px 5px 0;
}

/*
 * Shop Cart
 */

.cartWrapper {
    border-top: 1px solid #eee;
    margin-top: 60px;
    position: relative;
}
.cart-table {
    display: table;
    width: 100%;
}
.cart-row {
    display: table-row;
}
.cart-type {
    display: block;
    position: absolute;
}
.cart-type img {
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    margin-top: 20px;
}
.cart-type + .cart-table .cart-row:first-child .cart-cell {
    padding-top: 85px;
}
.cart-type + .cart-table .cart-row:first-child .cart-cell .radio {
    /*margin-bottom: 25px;*/
    top: 75px !important;
}
.cart-qty-big {
    width: 10%;
}
.cart-header {
    bottom: 100%;
    color: #888;
    display: none;
    margin-bottom: 10px;
    position: absolute;
    text-align: left;
}
.cart-row:first-child .cart-header {
    display: block;
}
.cart-ships .cart-row .cart-header {
    display: none;
}
.cart-ships .cart-type:first-child + .cart-table .cart-row:first-child .cart-header {
    display: block;
}

.cart-cell {
    border-bottom: 1px solid #eee;
    display: table-cell;
    padding: 13px 0;
    text-align: left;
    vertical-align: middle;
}

.cart-ships .cart-cell {
    border-bottom: none;
}

.cart-product {
    position: relative;
    width: 60%;
}
.cart-product .radio {
    bottom: 0;
    left: 0;
    margin: auto 0;
    /*margin-top: -10px;*/
    position: absolute;
    top: 0;
}
.cart-product .rr {
    padding-left: 30px;
}
.cart-product-image {
    display: inline-block;
    margin-right: 1%;
    vertical-align: middle;
    width: 27%;
}
.cart-product-image img {
    display: block;
    max-width: 100%;
}

.cart-product-name {
    font-family: 'Roboto Condensed';
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    text-align: left;
    text-transform: none;
    vertical-align: middle;
    width: 70%;
}
.cart-product-name a {
    color: #000;
}
.cart-product-name .box {
    font-size: 1.2rem;
    line-height: 1.1em;
    margin: 15px 0 0 0;
    padding: 10px 15px;
}

.cart-product-attrs {
    font-size: 0.8em;
    line-height: 1.3em;
    margin: 0;
    overflow: hidden;
}
.cart-product-attrs li {
    background: none;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
}
.cart-product-delivery {
    max-width: 90%;
}

.cart-price-black {
    color: #282828 !important;
}
.cart-price {
    color: #888;
}

.cart-delete {
    text-align: center;
    width: 5%;
}

.cart-x {
    font-size: 2rem;
}
.cart-price-main {
    clear: both;
    margin-bottom: 10px;
    text-align: right;
}

#inpost {
    max-width: 500px;
    padding-left: 30px;
}
#inpost input {
    min-width: 0;
    padding: 5px 5px;
    width: 150px;
}
#inpost span {
    display: inline-block;
    padding: 0 10px;
    vertical-align: middle;
}
#inpost div {
    display: inline-block;
    vertical-align: top;
}
#inpost select + select {
    display: block;
}
#inpost option.near {
    background: #eee;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .button-basketUpdate {
        float: none;
        margin: 0 auto;
    }
    .cart-product {
        text-align: center;
    }
    .cart-product-image,
    .cart-product-name {
        width: auto;
    }

    .cart-rabat .span {
        float: none;
        margin-left: 0;
        width: auto;
    }

    .cart-rabat .cart-rabat-name {
        float: none;
        text-align: left;
        width: 100%;
    }
    .cart-rabat .button {
        float: none;
        margin-top: 10px;
        width: 100%;
    }

    .fill {
        margin-left: 0;
        width: 100%;
    }
    .fill + .fill {
        margin-top: 20px;
    }

    .step {
        display: none;
    }
    .step--active {
        display: block;
    }

    .cart-wrapper {
        margin-top: 0;
    }
    .cart-table {
        border: 0;
    }
    .cart-row {
        display: block;
        text-align: justify;
    }
    .cart-row:after {
        content: '';
        display: inline-block;
        width: 100%;
    }

    .cart-header {
        border: none;
        display: block !important;
        margin: 0 0 5px;
        position: static;
        text-align: center;
    }

    .cart-cell {
        border: 0;
        display: inline-block;
        vertical-align: top;
    }

    .cart-product {
        border-top: 1px solid #eee;
        width: 100%;
    }
    .cart-product .cart-header {
        display: none !important;
    }

    .cart-qty,
    .cart-price,
    .cart-delete {
        padding-top: 10px;
        text-align: center;
        width: 32%;
    }
}

/****************************************************************************/

@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot?wdccew');
    src: url('fonts/icomoon.eot?wdccew#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?wdccew') format('truetype'),
        url('fonts/icomoon.woff?wdccew') format('woff'), url('fonts/icomoon.svg?wdccew#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

[class^='icon-'],
[class*=' icon-'] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-minus:before {
    content: '\e900';
}
.icon-plus:before {
    content: '\e903';
}
.icon-instagram:before {
    content: '\e960';
}
.icon-youtube:before {
    content: '\e9a2';
}
.icon-skype:before {
    content: '\e9ac';
}
.icon-twitter:before {
    content: '\ea02';
}
.icon-pinterest:before {
    content: '\e90a';
}
.icon-phone:before {
    content: '\e93d';
}
.icon-home:before {
    content: '\e927';
}
.icon-facebook:before {
    content: '\e90c';
}
.icon-google:before {
    content: '\e90d';
}
.icon-remove:before {
    content: '\e91d';
}
.icon-star:before {
    content: '\e912';
}
.icon-realization:before {
    content: '\e909';
}
.icon-call:before {
    content: '\e901';
}
.icon-basket:before {
    content: '\e90b';
}
.icon-info:before {
    content: '\e92a';
}
.icon-mail:before {
    content: '\e935';
}
.icon-down:before {
    content: '\e90e';
}
.icon-heart:before {
    content: '\e915';
}
.icon-medal:before {
    content: '\e902';
}
.icon-left:before {
    content: '\e905';
}
.icon-right:before {
    content: '\e90f';
}
.icon-coins:before {
    content: '\e904';
}
.icon-love:before {
    content: '\e906';
}
.icon-like:before {
    content: '\e911';
}
.icon-open:before {
    content: '\e907';
}
.icon-pin:before {
    content: '\e908';
}

/****************************************************************************/

.dataprocessing {
    display: block;
    font-size: 0.8em;
    line-height: 1.2;
    text-align: left;
}
.dataprocessing .dp-law {
    display: block;
    margin: 0 0 5px;
    opacity: 0.8;
}
.dataprocessing .dp-inf {
    display: block;
    margin: -19px 0 0;
    padding: 0 0 0 25px;
}
.dataprocessing .dp-lbl {
    display: inline-block;
}
.dataprocessing .dp-dsc {
    display: block;
    padding: 0 0 0 25px;
}
.mfp-bg {
    z-index: 21042;
}
.whiteBackground .mfp-content {
    min-height: 0;
}
.mfp-wrap {
    z-index: 21043;
}
.mfp-content ul {
    margin: 0 0 0 25px;
    padding: 0;
}
.mfp-content ul > li {
    list-style: disc;
    margin: 0;
    padding: 1px 0;
}
.mfp-content ul > li:before {
    display: none;
}
.mfp-content ol {
    margin: 0 0 0 25px;
    padding: 0;
}
.mfp-content ol > li {
    list-style: decimal;
    margin: 0;
    padding: 1px 0;
}
.mfp-content ol > li:before {
    display: none;
}

/****************************************************************************/

.no-js * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/******************************************************************************/
::-moz-selection {
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.2), -1px -1px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: #282828;
}

::selection {
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.2), -1px -1px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: #282828;
}

* {
    /*-webkit-backface-visibility:  hidden;*/
    -webkit-tap-highlight-color: transparent;
}

button:active,
button:focus {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
