html {
    background: #fff;
    color: #000;
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 10px;
    font-weight: normal;
    line-height: 1.4;
    max-width: 100%;
    position: relative;
}
body {
    font-size: 18px;
    font-size: 1.8rem;
    max-width: 100%;
    position: relative;
}

a {
    color: #9d9d9d;
    outline: 0 !important;
    text-decoration: none;
}
a:hover {
    color: #1c1c1c;
    color: #36b3b3;
    text-decoration: underline;
}
a:active {
    outline: 0 !important;
}
a:before,
a:after,
.a:before,
.a:after {
    content: '';
}

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

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

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

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

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

/*
 * Table
 */
table {
    margin: 1em auto;
    max-width: 100%;
}
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;
}

/* 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;
}
form .ibs {
    margin: 0 -1rem;
}

/* input */
.input {
    background: #fff;
    border: 1px solid #dadada;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #1c1c1c;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 2.3rem;
    max-width: 100%;
    padding: 0.9rem 1.4rem;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: middle;
    width: 220px;
}
.input--short {
    text-align: center;
    width: 7rem;
}
.input--long {
    width: 35rem;
}
.input--full {
    max-width: none;
    width: 100%;
}
.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;
}

.input--number {
    text-align: center;
    width: 5.5rem;
}

.input--textarea {
    height: 9rem;
    line-height: 1.2em;
    /*max-width: 60rem;*/
    vertical-align: top;
    width: 100%;
}
.input--textarea--medium {
    height: 20rem;
}
.input--textarea--large {
    height: 40rem;
}

/* Select */
select,
select.input,
.select,
.fake-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-attachment: scroll;
    background-image: url('../images/select.svg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 3rem auto;
    min-width: 15rem;
    outline: medium none !important;
    padding: 0.9rem 4rem 0.9rem 1.4rem;
    text-overflow: '';
    z-index: 1;
}
select::-ms-expand {
    display: none;
}
select:disabled {
    background-color: regba(0, 0, 0, 0.1);
}
.select--full {
    width: 98%;
}

/* Checkbox / Radio */
.checkbox,
.radio {
    background: #fff;
    border: 0;
    cursor: pointer;
    display: inline-block;
    height: 2rem;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    width: 2rem;
}
.checkbox input,
.radio input {
    margin-left: -2rem;
    opacity: 0;
    position: absolute;
}
.checkbox i,
.radio i {
    background: #fff;
    border: 1px solid #dadada;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.checkbox input:checked + i,
.radio input:checked + i {
    background: #f5f5f5;
    border-color: #36b3b3;
}
.checkbox i:before,
.radio i:before {
    background: #36b3b3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -50%;
    content: '';
    display: block;
    left: -50%;
    position: absolute;
    right: -50%;
    top: -50%;
    -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 input:checked + i:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.checkbox i:after {
    background: none;
    border-bottom: 0.2rem solid rgba(255, 255, 255, 1);
    border-right: 0.2rem solid rgba(255, 255, 255, 1);
    bottom: 50%;
    content: '';
    height: 0;
    left: 15%;
    opacity: 0;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -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-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: 0;
}
.checkbox input:checked + i:after {
    height: 60%;
    opacity: 1;
    -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;
    width: 35%;
}

.radio,
.radio i,
.radio i:before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.radio input:checked + i:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/*
 * Button
 */
.button,
.input-file {
    background: #36b3b3;
    border: 1px solid #36b3b3;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: 2.1rem;
    margin: 0;
    max-width: 100%;
    min-width: 14rem;
    overflow: hidden;
    padding: 1rem 1.5rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
    z-index: 3;
}
.button--large {
    font-size: 1.4rem;
    padding: 1.3rem 1.8rem;
}
.button--biger {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    padding: 1.6rem 1rem;
}
.button--full {
    width: 100%;
}
.button:hover,
a:hover .button,
.input-file:hover {
    background: #1c1c1c;
    border-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
}
.button:active,
.input-file:active {
    background: #1c1c1c;
    border-color: #1c1c1c;
    -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:disabled,
.button-disabled,
.button-disabled:hover,
.button-disabled:active {
    cursor: not-allowed;
    background: #d4d4d4;
    border-color: #d4d4d4;
}

.button-dark {
    background: #1c1c1c;
    border-color: #1c1c1c;
    color: #fff;
}
.button-dark:hover {
    background: #707070;
    border-color: #707070;
    color: #fff;
}

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

/* lbl */
.lbl {
    display: block;
    line-height: 1.4;
    position: relative;
    text-align: left;
}
.lbl-name {
    background: #fff;
    color: #777;
    display: block;
    float: left;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2rem;
    margin: -1rem 1rem;
    overflow: hidden;
    padding: 0 0.5rem;
    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;
    -webkit-transform: translateY(2.2rem);
    -moz-transform: translateY(2.2rem);
    -ms-transform: translateY(2.2rem);
    -o-transform: translateY(2.2rem);
    transform: translateY(2.2rem);
    z-index: 1;
}
.lbl-focus .lbl-name,
.no-js .lbl-name {
    font-size: 1.4rem;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.lbl .input {
    clear: both;
    width: 100%;
}
.lbl-aside {
    display: block;
    font-size: 1.4rem;
    line-height: 2rem;
    margin: -2.4rem auto auto 3rem;
    position: relative;
}
.lbl-help {
    display: block;
    font-size: 1.4rem;
    opacity: 0.5;
    padding: 0.5rem 0;
}
.lbl-error {
    display: block;
    font-size: 1.3rem;
    line-height: 1.7rem;
    padding: 0.3rem 0 0;
}
.lbl-invalid,
.lbl-invalid .lbl-name,
.lbl-invalid .lbl-aside,
.lbl-invalid .lbl-help,
.lbl-invalid .lbl-error {
    color: #b72b2b !important;
}
.lbl-invalid .input,
.lbl-invalid .checkbox i {
    border-color: #b72b2b !important;
}
.lbl-title {
    display: block;
    font-size: 0.8em;
    font-weight: bolder;
    opacity: 0.4;
    padding: 0.75em 0 0.1em;
    text-transform: uppercase;
}
.lbl-value {
    display: block;
    padding: 0.1em 0 0.75em;
}

/* form actions */
.formActions {
    clear: both;
    display: block;
    margin: 1rem 0;
    padding: 15px 0;
}
.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: 164rem;
    padding: 0 1rem;
    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: 1.4rem;
    min-width: 140px;
    padding: 5px 10px;
}

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

/*
 * Slider
 */
.slider {
    overflow: visible;
    position: relative;
    width: 100%;
}
.swiper-container {
    height: 100%;
    overflow: hidden;
    width: 100%;
}
.swiper-wrapper {
}
.swiper-slide {
    background: none;
    cursor: pointer;
    text-align: center;
}
.swiper-button-next,
.swiper-button-prev {
    background: none;
    border: 0;
    color: #d9d9d9;
    font-size: 4.8rem;
    height: 4.8rem;
    line-height: 4.8rem;
    margin: -2.4rem auto 0;
    opacity: 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: 4.8rem;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #5e5e5e;
    opacity: 1;
}
.swiper-button-next .icon,
.swiper-button-prev .icon {
    line-height: 4.8rem;
}
.swiper-button-prev {
    left: -6.5rem;
    right: auto;
}
.slider:hover .swiper-button-prev {
}
.swiper-button-next {
    left: auto;
    right: -6.5rem;
}
.slider:hover .swiper-button-next {
}
.swiper-pagination {
    bottom: 1rem;
    display: table;
    font-size: 0.00001px;
    left: 0;
    margin: 0 auto;
    opacity: 1;
    right: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: auto;
}
.swiper-pagination:hover {
    opacity: 1;
}
.slider:hover .swiper-pagination {
    bottom: 1rem;
}
.swiper-pagination-bullet {
    background: #fff;
    border: 1px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 1rem;
    margin: 0 0.5rem;
    opacity: 1;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 1rem;
}
.swiper-pagination:hover .swiper-pagination-bullet {
}
.swiper-pagination .swiper-pagination-bullet:hover {
    background: #fff;
    border-color: #36b3b3;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #36b3b3;
    border-color: #36b3b3;
    opacity: 1;
}
.swiper-slides {
    position: relative;
}
.swiper-thumbs {
    position: relative;
}

.slider-banners {
    height: auto;
    position: relative;
}
.slider-banners .swiper-slides {
}
.slider-banners .swiper-container {
}
.slider-banners .swiper-slide {
    background: #fff no-repeat center;
    background-size: cover;
    cursor: auto;
}
.slider-banners .swiper-slide > img {
    width: 100%;
}
.slider-banners .con-1 {
    bottom: 0;
    left: 0;
    padding: 0 6rem;
    position: absolute;
    right: 0;
    top: 0;
}
.slider-banners .table {
    display: table;
    height: 75%;
    margin: 0 auto;
    table-layout: fixed;
    width: 50%;
}
.slider-banners .td {
    display: table-cell;
    padding: 0;
    text-align: center;
    vertical-align: middle;
}
.slider-banners .name {
}
.slider-banners .txt {
    color: #1c1c1c;
    display: none;
    font-family: 'Barriecito';
    font-size: 8rem;
    font-weight: normal;
    line-height: 1;
    padding: 1rem 0;
}
.slider-banners .txt u {
    color: #36b3b3;
    text-decoration: none;
}
.slider-banners .swiper-slide a {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
}
.slider-banners .swiper-slide .txt + a {
    display: inline-block;
    margin: 1rem 0 0;
    position: static;
}
.slider-banners .swiper-slide .button {
    display: none;
    font-size: 1.2rem;
    min-width: 22rem;
    padding: 0.8rem 2rem;
}
.slider-banners .swiper-slide .txt + a .button {
    display: none;
}
.slider-banners .swiper-slide a:hover .button {
}
.slider-banners .con-2 {
    left: 0;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    right: 0;
    top: 50%;
}
.slider-banners .swiper-button-prev {
    left: -6.5rem;
}
.slider-banners .swiper-button-next {
    right: -6.5rem;
}
.slider-banners .con-3 {
    bottom: 1rem;
    font-size: 0.000001px;
    left: 0;
    margin: 0 auto;
    padding: 0 6rem;
    position: absolute;
    right: 0;
    text-align: center;
}
.slider-banners .swiper-pagination,
.slider-banners:hover .swiper-pagination {
    bottom: auto;
    display: inline-block;
    left: auto;
    margin: 0;
    position: relative;
    right: 0;
    text-align: left;
}
.slider-banners .swiper-pagination:before {
    display: none;
}

.slider-products {
    overflow: visible;
}
.slider-products .swiper-slides {
}
.slider-products .swiper-container {
    margin: 0 -1rem;
    overflow: hidden;
    padding: 0;
    width: auto;
}
.slider-products .swiper-slide {
    overflow: visible;
    padding: 1rem;
    text-align: center;
    width: 25%;
}

.slider-product {
    padding: 80% 0 0;
    position: relative;

    height: 80vh;
    padding: 0;
}
.slider-product .swiper-button-prev,
.slider-product .swiper-button-next {
}
.slider-product .swiper-slides {
    height: 100%;
    max-width: 80rem;
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
}
.slider-product .swiper-slide {
    background: #fff;
    border: 1px solid #d9d9d9;
}
.slider-product .swiper-slides .swiper-slide a {
    background: #fff;
    display: block;
    padding: 100% 0 0;
    position: relative;

    height: 100%;
    padding: 0;
    width: 100%;
}
.slider-product .swiper-slides .swiper-slide img {
    left: 0;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.slider-product .swiper-slides .swiper-button-prev {
    left: 1.3rem;
}
.slider-product .swiper-slides .swiper-button-next {
    right: 3rem;
}
.slider-product .swiper-thumbs {
    bottom: 0;
    left: 0;
    max-width: 12rem;
    position: absolute;
    top: 0;
    width: 13%;
}
.slider-product .swiper-thumbs .swiper-container {
    height: 100%;
}
.slider-product .swiper-thumbs .swiper-slide {
    height: auto;
    overflow: hidden;
    width: 100%;
}
.slider-product .swiper-thumbs .active:after,
.slider-product .swiper-thumbs .swiper-slide-thumb-active:after {
    border: 1px solid #1c1c1c;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.slider-brands {
}
.slider-brands .swiper-slides {
    padding: 2rem 0;
}
.slider-brands .swiper-container {
    height: 12rem;
    margin: 0 -1rem;
    width: auto;
}
.slider-brands .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    will-change: transform;
}
.slider-brands .swiper-slide {
    display: inline-block;
    height: auto;
    padding: 0 1rem;
    text-align: center;
    vertical-align: middle;
    width: auto;
}
.slider-brands .swiper-slide a {
    display: block;
    font-size: 0.000001px;
    height: 100%;
    margin: auto 0;
    text-decoration: none;
}
.slider-brands .swiper-slide a:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.slider-brands .swiper-slide img {
    display: inline-block;
    vertical-align: middle;
}

/*
 * Pagination
 */
.pagination {
    color: #1c1c1c;
    font-size: 1.6rem;
    padding: 4rem 0 2rem;
    text-align: center;
    text-transform: uppercase;
}
.pagination-info {
    color: #1c1c1c;
    display: none;
    padding: 0 0 2rem;
}
.pagination > div {
    display: table;
    margin: 0 auto;
}
.pagination > div > div {
    display: table-cell;
    vertical-align: top;
}
.pagination-element {
    background: #d9d9d9;
    color: #fff;
    display: inline-block;
    height: 4.3rem;
    line-height: 4.3rem;
    margin: 0.5rem 0.5rem;
    min-width: 4.3rem;
    padding: 0 0.2rem;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    z-index: 1;
}
.pagination-element:hover {
    background: #1c1c1c;
    color: #fff;
    text-decoration: none;
}
.pagination-element--active,
.pagination-element--active:hover {
    background: #36b3b3;
    color: #fff;
}
.pagination-element--left,
.pagination-element--right {
    background-color: #36b3b3;
    letter-spacing: 0.15em;
    padding: 0 2.5rem;
}
.pagination-element--disabled,
.pagination-element--disabled:hover {
    background: none;
    color: #ccc;
    display: none;
}

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

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

.item-name {
    display: block;
    font-weight: normal;
    line-height: 1.2em;
    margin: 0 auto;
    max-width: 70%;
    min-height: 2.4em; /* 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;
}

/*
 * Produkty
 */

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

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

.productWrapper {
    text-align: justify;
    font-size: 0;
    margin: 20px -10px;
}
.productWrapper:after {
    content: '';
    display: inline-block;
    width: 31%;
    width: calc(33.3% - 20px);
    line-height: 1.4;
}
@supports (display: grid) {
    .productWrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        margin: 20px 0;
    }
}

/*
 * Top dropdown
 */
.top-dropdown-adv {
    background: #fff;
    border: 0;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.16);
    color: #1c1c1c;
    margin-top: 1.5rem;
    padding: 1.5rem;
    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: 20rem;
    z-index: 200;
}
.top-dropdown-adv:before {
    border-bottom: 1rem solid #fff;
    border-left: 0.6rem solid rgba(255, 255, 255, 0);
    border-right: 0.6rem solid rgba(255, 255, 255, 0);
    content: '';
    display: block;
    position: absolute;
    right: 3.1rem;
    top: -1rem;
    z-index: 10;
}
.top-dropdown-adv:after {
    border-bottom: 1.1rem solid #e6e6e6;
    border-left: 0.7rem solid rgba(255, 255, 255, 0);
    border-right: 0.7rem solid rgba(255, 255, 255, 0);
    content: '';
    display: block;
    position: absolute;
    right: 3rem;
    top: -1.1rem;
    z-index: 8;
}
.top-dropdown-adv.top-dropdown-adv--hide {
    filter: alpha(opacity = 0);
    opacity: 0;
    -webkit-transform: translateY(-3rem);
    -moz-transform: translateY(-3rem);
    -ms-transform: translateY(-3rem);
    -o-transform: translateY(-3rem);
    transform: translateY(-3rem);
    visibility: hidden;
}
.top-dropdown-adv-right {
    left: auto;
    right: 0;
}

/*
 * Top
 */
.top {
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    left: 0;
    padding: 0;
    /*position: fixed;*/
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 15;
}
.top .t-1 {
    background: #1c1c1c;
    min-height: 2.6rem;
    position: relative;
}
.top .t-2 {
    min-height: 12.4rem;
    position: relative;
}
.top .t-2 .inner {
    padding: 1.5rem 0 1rem;
    position: relative;
}
.top .t-3 {
    position: relative;
}

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

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

@media only screen and (max-width: 1000px) {
    .logo-1 {
        margin: 0 auto 0 4rem;
    }
}

@media only screen and (max-width: 600px) {
    .logo-1 {
        margin-left: 7rem;
        padding: 0 0 1rem;
        width: 22rem;
    }
}

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

/* infoline */
.infoline {
    left: 1rem;
    line-height: 1;
    padding: 0 0 0 7.5rem;
    position: absolute;
    text-transform: uppercase;
    top: 7rem;
    z-index: 100;
}
.infoline .icon {
    background: #36b3b3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    font-size: 3.6rem;
    left: 0;
    line-height: 6.9rem;
    position: absolute;
    text-align: center;
    top: 0;
    width: 6.9rem;
}
.infoline .txt {
    color: #9d9d9d;
    font-size: 1.6rem;
}
.infoline .txt b {
    color: #1c1c1c;
}
.infoline .phone a {
    color: #36b3b3;
    font-size: 3.5rem;
    font-weight: bold;
    text-decoration: none;
}
.infoline .phone a:hover {
    color: #1c1c1c;
}
.infoline .mail a {
    color: #5e5e5e;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
}
.infoline .mail a:hover {
    color: #1c1c1c;
}

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

/*
 *user
 */
.user {
    display: block;
    margin: 0;
    min-width: 8rem;
    padding: 0;
    position: absolute;
    right: 13rem;
    top: 7rem;
    width: auto;
    z-index: 103;
}
.user .top-dropdown-a {
    color: #9d9d9d;
    display: block;
    font-size: 1.6rem;
    line-height: 1.2;
    padding: 7.2rem 0 0;
    position: relative;
    text-align: center;
    text-decoration: none;
}
.user .top-dropdown-a .icon {
    color: #9d9d9d;
    font-size: 5rem;
    font-weight: bold;
    left: 0;
    line-height: 6.9rem;
    margin: 0 auto;
    opacity: 0.5;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 6.9rem;
}
.user.active .top-dropdown-a .icon {
    color: #36b3b3;
    opacity: 1;
}
.user .top-dropdown-adv {
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.47);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.47);
    padding: 1rem 1.5rem;
    width: 29.2rem;
}
.user.active .top-dropdown-adv {
    width: 15.4rem;
}

