html,
body {
    background: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif, Arial, Helvetica;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    max-width: 100%;
    position: relative;
}
body {
    background: #000 url('../images/body-bg.jpg') repeat-x center top;
    background-attachment: fixed;
    background-size: cover;
}

a {
    color: #ff0101;
    outline: 0 !important;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
a:hover {
    color: #ff0101;
    text-decoration: underline;
}
a:active {
    outline: 0 !important;
}
a:before,
a:after {
    content: '';
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

p,
.p {
    margin: 0;
    padding: 7px 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,
svg {
    max-width: 100%;
}

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

/*
 * Checkbox / Radio
 */

.checkbox,
.radio {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: inline-block;
    height: 20px;
    margin: 0 1px;
    overflow: hidden;
    position: relative;
    top: 3px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s 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;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    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;
}
.checkbox + span {
    display: block;
    margin: -20px 0 0;
    padding: 0 0 0 30px;
}

.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 rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    max-width: 100%;
    padding: 9px 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: 55px;
}
.input--short {
    text-align: center;
    width: 70px;
}
.input--textarea {
    height: 90px;
    max-width: 380px;
    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: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.input--invalid {
    border-color: #d47171;
}

/*
 * Button
 */
.button,
.input-file {
    background: #e2001a;
    border: 1px solid #e2001a;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    margin: 0;
    overflow: hidden;
    padding: 9px 14px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -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;
    z-index: 3;
}
.button--large {
    font-size: 14px;
    padding: 13px 18px 12px;
}
.button--biger {
    font-size: 18px;
    margin-top: 15px;
    padding: 16px 10px;
}
.button--full {
    width: 100%;
}
.button:hover,
.input-file:hover {
    color: #fff;
    text-decoration: none;
}
.button:active,
.input-file:active {
    -webkit-box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.8);
}
.button:before,
.input-file:before {
    background: rgba(0, 0, 0, 0.1);
    bottom: 0;
    content: '';
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 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: 0;
    z-index: -1;
}
.button:hover:before,
.input-file:hover:before {
    height: 100%;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 100%;
}

/*
 * Select
 */
select,
select.input,
.select,
.fake-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url('../images/select-g.png') no-repeat scroll right center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    min-width: 150px;
    outline: medium none !important;
    padding: 4px 25px 4px 5px;
    /*text-indent: 1px;*/
    text-overflow: '';
}
select::-ms-expand {
    display: none;
}
select:disabled {
    background-color: #f0f0f0;
}
.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: 14px 13px 4px;
    width: 100%;
}
.fill-name {
    color: #474747;
    font-size: 14px;
    font-weight: normal;
    left: 35px;
    line-height: 20px;
    margin-top: -10px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    text-overflow: ellipsis;
    text-transform: uppercase;
    top: 20px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
    z-index: 1;
}
.fill-name.fill-focus,
.no-js .fill-name {
    color: #9f9f9f;
    font-size: 12px;
    top: 10px;
}

.label,
.formActions {
    clear: both;
    display: block;
    padding: 3px 0 3px 120px;
}
.label-name {
    float: left;
    font-size: 13px;
    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: 11px;
    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 #000;
    border-top: 8px solid #e2001a;
    -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: 1600px;
    padding: 0 25px;
    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;
    -moz-hyphens: auto;
    -ms-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: 0.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: 14px;
    min-width: 140px;
    padding: 5px 10px;
}

/*
 * Breadcrumbs
 * /
.breadcrumbs {
    color: #777;
    font-size: 12px;
    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 {
    height: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.swiper-slide {
    background: none;
    cursor: pointer;
    text-align: center;
}
.swiper-button-next,
.swiper-button-prev {
    background: none;
    border: 0;
    color: #fff;
    font-size: 34px;
    height: 40px;
    line-height: 40px;
    margin-top: -20px;
    opacity: 0.25;
    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: 40px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}
.swiper-button-next .icon,
.swiper-button-prev .icon {
    line-height: 40px;
}
.swiper-button-prev {
    left: 1%;
    right: auto;
}
.slider:hover .swiper-button-prev {
    left: 1%;
}
.swiper-button-next {
    left: auto;
    right: 1%;
}
.slider:hover .swiper-button-next {
    right: 1%;
}
.swiper-pagination {
    bottom: 10px;
    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: 10px;
}
.swiper-pagination:before {
    background: none;
    border: 0;
    bottom: -15px;
    content: '';
    left: -15px;
    position: absolute;
    right: -15px;
    top: -15px;
}
.swiper-pagination-bullet {
    background: #fff;
    border: 2px solid #fff;
    height: 8px;
    margin: 0 5px;
    opacity: 1;
    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: 8px;
}
.swiper-pagination:hover .swiper-pagination-bullet {
    opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet:hover {
    background: #e2001a;
    border-color: #e2001a;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #e2001a;
    border-color: #e2001a;
    -webkit-transform: scale(1.33);
    -moz-transform: scale(1.33);
    -ms-transform: scale(1.33);
    -o-transform: scale(1.33);
    transform: scale(1.33);
}
.swiper-slides {
    position: relative;
}
.swiper-thumbs {
    position: relative;
}

.slider-main {
}
.slider-main .swiper-slides {
}
.slider-main .swiper-container {
}
.slider-main .swiper-slide {
    cursor: auto;
}
.slider-main .swiper-slide img {
    width: 100%;
}
.slider-main .con {
    display: table;
    display: none;
    height: 90%;
    left: 5%;
    position: absolute;
    text-align: center;
    top: 5%;
    width: 90%;
}
.slider-main .txt {
    color: #000;
    display: table-cell;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 1;
    position: relative;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
    text-transform: uppercase;
    vertical-align: top;
}
.slider-main .txt div {
    display: block;
    padding: 5px 0;
    opacity: 0;
    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;
}
/*.slider-main .txt div:first-child { font-size: 40px; font-weight: 800; letter-spacing: -1px; }
    .slider-main .txt div:last-child { bottom: 0; font-size: 16px; font-weight: bold; left: 0; position: absolute; right: 0; }*/
.slider-main .txt div:nth-child(odd) {
    margin-left: -66%;
}
.slider-main .txt div:nth-child(even) {
    margin-right: -66%;
}
.slider-main .swiper-slide-active .txt div {
    margin: 0;
    opacity: 1;
}
.slider-main .swiper-slide a {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.slider-main .swiper-slide a .button {
    bottom: 10%;
    left: 0;
    display: table;
    margin: auto;
    position: absolute;
    right: 0;
}
.slider-main .swiper-pagination {
    right: 240px;
}

.slider-products {
}
.slider-products .swiper-sliders {
}
.slider-products .swiper-container {
    overflow: visible;
}
.slider-products .swiper-slide {
    overflow: visible;
    padding: 10px;
    text-align: center;
    width: 20%;
}
.slider-products .swiper-button-prev,
.slider-products .swiper-button-next {
    color: #000;
    opacity: 0.5;
}
.slider-products .swiper-button-prev:hover,
.slider-products .swiper-button-next:hover {
    opacity: 1;
}

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

.product .slider-product {
    padding: 0;
    position: relative;
}
.product .slider-product .swiper-slides {
    margin: 0 auto;
    max-width: 520px;
    position: relative;
}
.product .slider-product .swiper-slides .swiper-slide a {
    background: #fff;
    display: block;
    padding: 100% 0 0;
    position: relative;
}
.product .slider-product .swiper-slides .swiper-slide img {
    background: none;
    left: 0;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.product .slider-product .swiper-button-prev,
.product .slider-product .swiper-button-next {
    background: none;
    border-color: rgba(255, 255, 255, 0);
    color: #000;
    font-size: 27px;
    opacity: 0.25;
}
.product .slider-product .swiper-button-prev:hover,
.product .slider-product .swiper-button-next:hover {
    opacity: 1;
}
.product .slider-product .swiper-thumbs {
    margin: 10px 0 0;
    position: relative;
}
.product .slider-product .swiper-thumbs .swiper-container {
    height: 100%;
}
.product .slider-product .swiper-thumbs .swiper-slide {
    background: #fff;
    height: auto;
    overflow: hidden;
    padding: 25% 0 0;
    position: relative;
    width: 25%;

    height: 150px;
    padding: 0;
    width: auto;
}
.product .slider-product .swiper-thumbs .active:after,
.product .slider-product .swiper-thumbs .swiper-slide-thumb-active:after {
    border: 1px solid #000;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.product .slider-product .swiper-thumbs img {
    /*left: 0;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;*/
    max-height: 100%;
    max-width: 100%;
}
.product .slider-product .swiper-thumbs .swiper-button-prev,
.product .slider-product .swiper-thumbs .swiper-button-next {
    display: none;
}

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

.slider-brands {
}
.slider-brands .swiper-slides {
    padding: 0 50px;
}
.slider-brands .swiper-container {
    height: 70px;
}
.slider-brands .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    will-change: transform;
}
.slider-brands .swiper-slide {
    display: inline-block;
    height: auto;
    padding: 0 10px;
    text-align: center;
    vertical-align: middle;
    width: auto;
}
.slider-brands .swiper-slide a {
    display: block;
    font-size: 0.000001px;
    height: 100%;
    margin: auto 0;
    text-decoration: none;
}
.slider-brands .swiper-slide a:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.slider-brands .swiper-slide img {
    display: inline-block;
    vertical-align: middle;
}
.slider-brands .swiper-button-next,
.slider-brands .swiper-button-prev {
    color: #aaa;
}
.slider-brands .swiper-button-next,
.slider-brands:hover .swiper-button-next {
    right: 5px;
}
.slider-brands .swiper-button-prev,
.slider-brands:hover .swiper-button-prev {
    left: 5px;
}

/*
 * Pagination
 */
.pagination {
    color: FFF;
    font-size: 14px;
    padding: 25px 0;
    text-align: center;
    text-transform: uppercase;
}
.pagination-info {
    color: #fff;
    font-size: 14px;
    padding: 15px 0;
}
.pagination-info b {
    color: #fff;
    font-weight: inherit;
}
.pagination > div {
    display: table;
    margin: 0 auto;
}
.pagination > div > div {
    display: table-cell;
    vertical-align: top;
}
.pagination > div > div:first-child,
.pagination > div > div:first-child + div + div {
}
.pagination-element {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 5px 10px;
    min-width: 40px;
    padding: 0 2px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    z-index: 1;
}
a.pagination-element:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}
.pagination-element--active,
.pagination-element--active:hover {
    background: #000;
    color: #fff;
}
.pagination-element--left,
.pagination-element--right {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 5px 15px;
    padding: 0 10px;
}
.pagination-element--disabled,
.pagination-element--disabled:hover {
    background: none;
    color: #c6c6c6;
    display: none;
}

