body,
html {
    background: #fff;
    color: #000;
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    max-width: 100%;
}

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

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

p,
.p {
    margin: 0;
    padding: 8px 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,
iframe,
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
svg {
    max-width: 100%;
}

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

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

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

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

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

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

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

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

/*
 * Input
 */
.input {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    display: inline-block;
    font-size: 18px;
    max-width: 100%;
    padding: 9px 8px 9px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: middle;
    border-radius: 0;
    -webkit-border-radius: 0;
    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;
    line-height: 1.2em;
    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: 0 0 6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.input--invalid {
    border-color: #d47171;
}

/*
 * Button
 */
.button,
.input-file {
    background: #fff;
    border: 0;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
    -webkit-box-shadow: 2px 5px 20px 0px rgba(112, 112, 112, 0.25);
    -moz-box-shadow: 2px 5px 20px 0px rgba(112, 112, 112, 0.25);
    box-shadow: 2px 5px 20px 0px rgba(112, 112, 112, 0.25);
    color: #8d919d;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    line-height: 21px;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 17px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
    z-index: 3;
}

.button--large {
    font-size: 14px;
    padding: 13px 18px 12px;
}
.button--biger {
    font-size: 18px;
    margin-top: 15px;
    padding: 16px 10px;
}
.button--full {
    width: 100%;
}
.button:hover,
a:hover .button,
.input-file:hover {
    border-color: #550000;
    color: #fff;
    text-decoration: none;
}
.button:active,
.input-file:active {
    background: #550000;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
}
.button:before,
.input-file:before {
    background: #fff;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
    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,
a:hover .button:before,
.input-file:hover:before {
    background: #550000;
    height: 100%;
    width: 100%;
}

.button--primary {
    background: #cc2d2d;
    color: #fff;
}
.button--primary:hover {
    background: #550000;
    color: #fff;
}
.button--primary::before {
    display: none;
}

/*
 * Select
 */
select,
select.input,
.select,
.fake-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url('../images/select.png') no-repeat right center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    min-width: 150px;
    outline: medium none !important;
    padding: 9px 25px 9px 5px;
    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 8px 4px;
    width: 100%;
}
.fill-name {
    color: #777;
    font-size: 16px;
    font-weight: 300;
    left: 30px;
    z-index: 1;
    line-height: -1em;
    margin-top: -10px;
    pointer-events: none;
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    top: 22px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.fill-name.fill-focus,
.no-js .fill-name {
    color: #9f9f9f;
    font-size: 13px;
    top: 12px;
}

.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,
.label--invalid * {
    color: #b72b2b !important;
}
.label--invalid .input {
    border-color: #d92e2e;
}

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

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

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

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

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

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

.media2 {
    display: table;
    margin: 0.8em 0;
}
.media2-image,
.media2-content {
    display: table-cell;
    vertical-align: middle;
}
.media2-image {
    padding: 0 0.6em 0 0;
}
.media2-image--after {
    padding: 0 0.6em;
}
.media2--double {
    display: inline-block;
    margin: 0.4em 0.4% 0.8em;
    vertical-align: top;
    width: 48.9%;
}
.media2--inline {
    display: inline-block;
    margin: 0.8em 0.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: 1660px;
    padding: 0 10px;
    position: relative;
}

/*
 * Left
 */
.leftBlock {
    display: table-cell;
    -webkit-flex: 3; /* Safari 6.1+ */
    -moz-flex: 3; /* FF <= 18 */
    -ms-flex: 3; /* IE 10 */
    flex: 3;
    min-width: 200px;
    padding-right: 20px;
    vertical-align: top;
    width: 200px;
    position: relative;
}

.scrollBody {
    /*padding: 5px;*/
    /*border: 1px solid #ccc;*/
    /*background: #f1f1f1;*/
    /*width: 200px;*/
    left: 0;
    top: 0;
    position: relative;
}
.scroll .scrollBody {
    position: fixed;
    top: 0;
    /*background: red;*/
    max-height: 100% !important;
    /*overflow: auto;*/
    overflow: hidden;
}
.scrollbottom {
    position: relative;
}

.scrollbottom .scrollBody {
    /*height: auto !important;*/
    position: absolute !important;
}

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

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

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

    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
.content img {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
}
.content-noimg img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    max-width: none;
}
.content ul,
.content ol {
    margin: 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 {
    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: #000;
    font-size: 34px;
    height: 40px;
    line-height: 40px;
    margin: -20px auto 0;
    opacity: 0.1;
    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: 0;
    right: auto;
}
.slider:hover .swiper-button-prev {
}
.swiper-button-next {
    left: auto;
    right: 0;
}
.slider:hover .swiper-button-next {
}
.swiper-pagination {
    bottom: 30px;
    display: table;
    font-size: 0.00001px;
    left: 100px;
    margin: 0;
    opacity: 1;
    right: auto;
    -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: 15px;
}
.swiper-pagination:before {
    background: none;
    border: 0;
    bottom: -15px;
    content: '';
    left: -15px;
    position: absolute;
    right: -15px;
    top: -15px;
}
.swiper-pagination-bullet {
    background: #040404;
    border: 2px solid #040404;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 11px;
    margin: 0 3px;
    opacity: 0.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: 11px;
}
.swiper-pagination:hover .swiper-pagination-bullet {
    opacity: 0.1;
}
.swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 0.6;
}
.swiper-slides {
    position: relative;
}
.swiper-thumbs {
    position: relative;
}

.slider-banner {
}
.slider-banner .swiper-slides {
}
.slider-banner .swiper-container {
}
.slider-banner .swiper-slide {
    cursor: auto;
}
.slider-banner .swiper-slide img {
    width: 100%;
}
.slider-banner .swiper-slide .con {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    max-width: 100%;
    padding: 100px 80px 60px;
    position: absolute;
    right: 0;
    text-align: left;
    top: 0;
}
.slider-banner .con .table {
    display: table;
    height: 100%;
    margin: 0;
    position: relative;
    table-layout: fixed;
    width: 100%;
}
.slider-banner .con .td {
    display: table-cell;
    vertical-align: middle;
}
.slider-banner .txt {
    display: block;
    color: #8d919d;
    font-family: 'Lobster Two';
    font-size: 80px;
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    text-transform: none;
}

.slider-banner .swiper-slide a {
    bottom: 0;
    left: 0;
    position: absolute;
}
.slider-banner .swiper-slide .txt + a {
    display: inline-block;
    margin: 10px 0 0;
    position: static;
}

.slider-banner .swiper-pagination {
    bottom: 25px;
    left: 95px;
}
.slider-banner:hover .swiper-pagination {
    bottom: 25px;
}

.slider-products {
}
.slider-products {
    overflow: visible;
}
.slider-products .swiper-slides {
}
.slider-products .swiper-container {
    margin: 0 -10px;
    overflow: hidden;
    padding: 10px;
}
.slider-products .swiper-slide {
    overflow: visible;
    padding: 10px;
    text-align: center;
    width: 16.66%;
}
.slider-products .swiper-button-next {
    right: -20px;
}
.slider-products .swiper-button-prev {
    left: -20px;
}
.slider-products .swiper-button-next:hover,
.slider-products .swiper-button-prev:hover {
    color: #e2001a;
}

/*
 * Pagination
 */
.pagination {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    padding: 30px 0;
    text-align: center;
}
.pagination-info {
    display: none;
    padding: 10px;
}
.pagination-info b {
    color: #000;
    font-weight: inherit;
}
.pagination > div {
    display: table;
    margin: 0 auto;
}
.pagination > div > div {
    display: table-cell;
    vertical-align: middle;
}
.pagination > div > div:first-child {
    text-align: left;
    width: 300px;
}
.pagination > div > div:first-child + div + div {
    text-align: right;
    width: 300px;
}
.pagination-element {
    background: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #919191;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    margin: 5px 10px;
    min-width: 32px;
    overflow: hidden;
    padding: 0 2px;
    position: relative;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    z-index: 1;
}
.pagination-element:hover {
    color: #fff;
    text-decoration: none;
}
.pagination-element--active,
.pagination-element--active:hover {
    background: #8d919d;
    color: #fff;
}
.pagination-element--left,
.pagination-element--right {
    background: #e6e6e6;
    border: 0;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
    color: rgba(0, 0, 0, 0.43);
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    height: auto;
    line-height: 23px;
    margin: 5px 0;
    min-width: 220px;
    padding: 15px 5px;
    text-align: center;
    text-transform: uppercase;
}
.pagination-element--left:hover,
.pagination-element--right:hover {
    color: #fff;
}
.pagination-element--disabled,
.pagination-element--disabled:hover {
    background: none;
    color: #c6c6c6;
    display: none;
}
.pagination-element:before {
    background: #8d919d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 0;
    display: block;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    z-index: -1;
}
.pagination-element:hover:before {
    height: 100%;
    width: 100%;
}
.pagination-element--left:before,
.pagination-element--right:before {
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
    display: block;
}

/*
 * 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; /* 2 x line-height */
}

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

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

.box--color,
.box--color .box-close {
    background: rgba(85, 0, 0, 0.1);
    border-color: rgba(85, 0, 0, 0.75);
    color: #550000;
}

/*
 * 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;
}

/*
 * 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: 10px solid #fff;
    border-left: 10px solid rgba(255, 255, 255, 0);
    border-right: 10px solid rgba(255, 255, 255, 0);
    content: '';
    position: absolute;
    right: 11px;
    top: -10px;
    z-index: 10;
}
.top-dropdown-adv:after {
    border-bottom: 11px solid #e6e6e6;
    border-left: 11px solid rgba(255, 255, 255, 0);
    border-right: 11px solid rgba(255, 255, 255, 0);
    content: '';
    position: absolute;
    right: 10px;
    top: -11px;
    z-index: 8;
}
.top-dropdown-adv.top-dropdown-adv--hide {
    filter: alpha(opacity = 0);
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    visibility: hidden;
}
/*.top-dropdown-adv .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: #fff;
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 11;
}
.top .t-1 {
    background: #fff;
    font-size: 0.000001px;
    min-height: 37px;
    padding: 8px 0;
    position: relative;
    text-align: right;
    z-index: 1;
}
.top .t-2 {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
    font-size: 0.000001px;
    min-height: 94px;
    padding: 0;
    position: relative;
    text-align: center;
}

.top .contact {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}
.top .contact div {
    display: inline-block;
    margin: 0 20px;
    padding: 0 0 0 27px;
    position: relative;
    vertical-align: top;
}
.top .contact .icon {
    bottom: 0;
    color: #550000;
    font-size: 18px;
    height: 18px;
    left: 0;
    line-height: 18px;
    position: absolute;
    text-align: center;
    top: 1px;
    width: 18px;
}
.top .contact a {
    color: #550000;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 21px;
    position: relative;
    text-decoration: none;
}
.top .contact a:after {
    border-bottom: 1px solid #550000;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.top .contact a:hover:after {
    width: 100%;
}

.languages {
    display: inline-block;
    margin: 0 0 0 10px;
    vertical-align: top;
}
.languages a {
    color: #acacac;
    display: inline-block;
    font-size: 15px;
    margin: 0 10px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}
.languages a.active {
    color: #550000;
}
.languages a:after {
    border-bottom: 1px solid #acacac;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.languages a:hover:after {
    width: 100%;
}
.languages a.active:after {
    border-bottom-color: #550000;
}

/*
 * Logo
 */
.logo {
    display: block;
    margin: 0;
    padding: 0;
}
.logo-1 {
    font-size: 14px;
    left: 10px;
    position: absolute;
    top: -27px;
    width: 120px;
    z-index: 3;
}
.logo a {
    display: block;
}
.logo img {
    display: block;
    margin: auto;
}

/*
 * Nav
 */
.nav {
    background: none;
    clear: both;
    position: relative;
    text-align: center;
}
.nav .container {
    position: static;
}
.nav .n-1 {
    padding: 0 265px;
}
.nav .ul-1 {
    display: table;
    height: 94px;
    margin: 0 auto;
    table-layout: fixed;
}
.nav .ul-1 > li {
    display: table-cell;
    padding: 0 30px;
    position: relative;
    vertical-align: middle;
}
.nav a {
    color: rgba(255, 255, 255, 0);
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 20px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.nav a:hover,
.nav li:hover > a {
    color: #550000;
}
.nav a:before {
    bottom: 0;
    color: #8d919d;
    content: attr(title);
    font-size: 14px;
    font-weight: 300;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.nav a:hover:before,
.nav li:hover a:before {
    color: rgba(255, 255, 255, 0);
}
.nav ul div {
    background: #fff;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    left: 0;
    max-height: calc(100vh - 131px);
    opacity: 0;
    padding: 15px 0;
    pointer-events: none;
    position: absolute;
    right: auto;
    text-align: left;
    top: 94px; /*100%*/
    -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;
    width: 220px;
    z-index: -1;
}
.nav ul .wider {
    width: auto;
}
.nav li:hover > div,
.nav a:hover + div {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.nav ul ul {
    display: block;
}
.nav ul .wider ul {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
}
.nav ul ul li {
    display: block;
    padding: 4px 25px;
    position: relative;
    width: auto;
}
.nav ul ul a {
    color: #8d919d;
    font-size: 14px;
    font-weight: 300;
    white-space: normal;
}
.nav ul ul a:hover {
    color: #550000;
    text-shadow: 1px 0 0 #550000;
}
.nav ul ul a:before {
    display: none;
}
.nav ul ul a:after {
    border-bottom: 1px solid #550000;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.nav ul ul a:hover:after {
    width: 100%;
}

.nav ul ul div {
    left: 100%;
    top: 0;
}
.nav ul ul .wider ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}
.nav ul ul ul a {
    font-size: 12px;
}

/*Menu na mobilke*/

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

@media only screen and (max-width: 1000px) {
    .nofon {
        display: none;
    }
    .c-hamburger-bg {
        background: rgba(0, 0, 0, 0.3);
        display: block;
        height: 120%;
        left: 0;
        opacity: 0;
        position: fixed;
        right: 0;
        top: 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        will-change: opacity;
        z-index: 1000;
    }

    .c-hamburger {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        -webkit-border-radius: none;
        -moz-border-radius: none;
        border-radius: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        cursor: pointer;
        display: block;
        font-size: 0;
        height: 50px;
        left: 0;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        text-indent: -9999px;
        top: 46px;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        width: 50px;
        will-change: transform;
        z-index: 1010;
    }
    .c-hamburger.active {
        -webkit-transform: translateX(250px);
        -moz-transform: translateX(250px);
        -ms-transform: translateX(250px);
        -o-transform: translateX(250px);
        transform: translateX(250px);
    }
    .c-hamburger.active + .c-hamburger-bg {
        opacity: 1;
        visibility: visible;
    }

    .c-hamburger:focus {
        outline: none;
    }
    .c-hamburger span {
        background: #acacac;
        display: block;
        height: 4px;
        left: 9px;
        position: absolute;
        right: 9px;
        top: 23px;
        will-change: background;
    }
    .c-hamburger span::before,
    .c-hamburger span::after {
        background: #acacac;
        content: '';
        display: block;
        height: 4px;
        left: 0;
        position: absolute;
        width: 100%;
        will-change: transform;
    }
    .c-hamburger span::before {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .c-hamburger span::after {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    .c-hamburger--htx {
        background: #fff;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }
    .c-hamburger--htx span {
        /*transition: background 0s 0.5s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
    }
    .c-hamburger--htx span::before,
    .c-hamburger--htx span::after {
        /*transition-delay: 0.5s, 0s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
    }
    .c-hamburger--htx span::before {
        -webkit-transition-property: top, transform;
        -moz-transition-property: top, transform;
        -o-transition-property: top, transform;
        transition-property: top, transform;
    }
    .c-hamburger--htx span::after {
        -webkit-transition-property: bottom, transform;
        -moz-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        transition-property: bottom, transform;
    }
    /* active state, i.e. menu open */
    .c-hamburger--htx.active {
        background: #550000;
    }
    .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 {
        background: #fff;
        /*transition-delay: 0s, 0.5s;*/
    }
    .nav {
        background: #fff;
        bottom: 0;
        -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        clear: both;
        display: block;
        float: none;
        height: 100%;
        left: 0;
        margin-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;
    }
    .nav.active {
        overflow-y: auto;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
        visibility: visible;
    }

    .table {
        display: block;
        width: 100%;
    }
    .table li {
        display: inline-block;
        float: left;
        width: 100%;
    }
}

/* ico wrap */
.ico-wrap {
    background: #fff;
    font-size: 0.000001px;
    position: absolute;
    right: 10px;
    top: 29px;
}

/*
 * Search
 */
.search {
    display: inline-block;
    height: 36px;
    margin: 0 36px 0 0;
    position: relative;
    vertical-align: top;
    width: 36px;
}
.search > div {
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}
.search form {
    margin: 0;
    padding: 0;
}
.search form > div {
    background: none;
    float: right;
    margin: 0;
    max-height: 60px;
    overflow: hidden;
    padding: 0 40px 0 10px;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 46px;
}
.search.focus form > div,
.search.hover form > div {
    background: #fff;
    -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    max-height: 500px;
    width: 200px;
    z-index: 1011;
}

.search form .switch-input {
    display: none;
    position: absolute;
}
.search form .switch-content {
    display: block;
    margin: 0 -30px 0 0;
    max-height: 0;
    opacity: 1;
    overflow: hidden;
    padding: 0;
    -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;
}
.search.focus form /*.switch-input:checked + div +*/ .switch-content,
    .search.hover form /*.switch-input:checked + div +*/ .switch-content {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}
.search form .switch-label {
    color: #acacac;
    cursor: pointer;
    display: /*block*/ none;
    font-size: 11px;
    margin: -5px 0 0 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 0 0 10px;
    text-align: left;
    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;
    width: 100%;
    white-space: nowrap;
}
.search form .switch-label:hover {
    color: #000;
}
.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: 0 0 10px;
}
.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 {
    margin-bottom: 10px;
}
.search form .fill-name {
    color: #acacac;
    font-size: 13px;
    font-weight: 300;
    margin-top: -9px;
    opacity: 0;
    top: 18px;
}
.search.focus form .fill-name,
.search.hover form .fill-name {
    opacity: 1;
}
.search form .fill-name.fill-focus {
    font-size: 9px;
    opacity: 0;
    top: -10px;
}
.search form .input {
    border-color: rgba(255, 255, 255, 0);
    font-size: 14px;
    line-height: 20px;
    padding: 7px 9px;
    visibility: hidden;
}
.search.focus form .input,
.search.hover form .input {
    border-bottom-color: #eee;
    visibility: visible;
}
.search form .select {
    font-size: 12px;
    padding: 4px 25px 4px 5px;
}
.search form .button {
    background: #fff;
    border: 0;
    bottom: auto;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #acacac;
    font-size: 34px;
    height: 36px;
    line-height: 1;
    padding: 1px 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 36px;
    z-index: 1;
}
.search .button:hover {
    color: #000000;
}
.search .button:before {
    display: none;
}

/* user */
.user {
    display: inline-block;
    margin: 0 36px 0 0;
    position: relative;
    text-align: left;
    vertical-align: top;
    z-index: 3;
}
.user .top-dropdown-a {
    color: #acacac;
    display: block;
    height: 36px;
    font-size: 13px;
    padding: 0 0 0 36px;
}
.user.active .top-dropdown-a {
    color: #000;
    padding-left: 40px;
}
.user .icon {
    font-size: 34px;
    left: 0;
    line-height: 36px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 36px;
}
.user .top-dropdown-a b {
    color: #550000;
    display: block;
    font-weight: bold;
}
.user ul {
    font-size: 13px;
    padding: 3px 5px;
}
.user li {
    padding: 3px 0;
}

/* favorite */
.favorite {
    display: inline-block;
    height: 36px;
    margin: 0 36px 0 0;
    position: relative;
    vertical-align: top;
    width: 36px;
    z-index: 3;
}
.favorite a {
    color: #acacac;
    display: block;
    line-height: 1.2;
    padding: 36px 0 0;
    position: relative;
    text-decoration: none;
}
.favorite .icon {
    font-size: 34px;
    left: 0;
    line-height: 36px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 36px;
}
.favorite.active .icon {
    color: #000;
}
.favorite .quantity {
    background: #550000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    display: none;
    font-size: 8px;
    font-weight: normal;
    line-height: 22px;
    min-width: 22px;
    padding: 0 2px;
    position: absolute;
    right: -8px;
    text-align: center;
    top: -16px;
    z-index: 1;
}
.favorite.active .quantity {
    display: block;
}

/* top cart */
.top .cart {
    display: inline-block;
    height: 36px;
    margin: 0;
    padding: 0;
    position: relative;
    vertical-align: top;
    width: 36px;
    z-index: 100;
}
.top .cart > div > a {
    color: #acacac;
    display: block;
    line-height: 1.2;
    padding: 36px 0 0;
    position: relative;
    text-decoration: none;
}
.top .cart.active > div > a {
}
.top .cart > div > a .icon {
    background: none;
    font-size: 34px;
    left: 0;
    line-height: 36px;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 36px;
}
.top .cart.active > div > a .icon {
    color: #000;
}
.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 {
    background: #550000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    display: none;
    font-size: 8px;
    font-weight: normal;
    line-height: 22px;
    min-width: 22px;
    padding: 0 2px;
    position: absolute;
    right: -8px;
    text-align: center;
    top: -16px;
    z-index: 1;
}
.top .cart.active > div > a .quantity {
    display: block;
}
.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: none;
}
.top .cart > div > a .empty {
    color: #919191;
    display: none;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
}
.top .cart.active > div > a .empty {
    display: none;
}
.top .cart .top-dropdown-adv {
    border: 0;
    display: none;
    margin: 0;
    padding: 0;
    top: 120%;
    width: 400px;
}
.top .cart.active .top-dropdown-adv {
    display: block;
}
.top .cart .top-dropdown-adv:before {
    right: 16px;
}
.top .cart .top-dropdown-adv:after {
    right: 15px;
}
.sideCart {
    line-height: 1.2;
    padding: 0;
    text-align: center;
}
.sideCart .title {
    color: #acacac;
    display: block;
    font-size: 14px;
    font-weight: 300;
    padding: 30px 20px 10px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.sideCart .title:after {
    border-bottom: 1px solid rgba(112, 112, 112, 0.5);
    bottom: 0;
    content: '';
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 94px;
}
.sideCart-list {
    display: table;
    margin: 0;
    max-height: 300px;
    overflow: auto;
    padding: 0 20px;
    text-align: left;
    width: 100%;
}
.sideCart-item {
    display: table-row;
}
.sideCart-item > span {
    border-bottom: 1px solid rgba(112, 112, 112, 0.27);
    display: table-cell;
    font-size: 0.00001px;
    padding: 15px 10px 15px 0;
    vertical-align: top;
    width: 130px;
}
.sideCart-item > span + span {
    padding: 15px 10px 15px 10px;
    width: auto;
}
.sideCart-item > span + span + span {
    padding: 15px 0 15px 10px;
    vertical-align: middle;
    width: 30px;
}

.sideCart-item-img {
    border: 0;
    display: inline-block;
    overflow: hidden;
}
.sideCart-item img {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    will-change: transform;
}
.sideCart-item a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.sideCart-item-name {
    display: block;
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    padding: 0;
    text-transform: uppercase;
    /*white-space: nowrap;*/
}
.sideCart-item-desc {
    color: #626262;
    display: block;
    font-size: 12px;
    padding: 0 0 10px;
}
.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 #000;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    width: 0;
}
.sideCart-item-name a:hover:after {
    width: 100%;
}
.sideCart-item-attr {
    color: #ababab;
    display: block;
    font-size: 11px;
    font-weight: 300;
    padding: 0;
    text-transform: uppercase;
}
.sideCart-item-attr span {
}
.sideCart-item-attr span + span {
}
.sideCart-item-count {
    color: #acacac;
    display: block;
    font-size: 12px;
    margin: 10px 0 0;
    text-transform: uppercase;
}
.sideCart-item-price {
    color: #000;
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.sideCart-item-total {
    color: #000;
    display: block;
    font-size: 18px;
    font-weight: bold;
}
.sideCart-item-remove {
    background: #acacac;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0);
    display: block;
    font-size: 0.000001px;
    height: 22px;
    line-height: 0;
    margin: auto;
    position: relative;
    text-align: center;
    width: 22px;
}
.sideCart-item-remove:hover {
    background: #550000;
    text-decoration: none;
}
.sideCart-item-remove:before,
.sideCart-item-remove:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    bottom: 5px;
    content: '';
    left: 5px;
    margin: auto;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 0;
}
.sideCart-item-remove:before {
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
.sideCart-item-remove:after {
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}
.sideCart-item-remove:hover:before,
.sideCart-item-remove:hover:after {
    border-color: #fff;
}
.sideCart .total {
    display: table;
    line-height: 1;
    padding: 15px 10px 0;
    text-transform: uppercase;
    width: 100%;
}
.sideCart .total span {
    color: #000;
    display: table-cell;
    font-size: 15px;
    font-weight: 300;
    padding: 5px 10px;
    text-align: left;
    vertical-align: bottom;
}
.sideCart .total span + span {
    color: #550000;
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    white-space: nowrap;
}
.sideCart .shipment {
    color: #919191;
    display: block;
    font-size: 12px;
    font-weight: 300;
    padding: 0 20px;
    position: relative;
    text-align: right;
    text-transform: uppercase;
}
.sideCart .btns {
    display: block;
    font-size: 0.000001px;
    padding: 15px 20px 20px;
    position: relative;
    text-align: justify;
}
.sideCart .btns:after {
    content: '';
    display: inline-block;
    width: 100%;
}
.sideCart .button {
    font-size: 0.000001px;
    padding: 16px 10px;
    width: 100%;
}
.sideCart .button span {
    display: inline-block;
    font-size: 15px;
    line-height: 21px;
    margin: 0 5px;
    vertical-align: middle;
}
.sideCart .button .icon {
    font-size: 40px;
    line-height: 21px;
}
.sideCart .box {
    margin: 0;
}

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

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

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

.section .header {
    color: #8d919d;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    padding: 20px 0 30px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.section .header:after {
    border-bottom: 1px solid #8d919d;
    bottom: 20px;
    content: '';
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 120px;
}

.section .path {
    color: #acacac;
    font-size: 12px;
    margin: -5px 0 0;
    opacity: 0.7;
    padding: 0 0 10px;
    text-align: center;
    text-transform: uppercase;
}
.section .path a {
    color: inherit;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.section .path a:hover {
    color: inherit;
}
.section .path a:after {
    border-bottom: 1px solid #acacac;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.section .path a:hover:after {
    width: 100%;
}
.section .path span {
    color: inherit;
    display: inline-block;
}

.section .con {
    padding: 10px 0;
}

.section .all {
    padding: 10px 0;
    text-align: center;
}
.section .button {
    min-width: 220px;
}

.section.hap {
}
.hap .header {
    color: #000;
    font-size: 40px;
    font-weight: bold;
    padding: 10px 0;
}
.hap .header:after {
    display: none;
}

.section.slider-banner {
    overflow: hidden;
    padding: 0;
    position: relative;
}

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

.section.cats {
}
.cats .records {
    padding: 10px 0;
}
.cats .records a {
    display: block;
    margin: 0 auto;
    max-width: 536px;
    padding: 0 0 27px;
    position: relative;
    text-align: center;
    text-decoration: none;
}
.cats .records .img {
    display: block;
    overflow: hidden;
    padding: 44.22% 0 0;
    position: relative;
}
.cats .records .img img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.cats .records .grp {
    bottom: 0;
    left: 0;
    padding: 0 20px;
    position: absolute;
    right: 0;
    text-align: center;
}
.cats .records .name {
    color: #000;
    display: block;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
}
.cats .records .name i {
    display: block;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
}
.cats .records .button {
    margin: 15px 0 0;
}

.section.category {
}

.section.collections {
}
.collections .records {
    font-size: 0.000001px;
    margin: 0 -10px;
    padding: 50% 0 0;
    position: relative;
}
.collections .records div {
    display: block;
    padding: 10px;
    position: absolute;
}
.collections .records div:nth-child(1) {
    height: 100%;
    left: 0;
    top: 0;
    width: 50%;
}
.collections .records div:nth-child(2) {
    height: 50%;
    left: 50%;
    top: 0;
    width: 25%;
}
.collections .records div:nth-child(3) {
    height: 50%;
    left: 75%;
    top: 0;
    width: 25%;
}
.collections .records div:nth-child(4) {
    height: 50%;
    left: 50%;
    top: 50%;
    width: 50%;
}
.collections .records div:nth-child(0n + 5) {
    display: none;
}
.collections .records a {
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.collections .records .img {
    display: block;
    overflow: hidden;
    position: relative;
}
.collections .records div:nth-child(1) .img {
    padding: 105.17% 0 0;
}
.collections .records div:nth-child(2) .img,
.collections .records div:nth-child(3) .img {
    padding: 105.56% 0 0;
}
.collections .records div:nth-child(4) .img {
    padding: 51.23% 0 0;
}
.collections .records .img img {
    bottom: 0;
    display: none;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.collections .records div:nth-child(1) .img .img-1,
.collections .records div:nth-child(2) .img .img-3,
.collections .records div:nth-child(3) .img .img-3,
.collections .records div:nth-child(4) .img .img-2 {
    display: block;
}
.collections .records .grp {
    bottom: 35px;
    left: 85px;
    padding: 0;
    position: absolute;
    right: auto;
    text-align: left;
}
.collections .records div + div .grp {
    left: 30px;
}
.collections .records .name {
    color: #000;
    display: block;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
}
.collections .records div + div .name {
    font-size: 30px;
}
.collections .records .name b {
    display: block;
    font-weight: bold;
}
.collections .records .button {
    margin: 15px 0 0;
}

.products .adds,
.product .adds {
    left: 0;
    font-size: 0.000001px;
    position: absolute;
    top: 0;
}
.adds span {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    height: 33px;
    line-height: 33px;
    margin: 5px;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    vertical-align: top;
    width: 33px;
}
.adds .new {
    background: #8d919d;
    font-size: 9px;
    font-weight: 300;
}
.adds .sale {
    background: #cc2d2d;
    font-size: 14px;
    font-weight: bold;
}

.section.products {
}
.products .options {
    max-width: 100%;
    padding: 0 0 10px;
}
.products .options > div {
    margin: 0;
    padding: 3px 0;
}
.products .options label {
    font-size: 0.000001px;
    margin: 0;
}
.products .options span {
    color: #acacac;
    display: inline-block;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    margin: 0 20px 0 0;
    padding: 0;
    text-transform: uppercase;
    vertical-align: middle;
}
.products .options select {
    border-color: #fff;
    border-bottom-color: #ccc;
    font-size: 12px;
    font-weight: 300;
    height: 30px;
    min-width: 200px;
    padding: 6px 24px 6px 9px;
    width: auto;
}
.products .options div + div select {
    min-width: 80px;
}
.products .records {
    overflow: visible;
    padding: 0;
    position: relative;
}
.products .records.ibs {
    padding: 10px 0;
}
.products-sale .records {
    background: url('../images/sale-bg.jpg') no-repeat center top;
    padding: 25% 0 0;
}
.products .records .item {
    display: block;
    height: 390px;
    margin: auto;
    max-width: 100%;
    padding: 0;
    position: relative;
    text-align: center;
    width: 260px;
}
.products .records .item a {
    background: #fff;
    display: block;
    left: 0;
    min-height: 100%;
    padding: 0;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
    z-index: 3;
}
.products .records .item a:hover {
    -webkit-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.16);
    z-index: 5;
}
.products .records .img {
    display: block;
    margin: 0;
    overflow: hidden;
    padding: 120% 0 0;
    position: relative;
}
.products .records .img img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 98%;
    max-width: 98%;
    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 .grp {
    bottom: 0;
    background: #fff;
    display: block;
    left: 0;
    line-height: 1.4;
    padding: 10px 5px;
    position: absolute;
    right: 0;
}
.products .records .name {
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}
.products .records .price {
    display: block;
}
.products .records .price .old {
    color: #acacac;
    font-size: 14px;
    font-weight: 300;
    display: block;
    text-decoration: line-through;
}
.products .records .price .new {
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: bold;
}
.products .records .price .old + .new {
    color: #cc2d2d;
}

.products .records .item .remove {
    background: #acacac;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: auto;
    height: 22px;
    left: auto;
    min-height: 0;
    right: 5px;
    top: 5px;
    width: 22px;
    z-index: 5;
}
.products .records .item .remove:hover {
    background: #550000;
}
.products .records .item .remove:before,
.products .records .item .remove:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    bottom: 5px;
    content: '';
    left: 5px;
    margin: auto;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 0;
}
.products .records .item .remove:before {
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
.products .records .item .remove:after {
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.section.product {
    padding: 30px 0 0;
}
.product > .ibs {
    padding: 10px 0;
}
.product .imgs {
    font-size: 0.000001px;
    overflow: hidden;
    padding: 10px 10px 10px 0;
    text-align: left;
    vertical-align: top;
}
.product .imgs div {
    float: right;
    padding: 10px;
    width: 83.33%;
}
.product .imgs div + div {
    width: 16.66%;
}
.product .imgs a {
    display: inline-block;
    overflow: hidden;
}
.product .imgs img {
    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 {
    padding: 20px 10px;
    position: relative;
    vertical-align: top;
}
.product .path {
    margin: 0;
    text-align: left;
}
.product .name {
    color: #550000;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.product .table {
    display: table;
    width: 100%;
}
.product .tr {
    display: table-row;
}
.product .td {
    border-bottom: 1px solid rgba(112, 112, 112, 0.27);
    color: #000;
    display: table-cell;
    font-size: 16px;
    font-weight: 300;
    padding: 15px 10px;
    position: relative;
    text-transform: uppercase;
    vertical-align: top;
    width: 100px;
}
.product .td + .td {
    color: #550000;
    font-weight: bold;
    text-transform: none;
    width: auto;
}
.product .con {
    color: #000;
    font-size: 14px;
    font-weight: 300;
    padding: 0;
}
.product .adds {
    left: 10px;
    top: 10px;
}
.product .adds .sale {
    margin: 0;
}
.product .price {
    line-height: 1.2;
    text-transform: uppercase;
}
.product .price .td {
    vertical-align: middle;
    width: auto;
}
.product .price .td + .td {
    text-transform: uppercase;
}
.product .price .new {
    color: #000;
    font-size: 21px;
    font-weight: bold;
    position: relative;
}
.product .price .adds + .new {
    color: #cc2d2d;
    padding: 0 0 0 40px;
}
.product .price .new b {
    display: inline-block;
    font-size: 30px;
    vertical-align: top;
}
.product .price .adds + .new b:first-child {
    margin-left: -40px;
}
.product .price .old {
    color: #acacac;
    font-size: 16px;
    font-weight: 300;
}
.product .price .old b {
    display: inline-block;
    font-weight: 300;
    text-decoration: line-through;
    vertical-align: top;
}
.product .attr .td {
    vertical-align: middle;
    width: auto;
}
.product .attr .select {
    width: auto;
}
.product .gift {
    /*width: auto;*/
}
.product .gift .td {
    vertical-align: middle;
    width: auto;
}
.product .gift .td + .td {
    color: #000;
    font-weight: 300;
}
.product .qty .td {
    padding: 10px;
    vertical-align: middle;
    width: auto;
}
.product .qty .input {
    border: 1px solid #ccc;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    font-size: 18px;
    font-weight: 300;
    line-height: 23px;
    padding: 10px 30px;
    text-align: center;
    width: 110px;
}
.product .qty a {
    color: #e6e6e6;
    display: inline-block;
    font-size: 22px;
    height: 22px;
    line-height: 22px;
    margin: 0 -32px 0 0;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
    width: 22px;
    z-index: 3;
}
.product .qty .input + a {
    color: #cc2d2d;
    margin: 0 0 0 -32px;
}
/*.product .qty a:hover { color: #CC2D2D; }*/
.product .actions {
    padding: 10px 0;
}
.product .button {
    background: #fff; /* #8D919D;*/
    -webkit-border-radius: 29px;
    -moz-border-radius: 29px;
    border-radius: 29px;
    color: #8d919d; /*#fff;*/
    margin: 5px 0;
    min-width: 0;
    padding: 19px 20px;
    width: 49%;
}
.product .button.left {
    background: #cc2d2d;
    color: #fff;
}
.product .button:hover {
    color: #fff;
}
.product .button:before {
    background: #8d919d;
    -webkit-border-radius: 29px;
    -moz-border-radius: 29px;
    border-radius: 29px;
}
.product .button.left:before {
    background: #cc2d2d;
}
.product .button:hover:before {
    background: #550000;
}
.product .ask {
    text-align: center;
}
.product .ask > a {
    display: inline-block;
    margin: 10px 0;
}
.product .ask form {
    padding: 15px 0;
}
.product .ask .actions {
    padding: 0;
}
.product .ask .button {
    margin: 0;
}

/*
* con--ext
*/
.con--ext {
    cursor: pointer;
    max-height: 60px;
    overflow: hidden;
    padding: 0 0 20px;
    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;
}
.con--ext.-active {
    max-height: none;
}
.con--ext::before {
    background: rgba(255, 255, 255, 0.5);
    background: -webkit-linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -moz-linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    height: 100%;
}
.con--ext.-active::before {
    display: none;
}
.con--ext::after {
    border-left: 5px solid rgba(255, 255, 255, 0);
    border-right: 5px solid rgba(255, 255, 255, 0);
    border-top: 10px solid #000;
    bottom: 0;
    content: '';
    height: 0;
    left: 0;
    margin: auto auto 0;
    position: absolute;
    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: 0;
}
.con--ext.-active::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.product .pros {
    border-top: 1px solid rgba(112, 112, 112, 0.27);
    padding: 15px 10px;
}
.pros > div {
    padding: 10px 0;
}
.pros .lbl {
    display: inline-block;
    font-size: 18px;
    padding: 0 25px 0 50px;
    position: relative;
    text-transform: uppercase;
}
.pros .icon {
    left: 0;
    position: absolute;
    text-align: right;
    top: 3px;
    width: 40px;
}
.pros a {
    border: 1px solid #8d919d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    height: 18px;
    position: absolute;
    right: 0;
    top: 3px;
    width: 18px;
}
.pros a:hover {
    border-color: #cc2d2d;
}
.pros a:before,
.pros a:after {
    border: 1px solid #8d919d;
    bottom: 3px;
    left: 3px;
    margin: auto;
    position: absolute;
    right: 3px;
    top: 3px;
}
.pros a:before {
    width: 0;
}
.pros a:after {
    height: 0;
}
.pros a:hover:before,
.pros a:hover:after {
    border-color: #cc2d2d;
}
.pros .txt {
    padding: 10px 0;
}

.section.news {
}
.news .records {
    padding: 0 0 20px;
}
.news .records a {
    display: block;
    margin: 0 auto;
    max-width: 398px;
    text-align: center;
    text-decoration: none;
}
.news .records .img {
    display: block;
    overflow: hidden;
    padding: 59.55% 0 0;
    position: relative;
}
.news .records .img img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.news .records .grp {
    display: block;
    max-height: 175px;
    min-height: 175px;
    overflow: hidden;
    padding: 10px 0 0;
    position: relative;
}
.news .records a:hover .grp {
    /*max-height: 500px;*/
}
.news .records .datetime {
    color: #acacac;
    display: block;
    font-size: 14px;
    padding: 5px 0;
}
.news .records .name {
    color: #8d919d;
    display: block;
    font-size: 21px;
    font-weight: bold;
    padding: 5px 0;
}
.news a:hover .name {
    color: #cc2d2d;
}
.news .records .desc {
    color: #000;
    display: block;
    font-size: 16px;
    padding: 5px 0;
}
.news .records .button {
    margin: 15px auto 10px;
}
.news .records .button:before {
    background: #cc2d2d;
}

.news .article .ibs {
    padding: 25px 0;
}
.news .article .imgs {
    font-size: 0.000001px;
    overflow: hidden;
    padding: 5px;
    text-align: left;
    vertical-align: top;
}
.news .article .imgs div {
    padding: 5px;
    width: 100%;
}
.news .article .imgs div + div {
    width: 33.33%;
}
.news .article .imgs a {
    display: inline-block;
    overflow: hidden;
}
.news .article .imgs img {
    will-change: transform;
}
.news .article .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);
}
.news .article .grp {
    padding: 20px 10px;
    position: relative;
    text-align: center;
    vertical-align: top;
}
.news .article .datetime {
    color: #acacac;
    display: block;
    font-size: 14px;
    padding: 5px 0;
}
.news .article .name {
    color: #000;
    text-transform: uppercase;
}
.news .article .path {
    padding: 0 0 25px;
}
.news .article .desc {
}

.contactIco {
    padding-left: 40px;
    position: relative;
}
.contactIco .icon {
    font-size: 30px;
    left: 0;
    position: absolute;
    top: 0;
}

.fluidTabs {
    overflow: hidden;
    padding-top: 42px;
}
.fluidTabs .fluidTabs-tabs {
    /*overflow: hidden;*/
    display: table;
    width: 100%;
    margin: 0;
    /*min-height: 43px;*/
    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 {
    /*color: #e7184d;*/
    /*background: #fff;*/
}
.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;
    /*-ms-overflow-x: scroll;
            overflow-x: scroll;*/
    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: #f7f7f7;
    clear: both;
    color: #acacac;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.footer .f-1 {
    padding: 25px 0;
}
.f-1 .ibs .ib {
    font-size: 12px;
    padding: 20px 10px;
}
.f-1 h4 {
    font-size: 21px;
    font-weight: bold;
    margin: 0;
    padding: 8px 0;
    text-transform: uppercase;
}
.f-1 div + h4 {
    padding-top: 24px;
}
.f-1 .ib > div {
    padding: 8px 0;
}
.f-1 .ib ul {
    padding: 8px 0;
}

.f-1 a {
    color: #acacac;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.f-1 a:after {
    border-bottom: 1px solid #acacac;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 0;
}
.f-1 a:hover:after {
    width: 100%;
}

.f-1 li a {
    text-transform: uppercase;
}
.f-1 .phone a {
    font-size: 21px;
    font-weight: bold;
}
.f-1 .payments img {
    margin: 0 10px 5px 0;
}
.f-1 .social {
    font-size: 0.000001px;
}
.f-1 .social a {
    display: inline-block;
    font-size: 24px;
    height: 24px;
    line-height: 24px;
    margin: 0 20px 20px 0;
    text-decoration: none;
    vertical-align: top;
    width: 24px;
}
.f-1 .social .facebook:hover {
    color: #4267b2;
}
.f-1 .social .google:hover {
    color: #de4b41;
}
.f-1 .social .instagram:hover {
    color: #f04c5c;
}
.f-1 .social .linkedin:hover {
    color: #006097;
}
.f-1 .social .pinterest:hover {
    color: #bd081c;
}
.f-1 .social .skype:hover {
    color: #00aff0;
}
.f-1 .social .twitter:hover {
    color: #1da1f3;
}
.f-1 .social .youtube:hover {
    color: #e22a27;
}

.f-1 .social a:after {
    display: none;
}

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

/*
 * Modyfikatory
 */

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

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

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

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

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

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

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

/* read more link */
.more {
    font-size: 0.9em;
    font-weight: bold;
    padding-left: 5px;
}

/* price hightlight style */
.price {
    color: #550000;
    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 (max-width: 1600px) {
    .container {
        max-width: 1200px;
    }

    .nav .n-1 {
        padding: 0 350px 0 265px;
    }
    .nav .ul-1 > li {
        padding: 0 25px;
    }

    .cats .records .name {
        font-size: 30px;
    }

    .collections .records .name {
    }

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

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

@media only screen and (max-width: 1200px) {
    .nav .n-1 {
        padding: 0 250px 0 140px;
    }
    .nav .ul-1 {
    }

    .search {
        margin: 0 10px 0 0;
    }

    .user {
        margin: 0 10px 0 0;
    }

    .favorite {
        margin: 0 10px 0 0;
    }

    .section.slider-banner {
        margin: 0 -10px;
        width: auto;
    }

    .collections .records .grp,
    .collections .records div + div .grp {
        left: 15px;
    }
}

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

@media only screen and (max-width: 1000px) {
    .top .t-1 {
        min-height: 31px;
        padding: 5px 0;
    }

    .top .t-2 {
        min-height: 80px;
    }

    .nav {
        text-align: left;
    }
    .nav .n-1 {
        padding: 25px 0;
    }
    .nav .ul-1 {
        display: block;
        height: auto;
    }
    .nav .ul-1 > li {
        display: block;
        padding: 10px 15px;
    }
    .nav ul div {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        display: none;
        left: auto;
        max-height: none;
        opacity: 1;
        padding: 10px 0 0;
        position: relative;
        right: auto;
        visibility: visible;
        top: auto;
        z-index: initial;
    }
    .nav ul a.active + div {
        display: block;
    }
    .nav ul .wider ul {
        -webkit-column-count: auto;
        -moz-column-count: auto;
        column-count: auto;
    }
    .nav ul ul li {
        padding: 4px 15px;
    }
    .nav ul ul div {
        left: auto;
        top: auto;
    }
    .nav ul ul .wider ul {
        -webkit-column-count: auto;
        -moz-column-count: auto;
        column-count: auto;
    }

    .logo-1 {
        left: 50px;
        top: 3px;
        width: 80px;
    }

    .ico-wrap {
        top: 23px;
    }

    .main {
        padding-top: 111px;
    }

    .slider-banner .swiper-slide .con {
        padding: 45px 50px;
    }

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

    .cats .records .ib {
        width: 50%;
    }

    .collections .records {
        padding: 0;
    }
    .collections .records div {
        display: inline-block;
        position: relative;
    }
    .collections .records div:nth-child(1),
    .collections .records div:nth-child(2),
    .collections .records div:nth-child(3),
    .collections .records div:nth-child(4) {
        height: auto;
        left: auto;
        top: auto;
        width: 50%;
    }
    .collections .records div:nth-child(1) .img,
    .collections .records div:nth-child(2) .img,
    .collections .records div:nth-child(3) .img,
    .collections .records div:nth-child(4) .img {
        padding: 105.17% 0 0;
    }
    .collections .records div:nth-child(2) .img .img-3,
    .collections .records div:nth-child(3) .img .img-3,
    .collections .records div:nth-child(4) .img .img-2 {
        display: none;
    }
    .collections .records div:nth-child(2) .img .img-1,
    .collections .records div:nth-child(3) .img .img-1,
    .collections .records div:nth-child(4) .img .img-1 {
        display: block;
    }

    .products .records .ib {
        width: 25%;
    }
    .products .records .item {
        height: 350px;
    }

    .product .ib {
        width: 50%;
    }
    .product .imgs div {
        display: inline-block;
        float: none;
        width: auto;
    }

    .news .records .ib {
        width: 50%;
    }

    .pagination > div > div:first-child,
    .pagination > div > div:first-child + div + div {
        text-align: center;
        width: auto;
    }
    .pagination-element--left,
    .pagination-element--right {
        margin: 5px 10px;
    }
}

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

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

    .slider-banner .swiper-slide .con {
        padding: 30px 50px;
    }
    .slider-banner .txt {
        font-size: 60px;
    }
    .slider-banner .swiper-pagination,
    .slider-banner:hover .swiper-pagination {
        bottom: 10px;
        left: 60px;
    }
    .slider-banner .button {
        font-size: 13px;
        line-height: 17px;
        min-width: 0;
        padding: 9px 15px;
    }

    .cats .records .name {
    }

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

    .product .ib {
        width: 100%;
    }
    .product .imgs {
        padding: 10px 5px;
    }
    .product .imgs div {
        padding: 5px;
    }

    .news .article .ib {
        width: 100%;
    }

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

    .f-1 .ib {
        width: 50%;
    }
}

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

@media only screen and (max-width: 600px) {
    .top .t-1 {
        text-align: left;
    }
    .t-1 .container {
        padding: 0;
    }

    .top .contact {
    }
    .top .contact div {
        margin: 0 2px;
        padding: 0 0 0 18px;
    }
    .top .contact .icon {
        font-size: 14px;
    }
    .top .contact a {
        font-size: 13px;
    }

    .languages {
        float: right;
        margin: 0;
    }
    .languages a {
        margin: 0 5px;
    }
    .languages a.active {
        display: none;
    }

    .user .top-dropdown-a {
        font-size: 0.000001px;
    }

    .top .cart .top-dropdown-adv {
        width: 300px;
    }

    .slider-banner .swiper-slide {
        height: 400px;
        overflow: hidden;
    }
    .slider-banner .swiper-slide img {
        bottom: 0;
        height: 100%;
        left: -100%;
        margin: auto;
        max-width: none;
        position: absolute;
        right: -100%;
        top: 0;
        width: auto;
    }
    .slider-banner .swiper-slide .con {
        padding: 30px 20px;
    }
    .slider-banner .con .td {
        vertical-align: bottom;
    }
    .slider-banner .txt {
        font-size: 45px;
    }

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

    .cats .records .ib {
        width: 100%;
    }

    .collections .records div:nth-child(1),
    .collections .records div:nth-child(2),
    .collections .records div:nth-child(3),
    .collections .records div:nth-child(4) {
        width: 100%;
    }

    .products .options > div {
        float: none;
    }
    .products .records {
        background-size: cover;
    }
    .products .records .ib {
        width: 50%;
    }
    .products .records .item {
        height: 390px;
    }
}

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

@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;
    }

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

    .news .records .ib {
        width: 100%;
    }

    .f-1 .ib {
        width: 100%;
    }

    .f-2 div {
        display: block;
    }
    .f-2 div + div:before {
        display: none;
    }
}

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

@media only screen and (max-width: 360px) {
    .collections .records div:nth-child(1) .img .img-1,
    .collections .records div:nth-child(2) .img .img-1,
    .collections .records div:nth-child(3) .img .img-1,
    .collections .records div:nth-child(4) .img .img-1 {
        display: none;
    }
    .collections .records div:nth-child(1) .img .img-3,
    .collections .records div:nth-child(2) .img .img-3,
    .collections .records div:nth-child(3) .img .img-3,
    .collections .records div:nth-child(4) .img .img-3 {
        display: block;
    }

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

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

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

.box--rabat .button--smallCircle:before,
.box--rabat .button--smallCircle:after {
    display: none;
}

/*
 * Login box
 */

.loginBox {
    background: #f2f2f2;
    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;
    padding: 20px;
}
.loginBox .formActions {
    background: none;
    padding: 0;
}

/*
 * Cart Steps
 */

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

/*
 * Shop Cart
 */

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

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

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

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

.cart-product-name {
    font-size: 20px;
    font-weight: 300;
    display: inline-block;
    text-align: left;
    text-transform: uppercase;
    vertical-align: middle;
    width: 70%;
}
.cart-product-name .box {
    font-size: 12px;
    line-height: 1.1em;
    margin: 15px 0 0 0;
    padding: 10px 15px;
}

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

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

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

.cart-x {
    font-size: 20px;
}
.cart-price-main {
    clear: both;
    margin-bottom: 10px;
    text-align: right;
}
/*
#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-table {
        border: 0;
    }
    .cart-row {
        display: block;
        text-align: justify;
    }
    .cart-row:after {
        content: '';
        display: inline-block;
        width: 100%;
    }

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

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

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

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

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

.newsletterbox {
    background: #fff;
    -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: 1100px;
    min-height: 350px;
    padding: 30px 90px 30px 420px;
    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-image {
    background: no-repeat center;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 400px;
}
.newsletterbox-title {
    color: #000;
    font-size: 55px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    text-shadow: 0 0 3px #fff;
    text-transform: none;
}
.newsletterbox-info {
    color: #000;
    font-size: 29px;
    font-weight: 300;
    margin: 5px 0 15px;
    padding: 0;
    text-shadow: 0 0 3px #fff;
    text-transform: none;
}
.newsletterbox .fill-row {
    margin-right: 140px;
}
.newsletterbox-input {
}
.newsletterbox-button {
    position: absolute;
    right: 0;
    top: -6px;
}
.newsletterbox-x {
    background: none;
    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: none;
}
.newsletterbox-x::before,
.newsletterbox-x::after {
    background: #000;
    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: #fff;
    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 320px;
    }
    .newsletterbox-image {
        width: 300px;
    }
    .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 {
        padding: 310px 10px 10px;
    }
    .newsletterbox-image {
        height: 300px;
        width: 100%;
    }
}

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

@font-face {
    font-family: 'Lobster Two';
    src: url('LobsterTwo/LobsterTwo-BoldItalic.eot');
    src: url('LobsterTwo/LobsterTwo-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('LobsterTwo/LobsterTwo-BoldItalic.ttf') format('truetype'),
        url('LobsterTwo/LobsterTwo-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

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

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

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

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

.icon-return:before {
    content: '\e905';
}
.icon-time:before {
    content: '\e906';
}
.icon-delivery:before {
    content: '\e907';
}
.icon-right-long:before {
    content: '\e914';
}
.icon-mail:before {
    content: '\e913';
}
.icon-instagram:before {
    content: '\e960';
}
.icon-youtube:before {
    content: '\e9a2';
}
.icon-skype:before {
    content: '\e9ac';
}
.icon-twitter:before {
    content: '\ea02';
}
.icon-pinterest:before {
    content: '\e90a';
}
.icon-left:before {
    content: '\e909';
}
.icon-right:before {
    content: '\e90b';
}
.icon-phone:before {
    content: '\e93d';
}
.icon-home:before {
    content: '\e927';
}
.icon-minus:before {
    content: '\e910';
}
.icon-plus:before {
    content: '\e911';
}
.icon-facebook:before {
    content: '\e95e';
}
.icon-google:before {
    content: '\e99a';
}
.icon-heart:before {
    content: '\e900';
}
.icon-search:before {
    content: '\e901';
}
.icon-shopping-bag-0:before {
    content: '\e902';
}
.icon-shopping-bag-1:before {
    content: '\e903';
}
.icon-user:before {
    content: '\e904';
}
.icon-remove:before {
    content: '\e91d';
}

/******************************************************************************/
.icon-shopping-bag:before {
    content: '\e902';
}
.cart.active .icon-shopping-bag:before {
    content: '\e903';
}
/******************************************************************************/

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

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

.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;
}

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

.qtip--error {
    z-index: 1 !important;
}

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

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

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

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