.user .title {
    color: #36b3b3;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0.5rem 1rem 1rem 0;
    vertical-align: middle;
}
.user .register {
    color: #707070;
    display: inline-block;
    font-size: 1.3rem;
    margin: 0 0 0 1.5rem;
    position: relative;
    vertical-align: middle;
}
.user .register:hover {
    color: #1c1c1c;
    text-decoration: none;
}
.user .register:before {
    border-left: 1px solid #707070;
    bottom: -2rem;
    content: '';
    height: 2.5rem;
    left: -1.5rem;
    margin: auto 0;
    position: absolute;
    top: -2rem;
}
.user form {
    margin: 0 0 0.5rem;
}
.user form .ib {
    padding: 0.5rem 1rem;
}
.user .lbl-name {
    color: #9d9d9d;
    font-size: 1.3rem;
    font-weight: normal;
}
.user .input {
    border-color: #5e5e5e;
}
.user .ta-c {
    text-align: center;
}
.user .remind {
    color: #707070;
    display: inline-block;
    font-size: 1.2rem;
    opacity: 0.45;
    text-decoration: none;
    vertical-align: top;
}
.user .remind:hover {
    color: #1c1c1c;
    opacity: 1;
    text-decoration: none;
}
.user .button {
    font-size: 1.3rem;
    min-width: 15.4rem;
}

.user ul {
    font-size: 1.3rem;
}
.user ul li {
    padding: 0.2rem 0;
}
.user ul a {
    color: #707070;
    text-decoration: none;
}
.user ul a:hover {
    color: #36b3b3;
}

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

/*
 * top shipfree
 */
.shipfree {
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    color: #5e5e5e;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 2rem;
    padding: 0.7rem 1.5rem 0.7rem 4.5rem;
    position: absolute;
    right: 1rem;
    top: 2rem;
    white-space: nowrap;
}
.shipfree.active {
    color: #36b3b3;
}
.shipfree:before {
    border-left: 1.2rem solid rgba(255, 255, 255, 0);
    border-right: 1.2rem solid rgba(255, 255, 255, 0);
    border-top: 1.7rem solid rgba(225, 225, 225, 0.5);
    height: 0;
    content: '';
    margin-right: -1.2rem;
    position: absolute;
    right: 33%;
    top: 100%;
    width: 0;
}
.shipfree:after {
    border-left: 1rem solid rgba(255, 255, 255, 0);
    border-right: 1rem solid rgba(255, 255, 255, 0);
    border-top: 1.5rem solid #fff;
    height: 0;
    content: '';
    margin-right: -1rem;
    position: absolute;
    right: 33%;
    top: 100%;
    width: 0;
}
.shipfree .icon {
    font-size: 2.5rem;
    left: 1.5rem;
    position: absolute;
    top: 0.5rem;
}
.shipfree .txt-1,
.shipfree.active .txt-2 {
    display: block;
}
.shipfree .txt-2,
.shipfree.active .txt-1 {
    display: none;
}
.shipfree b {
    color: #36b3b3;
}

/*
 * cart
 */
.top .cart {
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 1rem;
    top: 7rem;
    width: 11rem;
    z-index: 100;
}
.top .cart .top-dropdown-a {
    color: #d0d0d0;
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
    padding: 7.2rem 0 0;
    position: relative;
    text-align: center;
    text-decoration: none;
}
.top .cart .top-dropdown-a .icon {
    background: #d0d0d0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    font-size: 4.1rem;
    left: 0;
    line-height: 6.9rem;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 6.9rem;
}
.top .cart.active .top-dropdown-a .icon {
    background: #36b3b3;
}
.top .cart .top-dropdown-a .quantity {
    color: #d0d0d0;
    font-size: 1.4rem;
    font-weight: bold;
    left: 0;
    line-height: 1;
    position: absolute;
    right: 0;
    text-align: center;
    top: 3.5rem;
    width: auto;
}
.top .cart.active .top-dropdown-a .quantity {
    color: #36b3b3;
}
.top .cart .top-dropdown-a .amount {
    color: #1c1c1c;
    display: none;
    font-size: 1.6rem;
    font-weight: bold;
}
.top .cart.active .top-dropdown-a .amount {
    display: block;
}
.top .cart .top-dropdown-a .empty {
    color: #d0d0d0;
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
}
.top .cart.active .top-dropdown-a .empty {
    display: none;
}
.top .cart .top-dropdown-adv {
    border: 1px solid #afafaf;
    display: none;
    width: 39rem;
}
.top .cart.active .top-dropdown-adv {
    display: block;
}
.top .cart .top-dropdown-adv:before {
    right: 5rem;
}
.top .cart .top-dropdown-adv:after {
    border-bottom-color: #afafaf;
    right: 4.9rem;
}

.sideCart {
    line-height: 1.2;
    padding: 0;
    text-align: center;
}
.sideCart .title {
    color: #5e5e5e;
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0.5rem 0 1rem;
    position: relative;
    text-align: center;
}
.sideCart .title:after {
}
.sideCart .items {
    display: block;
    margin: 0;
    max-height: 30rem;
    max-height: calc(100vh - 48rem);
    overflow: auto;
}
.sideCart-list {
    display: table;
    padding: 0;
    text-align: left;
    width: 100%;
}
.sideCart-item {
    display: table-row;
}
.sideCart-item > span {
    display: table-cell;
    font-size: 0.00001px;
    padding: 1.5rem 0.5rem 1.5rem 0;
    position: relative;
    vertical-align: middle;
    width: 1.5rem;
}
.sideCart-item > span + span {
    padding: 1.5rem 0.5rem;
    width: 8rem;
}
.sideCart-item > span + span + span {
    width: auto;
}
.sideCart-item > span + span + span + span {
    padding: 1.5rem 0 1.5rem 0.5rem;
    text-align: right;
}
.sideCart-item + .sideCart-item > span {
    border-top: 1px solid #dedede;
}