/*
 * 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: #111;
    border: 1px solid #aaa;
    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;
}
.bg-w .box,
.bg-w .box-close {
    background: #eee;
    border-color: #ddd;
    color: #000;
}
.box--ok,
.box--ok .box-close {
    background: #f7ffed !important;
    border-color: #78ca52 !important;
    color: #4dab01 !important;
}
.box--error,
.box--error .box-close {
    background: #fff0f0 !important;
    border-color: #ff9494 !important;
    color: #d92a2a !important;
}
.box--info,
.box--info .box-close {
    background: #e9f1ff !important;
    border-color: #81aeff !important;
    color: #2f5db3 !important;
}
.box--alert,
.box--alert .box-close {
    background: #ffffde !important;
    border-color: #e1d042 !important;
    color: #a99b27 !important;
}

.box--white,
.box--white .box-close {
    /*background: #fff;*/
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(0, 0, 0, 0.1);
    /*color: #000;*/
    color: #fff;
}
.box--white.label--invalid,
.box--white.label--invalid .box-close {
    /*background: #FFF0F0;*/
    background: rgba(255, 255, 255, 0.25);
    /*border-color: #FF9494;*/
    border-color: #d92a2a;
    color: #d92a2a;
}

/*
 * Produkty
 * /
.productFilters {
    font-size: 14px;
    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;
    }

   
    
/*
 * galeria
 * /
.galeria-item {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    max-width: 100%;
}
.galeria-item img {
    max-width: 100%;
}

/*
 * Top dropdown
 */