.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: 1.4rem;
    font-weight: bold;
    margin: 0;
    overflow: hidden;
    padding: 0;
    text-transform: none;
}
.sideCart-item-name a {
    color: #1c1c1c;
    padding: 0;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
}
.sideCart-item-name a:hover {
    color: #36b3b3;
    text-decoration: none;
}
.sideCart-item-name a:after {
}
.sideCart-item-attr {
    color: #1c1c1c;
    display: block;
    font-size: 1.1rem;
    margin: 0.3rem 0 0;
    padding: 0;
    text-transform: none;
}
.sideCart-item-attr span {
    display: inline-block;
    padding-right: 0.5rem;
}
.sideCart-item-attr span + span {
    padding: 0;
}
.sideCart-item-count {
    color: #707070;
    display: inline-block;
    font-size: 1.1rem;
    margin: 0 0.4rem 0 0;
    opacity: 0.5;
    text-transform: none;
    vertical-align: middle;
    white-space: nowrap;
}
.sideCart-item-price {
    color: #707070;
    display: inline-block;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.5;
    padding: 0;
    text-transform: none;
    vertical-align: middle;
    white-space: nowrap;
}
.sideCart-item-total {
    color: #5e5e5e;
    display: block;
    font-size: 2rem;
    font-weight: bold;
    padding: 0.5rem 0 0;
    text-align: right;
    white-space: nowrap;
}
.sideCart-item-remove {
    bottom: 0;
    color: rgba(255, 255, 255, 0);
    display: block;
    font-size: 0.000001px;
    height: 2.2rem;
    left: -0.5rem;
    line-height: 0;
    margin: auto;
    position: absolute;
    text-align: center;
    top: 0;
    width: 2.2rem;
}
.sideCart-item-remove:hover {
    text-decoration: none;
}
.sideCart-item-remove:before,
.sideCart-item-remove:after {
    border: 0.2rem solid #9d9d9d;
    border-left: 0;
    border-top: 0;
    bottom: 0.5rem;
    content: '';
    left: 0.5rem;
    margin: auto;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    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: #1c1c1c;
}
.sideCart .total {
    direction: rtl;
    display: block;
    line-height: 1.4;
    padding: 1.5rem 0.5rem;
    text-align: right;
    text-transform: none;
    white-space: nowrap;
}
.sideCart .total div {
    color: #707070;
    direction: initial;
    display: block;
    font-size: 2.1rem;
    font-weight: normal;
    padding: 0;
}
.sideCart .total div + div {
    color: #36b3b3;
    display: inline-block;
    font-size: 4rem;
    font-weight: bold;
    min-width: 55%;
    vertical-align: middle;
    white-space: nowrap;
}
.sideCart .total .shipment {
    color: #707070;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    min-width: 0;
    padding: 0.5rem 0 0 3rem;
    position: relative;
    text-align: left;
    white-space: nowrap;
}
.sideCart .shipment .icon {
    bottom: -3rem;
    font-size: 2.5rem;
    height: 2.5rem;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: -2.5rem;
}
.sideCart .btns {
    display: block;
    font-size: 0.000001px;
    padding: 0 0.5rem 0.5rem;
    position: relative;
    text-align: justify;
}
.sideCart .btns:after {
    content: '';
    display: inline-block;
    width: 100%;
}
.sideCart .button {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 2.4rem;
    padding: 1.2rem 1rem;
    width: 100%;
}
.sideCart .button span {
}
.sideCart .button .icon {
}
.sideCart .box {
    margin: 0;
}

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

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

/*
 * search
 */
.search {
    display: block;
    height: 8.5rem;
    margin: 0 auto;
    padding: 0;
    position: static;
    top: auto;
    width: 100%;
}
.search form {
    position: static;
}
.search .switch-input {
    display: none;
    position: absolute;
}
.search .switch-content {
    background: #fff;
    left: 0;
    margin: 0;
    min-height: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    z-index: 90;
}
.search .switch-input:checked + .switch-content {
    min-height: 100%;
}
.search .mw {
    margin: 0 auto;
    max-width: 84%;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 81.2rem;

    /*width: 56rem;*/
}
.search .advanced {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
.search .switch-input:checked + .switch-content .advanced,
.search.focus .switch-input:checked + .switch-content .advanced,
.search.hover .switch-input:checked + .switch-content .advanced {
    max-height: 50rem;
}
.search .switch-label {
    color: #36b3b3;
    cursor: pointer;
    display: block;
    font-size: 1.5rem;
    margin: -1rem 0 auto;
    opacity: 1;
    overflow: hidden;
    padding: 0;
    text-align: center;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    white-space: nowrap;
}
.search .switch-label:hover {
    color: #1c1c1c;
}
.search .switch-input:checked + .switch-content .switch-label,
.search.focus .switch-input:checked + .switch-content .switch-label,
.search.hover .switch-input:checked + .switch-content .switch-label {
    margin: 1rem 0;
}
.search .switch-label span {
    display: inline-block;
}
.search .switch-input:checked + .switch-content .switch-label span {
    display: none;
}
.search .switch-label span + span {
    display: none;
}
.search .switch-input:checked + .switch-content .switch-label span + span {
    display: inline-block;
}
.search .switch-label span + span:after {
    border: 2px solid #36b3b3;
    border-bottom: 0;
    border-right: 0;
    content: '';
    display: inline-block;
    height: 0.8rem;
    margin: 0.2rem 0 0 0.8rem;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    vertical-align: middle;
    width: 0.8rem;
}
.search .switch-label:hover span + span:after {
    border-color: #1c1c1c;
}
.search .advanced .lbl {
    padding: 0 0 0 11rem;
}
.search .lbl-name {
    color: #989898;
    font-size: 1.6rem;
    font-weight: 300;
    margin: -1rem 1rem;
}
.search .advanced .lbl-name {
    background: none;
    color: #1c1c1c;
    display: inline-block;
    float: none;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 0.5rem 0 -11rem;
    padding: 0;
    text-align: right;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    vertical-align: middle;
    width: 10rem;
}
.search .input {
    border-color: #ebebeb;
    color: #1c1c1c;
    font-size: 1.6rem;
    height: 4.3rem;
    line-height: 4.1rem;
    padding: 0 1.4rem;
}
.search .select {
    background-image: url('../images/select.png');
    background-size: auto 100%;
    padding: 0 4rem 0 1rem;
}
.search button {
    bottom: auto;
    font-size: 1.6rem;
    line-height: 2.1rem;
    min-width: 0;
    padding: 1rem 0.5rem;
    position: absolute;
    right: 0;
    top: 1rem;
    width: 13.8rem;
}

@media only screen and (max-width: 1600px) {
    .search .mw {
        width: 70rem;

        /*width: 56rem;*/
    }
}

@media only screen and (max-width: 1400px) {
    .search .mw {
        width: 66rem;

        /*width: 56rem;*/
    }
}

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

/*
 * Top Shipping
 */
.top .shipping {
    position: absolute;
    right: 32rem;
    top: 7rem;
    z-index: 99;
}
.top .shipping-a {
    color: #9d9d9d;
    display: block;
    font-size: 1.6rem;
    line-height: 1.2;
    padding: 7.2rem 0 0;
    position: relative;
    text-align: center;
}
.top .shipping-a:hover {
    color: #9d9d9d;
    text-decoration: none;
}
.top .shipping .icon {
    color: #36b3b3;
    font-size: 5rem;
    left: 0;
    line-height: 6.9rem;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 6.9rem;
}

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

/*
 * Nav
 */
.nav {
    background: #fff;
    border: 0;
    clear: both;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    position: static;
    text-align: center;
}
.nav .container {
    position: static;
}

.nav .n-1 {
    background: #1c1c1c;
    left: 0;
    position: absolute;
    right: 0;
    top: -15rem;
}
.nav .n-1 ul {
    display: table;
    margin: 0;
}
.nav .n-1 li {
    display: table-cell;
    padding: 0;
    position: relative;
    vertical-align: middle;
}
.nav .n-1 a {
    color: #fff;
    display: block;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.6rem;
    padding: 0.5rem 3rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}
.nav .n-1 a:hover {
    background: #36b3b3;
    color: #fff;
}

.nav .n-2 {
    position: relative;
    text-align: center;
}
.nav .n-2 ul {
    display: block;
    font-size: 0.00001px;
    margin: 0;
    padding: 0 0 1rem;
}
.nav .n-2 li {
    display: inline-block;
    padding: 0;
    position: static;
}
.nav .n-2 a {
    color: #707070;
    display: block;
    font-size: 1.6rem;
    line-height: 2.1rem;
    margin: 0 auto 0 -1px;
    padding: 0.7rem 2rem;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}
.nav .n-2 .new {
    color: #36b3b3;
    font-weight: bold;
}
.nav .n-2 li:hover > a,
.nav .n-2 a:hover {
    background: #36b3b3;
    color: #fff;
    text-decoration: none;
    z-index: 3;
}
.nav .n-2 a:before {
    border: 1px solid #5e5e5e;
    border-bottom: 0;
    border-top: 0;
    bottom: 0;
    content: '';
    height: 1.7rem;
    left: 0;
    margin: auto 0;
    position: absolute;
    right: 0;
    top: 0;
}
.nav .n-2 li:hover > a:before,
.nav .n-2 a:hover:before {
    display: none;
}
.nav .n-2 .nodes > a:after {
    border-left: 0.8rem solid rgba(255, 255, 255, 0);
    border-right: 0.8rem solid rgba(255, 255, 255, 0);
    border-top: 0.8rem solid #36b3b3;
    content: '';
    height: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 100%;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    visibility: hidden;
    width: 0;
}
.nav .n-2 .nodes:hover > a:after,
.nav .n-2 .nodes > a:hover:after {
    opacity: 1;
    -webkit-transition: all 0.25s ease 0.5s;
    -moz-transition: all 0.25s ease 0.5s;
    -o-transition: all 0.25s ease 0.5s;
    transition: all 0.25s ease 0.5s;
    visibility: visible;
}
.nav .n-2 li > div {
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    left: 0;
    max-height: calc(100vh - 32rem);
    opacity: 0;
    overflow: auto;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: left;
    top: auto;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    visibility: hidden;
    z-index: 1;
}
.nav .n-2 li:hover > div,
.nav .n-2 li > div:hover {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0.25s ease 0.5s;
    -moz-transition: all 0.25s ease 0.5s;
    -o-transition: all 0.25s ease 0.5s;
    transition: all 0.25s ease 0.5s;
    visibility: visible;
}
.nav .n-2 li .container {
    padding-bottom: 3rem;
    padding-top: 3rem;
}
.nav .n-2 ul ul {
    display: block;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.000001px;
    margin: 0 -1rem;
}
.nav .n-2 ul ul li {
    display: inline-block;
    padding: 1rem;
    position: relative;
    vertical-align: top;
    width: 16.66%;
}
.nav .n-2 ul ul a {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    min-height: 5.4rem;
    padding: 0.6rem 0;
    text-transform: uppercase;
    white-space: normal;
}
.nav .n-2 ul ul li:hover > a,
.nav .n-2 ul ul a:hover {
    background: none;
    color: #36b3b3;
}
.nav .n-2 ul ul a:before {
    display: none;
}
.nav .n-2 ul ul ul {
    display: block;
    margin: 0;
    padding: 0.6rem 0;
}
.nav .n-2 ul ul ul li {
    display: block;
    padding: 0.6rem 0 0.6rem 1.8rem;
    width: auto;
}
.nav .n-2 ul ul ul li:before {
    background: #36b3b3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 0.9rem;
    left: 0;
    position: absolute;
    top: 1.2rem;
    width: 0.9rem;
}
.nav .n-2 ul ul ul a {
    color: #585858;
    font-size: 1.6rem;
    font-weight: normal;
    min-height: 0;
    padding: 0;
    text-transform: none;
}
.nav .n-2 ul ul ul a:hover {
    opacity: 1;
}

/*Menu na mobilke*/
.c-hamburger {
    display: none;
}
.c-hamburger-bg {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .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: 1rem;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        /*right: 0;*/
        text-indent: -9999px;
        top: 4rem;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        width: 50px;
        will-change: transform;
        z-index: 1010;
    }
    .c-hamburger.active {
        -webkit-transform: translateX(250px);
        -moz-transform: translateX(250px);
        -ms-transform: translateX(250px);
        -o-transform: translateX(250px);
        transform: translateX(250px);
    }
    .c-hamburger.active + .c-hamburger-bg {
        opacity: 1;
        visibility: visible;
    }

    .c-hamburger:focus {
        outline: none;
    }
    .c-hamburger span {
        background: #fff;
        display: block;
        height: 4px;
        left: 9px;
        right: 9px;
        top: 23px;
        position: absolute;
        will-change: background;
    }
    .c-hamburger span::before,
    .c-hamburger span::after {
        background: #fff;
        content: '';
        display: block;
        height: 4px;
        left: 0;
        position: absolute;
        width: 100%;
        will-change: transform;
    }

    .c-hamburger span::before {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .c-hamburger span::after {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    .c-hamburger--htx {
        background: #36b3b3;
        -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: #1c1c1c;
    }
    .c-hamburger--htx.active span {
        background: rgba(255, 255, 255, 0);
        /*opacity: 0;*/
    }
    .c-hamburger--htx.active span::before {
        /*top: 0;*/
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .c-hamburger--htx.active span::after {
        /*bottom: 0;*/
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .c-hamburger--htx.active span::before,
    .c-hamburger--htx.active span::after {
        /*transition-delay: 0s, 0.5s;*/
    }
    .nav {
        background: #fff;
        bottom: 0;
        -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        clear: both;
        display: block;
        float: none;
        height: 100%;
        left: 0;
        margin-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%;
    }
}

/*
 * Main
 */
.main {
    clear: both;
    display: block;
    min-height: 50rem;
    min-height: calc(80vh);
    overflow: hidden;
    /*padding: 31.5rem 0 3rem;*/
    padding: 0 0 3rem;
    position: relative;
    width: 100%;
}

/* tabz */
.tabz {
    padding: 2rem 0;
}
.tabznav {
    padding: 1rem 0;
    text-align: center;
    white-space: nowrap;
}
.tabznav a {
    color: #9d9d9d;
    display: inline-block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 3.5rem;
    margin: 0.5rem 1rem;
    padding: 0;
    position: relative;
    text-decoration: none;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    vertical-align: middle;
    white-space: normal;
}
.tabznav a:hover,
.tabznav a.active {
    color: #36b3b3;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.tabzcon {
    margin: 0 -3.5rem;
    overflow: visible;
    padding: 2rem 3.5rem;
    position: relative;
}
.tabzcon > div {
    left: 3.5rem;
    opacity: 0;
    position: absolute;
    right: 3.5rem;
    top: 2rem;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    visibility: hidden;
}
.tabzcon > div.active {
    left: 0;
    opacity: 1;
    position: relative;
    right: 0;
    top: 0;
    visibility: visible;
}

/* section */
.section {
    padding: 2rem 0;
    position: relative;
}
.tabzcon .section {
    padding: 0;
}

.section .path {
    color: rgba(157, 157, 157, 0.69);
    font-size: 1.1rem;
    padding: 1rem 0 0.5rem;
    text-align: center;
    text-transform: uppercase;
}
.section .path a,
.section .path span,
.section .path h1 {
    color: inherit;
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    padding: 0;
    position: relative;
    text-decoration: none;
}
.section .path a:hover {
    color: #1c1c1c;
}

.section .header {
    color: #36b3b3;
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    padding: 0 0 2rem;
    text-align: center;
    text-transform: none;
}
.section .path + .header {
    color: #1c1c1c;
    padding: 0;
    text-transform: uppercase;
}

.con {
}
.con-exp {
    max-height: 15rem;
    overflow: hidden;
    padding: 0 0 5rem;
    position: relative;
}
.con-exp.exp {
    max-height: none;
    padding: 0;
}
.con-exp:before {
    background: rgb(255, 255, 255);
    background: -webkit-linear-gradient(
        270deg,
        rgb(255, 255, 255) 66%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -moz-linear-gradient(
        270deg,
        rgb(255, 255, 255) 66%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -ms-linear-gradient(
        270deg,
        rgb(255, 255, 255) 66%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -o-linear-gradient(
        270deg,
        rgb(255, 255, 255) 66%,
        rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
        0deg,
        rgb(255, 255, 255) 66%,
        rgba(255, 255, 255, 0) 100%
    );
    bottom: 0;
    content: '';
    height: 5rem;
    left: 0;
    position: absolute;
    right: 0;
}
.con-exp.exp:before {
    display: none;
}
.con-exp:after {
    bottom: 0.5rem;
    color: #36b3b3;
    content: 'czytaj dalej...';
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
}
.con-exp.exp:after {
    display: none;
}

.con-exp--big {
    max-height: 205rem;
    position: relative;
}
.con-exp.exp {
    max-height: none;
    padding: 0;
}
.con-exp--big:before {
    height: 15rem;
    z-index: 10;
}
.con-exp--big:after {
    display: none;
}

/* sections... */
.section.hap {
    padding: 2rem 0;
}
.hap + .section {
    padding-top: 0;
}

/* banners */
.section.banners {
    padding: 0 0 1rem;
}

/* why */
.section.why {
    padding: 1rem 0;
}
.why .records {
    padding: 1rem 0;
    text-align: center;
}
.why .item {
    padding: 1rem 3rem;
    position: relative;
    width: auto;
}
.why .item + .item:before {
    border-left: 1px solid #9d9d9d;
    bottom: 0;
    content: '';
    height: 4.4rem;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
}
.why .a {
    color: #9d9d9d;
    display: block;
    padding: 0 0 0 7.5rem;
    position: relative;
    text-align: left;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}
.why .a.active {
    color: #36b3b3;
}
.why .icon {
    bottom: 0;
    left: 0;
    margin: auto 0;
    position: absolute;
    text-align: right;
    top: 0;
    width: 5.7rem;
}
.why .icon-truck {
    font-size: 5rem;
    height: 5rem;
}
.why .icon-star {
    font-size: 4.2rem;
    height: 4.2rem;
}
.why .icon-payment {
    font-size: 5.7rem;
    height: 5.7rem;
}
.why .name {
    font-size: 2.1rem;
    font-weight: bold;
}
.why .desc {
    color: #9d9d9d;
    font-size: 1.5rem;
}

/* categories */
.section.categories {
    padding: 1rem 0;
}
.categories .records {
    text-align: center;
}
.categories .item {
    position: relative;
}
.categories .item a {
    display: block;
    padding: 0 0 2rem;
    position: relative;
    text-decoration: none;
}
.categories .item .img {
    border: 2px dashed #d9d9d9;
    display: block;
    /*padding: 63% 0 0;*/
    padding: 100% 0 0;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.categories .item a:hover .img {
    border-color: #36b3b3;
}
.categories .item .img img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.categories .item .grp {
    bottom: 0;
    font-size: 0.00001px;
    left: 0;
    position: absolute;
    right: 0;
}
.categories .item .name {
    background: #f5f5f5;
    color: #1c1c1c;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 2rem;
    margin: 0;
    max-width: 100%;
    min-width: 66%;
    padding: 1rem 1rem;
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.categories .item a:hover .name {
    background: #36b3b3;
    color: #fff;
}

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

/* 
 * shiptime
 */
.shiptime {
    display: block;
    font-weight: normal;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}
.shiptime-icon {
    display: inline-block;
    font-size: 3rem;
    margin: 0 0.5rem 0 0;
    position: relative;
    vertical-align: middle;
}
.shiptime-div {
    display: inline-block;
    font-size: 1.8rem;
    position: relative;
    vertical-align: middle;
    white-space: normal;
}

.cart-ships .shiptime {
    color: #888;
}
.cart-ships .shiptime-icon {
    color: #36b3b3;
    font-size: 2rem;
}
.cart-ships .shiptime-div {
    font-size: 1.6rem;
}

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

/*
* products
*/
.section.products {
}

.products .options {
    max-width: 100%;
    padding: 0 0 1.5rem;
}
.products .options > div {
    margin: 0;
    padding: 0.3rem 0;
}
.products .options label {
    margin: 0;
}
.products .options span {
    color: #1c1c1c;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 3.7rem;
    margin: 0 1.5rem 0 0;
    text-transform: uppercase;
    vertical-align: middle;
}
.products .options select {
    border-color: #dadada;
    color: #9d9d9d;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 2.5rem;
    min-width: 29.8rem;
    padding: 0.5rem 2.2rem 0.5rem 0.9rem;
    width: auto;
}
.products .options div + div select {
    min-width: 9.9rem;
}

.products .records {
    overflow: visible;
    padding: 0;
    position: relative;
}
.products .ibs {
    padding: 1rem 0;
}
.products .item {
    display: block;
    height: 52.1rem;
    margin: auto;
    max-width: 100%;
    padding: 0;
    position: relative;
    text-align: center;
    width: 39.8rem;
}
.products .item .a {
    background: #fff;
    border: 1px solid rgba(94, 94, 94, 0.2);
    display: block;
    left: 0;
    min-height: 100%;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
    z-index: 3;
}
.products .item .a:hover {
    border-color: rgba(255, 255, 255, 0);
    -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);
    z-index: 5;
}
.products .item .img {
    background: #fff;
    display: block;
    overflow: hidden;
    padding: 100% 0 0;
    position: relative;
}
.products .item img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.products .item .grp {
    background: #fff;
    background: -webkit-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgb(255, 255, 255) 10%
    );
    background: -moz-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgb(255, 255, 255) 10%
    );
    background: -ms-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgb(255, 255, 255) 10%
    );
    background: -o-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgb(255, 255, 255) 10%
    );
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgb(255, 255, 255) 10%
    );
    bottom: 0;
    display: block;
    font-size: 0.00001px;
    left: 0;
    padding: 1rem 1rem 1rem;
    position: absolute;
    right: 0;
    text-align: left;
}
.products .item .name {
    color: #1c1c1c;
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 2.2rem;
    max-height: 4.4rem;
    overflow: hidden;
    padding: 0;
    text-align: center;
    text-transform: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.products .item .a:hover .name {
    max-height: 11rem;
}
.products .item .price {
    display: block;
    margin: 0 17rem 0 0; /*0 19rem 0 0*/
    padding: 1rem 0;
    text-align: center;
}
.products .item .price .old {
    font-size: 1.8rem;
}
.products .item .price .new {
    font-size: 3rem;
    padding: 1.4rem 0 0.8rem;
}
.products .item .price .old + .new {
    padding: 0;
}
.products .item .button {
    bottom: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 2.2rem;
    padding: 1.3rem 0.5rem;
    position: absolute;
    right: 2rem;
    width: 16rem; /*18rem*/
    z-index: 7;
}
.products .item .button-disabled {
    font-size: 1.6rem;
}

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

/*
* Product
*/
.section.product {
    padding: 3rem 0 1rem;
}
.product .imgs {
    margin: 0 auto 0 0;
    padding: 0 0 2rem;
    text-align: center;
}
.product .imgs a {
    display: inline-block;
    overflow: hidden;
}
.product .imgs img {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    will-change: transform;
}
.product .imgs a:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}
.product .grp {
    margin: 0 0 0 auto;
    padding: 0;
    position: relative;
}
.product .path {
    padding: 0.5rem 0 1.5rem;
    text-align: left;
}
.product .brand-logo {
    display: block;
    float: right;
    margin: 0 0 0 auto;
    max-width: 25rem;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.product .brand-logo img {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    will-change: transform;
}
.product .brand-logo:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.35);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}
.product .name {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    margin: 0;
    padding: 0 2rem 2rem 0;
    text-align: left;
    text-transform: uppercase;
}
.product form {
    clear: both;
    padding: 0;
    position: relative;
}
.product .attrs {
    position: relative;
    text-align: center;
}
.product .attrs .table {
    display: table;
    width: 100%;
}
.product .name + .attrs .table {
    border-top: 1px dashed rgba(112, 112, 112, 0.18);
}
.product .attrs .tr {
    display: table-row;
    position: relative;
}
.product .attrs .td {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.18);
    display: table-cell;
    font-size: 1.8rem;
    padding: 2rem 3rem;
    position: relative;
    text-align: right;
    vertical-align: middle;
    width: 42%;
}
.product .attrs .td + .td {
    text-align: left;
    width: auto;
}
.product .price {
    text-align: left;
}
.product .price .old {
    font-size: 1.8rem;
}
.product .price .new {
    font-size: 3rem;
}
.product .stock {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0.5rem 0 0.5rem 4rem;
    position: relative;
}
.product .stock-true {
    color: #62d147;
}
.product .stock-false {
    color: #cc0000;
}
.product .stock .icon {
    bottom: -50%;
    font-size: 3.2rem;
    height: 3.2rem;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: -50%;
}
.product .stock + .hint {
    display: block;
    padding: 1rem 0 0;
}
.product .gender {
    display: block;
}
.product .gender .icon {
    display: inline-block;
    font-size: 3.1rem;
    margin: 0 3rem 0 0;
    vertical-align: middle;
}
.product .gender .icon-girl {
    color: #ff9ca7;
}
.product .gender .icon-boy {
    color: #4ac8e6;
}
.product .quantity {
    width: 9rem;
}
.product .quantity a {
    color: #bce6e9;
    width: 3rem;
}
.product .quantity .icon {
    font-size: 1.8rem;
    height: 1.8rem;
}
.product .quantity input {
    padding: 0.5rem 1rem;
}
.product .gift {
    display: inline-block;
    padding: 2rem 0;
    text-align: left;
}
.product .gift > .lbl-aside {
    color: #ff9ca7;
    font-size: 1.6rem;
    font-weight: bold;
    margin: -2.5rem auto auto 4rem;
    padding: 0 0 0 4.5rem;
    position: relative;
}
.product .gift img {
    bottom: -25%;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: -75%;
    width: 3rem;
}
.product .giftfor {
    display: none;
    padding: 0.8rem 0 0;
}
.product .giftfor .lbl > div {
    padding: 0.8rem 0;
}
.product .giftfor .lbl-aside {
    padding: 0 0 0 2.5rem;
    position: relative;
}
.product .giftfor .icon {
    bottom: -2rem;
    font-size: 2.5rem;
    height: 2.5rem;
    left: 0;
    line-height: 1;
    margin: auto 0;
    position: absolute;
    top: -2rem;
}
.product .giftfor .icon-girl {
    color: #ff9ca7;
}
.product .giftfor .icon-boy {
    color: #4ac8e6;
}

.product .actions {
    padding: 1rem 0;
    text-align: center;
}
.product .actions .button {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 3.3rem;
    letter-spacing: normal;
    padding: 1.5rem 1.5rem;
    text-transform: none;
    width: 40rem;
}
.product .actions .button > span {
    display: inline-block;
    padding: 0 0 0 5rem;
    position: relative;
}
.product .actions .button .icon {
    bottom: -40%;
    font-size: 3.7rem;
    height: 3.7rem;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: -60%;
}
.product .notify {
    padding: 2rem 0;
    text-align: center;
}
.product .notify .txt-1 {
    font-weight: bold;
    padding: 0 0 1rem;
}
.product .notify form {
    padding: 0 14rem 0 0;
    position: relative;
}
.product .notify .button {
    position: absolute;
    right: 0;
    top: 0;
}

.product .tabz {
    padding: 2rem 0 1rem;
}
.product .tabznav {
    -webkit-box-shadow: inset 0px -15px 10px -10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px -15px 10px -10px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px -15px 10px -10px rgba(0, 0, 0, 0.1);
    padding: 0;
    text-align: left;
}
.product .tabznav a {
    border: 1px solid #eee;
    border-bottom: 0;
    border-top: 0;
    color: #9d9d9d;
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0 0.5rem 0 0;
    padding: 2.9rem 1rem 2.2rem;
    position: relative;
    text-align: center;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    width: 40rem;
}
.product .tabznav a:hover,
.product .tabznav a.active {
    background: #fff;
    border-color: #36b3b3;
    color: #36b3b3;
}
.product .tabznav a:before {
    border-top: 0.7rem solid #5e5e5e;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.product .tabznav a:hover:before,
.product .tabznav a.active:before {
    border-color: #36b3b3;
}
.product .tabzcon {
    padding-bottom: 1rem;
}

.product .grades {
}

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

.grades .avg {
}
.grades .records {
    padding: 1rem 4rem 1rem 0;
}
.grades .item {
    border-top: 1px dashed rgba(112, 112, 112, 0.18);
    display: block;
    overflow: hidden;
    padding: 2rem 0;
    text-align: left;
}
.grades .item .datetime {
    color: rgba(157, 157, 157, 0.69);
    float: right;
    font-size: 1.4rem;
}
.grades .item .name {
    padding: 0 0 0.5rem;
}
.grades .item .desc {
    padding: 0.5rem 0 0;
}
.grades .btns {
    padding: 1rem 0;
}

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

/* products / product / cart adds */
.adds {
    position: relative;
}
.adds .add {
    background: #ccc;
    clear: left;
    color: #fff;
    float: left;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.9rem;
    padding: 0.1rem 1rem 0.4rem;
    position: relative;
}
.adds .pro {
    background: #36b3b3;
}
.adds .new {
    background: #91a3de;
}
.adds .shi {
    background: #ff9ca7;
}
.adds .add:before {
    border: 1.2rem solid #ccc;
    border-right-color: rgba(255, 255, 255, 0) !important;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: -1.2rem;
    top: 0;
    z-index: -1;
}
.adds .pro:before {
    border-color: #36b3b3;
}
.adds .new:before {
    border-color: #91a3de;
}
.adds .shi:before {
    border-color: #ff9ca7;
}

.products .adds {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateX(100%) rotate(90deg);
    -moz-transform: translateX(100%) rotate(90deg);
    -ms-transform: translateX(100%) rotate(90deg);
    -o-transform: translateX(100%) rotate(90deg);
    transform: translateX(100%) rotate(90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
}
.products .adds .add {
    margin: 1.2rem 0 0;
}

/*
.product .adds {
    left: 0;
    position: absolute;
    top: 3rem;
}
*/
.product .adds .add {
    font-size: 2.1rem;
    line-height: 3.1rem;
    padding: 0.1rem 2rem 0.4rem;
}
.product .adds .add:before {
    border-width: 1.8rem;
    right: -1.8rem;
}

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

/* brands */
.section.brands {
}
.brands .records {
    text-align: center;
}
.brands .records .ib {
    vertical-align: top;
    width: 12.5%;
}
.brands .ib a {
    display: block;
    text-decoration: none;
}
.brands .ib .img {
    padding: 66% 0 0;
    position: relative;
}
.brands .ib img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.brands .ib .name {
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0;
    padding: 0.5rem 0;
}

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

/*
* Deals
*/
.section--deals {
    position: relative;
}
.deals {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0;
    overflow: visible;
}
.deals-item {
    position: relative;
}
.deals-a {
    color: #000;
    display: block;
    height: 100%;
    padding: 5.7rem 0 7.5rem;
    position: relative;
    text-align: center;
    z-index: 3;
}
.deals-a:hover {
    text-decoration: none;
}
.deals-a::before {
    border: 2px solid #36b3b3;
    bottom: 7.5rem;
    -webkit-box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.5);
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 5.7rem;
    z-index: -1;
}
.deals .img {
    height: auto;
    width: auto;
}
.deals-image {
    display: inline-block;
    padding: 68% 0 0;
    position: relative;
    vertical-align: middle;
    width: 55%;
}
.deals-img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 96%;
    max-width: 96%;
    position: absolute;
    right: 0;
    top: 0;
}
.deals-text {
    color: #000;
    display: inline-block;
    padding: 0 1rem;
    margin-top: 10rem;
    vertical-align: middle;
    width: 44%;
}
.deals-name {
    display: block;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0.5em 0;
    padding: 0;
}
.deals-price,
.deals .deals-price {
    margin: 0.5em 0;
    display: block;
    line-height: 1.1;
}
.deals-price .price-old,
.deals .deals-price .price-old {
    color: #5e5e5e;
    display: block;
    font-size: 3rem;
    font-weight: 300;
    opacity: 1;
}
.deals-price .price-new,
.deals .deals-price .price-new {
    display: block;
    font-size: 4.6rem;
}
.deals-button {
    font-size: 1.9rem;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 2.9rem;
    margin: 0.5em auto;
    max-width: 100%;
    width: 22rem;
}
.deals-timer {
    display: block;
    font-size: 1.5rem;
    margin: 3em auto 2em;
}
.deals-time {
    background: #f6f6f6;
    border: 1px solid rgba(225, 225, 225, 0);
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 3rem;
    margin: 0.5em auto;
    padding: 0.5rem;
    max-width: 22rem;
}
.deals-marker {
    left: 55%;
    margin: 0 auto;
    max-width: 45%;
    position: absolute;
    right: 0;
    top: 0;
}
.deals-sub {
    color: #36b3b3;
    bottom: 0;
    font-size: 4rem;
    font-weight: bold;
    left: 0;
    position: absolute;
    right: 0;
}

.deals-item:nth-child(n + 2) {
    filter: grayscale(1);
    width: 25%;
}
.deals-item:nth-child(n + 2) .deals-a {
    color: #8c8c8c;
}
.deals-item:nth-child(n + 2) .deals-a::before {
    border-color: #e1e1e1;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.deals-item:nth-child(n + 2) .deals-image {
    display: block;
    padding: 100% 0 0;
    width: auto;
}
.deals-item:nth-child(n + 2) .deals-text {
    color: #8c8c8c;
    display: block;
    margin-bottom: 12rem;
    margin-top: 0;
    width: auto;
}
.deals-item:nth-child(n + 2) .deals-price,
.deals-item:nth-child(n + 2) .deals .deals-price,
.deals-item:nth-child(n + 2) .deals-price .price-old,
.deals-item:nth-child(n + 2) .deals .deals-price .price-old,
.deals-item:nth-child(n + 2) .deals-price .price-new,
.deals-item:nth-child(n + 2) .deals .deals-price .price-new,
.deals-item:nth-child(n + 2) .deals-button,
.deals-item:nth-child(n + 2) .deals-timer,
.deals-item:nth-child(n + 2) .deals-time {
    display: none;
}
.deals-item:nth-child(n + 2) .deals-marker {
    bottom: 9rem;
    left: 0;
    max-width: 100%;
    top: auto;
    width: 17rem;
}
.deals-item:nth-child(n + 2) .deals-sub {
    color: #707070;
    bottom: 0.5rem;
    font-size: 3rem;
}

@media only screen and (max-width: 1000px) {
    .deals-item,
    .deals .deals-item {
        width: 100%;
    }

    .deals-item:nth-child(n + 2),
    .deals .deals-item:nth-child(n + 2) {
        width: 50%;
    }
}

@media only screen and (max-width: 480px) {
    .deals {
        display: block;
    }
    .deals-image {
        display: block;
        margin-top: 10rem;
        padding: 100% 0 0;
        width: 100%;
    }
    .deals-text {
        display: block;
        margin-top: 0;
        width: 100%;
    }
    .deals-marker {
        left: 0;
        max-width: 100%;
    }

    .deals-item:nth-child(n + 2),
    .deals .deals-item:nth-child(n + 2) {
        width: 100%;
    }
    .deals-item:nth-child(n + 2) .deals-image {
        margin-top: 0;
    }
}

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

/*
* Deal
*/
.deal {
    animation: dealRing 2s linear 3;
    position: absolute;
    right: 45rem;
    top: -1rem;
    transform-origin: 50% 0;
    width: 11rem;
    z-index: 99;
}
@keyframes dealRing {
    70% {
        transform: rotate(0);
    }
    75% {
        transform: rotate(-15deg);
    }
    80% {
        transform: rotate(0);
    }
    85% {
        transform: rotate(15deg);
    }
    90% {
        transform: rotate(0);
    }
    95% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(0);
    }
}