.top-dropdown-adv {
    background: #fff;
    border: solid 1px #e6e6e6;
    -webkit-box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.15);
    color: #282828;
    margin-top: -2px;
    padding: 10px;
    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: 14px solid #fff;
    border-left: 14px solid rgba(255, 255, 255, 0);
    border-right: 14px solid rgba(255, 255, 255, 0);
    content: '';
    position: absolute;
    right: 86px;
    top: -14px;
    z-index: 10;
}
.top-dropdown-adv:after {
    border-bottom: 15px solid #e6e6e6;
    border-left: 15px solid rgba(255, 255, 255, 0);
    border-right: 15px solid rgba(255, 255, 255, 0);
    content: '';
    position: absolute;
    right: 85px;
    top: -15px;
    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 .input {
    background-color: #f5f5f5;
    border: solid 1px #e3e3e3;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}*/
.top-dropdown-adv-right {
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    left: auto;
    right: 0;
}

/*
 * Top
 */
.top {
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    left: 0;
    min-height: 100px;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
    z-index: 11;
}
.scroll .top {
    background: #000;
}
.top .t-1 {
    background: rgba(0, 0, 0, 0.5);
    background: -webkit-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -moz-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -ms-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -o-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    font-size: 0.000001px;
    min-height: 30px;
    position: relative;
    text-align: right;
}

.t-1 .shipment {
    background: #e2001a;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    margin: 0 35px 0 0;
    padding: 3px 35px;
    position: relative;
    text-transform: uppercase;
    vertical-align: top;
}
.t-1 .shipment:after {
    border: 9px solid rgba(255, 255, 255, 0);
    border-bottom: 0;
    border-top-color: #e2001a;
    content: '';
    height: 0;
    position: absolute;
    right: 88px;
    top: 100%;
    width: 0;
}
.t-1 .shipment b {
    color: #000;
    font-weight: 500;
    text-transform: none;
}
.t-1 .shipment .icon {
    font-size: 19px;
    left: auto;
    position: absolute;
    right: 7px;
    top: 0;
}
.t-1 .shipment b + .icon {
    left: 7px;
    right: auto;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.languages {
    display: block;
    position: absolute;
    right: 25px;
    top: 0;
}
.languages ul {
    display: block;
}
.languages li {
    display: block;
    padding: 4px 0;
}
.languages a {
    display: block;
    text-decoration: none;
    width: 25px;
}

.top .t-2 {
    position: relative;
}

/*
 * Logo
 */

.logo {
    display: block;
    margin: 0;
    padding: 0;
}
.logo-1 {
    float: left;
    padding: 9px 0;
}
.logo-2 {
    padding: 20px 0;
}
.logo-3 {
}
.logo-4 {
    float: left;
    padding: 10px 0;
}
.logo a {
    display: block;
}
.logo img {
    display: block;
    margin: auto;
}

/*
 * Search
 */
.search {
    height: 40px;
    left: 0;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    right: 0;
    top: 15px;
    width: 440px;
    z-index: 100;
}
.search > div {
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}
.search form > div {
    background: none;
    max-height: 40px;
    padding: 0 118px 0 0;
    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: 440px;
}
/*.search.focus form > div,
  .search.hover form > div { 
        background: #000;
        max-height: 500px;
        width: 440px; 
  }
.search form .switch-input {
    display: none;
    position: absolute;
}
.search form .switch-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
  .search.focus form .switch-input:checked + div + .switch-content,
  .search.hover form .switch-input:checked + div + .switch-content {
        max-height: 500px;
  }
.search form .switch-label {
    color: #FFF;
    cursor: pointer;
    display: block ;
    font-size: 11px;
    margin: -15px 0  0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    text-align: left;
    text-transform: uppercase;
    transition: all 0.5s ease ;
    -webkit-transition: all 0.5s ease ;
    -moz-transition: all 0.5s ease ;
    -ms-transition: all 0.5s ease ;
    -o-transition: all 0.5s ease ;
    white-space: nowrap;
}
  .search form .switch-label:hover {
        color: #ff0101;
  }
  .search.focus form .switch-label,
  .search.hover form .switch-label {
        opacity: 1;
  }
  .search.focus form .switch-input:checked + div + div + button + .switch-label,
  .search.hover form .switch-input:checked + div + div + button + .switch-label {
        margin: 5px 0 20px;
  }
.search form .switch-label span { 
    display: block;
}
  .search form .switch-input:checked + div + .switch-content + button + .switch-label span {
        display: none;
  }
.search form .switch-label span + span {
    display: none;
}
  .search form .switch-input:checked + div + .switch-content + button + .switch-label span + span {
        display: block;
  }*/
.search form .fill-row {
}
.search form .fill-name {
    color: #aaa;
    font-size: 15px;
    left: 40px;
}
/*.search.focus .fill-name,
  .search.hover .fill-name {
        color: #FFF; 
  }*/
.search form .fill-name.fill-focus {
    font-size: 12px;
    opacity: 0;
    top: -10px;
}
.search form .input {
    font-size: 14px;
    padding: 9px 19px;
    visibility: visible;
}
/*.search.focus form .input,
  .search.hover form .input {
        visibility: visible;
  }
    .search form .input.select {
        padding: 2px 21px 2px 4px;
    }
    .search form .input.select * {}*/
.search form .button {
    bottom: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 118px;
}
.search form button:hover {
}
/*.search.focus form button,
    .search.hover form button {
       left: 182px;
    }
    .search.focus .switch-input:checked + div + div + button,
    .search.hover .switch-input:checked + div + div + button {
        bottom: 8px;
        margin: 0 auto;
        top: auto;
    }
    .search form button .icon + span {
        display: block;
        font-size: 12px;
        font-weight: 300;
        left: 0;
        position: absolute;
        right: 0;
        text-align: center;
        top: 58px;
        visibility: visible;
    }
    .search.focus form button .icon + span,
    .search.hover form button .icon + span {
        display: none;
        visibility: hidden;
    }*/

.top .call {
    line-height: 1.2;
    padding: 0 0 0 45px;
    position: absolute;
    right: 210px;
    text-transform: uppercase;
    top: 15px;
}
.top .call .icon {
    color: #e2001a;
    font-size: 36px;
    left: 0;
    position: absolute;
    top: 3px;
}
.top .call a {
    color: #fff;
    display: block;
    font-size: 21px;
    font-weight: bold;
    text-decoration: none;
}
.top .call a:hover {
    color: #e2001a;
}
.top .call a + span {
    color: #fff;
    font-size: 12px;
    opacity: 0.3;
}

.top .cart {
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 30px;
    top: 15px;
    width: 145px;
    z-index: 100;
}
.top .cart > div > a {
    color: #fff;
    display: block;
    line-height: 1.2;
    padding: 0 0 0 50px;
    position: relative;
    text-decoration: none;
}
.top .cart > div > a .icon {
    color: #fff;
    font-size: 36px;
    height: 36px;
    left: 0;
    line-height: 36px;
    margin: 0;
    position: absolute;
    text-align: center;
    top: 3px;
    width: 36px;
}
.top .cart.active > div > a .icon {
    color: #e2001a;
}
.top .cart > div > a .icon:before {
}
.top .cart.active > div > a .icon:before {
}
.top .cart > div > a .title {
    display: none;
}
.top .cart > div > a .title span {
}
.top .cart > div > a .quantity {
    color: #919191;
    display: block;
    font-size: 12px;
    font-weight: normal;
    position: static;
    text-align: left;
    text-transform: uppercase;
    z-index: 1;
}
.top .cart.active > div > a .quantity {
    color: #fff;
}
.top .cart > div > a .amount {
    color: #fff;
    display: none;
    font-size: 21px;
    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: #919191;
    display: block;
    font-size: 14px;
    padding: 6px 0 1px;
    text-align: left;
    text-transform: capitalize;
}
.top .cart.active > div > a .empty {
    display: none;
}
.top .cart .top-dropdown-adv {
    background: #000;
    border: 0;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    display: none;
    margin: 0;
    padding: 0;
    top: 61px;
    width: 360px;
}
.top .cart.active .top-dropdown-adv {
    display: block;
}
.top .cart .top-dropdown-adv:before {
    border-bottom: 0;
    border-left: 7px solid rgba(255, 255, 255, 0);
    border-right: 7px solid rgba(255, 255, 255, 0);
    border-top: 7px solid #e2001a;
    right: 120px;
    top: -8px;
}
.top .cart .top-dropdown-adv:after {
    border-bottom: 0;
    border-left: 8px solid rgba(255, 255, 255, 0);
    border-right: 8px solid rgba(255, 255, 255, 0);
    border-top: 9px solid rgba(0, 0, 0, 0.5);
    right: 119px;
    top: -9px;
}
.sideCart {
    line-height: 1.2;
    padding: 0;
    text-align: center;
}
.sideCart .title {
    background: #e2001a;
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 5px;
    text-transform: uppercase;
}
.sideCart-list {
    display: table;
    margin: 0;
    max-height: 300px;
    overflow: auto;
    padding: 5px 0;
    text-align: left;
    width: 100%;
}
.sideCart-item {
    display: table-row;
}
.sideCart-item > span {
    border-bottom: 1px solid #383838;
    display: table-cell;
    padding: 0;
    vertical-align: middle;
    width: 20px;
}
.sideCart-item > span + span {
    font-size: 0.00001px;
    padding: 10px 5px;
    vertical-align: top;
    width: 85px;
}
.sideCart-item > span + span + span {
    width: auto;
}
.sideCart-item > span + span + span + span {
    padding: 10px 20px 10px 5px;
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
}

.sideCart-item-img {
    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-size: 14px;
    font-weight: normal;
    min-height: 45px;
    overflow: hidden;
    padding: 2px 0;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
}
.sideCart-item-name a {
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.sideCart-item-name a:hover {
    /*color: #ff9100;*/
    text-decoration: none;
}
.sideCart-item-name a:after {
    border-bottom: 1px solid #fff;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.sideCart-item-name a:hover:after {
    width: 100%;
}
.sideCart-item-attr {
    display: block;
    font-size: 10px;
    font-weight: normal;
    padding: 0;
    text-transform: uppercase;
}
.sideCart-item-attr span {
    color: #777;
}
.sideCart-item-attr span + span {
    color: #fff;
}
.sideCart-item-count {
    color: #777;
    font-size: 11px;
    font-weight: normal;
}
.sideCart-item-price {
    color: #777;
    font-size: 11px;
    font-weight: normal;
}
.sideCart-item-total {
    color: #e2001a;
    display: block;
    font-size: 18px;
    font-weight: bold;
}
.sideCart-item-remove {
    color: rgba(255, 255, 255, 0);
    display: block;
    font-size: 0.000001px;
    height: 9px;
    line-height: 0;
    margin: auto;
    position: relative;
    text-align: center;
    width: 9px;
}
.sideCart-item-remove:hover {
    /*color: #d50000;*/
    height: 14px;
    text-decoration: none;
    width: 14px;
}
.sideCart-item-remove:before,
.sideCart-item-remove:after {
    border: 1px solid #777;
    border-bottom: 0;
    border-top: 0;
    bottom: 0;
    content: '';
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    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 .total {
    display: table;
    line-height: 1;
    padding: 5px 10px 5px 15px;
    text-transform: uppercase;
    width: 100%;
}
.sideCart .total span {
    color: #fff;
    display: table-cell;
    font-size: 14px;
    font-weight: normal;
    padding: 5px 10px;
    text-align: left;
    text-transform: uppercase;
    vertical-align: middle;
}
.sideCart .total span + span {
    color: #e2001a;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
    text-transform: none;
    white-space: nowrap;
}
.sideCart .btns {
    display: block;
    font-size: 0.000001px;
    padding: 10px 20px 25px 25px;
    position: relative;
    text-align: justify;
}
.sideCart .btns:after {
    content: '';
    display: inline-block;
    width: 100%;
}
.sideCart .ship-pay {
    display: block;
    font-size: 14px;
    padding: 5px 0;
    text-align: center;
    text-transform: uppercase;
}
.sideCart .ship-pay b {
    text-transform: none;
}
.sideCart .ship-free {
    border: 1px solid #e2001a;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    max-width: 84px;
    padding: 36px 5px 5px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    width: 27%;
}
.sideCart .enable {
    border: 1px solid #e2001a;
    display: block;
    height: 14px;
    left: 11px;
    position: absolute;
    top: 13px;
    width: 14px;
}
.sideCart .enable:before,
.sideCart .enable:after {
    border: 1px solid #e2001a;
    border-bottom: 0;
    border-top: 0;
    bottom: 2px;
    content: '';
    position: absolute;
    width: 0;
}
.sideCart .enable:before {
    height: 6px;
    left: 3px;
    -webkit-transform: rotateZ(-40deg);
    -moz-transform: rotateZ(-40deg);
    -ms-transform: rotateZ(-40deg);
    -o-transform: rotateZ(-40deg);
    transform: rotateZ(-40deg);
}
.sideCart .enable:after {
    height: 8px;
    left: 7px;
    -webkit-transform: rotateZ(40deg);
    -moz-transform: rotateZ(40deg);
    -ms-transform: rotateZ(40deg);
    -o-transform: rotateZ(40deg);
    transform: rotateZ(40deg);
}
.sideCart .icon-truck {
    color: #e2001a;
    font-size: 30px;
    left: 33px;
    position: absolute;
    top: 0;
}
.sideCart .button {
    width: 100%;
}
.sideCart .ship-free + .button {
    width: 70%;
}

.sideCart .button .icon {
    font-size: 12px;
    position: absolute;
    right: 15%;
    top: 14px;
}
.sideCart .box {
    margin: 0;
}

.body-info {
    background-color: #000;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    filter: alpha(opacity = 0);
    opacity: 0;
    padding: 0;
    position: fixed;
    right: 25px;
    top: -25%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 270px;
    z-index: 99999;
}
.body-info.visible {
    filter: alpha(opacity = 100);
    opacity: 1;
    top: 25px;
}
.body-info > span {
    background: #e2001a;
    display: block;
    padding: 10px 5px;
    text-align: center;
    text-transform: uppercase;
}
.body-info > .lower {
    display: block;
    margin: -5px 0;
}
.body-info .sideCart {
    padding: 0;
}
.body-info .sideCart-list {
    padding: 0;
}
.body-info .sideCart-item > span:first-child {
    width: 10px;
}
.body-info .sideCart-item > span + span + span + span {
    padding-right: 10px;
}
.body-info .btns {
    padding: 10px 15px;
}

.body-info .button,
.body-info .button * {
    color: #fff;
}
.body-info .button:hover,
.body-info .button:hover * {
    color: #fff;
}

/*
 * Nav
 */
.nav {
    background: none;
    border: 0;
    clear: both;
    margin: 0;
    padding: 0;
    text-align: left;
}
.nav .n-1 {
    left: 25px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0;
    position: fixed;
    right: 400px;
    top: 0;
    z-index: 15;
}
.nav .n-1 ul {
    display: table;
    display: flex;
    margin: 0 auto 0 -10px;
}
.nav .n-1 li {
    display: table-cell;
    position: relative;
}
.nav .n-1 a {
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 300;
    padding: 4px 25px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}
.nav .n-1 a:hover {
    color: #e2001a;
}
.nav .n-1 ul ul {
    background: rgba(0, 0, 0, 0.5);
    display: block;
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    visibility: hidden;
}
.nav .n-1 ul li:hover ul {
    opacity: 1;
    padding: 10px 0;
    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 .n-1 ul ul li {
    display: block;
}
.nav .n-1 ul ul a {
    font-size: 12px;
    white-space: nowrap;
}

/*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 {
        z-index: 1000;
        will-change: opacity;
        background: rgba(0, 0, 0, 0.3);
        -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;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 120%;
        display: block;
        visibility: hidden;
        opacity: 0;
    }

    .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: 40px;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        /*right: 0;*/
        left: 5px;
        text-indent: -9999px;
        top: 30px;
        -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: 40px;
        z-index: 1010;
        will-change: transform;
    }
    .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: #e2001a;
        display: block;
        height: 4px;
        left: 6px;
        position: absolute;
        will-change: background;
        right: 6px;
        top: 16px;
    }
    .c-hamburger span::before,
    .c-hamburger span::after {
        will-change: transform;
        background-color: #e2001a;
        content: '';
        display: block;
        height: 4px;
        left: 0;
        position: absolute;
        width: 100%;
    }

    .c-hamburger span::before {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    .c-hamburger span::after {
        -webkit-transform: translateY(8px);
        -moz-transform: translateY(8px);
        -ms-transform: translateY(8px);
        -o-transform: translateY(8px);
        transform: translateY(8px);
    }
    .c-hamburger--htx {
        background: #000;
        border: 2px solid #e2001a;
        -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 {
    }
    .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: rgba(0, 0, 0, 1);
        clear: both;
        display: block;
        float: none;
        height: 100%;
        left: 0;
        margin-left: 0;
        margin-top: 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;
    }
    .dropdown-content {
        min-width: 100% !important;
    }
    .dropdown-content {
        position: static;
    }
    .nav .categories {
        background: #fff;
        display: block;
        height: 100%;
        overflow-x: hidden;
    }
    .nav.active {
        visibility: visible;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
        overflow-y: auto;
    }
    .table {
        display: block;
        width: 100%;
    }
    .table li {
        display: inline-block;
        float: left;
        width: 100%;
    }
    .nav {
        display: block;
        width: 100%;
    }
}

.nav .lbl {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.nav .sale {
    background: #a700fc;
    margin: 0 0 6px;
}

.nav .new {
    background: #790e11;
    margin: 0 0 6px;
}

.nav .promo {
    background: #e2001a;
    margin: 0 0 9px;
}

.filters {
    margin: 0 0 10px;
}
.filters .all {
    background: #e2001a;
    margin: 0 0 6px;
}
.filters > div {
    background: rgba(0, 0, 0, 0.5);
}
.filters .item {
    display: block;
    padding: 5px 0;
    text-align: left;
}
.filters .item > div {
    padding: 0 10px 0 25px;
}
.filters label {
    display: block;
    padding: 5px 0;
    position: relative;
}
.filters .checkbox {
    background: #444;
    border-color: #444;
    height: 14px;
    margin: 0;
    position: relative;
    width: 14px;
}
.filters .checkbox.active {
    background: #000;
    border-color: #ac0000;
}
.filters .checkbox:after {
    border-color: #ac0000;
    bottom: 6px;
    left: 2px;
}
.filters .checkbox.active:after {
    height: 8px;
    width: 5px;
}
.filters label .name {
    display: block;
    margin-top: -15px;
    padding: 0 0 0 22px;
    position: relative;
    text-transform: uppercase;
}
.filters .item a {
    color: #e2001a;
    display: block;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 0;
    text-decoration: none;
    text-transform: uppercase;
}
.filters .range {
    display: block !important;
    padding: 20px 0;
}
.filters .range .values {
    display: table;
    font-size: 0.000001px;
    padding: 0 0 20px;
    width: 100%;
}
.filters .range .values div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.filters .range .values div:first-child {
    text-align: left;
}
.filters .range .values div:last-child {
    text-align: right;
}
.filters .range .values span {
    display: inline-block;
    font-size: 16px;
    padding: 0 10px;
    vertical-align: middle;
}
.filters .range .values .input {
    text-align: center;
    width: 80px;
}
.ui-slider {
    background: #c4c4c4;
    border: 6px solid #c4c4c4;
    border-bottom: 0;
    border-top: 0;
    overflow: visible;
    position: relative;
    text-align: left;
}
.ui-slider-horizontal {
    height: 16px;
}
.ui-slider-range {
    background: #e2001a;
    border: 0;
    display: block;
    position: absolute;
    z-index: 1;
}
.ui-slider-horizontal .ui-slider-range {
    height: 100%;
    top: 0;
}
.ui-slider-handle {
    background: #fff;
    border: 1px solid #bcbcbc;
    cursor: default;
    height: 38px;
    position: absolute;
    -ms-touch-action: none;
    touch-action: none;
    width: 12px;
    z-index: 2;
}
.ui-slider-horizontal .ui-slider-handle {
    margin-left: -6px;
    top: -11px;
}
.filters .button {
    margin: 10px auto 20px 25px;
}

.cats {
    color: #fff;
    display: block;
    margin: 0 0 15px;
    padding: 0;
}
.cats .all {
    background: #000;
    margin: 0 0 14px;
}
.cats ul {
    margin: 0;
    padding: 0;
}
.cats > ul {
    background: rgba(0, 0, 0, 0.5);
}
.cats ul > li {
    background: none;
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.cats ul > li:before {
    display: none;
}
.cats li a {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    padding: 4px 15px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 3;
}
.cats li a:before {
    background: #e2001a;
    bottom: 0;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    z-index: -1;
}
.cats li a:hover:before,
.cats li.active > a:before {
    height: 100%;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 100%;
}
.cats li a h2 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-transform: inherit;
}
.cats li ul {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -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;
}
.cats li.active > ul,
.cats li a.active + ul {
    max-height: 1000px;
    opacity: 1;
    padding: 0 0 20px;
    visibility: visible;
}
.cats li li a {
    padding: 3px 15px 3px 40px;
    text-transform: none;
}
.cats li li a:hover,
.cats li li a.active {
    background: none;
    color: #d70d22;
}
.cats li li a:before {
    display: none;
}
.cats li li a:after {
    background: #e2001a;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 7px;
    left: 23px;
    position: absolute;
    top: 7px;
    width: 7px;
}
.cats ul ul li.active > ul,
.cats ul ul li a.active + ul {
    padding-left: 10px;
}

.tags .all {
    background: #790e11;
}
.tags ul {
    background: rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 5px 0;
}
.tags ul > li {
    background: none;
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.tags ul > li:before {
    display: none;
}
.tags li a {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 300;
    padding: 4px 15px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}
.tags li a:hover {
    background: #e2001a;
}

.nav .shipment {
    margin: 0;
    line-height: 1.2;
}
.nav .shipment h3 {
    background: #e2001a;
    font-size: 16px;
    margin: 0 0 4px;
    padding: 10px 17px;
}
.nav .shipment > div {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
}
.nav .shipment .option {
    padding: 10px 0;
}
.nav .shipment .option b {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
}
.nav .shipment .option span {
    display: block;
    font-size: 14px;
}
.nav .shipment img {
    display: block;
    margin: 15px auto;
}
.nav .shipment .free {
    font-size: 12px;
    padding: 0 0 5px;
    text-align: center;
}
.nav .shipment .free u {
    color: #d70d22;
    text-decoration: none;
}
.nav .shipment .free b {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
}

/*
 * Main
 */
.main {
    clear: both;
    display: block;
    min-height: 500px;
    min-height: calc(100vh);
    overflow: hidden;
    padding: 103px 0 10px;
    position: relative;
    width: 100%;
}

/* 
 * tabz
 */
.tabz {
    padding: 10px 0;
}
.tabznav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
}
.tabznav a {
    color: #000;
    display: inline-block;
    font-size: 24px;
    line-height: 30px;
    margin: 5px 10px;
    padding: 0;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
}
.tabznav a:hover,
.tabznav a.active {
    color: #cc1717;
}
.tabznav h2,
.tabznav h3 {
    font-size: inherit;
    padding: 0;
}
.tabzcon {
    margin: 0 -35px;
    overflow: visible;
    padding: 20px 35px;
    position: relative;
}
.tabzcon > div {
    left: 35px;
    opacity: 0;
    position: absolute;
    right: 35px;
    top: 10px;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    visibility: hidden;
}
.tabzcon > div.active {
    left: 0;
    opacity: 1;
    position: relative;
    right: 0;
    top: 0;
    visibility: visible;
}

/*
 * Areas
 */
.areas {
    display: table;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
    position: relative;
    table-layout: fixed;
    width: 100%;
}
.areas .area {
    display: table-cell;
    padding: 0;
    vertical-align: top;
    width: auto;
}
.areas .area-1 {
    flex-shrink: 0;
    line-height: 1.2;
    padding-right: 20px;
    width: 240px;
}
.areas .area-2 {
    /*width: 84.5%;*/
    margin: 0 -10px;
    overflow: hidden;
    padding: 0 10px;
    width: 100%;
}

/*.con {
    line-height: 1.4;
}

.con ol > li {
    padding: 8px 0;
}
.con ul > li {
     list-style-type: none;
     padding: 8px 0;
     position: relative;
     text-indent: 38px;
    }
.con ul > li:before {
    background: #ff9100;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    content: ''; display: inline-block; height: 10px; margin: 0 10px 0 -18px; position: relative; width: 10px;
}*/

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

/*
 * Grade
 */
.grade {
    display: inline-block;
    margin: 5px 0;
    font-size: 0.000001px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
    white-space: nowrap;
}
.grade label {
    background: none;
    cursor: pointer;
    font-size: 22px;
    height: 1em;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 1em;
    z-index: 3;
}
.grade label + label {
    left: 1.5em;
}
.grade label + label + label {
    left: 3em;
}
.grade label + label + label + label {
    left: 4.5em;
}
.grade label + label + label + label + label {
    left: 6em;
}
.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: 22px;
    height: 1em;
    letter-spacing: 0.5em;
    margin: 0;
    position: relative;
    vertical-align: middle;
    z-index: 1;
}
.grade .icon-grade:before,
.grade .icon-grade:after {
    content: '\e620\e620\e620\e620\e620';
}
.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: 7%;
}
.grade.grade-20 .icon-grade:after,
.grade input:checked + input + input + input + input + .icon-grade:after {
    width: 17%;
}
.grade.grade-30 .icon-grade:after {
    width: 27%;
}
.grade.grade-40 .icon-grade:after,
.grade input + input:checked + input + input + input + .icon-grade:after {
    width: 37%;
}
.grade.grade-50 .icon-grade:after {
    width: 47%;
}
.grade.grade-60 .icon-grade:after,
.grade input + input + input:checked + input + input + .icon-grade:after {
    width: 57%;
}
.grade.grade-70 .icon-grade:after {
    width: 67%;
}
.grade.grade-80 .icon-grade:after,
.grade input + input + input + input:checked + input + .icon-grade:after {
    width: 77%;
}
.grade.grade-90 .icon-grade:after {
    width: 87%;
}
.grade.grade-100 .icon-grade:after,
.grade input + input + input + input + input:checked + .icon-grade:after {
    width: 97%;
}
.grade i {
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    margin: 2px 0 0 5px;
    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';
}
*/

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

/*
 * Reviews
 */
.section--reviews {
    padding: 10px 0;
    position: relative;
}
.reviews {
    display: flex;
    flex-wrap: wrap;
    max-height: 500px;
    overflow: auto;
    padding: 0;
    text-align: center;
}
.reviews .reviews-item {
    margin: 10px 0;
    position: relative;
    vertical-align: top;
}
.reviews .reviews-item::before {
    border-left: 2px solid #eee;
    bottom: 0;
    content: '';
    height: 70px;
    left: -1px;
    margin: auto 0;
    position: absolute;
    top: 0;
}
.reviews .reviews-item:nth-child(4n + 1)::before {
    display: none;
}
.reviews .reviews-desc {
    font-size: 14px;
    overflow: hidden;
    padding: 3px 0;
}

@media only screen and (max-width: 1200px) {
    .reviews .reviews-item {
        width: 33.33%;
    }
    .reviews .reviews-item:nth-child(4n + 1)::before {
        display: block;
    }
    .reviews .reviews-item:nth-child(3n + 1)::before {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .reviews .reviews-item {
        width: 50%;
    }
    .reviews .reviews-item:nth-child(3n + 1)::before {
        display: block;
    }
    .reviews .reviews-item:nth-child(2n + 1)::before {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .reviews .reviews-item {
        width: 100%;
    }
    .reviews .reviews-item::before {
        display: none;
    }
}

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

/*
* CATZ
*/
.catz {
    display: none;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}
.catz::after {
    background: rgba(255, 255, 255, 0);
    background: -webkit-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0) 0%,
        rgb(0, 0, 0) 100%
    );
    background: -ms-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: -o-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    bottom: 0;
    content: '';
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 25%;
}
.catz-ul {
    display: flex;
    flex-wrap: nowrap;
    font-size: 0.000001px;
    margin: 0 0 -20px;
    overflow-x: auto;
    padding: 0 0 20px;
    position: relative;
}
.catz-li {
    display: inline-block;
    padding: 0 10px 0 0;
}
.catz-a {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    padding: 15px 10px;
    white-space: nowrap;
}
.catz-a:hover,
.catz-a.--active {
    color: #ff0101;
    text-decoration: none;
}
.catz-a h2 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 1000px) {
    .catz {
        display: block;
    }
}

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

.gallery {
    padding: 25px 0;
}
.gallery .ibs .ib {
    font-size: 0.00001px;
    vertical-align: middle;
}
.gallery .records a {
    display: inline-block;
    overflow: hidden;
}
.gallery .records img {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    will-change: transform;
}
.gallery .records 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);
}
.gallery .records span {
    display: block;
    padding: 3px 0;
    text-align: center;
}