@media only screen and (max-width: 1200px) {
    .deal {
        right: 33rem;
        top: 0;
        width: 10rem;
    }
}

@media only screen and (max-width: 800px) {
    .deal {
        right: 22rem;
    }
}

@media only screen and (max-width: 600px) {
    .deal {
        right: 7rem;
        width: 7rem;
    }
}

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

/* articles */
.section.articles {
}
.articles .ibs {
    padding: 1rem 0;
}
.articles .item {
    position: relative;
}
.articles .item a {
    display: block;
    padding: 0;
    position: relative;
    text-decoration: none;
}
.articles .item .img {
    display: block;
    padding: 50.65% 0 0;
    position: relative;
}
.articles .item .img img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.articles .item .grp {
    display: block;
    line-height: 1.8;
    padding: 1rem 0;
    text-align: left;
}
.articles .item .datetime {
    color: rgba(157, 157, 157, 0.69);
    display: block;
    font-size: 1.4rem;
    padding: 0.5rem 0;
}
.articles .item .name {
    color: #1c1c1c;
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: inherit;
    margin: 0;
    padding: 0.5rem 0;
    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;
}
.articles .item a:hover .name {
    color: #36b3b3;
}
.articles .item .desc {
    color: #1c1c1c;
    display: block;
    font-size: 1.6rem;
    padding: 0.5rem 0;
}

/* article */
.article .datetime {
    color: rgba(157, 157, 157, 0.69);
    display: block;
    font-size: 1.4rem;
    padding: 0.5rem 0;
    text-align: center;
}
.article .img {
    text-align: center;
}

/* section.catalog */
.section.cataglog {
    overflow: hidden;
}
.catalog .booklet-catalog {
    padding: 0 5rem;
    position: relative;
    z-index: 3;
}
.catalog .booklet-inner {
    position: relative;
}
.catalog .b-menu {
    height: 5rem;
    padding: 0 0 1rem;
    z-index: auto;
}
.catalog .b-selector {
    color: #4d4d4d;
    font: inherit;
    font-size: 1.4rem;
    height: 4rem;
}
.catalog .b-selector .b-current {
    background: #eee;
    height: auto;
    line-height: 2rem;
    min-width: 2rem;
    padding: 1rem 2rem;
}
.catalog .b-selector ul {
    background: #eee;
    max-height: calc(50vh);
    overflow: auto;
    padding: 0 0 1rem;
    top: 4rem;
    width: 24rem;
}
.catalog .b-selector a {
    color: #4d4d4d;
    height: auto;
    padding: 0.5rem 1rem;
    text-decoration: none;
}
.catalog .b-selector a:hover {
    color: #000;
}
.catalog .b-selector a .b-text {
    float: none;
}
.catalog .booklet {
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}
.catalog .booklet .b-page-cover,
.catalog .booklet .b-wrap-left,
.catalog .booklet .b-wrap-right {
    background: #fff;
}
.catalog .booklet .b-arrow {
    width: 4rem;
}
.catalog .booklet .b-arrow-next {
    right: -5rem;
}
.catalog .booklet .b-arrow-prev {
    left: -5rem;
}
.catalog .booklet .b-arrow div {
    background: none;
    border-bottom: 4rem solid rgba(255, 255, 255, 0);
    border-top: 4rem solid rgba(255, 255, 255, 0);
    height: 8rem;
    margin-top: -4rem;
    opacity: 0.5 !important;
    top: 50%;
    width: 4rem;
}
.catalog .booklet .b-arrow-next div {
    border-left: 4rem solid #ddd;
}
.catalog .booklet .b-arrow-prev div {
    border-right: 4rem solid #ddd;
}
.catalog .booklet .b-arrow:hover div {
    opacity: 1 !important;
}

/* mix */
.section.mix {
}
.mix .ibs {
    display: flex;
    flex-wrap: wrap;
}
.mix > .ibs > .ib {
}
.mix .ib-01 {
    width: 33%;
} /* 33.9% */
.mix .ib-02 {
    width: 50%;
} /* 50.7% */
.mix .ib-03 {
    width: 17%;
} /* 15.4% */

.age {
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    height: 100%;
    padding: 2rem;
    position: relative;
    text-align: center;
}
.age:before {
    border: 2px dashed #5e5e5e;
    bottom: 1.4rem;
    content: '';
    left: 1.1rem;
    position: absolute;
    right: 1.1rem;
    top: 1.4rem;
}
.age .wrp {
    margin: 0 auto;
    padding: 0 12rem 0.5rem 12rem;
    position: relative;
}
.age .txt-1 {
    color: #36b3b3;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    padding: 0.5rem 0 1rem;
}
.age .txt-2 {
    color: #1c1c1c;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}
.age .icon-star {
    color: #ffaf26;
    font-size: 2.7rem;
}
.age .img-1 {
    left: 4rem;
    position: absolute;
    top: 4.5rem;
    width: 6.1rem;
}
.age .img-2 {
    position: absolute;
    right: 0;
    top: 2rem;
    width: 11.8rem;
}
.age .ibs {
    margin: 0;
    padding: 0.5rem 0;
}
.age .ib {
    padding: 0.5rem;
    width: 25%;
}
.age a {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #1c1c1c;
    display: block;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1;
    padding: 100% 0 0;
    position: relative;
    text-decoration: none;
}
.age .a-1 {
    background: #e2e2e2;
}
.age .a-2 {
    background: #dde4ed;
}
.age .a-3 {
    background: #9bd8db;
}
.age .a-4 {
    background: #91a3de;
}
.age a:before {
    background: rgba(255, 255, 255, 0.25);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 0;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
}
.age a:hover:before {
    height: 100%;
    width: 100%;
}
.age a b {
    left: 1rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.newsletter {
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    height: 100%;
    padding: 2.5rem;
    position: relative;
    text-align: center;
}
.newsletter:before {
    border: 2px dashed #5e5e5e;
    bottom: 1.4rem;
    content: '';
    left: 1.1rem;
    position: absolute;
    right: 1.1rem;
    top: 1.4rem;
}
.newsletter .wrp {
    margin: 0 auto;
    max-width: 47rem;
    padding: 3.5rem 14.5rem 3rem;
    position: relative;
}
.newsletter .txt-1 {
    color: #36b3b3;
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
}
.newsletter .txt-2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto;
    max-width: 51rem;
    padding: 0;
}
.newsletter .img-1 {
    left: 0;
    position: absolute;
    top: 0;
    width: 14.3rem;
}
.newsletter .img-2 {
    right: 0;
    position: absolute;
    top: 0;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    width: 14.3rem;
}
.newsletter form {
    margin: 0 auto;
    max-width: 71rem;
    position: relative;
}
.newsletter .lbl-name {
    background: #f2f2f2;
    color: rgba(28, 28, 28, 0.51);
    font-size: 1.8rem;
    font-weight: normal;
}
.newsletter .input {
    background: #f2f2f2;
    border-color: #f2f2f2;
    box-shadow: none;
}
.newsletter .checkbox {
    background: #fff;
    height: 1.5rem;
    width: 1.5rem;
}
.newsletter .lbl-aside {
    font-size: 1.4rem;
    margin: -2.1rem auto auto 3rem;
}
.newsletter .button {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: normal;
    position: absolute;
    right: 0;
    top: 1rem;
}

.family {
    background: #dde4ed;
    height: 100%;
    padding: 0 0 3rem;
    position: relative;
}
.family img {
}
.family .button {
    bottom: 1.4rem;
    font-size: 1.8rem;
    font-weight: bold;
    left: 1.1rem;
    letter-spacing: normal;
    position: absolute;
    right: 1.1rem;
}

.contactIco {
    padding-left: 4rem;
    position: relative;
}
.contactIco .icon {
    font-size: 3rem;
    left: 0;
    position: absolute;
    top: 1.1rem;
}

.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: 1.5rem;
    font-weight: bold;
    padding: 0 1px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    vertical-align: middle;
}

.fluidTabs .fluidTabs-tabs li.active {
    /*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: #fff;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.35);
    clear: both;
    color: #9d9d9d;
    padding: 0;
    position: relative;
    text-align: center;
}

.footer .f-1 {
    line-height: 1.6;
    padding: 5rem 0;
}
.f-1 .ib {
    font-size: 1.5rem;
    padding: 2rem 1rem;
    text-align: left;
}
.f-1 h4 {
    color: #1c1c1c;
    font-size: 2.1rem;
    font-weight: bold;
    margin: 0;
    padding: 0 0 1rem;
    text-transform: uppercase;
}
.f-1 ul {
    padding: 0;
}
.f-1 ul li {
    padding: 0;
}
.f-1 a {
    color: #9d9d9d;
    text-decoration: none;
}
.f-1 a:hover {
    color: #1c1c1c;
}
.f-1 .logo {
    width: 21.8rem;
}
.f-1 .imgs {
    font-size: 0.000001px;
    margin: -1rem;
    text-align: right;
}
.f-1 .imgs img {
    display: inline-block;
    margin: 1rem;
    vertical-align: middle;
}
.f-1 .img-1 {
    width: 9.4rem;
}
.f-1 .img-2 {
    width: 9.4rem;
}
.f-1 .img-3 {
    width: 15.2rem;
}
.f-1 .img-4 {
    width: 24rem;
}
.f-1 .img-5 {
    width: 12rem;
}
.f-1 .xsocials {
    margin: 1.5rem -0.2rem;
}
.f-1 .xsocials-a,
.f-1 .xsocials-a:hover {
    color: #fff;
}

.footer .f-2 {
    color: rgba(157, 157, 157, 0.53);
    font-size: 0.000001px;
    line-height: 1.2;
    padding: 1.5rem;
    position: relative;
    text-align: center;
}
.f-2:before {
    border-top: 1px solid #707070;
    content: '';
    left: 0;
    margin: 0 auto;
    opacity: 0.19;
    position: absolute;
    right: 0;
    top: 0;
    width: 10.8rem;
}
.f-2 div {
    display: inline-block;
    font-size: 1.5rem;
    min-width: 27rem;
    padding: 0.5rem 1rem;
    position: relative;
}
.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 {
    background: #f4f4f4;
    border-color: #f4f4f4;
    color: #1c1c1c;
    float: right;
    margin: 0 0 1rem 1rem;
    min-width: 26rem;
    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: #5e5e5e; /* #5E5E5E / #707070 ? */
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    position: relative;
}
.price .old {
    color: #707070;
    display: block;
    font-size: 1.5rem;
    font-weight: normal;
    opacity: 0.49;
    text-decoration: line-through;
}
.price .new {
    font-size: 2.5rem;
}
.price .old + .new,
.price u {
    color: #36b3b3;
    text-decoration: none;
}

/* quantity */
.quantity {
    display: block;
    max-width: 100%;
    position: relative;
    width: 14rem;
}
.quantity a {
    bottom: 0;
    color: #5e5e5e;
    left: 0;
    position: absolute;
    right: auto;
    top: 0;
    width: 5rem;
}
.quantity input + a {
    left: auto;
    right: 0;
}
.quantity a:hover {
    color: #36b3b3 !important;
}
.quantity .icon {
    bottom: 0;
    font-size: 3rem;
    height: 3rem;
    left: 0;
    margin: auto 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
}
.quantity input {
    padding: 1.4rem 2rem;
    width: 100%;
}

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

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

.container {
    max-width: 180rem;
    padding: 0 10rem;
}
.infoline {
    left: 10rem;
}
.user {
    right: 22rem;
}
.shipfree {
    right: 15.5rem;
    -webkit-transform: translateX(33%);
    -moz-transform: translateX(33%);
    -ms-transform: translateX(33%);
    -o-transform: translateX(33%);
    transform: translateX(33%);
}
.top .cart {
    right: 10rem;
}

.guardian {
    background: no-repeat center;
    background-size: contain;
    height: 14rem;
    margin-top: -7rem;
    position: fixed;
    top: 15rem;
    -webkit-transition: all 0.5s cubic-bezier(0.3, 1.5, 0.6, 1), z-index 0.25s ease;
    -moz-transition: all 0.5s cubic-bezier(0.3, 1.5, 0.6, 1), z-index 0.25s ease;
    -o-transition: all 0.5s cubic-bezier(0.3, 1.5, 0.6, 1), z-index 0.25s ease;
    transition: all 0.5s cubic-bezier(0.3, 1.5, 0.6, 1), z-index 0.25s ease;
    width: 14rem;
    z-index: 25;
}
.guardian-l {
    background-image: url('../images/dog.svg');
    left: 50%;
    margin-left: -94rem;
}
.guardian-r {
    background-image: url('../images/cat.svg');
    margin-right: -94rem;
    right: 50%;
}

.guardian.mfp {
    height: 21rem;
    margin-top: -10.5rem;
    top: 50%;
    width: 21rem;
    z-index: 25000;
}
.guardian-l.mfp {
    left: 50%;
    margin-left: -74rem;
}
.guardian-r.mfp {
    margin-right: -74rem;
    right: 50%;
}

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

/*
.social {
    left: 0;
    margin-top: -15rem;
    position: fixed;
    top: 50%;
    z-index: 25;
}
.social a {
    background: no-repeat left center;
    background-size: 100% auto;
    display: block;
    height: 13.8rem;
    position: relative;
    width: 2.4rem;
    z-index: 0;
}
.social a:hover {
    z-index: 1;
}
.social a + a {
    margin-top: -2.4rem;
}
.social .facebook {
    background-image: url('../images/facebook.png');
}
.social .instagram {
    background-image: url('../images/instagram.png');
}
.social .youtube {
    background-image: url('../images/youtube.png');
}

@media only screen and (max-width: 1200px) {
    .social {
        margin: 0;
        top: 22rem;
    }
    .social a {
        height: 2.4rem;
        margin: 0.5rem 0 !important;
    }
}

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

/*
 * Socials
*/
.xsocials {
    font-size: 0.000001px;
    font-weight: normal;
    margin: -0.2rem;
}
.xsocials-a {
    background: #888;
    color: #fff;
    display: inline-block;
    font-size: 3rem;
    line-height: 1;
    height: 4rem;
    margin: 0.5rem;
    overflow: hidden;
    padding: 0.5rem 0 0;
    text-align: center;
    text-shadow: 1px 1px 1px #474747, 2px 2px 1px #474747, 3px 3px 1px #474747,
        4px 4px 1px #474747, 5px 5px 1px #474747, 6px 6px 1px #474747, 7px 7px 1px #474747,
        8px 8px 1px #474747, 8px 8px 1px #474747, 9px 9px 1px #474747,
        10px 10px 1px #474747, 11px 11px 1px #474747, 12px 12px 1px #474747,
        13px 13px 1px #474747, 14px 14px 1px #474747, 15px 15px 1px #474747,
        16px 16px 1px #474747, 17px 17px 1px #474747;
    vertical-align: middle;
    width: 4rem;
    will-change: transform;
}
.xsocials-a:hover {
    background: #aaa;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
}
.xsocials-a--facebook:hover {
    background: #3b5998;
}
.xsocials-a--google:hover {
    background: #de5246;
}
.xsocials-a--instagram:hover {
    background: #3f729b;
}
.xsocials-a--linkedin:hover {
    background: #0e76a8;
}
.xsocials-a--pinterest:hover {
    background: #c8232c;
}
.xsocials-a--skype:hover {
    background: #00aff0;
}
.xsocials-a--twitter:hover {
    background: #00acee;
}
.xsocials-a--youtube:hover {
    background: #c4302b;
}

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