.table {
    display: table;
}
.table .tr {
    display: table-row;
}
.table .td {
    display: table-cell;
}

.ibs .ib--20 {
    width: 20%;
}

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

.section .path {
    color: #c6c6c6;
    font-size: 10px;
    font-weight: normal;
    text-transform: uppercase;
}
.section .path a,
.section .path span,
.section .path h1 {
    color: #c6c6c6;
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
    position: relative;
    text-decoration: none;
}
.section .path a:after {
    border-bottom: 1px solid #c6c6c6;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.section .path a:hover:after {
    width: 100%;
}

.section .header {
    font-size: 18px;
    padding: 0 0 5px;
}
.section .header h2 {
    display: inline-block;
    font-size: inherit;
    padding: 0;
}
.section .header a {
    color: inherit;
}
.section .header i {
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    margin: 3px 0 0 15px;
    text-transform: none;
    vertical-align: top;
}

.section .bg-b-70 {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px 35px;
}
.section .bg-w {
    background: #fff;
    color: #000;
    padding: 20px;
}

.section.hap {
    padding: 40px 0 0;
}

.section.slider-main {
}

.section.banner {
}
.banner img {
    width: 100%;
}

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

.section.categories {
}
.categories .records {
    padding: 10px 0 30px;
    position: relative;
}
.categories .records .item {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 1);
    display: block;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    position: relative;
    text-align: center;
    width: 220px;
}
.categories .records .img {
    background: #fff;
    display: block;
    overflow: hidden;
    padding: 105% 0 0;
    position: relative;
}
.categories .records img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.categories .records img + img {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    visibility: hidden;
    perspective: 500px;
}
.categories .records .item:hover img + img {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    visibility: visible;
}
.categories .records a {
    color: #fff;
    display: block;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    z-index: 3;
}
.categories .records a:before {
    bottom: 0;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    z-index: -1;
}
.categories .records a:hover:before {
    height: 100%;
    transform: rotate(180deg);
    width: 100%;
}
.categories .records .name {
    background: #a60013;
    font-weight: bold;
    padding: 6px 27px 6px 10px;
    text-align: left;
}
.categories .records .name:before {
    background: rgba(0, 0, 0, 0.1);
}
.categories .records .name:after {
    border: 5px solid rgba(255, 255, 255, 0);
    border-left-color: #fff;
    position: absolute;
    right: 7px;
    top: 12px;
}
.categories .records .nbp {
    background: #000;
    font-weight: 300;
    padding: 6px 10px;
}
.categories .records .nbp + .nbp {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.categories .records .nbp:hover {
    /*background: #a60013;*/
}
.categories .records .nbp:before {
    background: #a60013;
}

.categories .-mod .name {
    background: #000;
    padding: 6px 10px;
    text-align: center;
}
.categories .-mod .name::before {
    background: #a60013;
}
.categories .-mod .name::after {
    display: none;
}
.categories .-mod .nbp {
    background: #e2001a;
    font-weight: bold;
    padding: 6px 27px;
}
.categories .-mod .nbp::before {
    background: rgba(0, 0, 0, 0.1);
}
.categories .-mod .nbp::after {
    border: 5px solid rgba(255, 255, 255, 0);
    border-left-color: #fff;
    position: absolute;
    right: 7px;
    top: 12px;
}

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

.section.products {
}
.products .loading {
    min-height: 250px;
    min-height: calc(75vh);
}

.products .filters {
    display: none;
    line-height: 1.2;
}
.products .filters .lbl {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 2px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}
.products .filters .all {
    padding: 10px 15px;
}
.products .filters .all:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    bottom: 0;
    content: '';
    height: 10px;
    margin: auto 0;
    position: absolute;
    right: 15px;
    top: 0;
    transform: rotate(45deg);
    width: 10px;
}
.products .filters .all.active:after {
    transform: rotate(-135deg);
}
.products .filters > div {
    max-height: 0;
    opacity: 0;
    padding: 5px;
    transition: all 0.25s ease;
    visibility: hidden;
}
.products .filters > .active + div {
    max-height: 2500px;
    opacity: 1;
    visibility: visible;
}
.products .filters .item {
    padding: 5px 0;
}
.products .filters .item > div {
    margin: 0 -2px;
    padding: 0;
}
.products .filters .item > div > div {
    display: inline;
}
.products .filters label {
    display: inline-block;
    margin: 2px;
    padding: 3px;
}
.products .filters .item a {
    display: none;
}
.products .filters .button {
    margin: 5px auto 10px 2px;
}

.products .options {
    max-width: 100%;
    padding: 0 0 10px;
}
.products .options > div {
    margin: 0;
    padding: 3px 0;
}
.products .options label {
    margin: 0;
}
.products .options span {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    margin: 0 10px 0 0;
    text-transform: uppercase;
    vertical-align: middle;
}
.products .options select {
    background-color: #000;
    background-image: url('../images/select-w.png');
    color: #808080;
    font-size: 12px;
    min-width: 160px;
    padding: 3px 22px 3px 9px;
    width: auto;
}
.products .options div + div select {
    min-width: 70px;
}
.products .options option {
    background-color: #000;
}
.products .records {
    position: relative;
}
.products .records .item {
    display: block;
    height: 310px; /*340px*/
    margin: auto;
    max-width: 100%;
    padding: 0;
    position: relative;
    text-align: center;
    width: 210px;
}
.products .records a {
    background: #fff;
    border: 0;
    display: block;
    left: 0;
    min-height: 100%;
    overflow: hidden;
    padding: 5px;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
    z-index: 3;
}
.products .records a:hover {
    /*bottom: -10px;*/
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 1);
    /*left: -10px;
        padding: 15px;
        right: -10px;
        top: -10px;*/
    z-index: 5;
}
.products .records a:after {
}
.products .records .img {
    background: #fff;
    display: block;
    overflow: hidden;
    padding: 100% 0 0;
    position: relative;
}
.products .records img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.products .records .img-2 {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    visibility: hidden;
    perspective: 500px;
}
.products .records a:hover .img-2 {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    visibility: visible;
}
.products .records a:hover .img-2 + img {
    opacity: 0;
    visibility: hidden;
}
.products .records .grp {
    display: block;
    padding: 15px 5px 5px;
    position: relative;
    text-align: right;
}
.products .records .name {
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    max-height: 40px;
    min-height: 40px;
    overflow: hidden;
    padding: 0;
    text-align: center;
    text-transform: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.products .records a:hover .name {
    max-height: 150px;
}
.products .records .desc {
}
.products .records .price {
    display: inline-block;
    line-height: 1.2;
    padding: 2px 0;
    position: relative;
    text-align: center;
}
.products .records .price .old {
    color: #888;
    display: block;
    font-size: 12px;
    font-weight: normal;
    height: 15px;
    text-decoration: line-through;
}
.products .records .price .new {
    color: #a60013;
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0 0;
}
.products .records .price .old + .new {
    padding: 0;
}
.products .records .stock {
    /*display: block;*/
    font-size: 13px;
    font-weight: 300;
    height: 22px;
    line-height: 20px;
    margin: auto -3px -3px;
    overflow: hidden;
    padding: 0 3px;
    position: relative;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.products .records .unavailable {
    border: 1px dashed #777;
    color: #777;
}
.products .item .discount {
    background: #e2001a;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    right: -31%;
    text-shadow: 0px 0px 1px #fff;
    top: 14%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;
    z-index: 5;
}

.products-new {
    background: #a7a7a7;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    padding: 0 7px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
    z-index: 5;
}

.section.slider-products {
    /*margin: 0 -10px;
    padding: 10px;
    width: auto;*/
    overflow: visible;
}
.slider-products .records {
    margin: 0 -10px;
    padding: 0;
}
.slider-products .swiper-slides {
    width: 100%;
}

.products .records.ibs {
    overflow: visible;
    padding: 10px 0;
}

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

/*
* Product 2
*/
.section.product {
}
.product .imgs {
    margin: 0 auto 0 0;
    padding: 0 0 20px;
    text-align: center;
}
.product .imgs a {
    display: inline-block;
    overflow: hidden;
}
.product .imgs 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;
}
.product .imgs 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);
}

.product .grp {
    margin: 0 0 0 auto;
    max-width: 55rem;
    padding: 0;
    position: relative;
}
.product .brand-logo {
    position: absolute;
    right: 0;
    top: 10px;
    width: 100px;
}
.product .brand-logo img {
    position: absolute;
    right: 0;
    top: 0;
    -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;
}
.product .brand-logo: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);
}
.product .name {
    font-size: 23px;
    padding: 0;
    text-align: center;
}
.product .brand-logo + .name {
    padding-right: 120px;
}
.product .brand-name {
    font-size: 14px;
    padding: 15px 0 5px;
    text-transform: uppercase;
}
.product .brand-name a {
    color: #d70d22;
}

.product .price {
    display: table;
    line-height: 1;
    padding: 10px 0;
    position: relative;
    text-align: center;
}
.product .price > div {
    display: table-row;
}
.product .price > div > div {
    display: table-cell;
}
.product .price .old {
    color: #888;
    font-size: 24px;
    font-weight: normal;
    text-decoration: line-through;
}
.product .price .new {
    color: #d70d22;
    font-size: 36px;
    font-weight: bold;
    padding: 24px 0 0;
}
.product .price .old + .new {
    padding: 0;
}
.product .price .net > div,
.product .price .net + .new > div,
.product .price .sug > div {
    color: #000;
    font-size: 18px;
    padding: 3px 5px 3px 0;
    text-align: left;
    vertical-align: middle;
    width: 50%;
}
.product .price .net > div + div,
.product .price .net + .new > div + div,
.product .price .sug > div + div {
    color: #d30e0e;
    font-size: 24px;
    padding: 3px 0 3px 5px;
    text-align: right;
    white-space: nowrap;
    width: auto;
}

.product .label {
    padding: 0;
}

.product .attrs {
    padding: 10px 0 20px;
}
.product .attrs .item {
    display: table;
    padding: 10px 0;
    width: 100%;
}
.product .attrs .item:after {
    content: '';
    display: table-cell;
}
.product .attrs .label {
    display: table-cell;
}
.product .attrs select {
    background-color: #eaeaea;
    background-image: url('../images/select-g.png');
    border-color: #eaeaea;
    font-size: 14px;
    padding: 9px 34px 9px 9px;
    width: 100%;
}
.product .attrs .ext {
    display: table-cell;
    padding: 5px 0 5px 10px;
    text-align: center;
    vertical-align: middle;
    width: 55%;
}
.product .attrs a {
    color: #000;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
}
.product .attrs a:hover {
    color: #ff0101;
}

.product .stock-true {
    padding: 20px 0 40px;
    width: 100%;
}
.stock-true .quantity {
    font-size: 0.00001px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    width: 40%;
}
.stock-true .quantity a {
    color: #000;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    padding: 8px 16px;
    text-decoration: none;
    vertical-align: middle;
}
.stock-true .quantity a:hover {
    color: #e2001a;
}
.stock-true .quantity .input {
    border-color: #000;
    color: #777;
    font-size: 14px;
    padding: 7px 5px;
    width: 52px;
}
.stock-true .button {
    font-size: 18px;
    width: 100%;
}

.product .stock-false {
    padding: 20px 0 40px;
}
.stock-false b {
    display: block;
    font-size: 18px;
    font-style: normal;
    line-height: 1.2;
    text-transform: uppercase;
}
.stock-false b i {
    color: #777;
    font-style: normal;
}
.stock-false > div {
    padding: 15px 0 0;
    position: relative;
}
.stock-false .fill-row {
    margin-bottom: 0;
}
.stock-false .input {
    background-color: #eaeaea;
    border-color: #eaeaea;
    padding: 14px 130px 4px 9px;
}
.stock-false .label--invalid .input {
    border-color: #d92e2e;
}
.stock-false .button {
    bottom: 0;
    font-size: 18px;
    position: absolute;
    right: 0;
    width: 120px;
}

.product .adult {
    margin: -30px 0 15px;
}

.related {
}
.related span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}
.related > div {
    font-size: 0.000001px;
    padding: 0;
    margin: 0 -5px;
}
.related div div {
    display: inline-block;
    padding: 5px;
    vertical-align: middle;
    width: 20%;
}
.related a {
    border: 1px solid #eee;
    display: block;
    overflow: hidden;
    padding: 100% 0 0;
    position: relative;
}
.related a:hover {
    border-color: #000;
}
.related img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 90%;
    max-width: 90%;
    position: absolute;
    right: 0;
    top: 0;
}