.scroll .top .t-2 .inner {
    -webkit-animation: toptop 0.5s 1;
    -moz-animation: toptop 0.5s 1;
    -o-animation: toptop 0.5s 1;
    animation: toptop 0.5s 1;
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 3;
}
@-webkit-keyframes toptop {
    0% {
        opacity: 0;
        top: -5rem;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}
@-moz-keyframes toptop {
    0% {
        opacity: 0;
        top: -5rem;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}
@-o-keyframes toptop {
    0% {
        opacity: 0;
        top: -5rem;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}
@keyframes toptop {
    0% {
        opacity: 0;
        top: -5rem;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}
.scroll .infoline {
    top: 1.25rem;
}
.scroll .user {
    top: 0;
}
.scroll .shipfree {
    display: none;
}
.scroll .top .cart {
    top: 0;
}
.scroll .top .shipping {
    top: 0;
}

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

@media only screen and (max-width: 1800px) {
    .guardian-l {
        left: 0;
        margin-left: -2rem;
    }
    .guardian-r {
        margin-right: -2rem;
        right: 0;
    }
}

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

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

    .age a {
        font-size: 1.6rem;
    }
}

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

@media only screen and (max-width: 1400px) {
    html {
        font-size: 8px;
    }
}

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

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

    .top .t-1 {
        min-height: 0;
    }
    .top .t-2 .inner {
        padding: 4rem 0 1rem;
    }
    .top .t-2 .inner:before {
        background: #eee;
        content: '';
        height: 2.5rem;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

    .infoline,
    .scroll .infoline {
        left: 1rem;
        padding: 0 0 0 3rem;
        top: -4rem;
    }
    .infoline .icon {
        font-size: 1.6rem;
        line-height: 2.4rem;
        width: 2.4rem;
    }
    .infoline .txt,
    .infoline .phone,
    .infoline .mail {
        display: inline-block;
        margin: 0 1rem 0 0;
        vertical-align: middle;
    }
    .infoline .phone a {
        font-size: 2.4rem;
    }

    .user {
        right: 13rem;
        top: 0;
    }

    .shipfree {
        display: none;
    }

    .top .cart {
        right: 1rem;
        top: 0;
    }
    .top .cart .top-dropdown-adv {
        display: none;
    }

    .top .shipping {
        right: 22.5rem;
        top: 0;
    }

    .nav .n-1 {
        left: auto;
        position: relative;
        right: auto;
        top: auto;
    }
    .nav .n-1 ul {
        display: block;
        padding: 0.5rem 0;
    }
    .nav .n-1 li {
        display: block;
    }

    .nav .n-2 {
    }
    .nav .n-2 ul {
        padding: 0.5rem 0;
    }
    .nav .n-2 li {
        display: block;
    }
    .nav .n-2 a:before {
        display: none;
    }
    .nav .n-2 .ul-1 > li.active > a,
    .nav .n-2 .ul-1 > li > a.active {
        background: #36b3b3;
        color: #fff;
        text-decoration: none;
        z-index: 3;
    }
    .nav .n-2 .ul-1 > .nodes > a:after {
        opacity: 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;
    }
    .nav .n-2 .ul-1 > .nodes.active > a:after {
        opacity: 1;
        visibility: visible;
    }
    .nav .n-2 .ul-1 > li > div {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        max-height: none;
        opacity: 0;
        pointer-events: none;
        -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;
    }
    .nav .n-2 .ul-1 > li.active > div {
        opacity: 1;
        pointer-events: auto;
        position: relative;
        visibility: visible;
    }
    .nav .n-2 li .container {
        padding: 1rem 0;
    }
    .nav .n-2 ul ul {
        display: block;
        flex-wrap: initial;
        margin: 0;
    }
    .nav .n-2 ul ul li {
        display: block;
        padding: 0;
        width: auto;
    }
    .nav .n-2 ul ul a {
        font-size: 1.6rem;
        min-height: 0;
    }
    .nav .n-2 ul ul li.active > a,
    .nav .n-2 ul ul a.active {
        color: #36b3b3;
    }
    .nav .n-2 ul ul ul {
        left: 0;
        opacity: 0;
        pointer-events: none;
        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;
        visibility: hidden;
    }
    .nav .n-2 ul ul li.active ul {
        opacity: 1;
        pointer-events: auto;
        position: relative;
        visibility: visible;
    }

    .swiper-button-prev {
        left: -4.5rem;
    }
    .swiper-button-next {
        right: -4.5rem;
    }

    .slider-banners .swiper-button-prev {
        left: -4.5rem;
    }
    .slider-banners .swiper-button-next {
        right: -4.5rem;
    }

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

    .guardian {
        height: 7rem;
        margin-top: -3.5rem;
        top: 17rem;
        width: 7rem;
    }
    .guardian-l {
        margin-left: -2rem;
    }
    .guardian-r {
        margin-right: -2rem;
    }

    .guardian.mfp {
        height: 10rem;
        margin-top: -5rem;
        width: 10rem;
    }
    .guardian-l.mfp {
        left: 50%;
        margin-left: -65rem;
    }
    .guardian-r.mfp {
        margin-right: -65rem;
        right: 50%;
    }
}

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

@media only screen and (max-width: 1000px) {
    .why .item {
        padding: 1rem 1rem;
    }
    .why .item:before,
    .why .item + .item:before {
        display: none;
    }
    .why .a {
        padding: 0 0 0 5rem;
    }
    .why .icon {
        width: 4rem;
    }
    .why .icon-truck {
        font-size: 3.4rem;
    }
    .why .icon-star {
        font-size: 2.8rem;
    }
    .why .icon-payment {
        font-size: 3.8rem;
    }

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

    .brands .records .ib {
        width: 16.66%;
    }

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

    .mix .ibs {
        display: block;
        text-align: center;
    }
    .mix .ib-01 {
        width: auto;
    }
    .mix .ib-02 {
        width: auto;
    }
    .mix .ib-03 {
        width: auto;
    }

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

    .guardian.mfp {
        height: 6rem;
        margin-top: -3rem;
        width: 6rem;
    }
    .guardian-l.mfp {
        left: 0;
        margin-left: -1.5rem;
    }
    .guardian-r.mfp {
        margin-right: -1.5rem;
        right: 0;
    }
}

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

@media only screen and (max-width: 800px) {
    .top .shipping {
        display: none;
    }

    .content,
    .leftBlock,
    .rightBlock {
        display: block;
        min-width: auto;
        padding: 0;
        width: auto;
    }

    .tabznav a {
        font-size: 2.5rem;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

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

    .product > .ibs > .ib {
        width: 100%;
    }
    .product .tabznav a {
        font-size: 1.4rem;
        width: auto;
    }
    .product .grades > .ibs > .ib {
        width: 100%;
    }
}

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

@media only screen and (max-width: 600px) {
    .pagination > div {
        display: block;
    }
    .pagination > div > div {
        display: block;
    }
    .pagination > div > div:first-child {
        text-align: left;
    }
    .pagination > div > div:last-child {
        text-align: right;
    }

    .container {
        padding: 0 1rem;
    }

    .infoline .txt {
        display: none;
    }

    .user,
    .scroll .user {
        right: 0.5rem;
        top: -1rem;
        min-width: 6rem;
    }
    .user .top-dropdown-a {
        font-size: 0;
        padding: 4rem 0 0;
    }
    .user .top-dropdown-a .icon {
        font-size: 4rem;
        line-height: 4rem;
        width: 4rem;
    }

    .top .cart,
    .scroll .top .cart {
        right: 0.5rem;
        top: 3.5rem;
        width: 6rem;
    }
    .top .cart .top-dropdown-a {
        padding: 5.2rem 0 0;
    }
    .top .cart .top-dropdown-a .icon {
        font-size: 3.4rem;
        line-height: 5rem;
        width: 5rem;
    }
    .top .cart .top-dropdown-a .quantity {
        font-size: 1.2rem;
        top: 2.5rem;
    }
    .top .cart .top-dropdown-a .amount {
        font-size: 1.3rem;
    }
    .top .cart .top-dropdown-a .empty {
        display: none;
    }
    .top .cart .top-dropdown-adv::before {
        right: 3rem;
    }
    .top .cart .top-dropdown-adv::after {
        right: 2.9rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .section.banners {
        margin: 0 -1rem;
    }

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

    .products .options {
        text-align: right;
    }
    .products .options > div {
        float: none;
    }

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

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

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

    .tabznav a {
        font-size: 1.6rem;
    }

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

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

    .age a {
        font-size: 1.4rem;
    }

    .newsletter .wrp {
        padding: 3.5rem 8rem 3rem;
    }
    .newsletter .img-1 {
        width: 8rem;
    }
    .newsletter .img-2 {
        width: 8rem;
    }
    .newsletter form {
        padding: 0 0 5rem;
    }
    .newsletter .button {
        bottom: 0;
        top: auto;
    }

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

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

/*
 * Cart rabat
 */

/*.cart-rabat {
    background: #F2F2F2;
    padding: 25px 20px 5px;
}
    .cart-rabat-name {
        color: #282828;
        font-size: 3rem;
        font-weight: 300;
        margin: 2px 5px 3px 5px;
        text-transform: none;     
    }
*/
.cart-rabat {
    overflow: hidden;
}
.cart-rabat .left {
    float: left;
}
.cart-rabat .right {
    float: right;
}
.cart-rabat .wrp {
    max-width: 72.6rem;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.cart-rabat .outer {
    background: #eee;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    margin: 0 0 0 19rem;
    min-height: 18.2rem;
    padding: 2rem;
    position: relative;
}
.cart-rabat .inner {
    position: relative;
}
.cart-rabat .inner img {
    left: -2rem;
    position: absolute;
    top: -2.5rem;
    -webkit-transform: rotate(-22deg);
    -moz-transform: rotate(-22deg);
    -ms-transform: rotate(-22deg);
    -o-transform: rotate(-22deg);
    transform: rotate(-22deg);
    width: 11rem;
}
.cart-rabat .cart-rabat-name {
    color: #36b3b3;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    padding: 0 0 0 8.5rem;
    text-transform: none;
}
.cart-rabat .relative {
    margin: 0 0 0.5rem 0;
    min-height: 4.3rem;
    padding: 0 14rem 0 0;
    position: relative;
    text-align: right;
}
.cart-rabat .button {
    position: absolute;
    right: 0;
    top: 0;
}
.cart-rabat .code {
    color: #1c1c1c;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 2.9rem;
    padding: 0.6rem 1.5rem 0 4rem;
    position: relative;
}
.cart-rabat .code .icon {
    color: #9ac316;
    font-size: 3rem;
    left: 0;
    position: absolute;
    top: 0.7rem;
}
.cart-rabat .code + .button {
    background: #b6b6b6;
    border-color: #b6b6b6;
}
.cart-rabat .code + .button:hover {
    background: #1c1c1c;
    border-color: #1c1c1c;
}
.cart-rabat .txt-1 {
    color: #707070;
    font-size: 1.3rem;
    padding: 0.5rem 0 1rem 8.8rem;
}
.cart-rabat .txt-2 {
    font-size: 1.3rem;
    line-height: 1.2;
    padding: 1rem 0;
    text-align: right;
}
.cart-rabat .txt-3 {
    color: #707070;
    font-size: 1.3rem;
    line-height: 1.2;
    padding: 1rem 0;
}
.cart-rabat .txt-4 {
    color: #ff9ca7;
    font-size: 3rem;
    font-weight: bold;
    text-align: right;
}
.cart-rabat .txt-5 {
    color: #ff9ca7;
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
}
.cart-rabat .kdr {
    left: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 0;
    width: 17rem;
}
.cart-rabat .kdr img {
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
}

.box--rabat {
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    clear: both;
    display: inline-block;
    font-weight: 300;
    padding: 15px 20px;
}
.box--rabat strong {
    font-size: 2.2rem;
    font-weight: 300;
}
.box--rabat .button--smallCircle {
    bottom: 7px;
    margin-bottom: -10px;
    margin-left: -30px;
    padding: 1px 10px 2px;
    position: relative;
    right: -65px;
}

/*
 * Login box
 */
.loginBox {
    margin: 0 auto 20px;
    max-width: 500px;
    padding: 0 20px 5px;
}
.loginBox .label-help {
    display: inline-block;
    font-size: 1.4rem;
    margin-top: 15px;
}
.loginBox-header {
    margin-top: 0;
    text-align: center;
}
.loginBox .box {
    border: none;
    margin: 0 -2rem 1rem;
    padding: 2rem;
}
.loginBox .formActions {
    background: none;
    padding: 0;
}
.loginBox,
.loginBox .box,
.loginBox .lbl-name {
    background: #fafafa;
}

.main .register {
    text-align: center;
}
.main .register h3 {
    padding-bottom: 2rem;
}

/*
 * Cart Steps
 */
.stepsWrapper {
    display: table;
    margin: 1rem 0;
    overflow: hidden;
    padding: 0 0 3rem;
    table-layout: fixed;
    width: 100%;
}
.step {
    background: none !important;
    color: rgba(157, 157, 157, 0.69);
    display: table-cell;
    list-style: inside;
    padding: 0 2rem !important;
    position: relative;
}
.step--active {
    color: #9d9d9d;
    opacity: 1;
}
.step:before,
.step:after {
    border: 1px solid #5e5e5e;
    border-bottom: 0;
    border-left: 0;
    content: '';
    height: 1.2rem;
    margin: -1rem 0 0 -0.5rem;
    margin-top: -1rem;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 1.2rem;
}
.step:before {
    left: -0.3rem;
}
.step:after {
    left: 0.3rem;
}
.step:first-child:before,
.step:first-child:after {
    display: none;
}
.step div {
    margin: 0 auto;
    max-width: 35rem;
    padding: 0 0 0 5rem;
    position: relative;
}
.step .icon {
    left: 0;
    line-height: 3.4rem;
    position: absolute;
    text-align: right;
    top: 0;
    width: 3.8rem;
}
.step .icon-cart {
    font-size: 3.4rem;
}
.step .icon-package {
    font-size: 3rem;
}
.step .icon-transit {
    font-size: 3.8rem;
}
.step--active .icon {
    color: #36b3b3;
}
.step b {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}
.step--active b {
    color: #36b3b3;
}
.step .hint {
    color: inherit;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
    max-width: 25rem;
    padding: 0.5rem 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-cell {
    border-bottom: 1px solid #eee;
    display: table-cell;
    padding: 1.5rem 0.5rem;
    text-align: left;
    vertical-align: middle;
}

.cart-header {
    bottom: 100%;
    color: #707070;
    display: none;
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 1rem;
    position: absolute;
    text-align: left;
    text-transform: uppercase;
}
.cart-row:first-child .cart-header {
    display: block;
}

.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-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 {
    color: #1c1c1c;
    font-size: 2.1rem;
    font-weight: bold;
    display: inline-block;
    text-align: left;
    text-transform: none;
    vertical-align: middle;
    width: 70%;
}
.cart-product-name a {
    color: inherit;
}
.cart-product-name .box {
    font-size: 1.2rem;
    line-height: 1.1em;
    margin: 15px 0 0 0;
    padding: 10px 15px;
}

.cart-product-attrs {
    color: #1c1c1c;
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0;
    overflow: hidden;
}
.cart-product-attrs li {
    background: none;
    display: block;
    margin: 0;
    padding: 0;
}
.cart-product-delivery {
    max-width: 90%;
}

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

.cart-price .adds {
    overflow: hidden;
    padding: 0 2rem 0.5rem 0;
    position: relative;
}

.cart-delete {
    text-align: center;
    width: 5%;
}
.cart-x {
    background: rgba(94, 94, 94, 0.06);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #cc232c;
    display: block;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 3.5rem;
    text-align: center;
    text-decoration: none;
    width: 3.5rem;
}
.cart-x:hover {
    background: #1c1c1c;
    color: #fff;
    text-decoration: none;
}

.cart-price-main {
    clear: both;
    color: #707070;
    font-size: 2.5rem;
    margin: 0 0 1rem;
    text-align: right;
}
.cart-price-main .price {
    font-size: 4rem;
}
.cart-price-main .price .old {
    display: inline-block;
    font-size: 2rem;
    vertical-align: middle;
}
.cart-price-main .price .new {
    display: inline-block;
    font-size: 4rem;
    margin: 0 0 0 1rem;
    vertical-align: middle;
}

.cart-ships {
    padding-top: 3rem;
}
.cart-ships h2 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.tab {
    display: block;
    width: 100%;
}
.tabspan {
    background: #f7f7f7;
    background-clip: padding-box;
    border: 1px solid #36b3b3;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #1c1c1c;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.6rem;
    margin: 0.5rem 0;
    padding: 0.7rem 1.3rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    vertical-align: middle;
}
.tab .active {
    background: #36b3b3;
    color: #fff;
}

.cart .formActions .button {
    margin: 0.3rem 0.5rem;
}

@media only screen and (max-width: 600px) {
    .fill {
        margin-left: 0;
        width: 100%;
    }
    .fill + .fill {
        margin-top: 20px;
    }

    .step {
        display: none;
    }
    .step--active {
        display: block;
    }
    .step:before,
    .step:after {
        display: none;
    }

    .button-basketUpdate {
        float: none;
        margin: 0 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%;
    }*/
    .cart-rabat .wrp {
        padding: 0 0 2rem;
    }
    .cart-rabat .outer {
        margin: 0 0 1rem;
    }
    .cart-rabat .kdr {
        float: left;
        margin: 0 2rem 0 0;
        position: relative;
    }

    .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-cell {
        border: 0;
        display: inline-block;
        vertical-align: top;
    }

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

    .cart-product {
        border-top: 1px solid #eee;
        text-align: center;
        width: 100%;
    }
    .cart-product .cart-header {
        display: none !important;
    }
    .cart-product-image,
    .cart-product-name {
        width: auto;
    }

    .cart-qty,
    .cart-price,
    .cart-delete {
        padding-top: 10px;
        text-align: center;
        width: 32%;
    }
    .cart-delete {
        width: 100%;
    }
    .cart-delete .cart-header {
        display: none !important;
    }
    .cart-delete .cart-x {
        margin: 0 0 0 auto;
    }
}

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

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

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

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

.icon-bag:before {
    content: '\e90a';
}
.icon-boy:before {
    content: '\e901';
}
.icon-gift .path1:before {
    content: '\e904';
    color: rgb(255, 161, 173);
}
.icon-gift .path2:before {
    content: '\e905';
    margin-left: -1em;
    color: rgb(0, 161, 187);
}
.icon-girl:before {
    content: '\e906';
}
.icon-transit:before {
    content: '\e907';
}
.icon-package:before {
    content: '\e908';
}
.icon-cart:before {
    content: '\e900';
}
.icon-twitter:before {
    content: '\e918';
}
.icon-youtube:before {
    content: '\e91b';
}
.icon-skype:before {
    content: '\e91c';
}
.icon-google:before {
    content: '\e919';
}
.icon-linkedin:before {
    content: '\e91d';
}
.icon-pinterest:before {
    content: '\e91a';
}
.icon-facebook:before {
    content: '\e91e';
}
.icon-right-right:before {
    content: '\e902';
}
.icon-truck:before {
    content: '\e60a';
}
.icon-remove:before {
    content: '\e60b';
}
.icon-enable:before {
    content: '\e60c';
}
.icon-home:before {
    content: '\e610';
}
.icon-info:before {
    content: '\e611';
}
.icon-mail:before {
    content: '\e616';
}
.icon-minus:before {
    content: '\e619';
}
.icon-payment:before {
    content: '\e61a';
}
.icon-phone:before {
    content: '\e61b';
}
.icon-star:before {
    content: '\e620';
}
.icon-plus:before {
    content: '\e622';
}
.icon-left:before {
    content: '\e909';
}
.icon-right:before {
    content: '\e903';
}
.icon-user:before {
    content: '\e90c';
}
.icon-time:before {
    content: '\e608';
}
.icon-myspace:before {
    content: '\e911';
}
.icon-instagram:before {
    content: '\e90f';
}

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

.mfp-bg {
    background: #fff;
    opacity: 0.75;
    z-index: 21042;
}
.mfp-wrap {
    z-index: 21043;
}
.mfp-close {
    opacity: 0.33;
    right: -2rem;
    top: -2rem;
}
.whiteBackground .mfp-content {
    margin: 2.5rem 0;
    max-width: 120rem;
    min-height: 0;
    padding: 2rem;
}

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

.dataprocessing {
    display: block;
    line-height: 1.2;
    text-align: left;
}
/*.dataprocessing .dp-law { display: block; margin: 0 0 5px; opacity: 0.8; }
.dataprocessing .dp-lbl { display: inline-block; }
.dataprocessing .dp-inf { display: block; }
.dataprocessing .dp-dsc { display: block; }*/

.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 .type-filter {
    display: none !important;
}
.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;
}

.dpd,
.gls,
.pp,
.pwr {
    padding-left: 30px;
}

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

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

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

.obj360 {
    background: #fff;
    display: block;
    height: 100%;
    width: 100%;
}
.obj360image {
    position: relative;
}
.obj360image::after {
    background: rgba(255, 255, 255, 0.66) url('../images/obj360.svg') no-repeat center;
    background-size: 66%;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0.66;
    position: absolute;
    right: 0;
    top: 0;
}

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

/*
 * Search Hints
 */
.searchhints {
    background: #fff;
    -webkit-box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
    color: #000;
    display: flex;
    flex-direction: column;
    left: 0;
    line-height: 1.4;
    margin: 0 auto;
    max-height: 45rem;
    max-height: calc(100vh - 20.5rem);
    max-width: 84%;
    opacity: 0;
    overflow: auto;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    text-align: left;
    top: 5.3rem;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    visibility: hidden;
    white-space: normal;
    width: 81.2rem;
    z-index: 666;
}
.-searchhints .searchhints {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.searchhints::-webkit-scrollbar {
    display: none;
}

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

.searchhints-all {
}

.searchhints-categories {
    position: relative;
}

.searchhints-header {
    background: #eee;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    padding: 1rem;
}

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

.searchhints-a {
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.searchhints-products .searchhints-a {
    align-items: center;
    display: block;
    display: flex;
    flex-wrap: nowrap;
    padding: 1rem;
}
.searchhints-all .searchhints-a {
    background: rgba(255, 255, 255, 0.8);
    display: block;
    margin: -4rem 0 auto;
    padding: 1rem;
    position: relative;
    text-align: center;
    z-index: 3;
}
.searchhints-categories .searchhints-a {
    display: inline-block;
    padding: 0.5rem;
    vertical-align: middle;
}
.searchhints-a:hover {
    color: #000;
}
.searchhints-products .searchhints-a:hover {
    color: #000;
    background: #f8f8f8;
    text-decoration: none;
}
.searchhints-a::before,
.searchhints-a::after {
    display: none;
}

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

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

.searchhints-name {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 0.5rem;
}

.searchhints-price {
    font-size: 1.6rem;
    font-weight: bold;
}

.searchhints-txt {
    color: #888;
    font-size: 1.2rem;
    font-weight: normal;
}

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

@media only screen and (max-width: 1600px) {
    .searchhints {
        width: 70rem;
    }
}

@media only screen and (max-width: 1400px) {
    .searchhints {
        width: 66rem;
    }
}

@media only screen and (max-width: 1200px) {
    .-searchhints {
        height: 100%;
        overflow: hidden;
        width: 100%;
    }
    .-searchhints .top {
        z-index: 99999999999;
    }
    .-searchhints .search {
        background: rgba(255, 255, 255, 0.9);
        bottom: 0;
        height: auto;
        left: 0;
        margin: 0;
        max-width: none;
        padding: 1rem 1rem 1rem 6rem;
        position: fixed;
        right: 0;
        top: 0;
        width: auto;
        z-index: 99999999999;
    }
    .-searchhints .search::before {
        background: #1c1c1c;
        color: #fff;
        content: 'x';
        cursor: pointer;
        font-size: 3rem;
        height: 4.2rem;
        left: 1rem;
        line-height: 3.6rem;
        position: absolute;
        text-align: center;
        top: 1rem;
        width: 4rem;
        z-index: 111;
    }
    .-searchhints .search .switch-content {
        background: none;
        left: 6rem;
        right: 1rem;
    }
    .-searchhints .search .mw {
        max-width: none;
        width: auto;
    }
    .-searchhints .search .advanced,
    .-searchhints .search .switch-label {
        display: none;
    }
    .searchhints {
        max-height: calc(100% - 6.5rem);
        max-width: 100%;
        top: 6.5rem;
    }
}

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

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

.scroll .searchhints {
    display: none;
}

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

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