.stock {
    line-height: 1.2;
    padding: 0 0 0 47px;
    position: relative;
}
.stock .icon {
    font-size: 36px;
    left: 0;
    position: absolute;
    top: 5px;
}
.stock b {
    display: block;
    padding: 0;
    font-size: 18px;
    text-transform: uppercase;
}
.stock span {
    display: block;
}
.stock .stock-dots {
    display: block;
    font-size: 0.00001px;
    padding: 10px 0;
    white-space: nowrap;
}
.stock .stock-dots > li {
    background: #888;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    height: 9px;
    list-style-type: none;
    margin: 0 9px 0 0;
    padding: 0;
    width: 9px;
}
.stock .stock-1 > li:first-child {
    background: #e2001a;
}
.stock .stock-2 > li:first-child,
.stock .stock-2 > li:first-child + li {
    background: #ffbb00;
}
.stock .stock-3 > li {
    background: #9ccc65;
}

.tagz {
    line-height: 1.2;
    padding: 0 0 0 47px;
    position: relative;
}
.tagz .icon {
    font-size: 36px;
    left: 0;
    position: absolute;
    top: 5px;
}
.tagz b {
    display: block;
    padding: 0 0 15px;
    font-size: 18px;
    text-transform: uppercase;
}
.tagz span {
    display: block;
}

.product .tabz {
    margin: 10px auto 0;
    max-width: 1220px;
}
.product .tabznav a {
    background: #f3f3f3;
    font-size: 21px;
    padding: 15px 25px;
}
.product .tabznav a:hover,
.product .tabznav a.active {
    background: #cc1717;
    color: #fff;
}

.product .con {
    clear: both;
}

.sizes table {
    line-height: 1;
    margin: 0 0 40px;
    padding: 10px 0;
    table-layout: fixed;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.sizes td {
    background: #000;
    color: #fff;
    font-size: 13px;
    letter-spacing: -0.75px;
    padding: 8px 5px;
    vertical-align: middle;
}
.sizes tr + tr td {
    background: #dcdcdc;
    border-bottom: 2px solid #fff;
    color: #000;
    letter-spacing: normal;
}
.sizes tr + tr td + td {
    border-left: 2px solid #fff;
}

.product .grade {
    margin: 5px 5px 20px 0;
    vertical-align: top;
}
.product .reviews-anchor {
    color: #bbb;
    display: inline-block;
    margin: 7px 0 0;
    vertical-align: top;
}

.pros {
    border: 2px solid #eee;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    display: block;
    margin: 15px auto;
    max-width: 420px;
    padding: 10px 15px;
}
.pros-item {
    align-content: center;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
    line-height: 1.1;
    min-height: 60px;
    padding: 5px 0 5px 115px;
    position: relative;
}
.pros-item:first-child {
    border-top: 0;
}
.pros-a {
    color: #000;
    text-decoration: none;
}
.pros-a:hover {
    color: #e2001a;
    text-decoration: none;
}
.pros-img {
    bottom: 0;
    left: 0;
    margin: auto 0;
    max-height: 100%;
    position: absolute;
    top: 0;
}
.pros-item--0 .pros-img {
    left: 35px;
}
.pros-item--1 .pros-img {
    left: 24px;
}
.pros-item--2 .pros-img {
    left: 35px;
}
.pros-item--3 .pros-img {
    left: 34px;
}
.pros-item--4 .pros-img {
    left: 10px;
}

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

/*
 * Brands
 */
.section.slider-brands {
    overflow: visible;
    margin: 15px 0 0;
    position: relative;
}
.slider-brands:before {
    background: #fff;
    bottom: 0;
    content: '';
    left: -25px;
    position: absolute;
    right: -25px;
    top: 0;
}
.brands {
}
.brands-item {
    position: relative;
    text-align: center;
}
.brands-a {
    color: inherit;
    display: block;
    margin: 0 auto;
    text-decoration: none;
}
.brands-a:hover {
    text-decoration: none;
}
.brands-image {
    height: 100px; /*10rem*/
    padding: 0;
    position: relative;
}
.brands-img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.brands-text {
    margin: 0.3rem 0 1rem;
}
.brands-name {
    margin: 0;
    padding: 0;
}
.brands-desc {
    font-style: italic;
}

/*
 * Welcome
 */
.welcome {
    margin: 15px 0 0;
    padding: 20px 0;
    position: relative;
}
.welcome:before {
    background: #000;
    bottom: 0;
    content: '';
    left: -25px;
    position: absolute;
    right: -25px;
    top: 0;
}
.welcome .con {
    font-size: 15px;
}

.user-zone {
    background: url('../images/user-zone.png') no-repeat right bottom;
}
.user-zone .inner {
    margin: 0 auto;
}

.u-log {
    background-size: 35% auto;
}
.u-log .inner {
    max-width: 700px;
}
.u-log .inner > * {
    margin: 0 auto 0 0;
    max-width: 460px;
}
.u-log .fill-row + .fill-row {
    margin-bottom: 5px;
}
.u-log .btns {
    overflow: hidden;
    padding: 15px 0 30px;
}
.u-log .button {
    float: right;
    width: 48%;
}
.u-log a.button {
    background: #313131;
    border-color: #313131;
    float: left;
}
.u-log .inner + .con {
    width: 60%;
}

.u-reg {
    background-size: 25% auto;
}
.u-reg form {
    margin: 0 auto;
    max-width: 1000px;
}
.u-reg .btns {
    overflow: hidden;
    padding: 15px 0 30px;
}
.bg-b-70 > .u-reg .dataprocessing {
    width: 70%;
}
.bg-b-70 > .u-reg .form-actions {
    text-align: left;
}
.u-reg .privacy {
    width: 70%;
}

.section.panel {
}
.panel .inner {
    background: #fff;
    padding: 0;
    text-align: center;
}
.panel .ibs {
    margin: 0;
}
.panel .ibs .ib {
    position: relative;
    vertical-align: middle;
}
.panel .ibs .ib:before {
    border-left: 2px solid #ddd;
    bottom: 0;
    content: '';
    display: none;
    height: 70px;
    left: -1px;
    margin: auto 0;
    position: absolute;
    top: 0;
}
.panel .ibs .ib + .ib:before {
    display: block;
}
.panel a {
    display: block;
    padding: 50% 0 0;
    position: relative;
    text-decoration: none;
}
.panel img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

/*
 * news
 */
.section--news {
}
.news {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.news .news-item {
    margin: 10px 0;
}
.news-a {
    background: rgba(0, 0, 0, 0.7);
    color: inherit;
    display: block;
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 15px;
    position: relative;
    width: 320px;
}
.news-a:hover {
    text-decoration: none;
}
.news-image {
    display: block;
    overflow: hidden;
    padding: 66.66% 0 0;
    position: relative;
}
.news-img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    -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;
}
.news-a:hover .news-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);
}
.news-text {
    position: relative;
}
.news-datetime {
    display: block;
    margin: 10px 0;
}
.news-name {
    font-size: 22px;
    margin: 10px 0;
    padding: 0;
}
.news-desc {
    font-size: 14px;
    margin: 10px 0;
}

/*
 * contact
 */
.contact {
}
.contactIco {
    padding-left: 40px;
    position: relative;
}
.contactIco .icon {
    font-size: 22px;
    left: 0;
    position: absolute;
    top: 8px;
}

/*
.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: 15px;
            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 {
    background: rgba(0, 0, 0, 0.6);
    clear: both;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
}

.footer .f-1 {
    padding: 10px 0;
}
.f-1 .newsletter {
    float: right;
    line-height: 1.2;
    max-width: 100%;
    padding: 10px 0;
}
.f-1 .newsletter .txt {
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    padding: 7px 5px;
    text-align: right;
    vertical-align: top;
}
.f-1 .newsletter .wrp {
    display: inline-block;
    max-width: 100%;
    padding: 0 5px;
    position: relative;
    vertical-align: middle;
    width: 490px;
}
.f-1 .newsletter .box {
    margin: 0;
}
.f-1 .newsletter form {
    padding: 0;
    position: relative;
}
.f-1 .newsletter .fill-row {
    margin-bottom: 5px;
}
.f-1 .newsletter .fill-name {
    color: #303030;
    font-size: 16px;
    top: 25px;
}
.f-1 .newsletter .fill-name.fill-focus,
.no-js .f-1 .newsletter .fill-name {
    color: #9f9f9f;
    font-size: 12px;
    top: 12px;
}
.f-1 .newsletter .input {
    padding: 19px 153px 9px 14px;
}
.f-1 .newsletter .button {
    padding: 14px 14px;
    position: absolute;
    right: 0;
    top: 0;
    width: 140px;
}

.footer .f-2 {
    background: #000 url('../images/fighter.jpg') no-repeat 103% bottom;
}

.footer .f-2-1 {
    color: #919191;
    font-size: 12px;
    font-weight: normal;
    padding: 30px 0;
    text-align: left;
    text-transform: uppercase;
}
.f-2-1 .ib > div {
    line-height: 2;
    padding: 20px 0;
    text-align: left;
}
.f-2-1 h4 {
    color: #fff;
    font-size: 21px;
    min-height: 53px;
    padding: 0;
}
.f-2-1 a {
    color: #919191;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.f-2-1 a:hover {
    color: #e2001a;
}
.f-2-1 b {
    color: #fff;
    font-weight: normal;
}
.f-2-1 a:hover b {
    color: inherit;
}
.f-2-1 span {
    display: block;
}
.f-2-1 img {
    margin: 0 3px 3px 0;
    vertical-align: middle;
}

.footer .f-2-2 {
    padding: 20px 0;
    text-align: center;
}
.f-2-2 a {
    color: #666;
    display: inline-block;
    font-size: 22px;
    margin: 0 10px;
    text-decoration: none;
    vertical-align: middle;
    will-change: transform;
}
.f-2-2 a:hover {
    color: #e2001a;
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
}

.footer hr {
    background: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
    position: relative;
}

.footer .f-2-3 {
    font-size: 11px;
    font-weight: 300;
    padding: 5px 0;
    text-align: center;
    text-transform: uppercase;
}
.f-2-3 div {
    display: inline-block;
    padding: 5px;
}
.f-2-3 .copyrights {
    color: #747474;
}
.f-2-3 .realization {
    color: #666;
}
.f-2-3 span {
    display: inline-block;
}
.f-2-3 a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
}
.f-2-3 .redhand {
    position: relative;
}
.f-2-3 .redhand:hover {
    color: #ff001d;
}

.f-2-3 .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;
}
.f-2-3 .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);
    -moz-transform: translate(0, -30px);
    -ms-transform: translate(0, -30px);
    -o-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);
    -moz-s-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-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-size: 0.9em;
    font-weight: bold;
    padding-left: 5px;
}

/* price hightlight style */
.price {
    color: #d30e0e;
    font-size: 20px;
    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;
}

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

@media only screen and (min-width: 1600px) {
    .products .records .item {
        height: 350px; /*380px*/
        width: 246px;
    }
}

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

@media only screen and (max-width: 1400px) {
    .nav .n-1 a {
        padding: 4px 15px;
    }

    .news .news-item {
        width: 33.33%;
    }
}

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

@media only screen and (max-width: 1200px) {
    .container {
        padding: 0 10px;
    }

    .t-1 .shipment:after {
        right: 78px;
    }

    .languages {
        right: 10px;
    }

    .search {
        left: auto;
        right: 350px;
        width: 360px;
    }
    .search form > div {
        width: 360px;
    }

    .top .call {
        right: 165px;
    }

    .top .cart {
        right: 5px;
    }

    .nav .n-1 {
        left: 10px;
        right: 390px;
    }
    .nav .n-1 ul {
        margin: 0;
    }
    .nav .n-1 a {
        padding: 4px 10px;
    }

    .slider-products .swiper-slide {
        width: 25%;
    }

    .ibs .ib--20 {
        width: 25%;
    }

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

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

@media only screen and (max-width: 1000px) {
    .top {
        min-height: 111px;
    }

    .top .t-1 {
        background: #e2001a;
        min-height: 24px;
        text-align: center;
    }
    .t-1 .container {
        padding: 0 35px 0 5px;
    }

    .t-1 .shipment {
        display: inline-block;
        font-size: 12px;
        left: auto;
        margin: 0;
        padding: 3px 25px;
        position: relative;
        right: auto;
    }
    .t-1 .shipment:after {
        display: none;
    }
    .t-1 .shipment .icon {
        right: 0;
    }
    .t-1 .shipment b + .icon {
        left: 0;
    }

    .languages {
        right: 5px;
    }

    .logo-1 {
        margin: 0 0 0 45px;
        width: 145px;
    }

    .search {
        height: 30px;
        right: 5px;
        top: 53px;
    }
    .search form > div {
        max-height: 30px;
    }
    .search form .fill-name {
        left: 30px;
        top: 15px;
    }
    .search form .input {
        padding: 4px 9px;
    }
    .search form .button {
        padding: 4px 10px;
    }

    .top .call {
        padding: 0 0 0 33px;
        top: 10px;
    }
    .top .call .icon {
        font-size: 28px;
    }
    .top .call a {
        font-size: 16px;
    }
    .top .call a + span {
        font-size: 11px;
    }

    .top .cart {
        top: 10px;
        width: 110px;
    }
    .top .cart > div > a {
        padding: 0 0 0 33px;
    }
    .top .cart > div > a .icon {
        font-size: 28px;
        height: 28px;
        line-height: 28px;
        width: 28px;
    }
    .top .cart > div > a .amount {
        font-size: 16px;
    }
    .top .cart > div > a .quantity {
        font-size: 11px;
    }
    .top .cart > div > a .empty {
        padding: 1px 0;
    }
    .top .cart .top-dropdown-adv {
        top: 43px;
    }
    .top .cart .top-dropdown-adv:before {
        right: 89px;
    }
    .top .cart .top-dropdown-adv:after {
        right: 88px;
    }
    .sideCart .total {
        padding: 5px 0;
    }

    .nav .n-1 {
        left: auto;
        padding: 20px 0;
        position: relative;
        right: auto;
    }
    .nav .n-1 ul {
        display: block;
        margin: 0;
    }
    .nav .n-1 li {
        display: block;
    }

    .logo-2 {
        display: none;
    }

    .filters {
        display: none;
    }

    .main {
        padding: 111px 0 10px;
    }

    /*.main > .container > .areas {
        display: block;
    }
    .main > .container > .areas .area {
        display: block;
    }
    .main > .container > .areas .area-1 {
        padding: 0;
        width: auto;
    }*/
    .areas {
        display: block;
    }
    .areas .area {
        display: block;
        margin: 0;
        padding: 0;
        width: auto;
    }

    .products .filters {
        display: block;
    }

    .product .tabznav a {
        font-size: 16px;
        padding: 10px 20px;
    }
}

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

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

    .slider-products .swiper-slide {
        width: 33.33%;
    }

    .ibs .ib--20 {
        width: 33.33%;
    }

    .product .product-left,
    .product .product-right {
        width: 100%;
    }
    .sizes table {
        table-layout: auto;
    }

    .welcome .areas {
        display: block;
    }
    .welcome .areas .area {
        display: block;
    }
    .welcome .areas .area-1 {
        float: left;
        max-width: 33.33%;
        padding: 0 10px 5px 0;
        width: auto;
    }

    .panel .ibs .ib {
        width: 50%;
    }
    .panel a {
        padding: 25% 0 0;
    }

    .news .news-item {
        width: 50%;
    }

    .f-2-1 .ibs .ib-2 {
        width: 50%;
    }
    .f-2-1 .ib-2:last-child {
        min-height: 300px;
    }

    .footer .f-2-2 {
        background: #000;
        background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #000 50%);
        background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #000 50%);
        background: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #000 50%);
        background: -o-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #000 50%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000 50%);
        margin: 0 -10px;
        padding: 40px 0 20px;
    }
    .footer hr {
        border-top: 1px solid #333;
    }
    .footer .f-2-3 {
        background: #000;
        margin: 0 -10px;
    }
}

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

@media only screen and (max-width: 600px) {
    .slider-products .swiper-slide {
        width: 50%;
    }

    .ibs .ib--20 {
        width: 50%;
    }

    .pagination > div > div {
        display: block;
    }

    .product .tabznav a {
        font-size: 13px;
        margin: 3px;
        padding: 10px;
    }
}

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

@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: 0.8em 0;
        width: auto;
    }

    .search {
        left: 5px;
        width: auto;
    }
    .search form > div {
        padding: 0 88px 0 0;
        width: 100%;
    }

    .search form .button {
        width: 88px;
    }

    .top .call {
        display: none;
    }

    .top .cart .top-dropdown-adv {
        width: 310px;
    }
    .sideCart-item > span + span {
        width: 70px;
    }
    .sideCart-item > span + span + span + span {
        padding: 10px 5px;
    }

    .slider-products .swiper-slide {
        width: 50%;
    }

    .product .slider-product .swiper-thumbs {
        display: none;
    }

    .section .bg-b-70,
    .section .bg-w {
        /*margin-left: -10px;
        margin-right: -10px;*/
        padding: 10px;
    }

    .ibs .ib--20 {
        width: 100%;
    }

    .products .records .ib--20 {
        width: 50%;
    }

    .product .brand-logo {
        max-width: 60px;
    }
    .product .brand-logo + .name {
        padding-right: 65px;
    }

    .welcome .areas .area-1 {
        float: none;
        max-width: 100%;
        padding: 0 0 5px 0;
        text-align: center;
    }

    .panel .ibs .ib {
        width: 100%;
    }
    .panel .ibs .ib:before,
    .panel .ibs .ib + .ib:before {
        display: none;
    }

    .news .news-item {
        width: 100%;
    }

    .f-1 .newsletter .fill-name {
        left: 30px;
    }
    .f-1 .newsletter .input {
        padding: 19px 114px 9px 9px;
    }
    .f-1 .newsletter .button {
        padding: 14px 4px;
        width: 110px;
    }
    .footer .f-2 {
        background-position: right bottom;
    }
    .f-2-1 .ibs .ib-2 {
        width: 100%;
    }
    .f-2-1 .ib-2:last-child {
        min-height: 500px;
    }
}

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

@media only screen and (max-width: 360px) {
    body {
        background-image: url('../images/body-bg-360.jpg');
    }

    .products .records .item {
        height: 260px;
    }
}

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

/*
 * Cart rabat
 */
.cart-rabat {
    background: #eee;
    margin: 0 0 20px;
    padding: 25px 20px 5px;
}
.cart-rabat-name {
    color: #000;
    font-size: 30px;
    margin: 0;
    padding: 2px 0;
}
.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-size: 18px;
    font-weight: 300;
    margin: 15px 0;
    padding: 15px 20px;
    text-transform: none;
}
.box--rabat strong {
    font-weight: bold;
}
.box--rabat .price {
    font-size: 22px;
}

.box--rabat .button--smallCircle {
    bottom: 7px;
    margin-bottom: -10px;
    margin-left: -30px;
    padding: 1px 10px 2px;
    position: relative;
    right: -65px;
}

/*
 * Login box
 */
.loginBox {
    background: #111;
    margin: 0 auto 20px;
    max-width: 500px;
    padding: 0 20px 5px;
}
.loginBox .label-help {
    font-size: 14px;
    margin-top: 15px;
}
.loginBox-header {
    margin-top: 0;
    text-align: center;
}
.loginBox .box {
    border: none;
    /*margin: 0 -20px 20px;*/
    margin: 0 0 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: #000;
    opacity: 1;
}
.bg-b-70 .step--active {
    color: #fff;
}
.step b {
    display: block;
    font-size: 22px;
    font-weight: 300;
}
.step .hint {
    line-height: 1.1em;
    margin: 5px 24px 5px 0;
}

/*
 * Shop Cart
 */
.cartWrapper {
    border-top: 1px solid #ddd;
    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;
    max-width: 160px;
}
.cart-type i {
    color: #888;
    display: block;
    font-weight: 300;
    padding: 0 0 0 170px;
    font-style: normal;
    margin: -25px 0 0;
}
.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: 72px !important;
}
.cart-qty-big {
    width: 10%;
}
.cart-header {
    bottom: 100%;
    color: #888;
    display: none;
    margin-bottom: 10px;
    position: absolute;
    text-align: left;
}
.bg-b-70 .cart-header {
    color: #fff;
}
.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 #ddd;
    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-size: 20px;
    font-weight: 300;
    display: inline-block;
    text-align: left;
    text-transform: none;
    vertical-align: middle;
    width: 70%;
}
.cart-product-name a {
    color: #000;
}
.bg-b-70 .cart-product-name a {
    color: #fff;
}

.cart-product-name .box {
    font-size: 12px;
    line-height: 1.1em;
    margin: 15px 0 0 0;
    padding: 10px 15px;
}

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

.cart-price-black {
    color: #000 !important;
}
.cart-price {
    color: #888;
}
.bg-b-70 .cart-price {
    color: #fff;
}

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

.cart-x {
    font-size: 20px;
}
.cart-price-main {
    clear: both;
    margin: 0;
    text-align: right;
}
.shipment-price {
    text-align: right;
    margin: 0 0 15px;
}

.cart-ships .price {
    display: inline-block;
    min-width: 80px;
}

.cart .formActions .button {
    margin: 5px;
    min-width: 220px;
}

/*#inpost { max-width: 500px; padding: 10px 0 0 30px; }
#inpost input { margin: 0 0 5px 0; 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 { margin: 0 0 5px 0; }
#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-type i {
        margin: 5px 0 0;
        padding: 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-type + .cart-table .cart-row:first-child .cart-cell {
        padding-top: 110px;
    }
    .cart-type + .cart-table .cart-row:first-child .cart-cell + .cart-cell {
        padding-top: 13px;
    }

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

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

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

.newsletterbox {
    background: #000 url('../images/newsletterbox.jpg') left top no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    display: none;
    left: 50%;
    margin: 20px 0;
    max-width: 1150px;
    min-height: 350px;
    padding: 30px 90px 30px 410px;
    pointer-events: none;
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 95%;
    z-index: 9999;
}
.newsletterbox--active {
    display: block;
    pointer-events: auto;
}
.newsletterbox-title {
    color: #fff;
    font-size: 55px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    text-shadow: 0 0 3px #000;
    text-transform: none;
}
.newsletterbox-info {
    color: #fff;
    font-size: 29px;
    font-weight: 300;
    margin: 5px 0 15px;
    padding: 0;
    text-shadow: 0 0 3px #000;
    text-transform: none;
}
.newsletterbox-input {
}
.newsletterbox-button {
    position: absolute;
    right: 0;
    top: 0;
}
.newsletterbox-x {
    background: #111;
    border: none;
    display: block;
    padding: 20px;
    position: absolute;
    right: 25px;
    top: 25px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.newsletterbox-x:hover {
    background: #f00;
}
.newsletterbox-x::before,
.newsletterbox-x::after {
    background: #fff;
    content: '';
    display: block;
    height: 2px;
    left: 4px;
    margin-top: -1px;
    position: absolute;
    right: 4px;
    top: 50%;
}
.newsletterbox-x::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.newsletterbox-x::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.newsletterboxshadow {
    background: #000;
    bottom: 0;
    content: '';
    display: none;
    left: 0;
    opacity: 0.66;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}
.newsletterbox--active + .newsletterboxshadow {
    display: block;
    pointer-events: auto;
}

@media only screen and (max-width: 1000px) {
    .newsletterbox {
        min-height: 0;
        padding: 20px 20px 20px 273px;
    }
    .newsletterbox-title {
        font-size: 36px;
    }
    .newsletterbox-info {
        font-size: 18px;
    }
    .newsletterbox-x {
        padding: 15px;
        right: 10px;
        top: 10px;
    }
}

@media only screen and (max-width: 600px) {
    .newsletterbox {
        background: #000;
        padding: 15px 10px;
    }
}

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

.cid-pl-false .t-1 .shipment,
.cid-pl-false .sideCart .ship-pay,
.cid-pl-false .cart .shipment-price {
    display: none;
}

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

/*
 * Search Hints
 */
.search .searchhints {
    background: rgba(0, 0, 0, 0.9);
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    color: #fff;
    display: flex;
    flex-direction: column;
    left: 0;
    max-height: 450px;
    max-height: calc(100vh - 105px);
    max-width: 100%;
    max-width: 100vw;
    opacity: 0;
    overflow: auto;
    padding: 0;
    pointer-events: none;
    position: absolute;
    -ms-overflow-style: none;
    scrollbar-width: none;
    text-align: left;
    top: 40px;
    -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;
    white-space: normal;
    width: 600px;
    z-index: 666;
}
.-searchhints .search .searchhints {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.searchhints::-webkit-scrollbar {
    display: none;
}

.searchhints-products {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.searchhints-products::-webkit-scrollbar {
    display: none;
}

.searchhints-all {
}

.searchhints-categories {
}

.searchhints-header {
    background: #e2001a;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 10px;
}

.searchhints-item {
    border-top: 1px solid #333;
    display: block;
    line-height: 1.2;
    position: relative;
}
.searchhints-item:first-child {
    border: 0;
}
.searchhints-categories .searchhints-item {
    padding: 5px 10px;
}

.searchhints-a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.searchhints-products .searchhints-a {
    align-items: center;
    display: block;
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
}
.searchhints-all .searchhints-a {
    background: rgba(0, 0, 0, 0.75);
    display: block;
    margin: -40px 0 auto;
    padding: 10px;
    position: relative;
    text-align: center;
    z-index: 3;
}
.searchhints-categories .searchhints-a {
    display: inline-block;
    padding: 5px;
    vertical-align: middle;
}
.searchhints-a:hover {
}
.searchhints-products .searchhints-a:hover,
.searchhints-all .searchhints-a:hover {
    color: #fff;
    background: #333;
    text-decoration: none;
}
.searchhints-a::before,
.searchhints-a::after {
    display: none;
}

.searchhints-image {
    display: inline-block;
    height: 60px;
    margin: 0 10px 0 0;
    max-width: 20%;
    position: relative;
    vertical-align: middle;
    width: 60px;
}
.searchhints-img {
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.searchhints-text {
    display: inline-block;
    vertical-align: middle;
    width: 75%;
}

.searchhints-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px;
}

.searchhints-price {
    font-size: 16px;
    font-weight: bold;
}

.searchhints-txt {
    color: #888;
    font-size: 12px;
    font-weight: normal;
}

.searchhints-txt mark {
    background: none;
    color: #000;
}

@media only screen and (max-width: 1000px) {
    .-searchhints {
        height: 100%;
        overflow: hidden;
        width: 100%;
    }
    .-searchhints .top {
        z-index: 99999999999;
    }
    .-searchhints .search {
        background: rgba(0, 0, 0, 0.75);
        bottom: 0;
        height: auto;
        left: 0;
        margin: 0;
        max-width: none;
        padding: 10px 10px 10px 50px;
        position: fixed;
        right: 0;
        top: 0;
        width: auto;
        z-index: 99999999999;
    }
    .-searchhints .search::before {
        background: #e2001a;
        content: 'x';
        cursor: pointer;
        font-size: 20px;
        height: 30px;
        left: 10px;
        line-height: 30px;
        position: absolute;
        text-align: center;
        top: 10px;
        width: 40px;
        z-index: 11;
    }
    .search .searchhints {
        max-height: calc(100% - 40px);
        max-width: calc(100% + 40px);
        left: -40px;
    }
}

@media only screen and (orientation: landscape) and (max-width: 1000px) {
    .search .searchhints {
        flex-direction: row;
        width: 1000px;
    }
    .searchhints-products {
        width: 66.66%;
    }
    .searchhints-all {
        bottom: 0;
        left: 0;
        position: absolute;
        width: 66%;
    }
    .searchhints-categories {
        width: 33.33%;
    }
}

@media only screen and (max-width: 480px) {
    .search .searchhints {
        display: block;
    }
    .searchhints-products,
    .searchhints-all,
    .searchhints-categories {
        bottom: auto;
        left: auto;
        position: relative;
        width: auto;
    }
}

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

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

[class^='icon-'],
[class*=' icon-'] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    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-truck:before {
    content: '\e900';
}
.icon-ontime:before {
    content: '\e901';
}
.icon-twitter:before {
    content: '\e918';
}
.icon-youtube:before {
    content: '\e91b';
}
.icon-skype:before {
    content: '\e91c';
}
.icon-google:before {
    content: '\e919';
}
.icon-linkedin:before {
    content: '\e91d';
}
.icon-pinterest:before {
    content: '\e91a';
}
.icon-facebook:before {
    content: '\e91e';
}
.icon-home:before {
    content: '\e904';
}
.icon-mail:before {
    content: '\e905';
}
.icon-phone:before {
    content: '\e906';
}
.icon-pin:before {
    content: '\e907';
}
.icon-basket:before {
    content: '\e909';
}
.icon-tag:before {
    content: '\e9fc';
}
.icon-left:before {
    content: '\e902';
}
.icon-right:before {
    content: '\e903';
}
.icon-star:before {
    content: '\e620';
}
.icon-instagram:before {
    content: '\ea92';
}
.icon-plus:before {
    content: '\ea0a';
}
.icon-minus:before {
    content: '\ea0b';
}

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

.dataprocessing {
    display: block;
    line-height: 1.2;
    text-align: left;
}
.dataprocessing .dp-law {
    display: block;
    font-size: 0.8em;
    margin: 0 0 5px;
    opacity: 0.8;
}
.dataprocessing .dp-inf {
    display: block;
    margin: -19px 0 0;
    padding: 0 0 0 30px;
}
.newsletter .dataprocessing .dp-inf {
    font-size: 11px;
    margin-top: -17px;
}
.dataprocessing .dp-inf a {
    border: 3px solid #e2001a;
    border-left: 0;
    border-top: 0;
    display: inline-block;
    height: 10px;
    margin: -6px 0 0 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    vertical-align: middle;
    width: 10px;
}
.dataprocessing .dp-lbl {
    display: inline-block;
    padding: 0;
}
.dataprocessing .dp-dsc {
    display: block;
    padding: 0 0 0 30px;
}

.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 ol {
    margin: 0 0 0 25px;
    padding: 0;
}
.mfp-content ol > li {
    list-style: decimal;
    margin: 0;
    padding: 1px 0;
}

.mfp-content .section {
    padding: 0;
}
.mfp-content .section .bg-b-70 {
    background: none;
    color: #000;
    padding: 0;
}
.mfp-content ul > li {
    list-style: none;
}

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

/*
 * mfp zoom
 */
.mfp-with-zoom .mfp-figure {
    overflow: auto;
}
.mfp-with-zoom .mfp-img {
    height: auto;
    max-height: none;
    max-width: none;
    width: auto;
}

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

.inpost {
    padding-left: 30px;
}

/* INPOST GEOWIDGET FIX */
.easypack-widget .search-widget .search-group {
    padding: 10px !important;
}
.easypack-widget input[type='search'] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.easypack-widget .search-group-btn {
    height: 60px !important;
}
.easypack-widget .type-filter {
    display: none !important;
}
.easypack-widget ul li {
    background: none;
}
.widget-modal .ball-spin-fade-loader-mp {
    left: 0;
    top: 0;
}
.widget-modal .easypack-widget:not(.mobile) {
    overflow: auto !important;
}
.widget-modal .easypack-widget .search-widget .search-group-btn:not(.with-filters) {
    width: 1% !important;
}
.widget-modal
    .easypack-widget.mobile
    .search-widget
    .search-group-btn:not(.with-filters) {
    width: auto !important;
}

.pp {
    padding-left: 30px;
}

.dpd {
    padding-left: 30px;
}

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

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

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

.user_prodid {
    display: 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;
    -moz-box-shadow: none;
    box-shadow: none;
}
