.table-order-history table {
    width: 100%;
}

.results-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.table-order-history {
    margin-bottom: 20px;
}

.result-range {
    font-size: 0.9em;
    color: #6c757d;
    padding: 10px 0;
}


.pagination-links {
    margin-top: 20px;
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.overlay a.editclick {
    float: right;
    color: #fff;
    padding: 15px;
    background: rgba(221, 189, 120, .8);
    /*	position: absolute;
	right: 100%;*/
}
.overlay .editaction,
.overlay .save {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.overlay .save {
    transform: translate(-50%, -50%) scale(1.2);
}
.overlay .editaction .cancel {
    display: block;
    margin-top: 8%;
    transform: scale(80%);
}
.overlay .editaction .delete {
    display: block;
    margin-top: 30%;
    transform: scale(60%);
}
.overlay.active {
    background-color: rgba(0, 0, 0, 0.5);
}

.pull-up-50 {
    margin-top: -50px;
}
#e-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}
.select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
.select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important;
}
/*  Vendor  */

body {
    min-width: 320px;
    background: #fff;
    font-family: "Replica", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #080808;
}
a {
    color: inherit;
    text-decoration: underline;
}
a:hover,
a[href^='tel'] {
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.75em;
}
h1 {
    font-size: 32px;
}
@media (max-width: 767px) {
    h1 {
        font-size: 29px;
    }
}
h2 {
    font-size: 28px;
}
@media (max-width: 767px) {
    h2 {
        font-size: 20px;
    }
}
h3 {
    font-size: 24px;
}
@media (max-width: 767px) {
    h3 {
        font-size: 18px;
    }
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
@media (max-width: 767px) {
    h6 {
        font-size: 15px;
    }
}
p,
ul,
ol,
dl,
table,
blockquote {
    margin-bottom: 0.75em;
}
h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
    margin-bottom: 0;
}
ul,
ol {
    margin-left: 20px;
}
img {
    margin-bottom: 10px;
}
img[style='float: left;'] {
    max-width: 50%;
    height: auto;
    margin: 0 10px 10px 0;
}
img[style='float: right;'] {
    max-width: 50%;
    height: auto;
    margin: 0 0 10px 10px;
}
nav ul,
nav ol {
    margin-left: 0;
}
/* ------------------------------------------------------------ *\
  SCSS Functions
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Mixins
\* ------------------------------------------------------------ */
/* example usage*/

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
/*  Overflow hidden  */
.overflow-hidden {
    overflow: hidden;
}
/*  Flexend  */
.flexend {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}
/*  Flexend  */
.flexstart {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}
/*  Underline  */
.underline {
    text-decoration: underline;
}
/*  Mirrored-down  */
.mirrored-down {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
}
/*  Mirrored  */
.mirrored {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
/*  Clear  */
.clear:after {
    content: '';
    display: block;
    clear: both;
    visibility: hidden;
}
/*  Notext  */
.notext {
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
}
/*  Hidden  */
[hidden],
.hidden {
    display: none !important;
}
@media (max-width: 767px) {
    .invisible-xs {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        pointer-events: none;
    }
}
/*  Alignleft  */
.alignleft {
    float: left;
}
/*  Alignright  */
.alignright {
    float: right;
}
/*  Disabled  */
[disabled],
.disabled {
    cursor: default;
}
/*  Grid  */
.col {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.col--1of2 {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}
.col--1of3 {
    max-width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
}
/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-xs-flex,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-sm-flex,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-md-flex,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-lg-flex {
    display: none !important;
}
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
    .visible-xs-block {
        display: block !important;
    }
    .visible-xs-inline {
        display: inline !important;
    }
    .visible-xs-inline-block {
        display: inline-block !important;
    }
    .visible-xs-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .hidden-sm {
        display: none !important;
    }
    .visible-sm-block {
        display: block !important;
    }
    .visible-sm-inline {
        display: inline !important;
    }
    .visible-sm-inline-block {
        display: inline-block !important;
    }
    .visible-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}
@media (min-width: 1024px) and (max-width: 1200px) {
    .hidden-md {
        display: none !important;
    }
    .visible-md-block {
        display: block !important;
    }
    .visible-md-inline {
        display: inline !important;
    }
    .visible-md-inline-block {
        display: inline-block !important;
    }
    .visible-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}
@media (min-width: 1201px) {
    .hidden-lg {
        display: none !important;
    }
    .visible-lg-block {
        display: block !important;
    }
    .visible-lg-inline {
        display: inline !important;
    }
    .visible-lg-inline-block {
        display: inline-block !important;
    }
    .visible-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

/* Default */
/* ------------------------------------------------------------ *\
	Article - Default Styles
\* ------------------------------------------------------------ */
.article--default {
    margin-bottom: 100px;
}
.article--default .article__head {
    margin-bottom: 60px;
    text-align: center;
}
.article--default .article__title {
    margin-bottom: 10px;
}
.article--default .article__meta {
    margin-bottom: 45px;
}
.article--default .article__image {
    margin-bottom: 0;
}
.article--default .article__image img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
}
.article--default .article__body {
    margin-bottom: 80px;
    padding: 0 10%;
    color: #777;
}
.article--default .article__comments {
    padding: 60px 10% 0;
    border-top: 1px solid #eee;
}
.article--default .article__comments .comments {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}
.article--default .article__comments .comment {
    margin-bottom: 30px;
}
.article--default .article__comments .comment:last-child {
    margin-bottom: 0;
}
.article--default .article__comments .comment .comment__text {
    font-size: 16px;
    color: #777;
    margin-bottom: 5px;
}
/* ------------------------------------------------------------ *\
	Article Item - Default Styles
\* ------------------------------------------------------------ */
.article-item--default {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}
.article-item--default .article-item__image {
    display: block;
    height: 0;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}
.article-item--default .article-item__content {
    padding: 0 10%;
}
.article-item--default .article-item__head {
    margin-bottom: 15px;
}
.article-item--default .article-item__title {
    margin-bottom: 5px;
}
.article-item--default .article-item__title a {
    text-decoration: none;
}
.article-item--default .article-item__meta {
    color: #959595;
}
.article-item--default .article-item__body {
    margin-bottom: 30px;
    font-size: 16px;
    color: #777;
}
@media (max-width: 375px) {
    .article-item--default {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .article-item--default .article-item__content {
        padding: 0 10px;
    }
}
/* ------------------------------------------------------------ *\
	Blog
\* ------------------------------------------------------------ */
/* Cart */
.form--default.form--cart table {
    text-align: left;
}
.form--default.form--cart th,
.form--default.form--cart td {
    padding: 20px 10px;
}
.form--default.form--cart th:first-child,
.form--default.form--cart td:first-child {
    padding-left: 0;
}
.form--default.form--cart th:last-child,
.form--default.form--cart td:last-child {
    padding-right: 0;
}
.form--default.form--cart tbody tr {
    border-bottom: 1px solid #eee;
}
.form--default.form--cart th {
    font-weight: 400;
    color: #959595;
    border-bottom: 1px solid #eee;
}
.form--default.form--cart tfoot {
    text-align: right;
}
.form--default.form--cart tfoot td {
    padding: 15px 10px;
}
.form--default .table__product {
    text-decoration: none;
}
.form--default .table__image {
    width: 140px;
}
.form--default .table__quantity {
    width: 140px;
    text-align: center;
}
.form--default .table__remove {
    width: 22px;
}
.form--default .table__variant {
    padding-top: 5px;
}
.form--default .table__properties {
    padding-top: 10px;
    font-style: italic;
    opacity: 0.6;
}
.form--default .table__total-label {
    font-size: 16px;
    color: #959595;
}
.form--default .table__total-value {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.56;
}
.form--default .table__info {
    font-style: italic;
    color: #959595;
}
.form--default .table__info td {
    padding-bottom: 40px;
    text-align: right;
}
.form--default .table__price,
.form--default .table__total {
    width: 160px;
    font-weight: 700;
}
.form--default .table__total {
    text-align: right;
}
.form--default .field--quantity {
    max-width: 80px;
    text-align: center;
}
.form--default .js-quantity .field {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
.form--default .js-quantity .field::-webkit-outer-spin-button,
.form--default .js-quantity .field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form--default .js-quantity .field input[type='number'] {
    -moz-appearance: textfield;
}
.form--default .remove {
    font-size: 12px;
    text-decoration: none;
}
.form--default .remove span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #eee;
}
.form--default .remove span:before,
.form--default .remove span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    height: 1px;
    background: #080808;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.form--default .remove span:after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 1023px) {
    .form--default .table__price,
    .form--default .table__total {
        width: 140px;
    }
}
@media (max-width: 767px) {
    .form--default.form--cart table,
    .form--default.form--cart tbody {
        width: 100%;
        display: block;
    }
    .form--default.form--cart thead,
    .form--default.form--cart th {
        display: none;
    }
    .form--default.form--cart table,
    .form--default.form--cart tbody,
    .form--default.form--cart td,
    .form--default.form--cart tr,
    .form--default.form--cart tfoot {
        display: block;
        width: 100%;
        text-align: center;
    }
    .form--default.form--cart tr {
        position: relative;
        text-align: center;
    }
    .form--default.form--cart tr+tr {
        border-top: 1px solid #080808;
    }
    .form--default.form--cart tbody td {
        width: auto;
        padding: 0 0 5px;
    }
    .form--default.form--cart tbody td:before {
        content: attr(data-attr);
        display: block;
        margin-bottom: 5px;
        font-weight: 700;
    }
    .form--default.form--cart tfoot {
        border-top: 1px solid #080808;
    }
    .form--default.form--cart tfoot tr:first-child {
        padding: 10px 0;
    }
    .form--default.form--cart tfoot tr:first-child td {
        padding: 0;
        border: 0;
    }
}
.collection--default .collection__head {
    text-align: center;
    margin-bottom: 25px;
}
.collection--default .collection__head--image {
    min-height: 14%;
    padding: 3.5% 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
}
.collection--default .collection__sort {
    margin-bottom: 90px;
}
.collection--default .collection__sort label {
    color: #959595;
    margin-right: 30px;
}
.collection--default .collection__sort select {
    display: inline-block;
    max-width: 310px;
}
.collections--default .collection__head {
    text-align: center;
    margin-bottom: 80px;
}
.collections--default .collection__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 -2.5%;
    overflow: hidden;
}
.collections--default .collection__items>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28.33%;
    flex: 0 0 28.33%;
    max-width: 28.33%;
    margin: 0 2.5% 60px;
}
.collections--default .collection__item {
    text-align: center;
}
.collections--default .collection__item a {
    text-decoration: none;
}
.collections--default .collection__item .collection__item-link {
    position: relative;
    display: block;
    padding-top: 100%;
    margin-bottom: 15px;
}
.collections--default .collection__item .collection__item-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.form--small {
    max-width: 580px;
    margin: 0 auto 40px;
}
.form--small:last-child {
    margin-bottom: 0;
}
.form--default {
    /* Modifiers */
}
.form--default .form__title {
    text-align: center;
}
.form--default .form__head {
    margin-bottom: 80px;
}
.form--default .form__description {
    padding: 40px 10% 0;
    font-size: 16px;
    color: #777;
    text-align: center;
}
.form--default .form__actions {
    text-align: right;
}
.form--default .form__btn {
    margin: 5px;
}
.form--default .form__empty {
    text-align: center;
}
.form--default .form__empty h2 {
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
}
.form--default .form__empty p {
    color: #777;
    margin-bottom: 35px;
}
.form--default.form--login .form__btn {
    width: 100%;
    margin: 0 0 40px;
}
.form--default.form--login .form__label {
    display: none;
}
.form--default.form--guest {
    padding: 30px 0;
}
.form--default.form--recover .form__actions,
.form--default.form--register .form__actions {
    text-align: center;
}
.form--default.form--recover .form__btn,
.form--default.form--register .form__btn {
    width: 100%;
    margin: 0 0 40px;
}
.form--default.form--recover .form__label,
.form--default.form--register .form__label {
    display: none;
}
.form--default.form--recover {
    display: none;
}
.form--default.form--contact .form__head {
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}
.form--default.form--contact .form__description {
    text-align: left;
}
.form--default.form--contact .form__label {
    display: none;
}
.form--default.form--contact .form__body,
.form--default.form--contact .form__actions {
    padding: 0 10%;
}
@media (max-width: 767px) {
    .form--default .form__head {
        margin-bottom: 40px;
    }
    .form--default .form__description {
        padding-left: 0;
        padding-right: 0;
    }
    .form--default .form__actions {
        text-align: center;
    }
    .form--default.form--contact .form__head {
        padding-bottom: 40px;
    }
    .form--default.form--contact .form__body,
    .form--default.form--contact .form__actions {
        padding-left: 0;
        padding-right: 0;
    }
}
.default--holder {
    /*  No Orders  */
    /* Order */
    /* Address */
}
.default--holder .page__title {
    margin-bottom: 80px;
    text-align: center;
}
.default--holder .collection__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1.5%;
}
.default--holder .product__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    padding: 0 1.5%;
    margin-bottom: 60px;
}
.default--holder .product__item-image {
    display: block;
    padding-bottom: 100%;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center center;
}
.default--holder .product__item-title {
    margin-bottom: 20px;
    font-weight: 700;
}
.default--holder .product__item-title a {
    text-decoration: none;
}
.default--holder .product__item-price {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.75;
    text-transform: uppercase;
}
.default--holder .product__item-price del {
    display: inline-block;
    font-weight: 400;
    color: #777;
    margin-right: 5px;
}
.default--holder .product__item-price ins {
    text-decoration: none;
}
.default--holder .product__item-info {
    color: #777;
}
.default--holder.page--error {
    /*  404  */
}
.default--holder.page--error .page__title {
    margin-bottom: 0;
}
.default--holder.page--error .page__content {
    text-align: center;
}
.default--holder.page--error .page__content p {
    margin-bottom: 50px;
    font-size: 32px;
}
.default--holder.section-account {
    overflow: hidden;
    /* Accounts */
}
.default--holder.section-account .section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
}
.default--holder.section-account .section__title {
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 50px;
}
.default--holder.section-account .section__aside {
    position: relative;
    width: 22.5%;
    min-width: 250px;
    padding-top: 90px;
    background: #eee;
}
.default--holder.section-account .section__aside:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 100vw;
    background: inherit;
}
.default--holder.section-account .section__aside ul {
    margin: 0;
    list-style: none;
}
.default--holder.section-account .section__aside ul li {
    margin-bottom: 40px;
}
.default--holder.section-account .section__aside ul a {
    display: block;
    font-size: 16px;
    text-decoration: none;
}
.default--holder.section-account .section__aside ul .active a {
    font-weight: 700;
    text-decoration: underline;
}
.default--holder.section-account .section__content {
    padding-top: 90px;
    padding-left: 90px;
    width: 77.5%;
}
.default--holder .no-orders {
    padding-top: 50px;
    font-size: 16px;
    color: #959595;
    border-top: 1px solid #eee;
}
.default--holder .order {
    text-align: left;
}
.default--holder .order th {
    font-weight: 400;
    padding: 20px;
    color: #959595;
}
.default--holder .order td {
    padding: 25px 20px;
    text-align: left;
}
.default--holder .order td.order__number,
.default--holder .order td.order__total {
    font-weight: 700;
}
.default--holder .order th,
.default--holder .order td {
    border-bottom: 1px solid #eee;
}
.default--holder .order th:first-child,
.default--holder .order td:first-child {
    padding-left: 0;
}
.default--holder .order th:last-child,
.default--holder .order td:last-child {
    padding-right: 0;
}
.default--holder .order-head {
    margin-bottom: 15px;
}
.default--holder .order-head .order-head__date {
    color: #959595;
}
.default--holder .table-order--products {
    margin-bottom: 50px;
}
.default--holder .table-order--products a {
    text-decoration: none;
}
.default--holder .table-order--products a:hover {
    text-decoration: underline;
}
.default--holder .table-order--products th,
.default--holder .table-order--products td {
    border: 1px solid #eee;
    padding: 15px 30px !important;
}
.default--holder .table-order--info th {
    text-align: left;
}
.default--holder .order-details .order-details__value {
    font-weight: 700;
}
.default--holder .btn--new {
    background: #ddbd78;
    padding: 10px 32px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.default--holder .btn--new:hover {
    background-color: #fff;
    color: #ddbd78;
    border-color: currentColor;
}
.default--holder .btn--new--inverse {
    background: #fff;
    color: #080808;
    border-color: #fff;
}
.default--holder .btn--new--inverse:hover {
    background: #ddbd78;
    color: #fff;
    border-color: transparent;
}
.default--holder .form--address {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 30px;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.default--holder .form--address .form__label {
    display: none;
}
.default--holder .addresses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.default--holder .addresses .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 49%;
    margin: 0 1% 30px 0;
    border: 1px solid #eee;
}
.default--holder .addresses .address__title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: auto;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}
.default--holder .addresses .address__title span {
    margin-left: auto;
    font-size: 16px;
}
.default--holder .addresses .address__title span:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 6px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -4px;
    margin-left: 4px;
}
.default--holder .addresses .address__details {
    width: 100%;
    padding: 20px 30px;
}
.default--holder .addresses .address__actions {
    width: 100%;
    margin-top: auto;
    padding: 20px 30px;
    text-align: right;
    border-top: 1px solid #eee;
}
.default--holder .addresses .address__actions a {
    margin: 0 5px;
}
.default--holder .addresses .address__actions a:first-child:after {
    content: '|';
    margin-left: 10px;
}
.default--holder .addresses__actions {
    border-top: 1px solid #eee;
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.default--holder .addresses__actions a {
    margin-left: auto;
}
.default--holder .addresses__empty {
    font-size: 16px;
    color: #959595;
    margin-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
@media (max-width: 1023px) {
    .default--holder .product__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3%;
        flex: 0 0 33.3%;
        width: 33.3%;
    }
    .default--holder.section-account .section__content {
        padding-left: 25px;
    }
    .default--holder .table-order--products th,
    .default--holder .table-order--products td {
        padding: 15px !important;
    }
}
@media (max-width: 767px) {
    .default--holder {
        /* Accounts */
    }
    .default--holder .product__item {
        width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    .default--holder.section-account .shell {
        padding: 0;
    }
    .default--holder.section-account .section__inner {
        display: block;
        min-height: auto;
    }
    .default--holder.section-account .section__aside {
        width: auto;
        padding: 30px 36px;
        text-align: center;
    }
    .default--holder.section-account .section__aside ul li {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 0;
    }
    .default--holder.section-account .section__aside ul li:last-child {
        margin-right: 0;
    }
    .default--holder.section-account .section__content {
        width: auto;
        padding: 45px 36px;
    }
    .default--holder.section-account .section__head {
        text-align: center;
    }
    .default--holder table,
    .default--holder tr,
    .default--holder td,
    .default--holder tbody,
    .default--holder tfoot {
        display: block;
    }
    .default--holder th {
        display: none;
    }
    .default--holder td:before {
        content: attr(data-heading);
        display: block;
        margin-right: 5px;
        font-weight: 700;
    }
    .default--holder tr+tr {
        border-top: 1px solid #080808;
    }
    .default--holder .addresses .address {
        width: 100%;
    }
    .default--holder .table-order--products {
        margin-bottom: 0;
    }
    .default--holder .table-order--products td {
        padding: 5px 10px !important;
        border: 0;
    }
    .default--holder .table-order--products .order-details__title {
        font-weight: 700;
    }
    .default--holder .table-order--products tfoot {
        padding-top: 5px;
        border-top: 1px solid #080808;
        border-bottom: 1px solid #080808;
    }
    .default--holder .table-order--products tfoot tr,
    .default--holder .table-order--products tfoot td {
        border: 0;
        padding: 0;
    }
    .default--holder .table-order--products tfoot tr {
        margin-bottom: 5px;
    }
}
@media (max-width: 375px) {
    .default--holder {
        /* Accounts */
    }
    .default--holder .collection__items {
        display: block;
        margin: 0;
    }
    .default--holder .product__item {
        width: auto;
        padding: 0;
        margin: 0 0 10px;
    }
    .default--holder .section__inner {
        display: block;
    }
    .default--holder .section__aside {
        width: auto;
        margin-right: 0;
    }
    .default--holder .section__aside ul a {
        margin: 5px 0;
    }
    .default--holder .section__content {
        width: auto;
    }
    .default--holder .order-info .cols {
        display: block;
    }
}
.paging--default {
    margin-bottom: 90px;
    padding: 30px 0;
    text-align: center;
}
.paging--default ul,
.paging--default li {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}
.paging--default li a,
.paging--default li.current span {
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
    border: 1px solid #eee;
}
.paging--default li.current span,
.paging--default li:hover a {
    border-color: #080808;
}
.paging--default a {
    text-decoration: none;
}
.paging--default .paging-prev,
.paging--default .paging-next {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    width: 50px;
    height: 50px;
}
.paging--default .paging-prev:after,
.paging--default .paging-next:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 10px;
}
.paging--default>span {
    color: #eee;
}
.paging--default .paging-prev:after {
    content: '\25C0';
}
.paging--default .paging-next:after {
    content: '\25B6';
}
@media (max-width: 375px) {
    .paging--default ul,
    .paging--default li {
        margin: 2px;
    }
    .paging--default li a,
    .paging--default li.current span {
        width: 36px;
        height: 36px;
        font-size: 12px;
        padding: 9px 0;
    }
    .paging--default .paging-prev,
    .paging--default .paging-next {
        width: 36px;
        height: 36px;
    }
}
/* ------------------------------------------------------------ *\
	Default Styles
\* ------------------------------------------------------------ */
/*  Product  */
.product--default {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product--default .product__images {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
}
.product--default .product__images img {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
}
.product--default .product__thumbs .slick-list {
    margin: 0 -10px;
}
.product--default .product__thumbs .slick-slide {
    padding: 0 10px;
}
.product--default .product__thumbs img {
    cursor: pointer;
}
.product--default .product__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
}
.product--default .product__meta {
    margin-bottom: 20px;
}
.product--default .product__vendor {
    font-style: italic;
}
.product--default .product__entry {
    color: #777;
    margin-bottom: 30px;
}
.product--default .product__price {
    margin-bottom: 25px;
}
.product--default .product__price del {
    display: inline-block;
    margin-right: 5px;
}
.product--default .product__price ins {
    text-decoration: none;
}
.product--default .product__form .form__row {
    padding-bottom: 20px;
}
.product--default .product__form .select {
    width: auto;
    min-width: 210px;
}
@media (max-width: 1023px) {
    .product--default {
        display: block;
    }
    .product--default .product__content,
    .product--default .product__images {
        display: block;
        max-width: 100%;
    }
    .product--default .product__content {
        padding-top: 0;
    }
}
/* ------------------------------------------------------------ *\
	Product
\* ------------------------------------------------------------ */
.product .product__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1023px) {
    .product .product__inner {
        display: block;
    }
}
.product .product__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 62.5%;
}
@media (max-width: 1023px) {
    .product .product__images {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.product .product__content {
    width: 37.5%;
    padding-left: 75px;
    padding-top: 33px;
    max-width: 480px;
}
@media (max-width: 1200px) {
    .product .product__content {
        padding-left: 30px;
    }
}
@media (max-width: 1023px) {
    .product .product__content {
        padding-left: 15px;
    }
}
@media (max-width: 1023px) {
    .product .product__content {
        width: 100%;
        padding: 30px 36px 0;
    }
}
.product .product__title {
    padding-left: 242px;
    margin-bottom: 35px;
}
@media (max-width: 1200px) {
    .product .product__title {
        padding-left: 180px;
    }
}
@media (max-width: 1023px) {
    .product .product__title {
        padding-left: 120px;
    }
}
@media (max-width: 1023px) {
    .product .product__title {
        padding: 0 36px;
        margin-bottom: 25px;
    }
}
@media (max-width: 1023px) {
    .product .product__thumbs {
        margin-top: 26px;
        padding-left: 36px;
    }
}
@media (max-width: 1023px) {
    .product .product__thumbs .slick-list {
        margin: 0 -10px;
    }
}
@media (max-width: 1023px) {
    .product .product__thumbs .slick-slide {
        padding: 0 10px;
    }
}
.product .product__thumbs img {
    margin-bottom: 20px;
}
@media (max-width: 1023px) {
    .product .product__thumbs img {
        width: 200px;
    }
}
@media (max-width: 450px) {
    .product .product__thumbs img {
        width: 125px;
    }
}
.product .product__thumbs-container {
    width: 242px;
    padding-right: 34px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media (max-width: 1200px) {
    .product .product__thumbs-container {
        width: 180px;
        padding-right: 25px;
    }
}
@media (max-width: 1023px) {
    .product .product__thumbs-container {
        width: 120px;
    }
}
@media (max-width: 1023px) {
    .product .product__thumbs-container {
        position: relative;
        width: 100%;
        padding-right: 0;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
.product .product__thumbs-container .slick-prev {
    display: none !important;
}
.product .product__thumbs-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 38px;
    border: solid 2px #ddbd78;
    background-color: #ddbd78;
    font-size: 0;
    line-height: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}
@media (max-width: 1023px) {
    .product .product__thumbs-next {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 40px;
        height: 100%;
        opacity: 0;
    }
}
.product .product__thumbs-next:hover {
    opacity: .7;
}
@media (max-width: 1023px) {
    .product .product__thumbs-next:hover {
        opacity: 0;
    }
}
.product .product__thumbs-next img {
    margin: 0;
}
.product .product__slider {
    width: calc(100% - 242px);
}
@media (max-width: 1200px) {
    .product .product__slider {
        width: calc(100% - 180px);
    }
}
@media (max-width: 1023px) {
    .product .product__slider {
        width: calc(100% - 120px);
    }
}
@media (max-width: 1023px) {
    .product .product__slider {
        width: 100%;
    }
}
.product .product__slider img {
    margin: 0;
    width: 100%;
    height: auto;
}
.product .product__entry p {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.63;
}
@media (max-width: 1023px) {
    .product .product__entry p {
        font-size: 16px;
    }
}
.product .product__description {
    margin-bottom: 57px;
}
@media (max-width: 1023px) {
    .product .product__description {
        margin-bottom: 25px;
    }
}
.product .product__description ul {
    margin-top: 53px;
    margin-left: 17px;
}
.product .product__description li+li {
    margin-top: 12px;
}
.product .product__description li {
    font-size: 18px;
}
@media (max-width: 1023px) {
    .product .product__description li {
        font-size: 15px;
    }
}
.product .product__price {
    margin-bottom: 34px;
}
.product .product__price strong {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    margin-right: 12px;
}
@media (max-width: 1023px) {
    .product .product__price strong {
        font-size: 22px;
    }
}
.product .product__price span {
    font-size: 16px;
    font-weight: 400;
}
.product .product__qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 44px;
}
.product .product__qty span {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin-left: 30px;
}
.product .product__qty label {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-right: 15px;
}
.product .product__qty input {
    width: 40px;
    height: 24px;
    padding: 0 8px;
    font-size: 14px;
    letter-spacing: -0.004em;
    border: 0;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.product .product__qty input::-webkit-inner-spin-button,
.product .product__qty input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}
.product .product__actions a {
    margin-bottom: 15px;
    padding: 9px 25px;
}
@media (max-width: 1023px) {
    .product .product__actions a {
        width: 100%;
        padding: 12px 10px;
    }
}
.search--default .results,
.search--default .form-search,
.search--default .page__head {
    margin-bottom: 10px;
    text-align: center;
}
.search--default .search__field {
    padding: 7px;
    border: 1px solid #080808;
}
.search--default .search__btn {
    background: #ddbd78;
    padding: 10px 32px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.search--default .search__btn:hover {
    background-color: #fff;
    color: #ddbd78;
    border-color: currentColor;
}
.search--default .search__btn--inverse {
    background: #fff;
    color: #080808;
    border-color: #fff;
}
.search--default .search__btn--inverse:hover {
    background: #ddbd78;
    color: #fff;
    border-color: transparent;
}
/*  Base  */
/* ------------------------------------------------------------ *\
  Form Elements Reset
\* ------------------------------------------------------------ */
input::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}
input::-moz-placeholder {
    color: inherit;
    opacity: 1;
}
input:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
input::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
input::placeholder {
    color: inherit;
    opacity: 1;
}
textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}
textarea::-moz-placeholder {
    color: inherit;
    opacity: 1;
}
textarea:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
textarea::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
textarea::placeholder {
    color: inherit;
    opacity: 1;
}
input:-webkit-autofill {
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
input[type='checkbox'] {
    opacity: 0;
    position: absolute;
}
input[type='checkbox']~label {
    position: relative;
}
input[type='checkbox']~label:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    height: 20px;
    width: 20px;
    border: 1px solid #eee;
}
input[type='checkbox']~label:after {
    content: none;
    position: absolute;
    left: 5px;
    top: 5px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
    height: 6px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
}
input[type='checkbox']:checked~label:after {
    content: '';
}
/* ------------------------------------------------------------ *\
  Field
\* ------------------------------------------------------------ */
.field {
    width: 100%;
    padding: 16px 20px 15px;
    border: 1px solid #eee;
}
.field::-webkit-input-placeholder {
    color: #959595;
}
.field::-moz-placeholder {
    color: #959595;
}
.field:-ms-input-placeholder {
    color: #959595;
}
.field::-ms-input-placeholder {
    color: #959595;
}
.field::placeholder {
    color: #959595;
}
/* ------------------------------------------------------------ *\
  Textarea
\* ------------------------------------------------------------ */
.textarea {
    width: 100%;
    padding: 16px 20px 15px;
    border: 1px solid #eee;
}
.textarea::-webkit-input-placeholder {
    color: #959595;
}
.textarea::-moz-placeholder {
    color: #959595;
}
.textarea:-ms-input-placeholder {
    color: #959595;
}
.textarea::-ms-input-placeholder {
    color: #959595;
}
.textarea::placeholder {
    color: #959595;
}
/* ------------------------------------------------------------ *\
  Select
\* ------------------------------------------------------------ */
.select {
    display: block;
    width: 100%;
    padding: 16px 20px 16px;
    border: 1px solid #eee;
}
/* ------------------------------------------------------------ *\
  Form Btn
\* ------------------------------------------------------------ */
.form__btn {
    background: #ddbd78;
    padding: 10px 32px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.form__btn:hover {
    background-color: #fff;
    color: #ddbd78;
    border-color: currentColor;
}
.form__btn--inverse {
    background: #fff;
    color: #080808;
    border-color: #fff;
}
.form__btn--inverse:hover {
    background: #ddbd78;
    color: #fff;
    border-color: transparent;
}
/* ------------------------------------------------------------ *\
  Form Row
\* ------------------------------------------------------------ */
.form__row {
    margin-bottom: 20px;
}
/* ------------------------------------------------------------ *\
  Form Label
\* ------------------------------------------------------------ */
.form__label {
    display: block;
    margin-bottom: 8px;
}
/* ------------------------------------------------------------ *\
  Form Cols
\* ------------------------------------------------------------ */
.form__cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.form__col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
}
@media (max-width: 1023px) {
    .form__col--tablet-max-width {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
/* ------------------------------------------------------------ *\
	Table
\* ------------------------------------------------------------ */
/* Regions */
/* ------------------------------------------------------------ *\
	Container
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Content
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  Footer
\* ------------------------------------------------------------ */
.footer {
    background-color: #080808;
    color: #fff;
    padding: 80px 0;
}
@media (max-width: 767px) {
    .footer {
        padding: 56px 0 100px 0;
    }
}
.footer .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .footer .footer__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0 9px;
    }
}
.footer .footer__aside {
    padding-top: 30px;
}
@media (max-width: 767px) {
    .footer .footer__aside {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
.footer .footer__body {
    text-align: right;
    font-size: 18px;
}
@media (max-width: 767px) {
    .footer .footer__body {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        text-align: left;
    }
}
.footer .footer__address {
    font-size: 18px;
    line-height: 1.7;
}
.footer .footer__address:after {
    content: '';
    display: block;
    height: 2px;
    width: 142px;
    background-color: #fff;
    margin: 26px 0 33px auto;
}
@media (max-width: 767px) {
    .footer .footer__address:after {
        margin-left: 0;
        margin-right: auto;
    }
}
.footer .footer__address h3 {
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
}
.footer .footer__logo {
    display: block;
    margin-bottom: 28px;
}
@media (max-width: 767px) {
    .footer .footer__logo {
        display: none;
    }
}
/* ------------------------------------------------------------ *\
  Header
  \* ------------------------------------------------------------ */
.header h6 {
    text-align: right;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 15px;
}
.header .header__bar {
    background-color: #ddbd78;
    color: #080808;
    padding: 6px 0;
    text-align: right;
}
.header .header__body {
    background-color: #000;
    color: #fff;
    padding: 31px 0 54px 0;
}
@media (max-width: 1023px) {
    .header .header__body {
        padding: 33px 0 31px 0;
    }
}
.header .header__body .header__inner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media (max-width: 1023px) {
    .header__pre {
        display: none;
    }
    .header .header__body .header__inner {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        align-items: center;
    }
}
.header .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header .header__aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 34px;
}
@media (max-width: 1200px) {
    .header .header__aside {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 0;
    }
}
@media (max-width: 1023px) {
    .header .header__actions {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 9;
        background-color: #080808;
        width: 100%;
        padding: 20px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .header .header__actions a.btn {
        font-size: 13px;
        min-width: 120px;
        padding: 6px 0;
    }
}
@media (max-width: 1023px) and (max-width: 375px) {
    .header .header__actions a.btn {
        padding: 5px;
        min-width: 0;
        font-size: 12px;
    }
}
.header .header__actions-alt {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 374px) {
    .header .header__actions-alt {
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
@media (max-width: 1023px) {
    .header .header__actions-aside {
        margin-left: 20px;
    }
}
.header .header__btns a {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
}
.header .header__btns a svg {
    display: block;
}
.header .header__btns a:not(:first-child) {
    margin-left: 11px;
}
.header .header__nav {
    padding: 28px 0;
}
@media (max-width: 1023px) {
    .header .header__nav {
        padding: 23px 0;
    }
}
@media (max-width: 767px) {
    .header .header__nav {
        padding: 26px 0;
    }
}
.header .header__message {
    font-size: 20px;
    font-weight: 700;
    font-family: "Replica", Arial, Helvetica, sans-serif;
}
@media (max-width: 767px) {
    .header .header__message {
        font-size: 20px;
        line-height: 1.1;
    }
}
.header .header__message span {
    font-weight: 300;
    letter-spacing: 0.04em;
}
@media (max-width: 1300px) {
    .header .header__message span {
        display: block;
    }
}
.header .header__mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #080808;
    color: #fff;
    z-index: 99;
    padding: 20px 20px 20px 170px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.header .header__mobile.open {
    -webkit-transform: translateX(-150px);
    -ms-transform: translateX(-150px);
    transform: translateX(-150px);
}
.header .header__mobile.open .nav__trigger {
    width: 170px;
}
.header--admin .header__message span {
    display: inline;
}
/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.shell {
    max-width: 1822px;
    padding-right: 36px;
    padding-left: 36px;
    margin: auto;
}
.shell--fluid {
    max-width: none;
}
.shell--fullwidth {
    width: 100%;
}
.shell--small {
    max-width: 1200px;
}
/* ------------------------------------------------------------ *\
	Sidebar
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  Wrapper
\* ------------------------------------------------------------ */
.wrapper {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /*IE11 fix*/
}
.wrapper .footer {
    margin-top: auto;
}
.wrapper>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
/*IE11 fix*/
body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
/* Components */
/* ------------------------------------------------------------ *\
	Account-menu
\* ------------------------------------------------------------ */
.account-menu {
    border: solid 2px #ddbd78;
    padding: 65px 90px 45px;
    margin-bottom: 70px;
    /*  Cols-small  */
}
@media (max-width: 1650px) {
    .account-menu {
        margin-bottom: 40px;
    }
}
@media (max-width: 1400px) {
    .account-menu {
        padding: 50px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu {
        border: none;
        border-top: solid 1px rgba(112, 112, 112, 0.25);
        padding: 41px 0 0 0;
    }
}
.account-menu h5 {
    font-size: 20px;
    margin-bottom: 1em;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu h5 {
        font-weight: 300;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu h5 strong {
        font-size: 18px;
        font-weight: 300;
    }
}
.account-menu address {
    margin-bottom: 46px;
    font-weight: 300;
    font-size: 20px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu address {
        margin-bottom: 35px;
        font-size: 18px;
        line-height: 1.39;
    }
}
.account-menu .account-menu__title {
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.33;
    letter-spacing: 0.03em;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu .account-menu__title {
        margin-bottom: 0;
        text-transform: none;
        font-size: 20px;
    }
    .account-menu .account-menu__title:after {
        content: ':';
    }
}
.account-menu .account-menu__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .account-menu .account-menu__inner {
        display: block;
    }
}
.account-menu .account-menu__entry {
    max-width: 65%;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.08em;
}
@media (max-width: 1199px) {
    .account-menu .account-menu__entry {
        max-width: 100%;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu .account-menu__entry {
        font-size: 18px;
    }
}
.account-menu .account-menu__entry--secondary {
    max-width: 36%;
}
@media (max-width: 1199px) {
    .account-menu .account-menu__entry--secondary {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.account-menu .cols-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 300;
    font-size: 20px;
}
@media (max-width: 1399px) {
    .account-menu .cols-small {
        display: block;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu .cols-small {
        margin-bottom: 36px;
        font-size: 18px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu .cols-small strong {
        font-weight: 300;
    }
}
.account-menu .cols-small .col {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu .cols-small .col {
        font-size: 17px;
        letter-spacing: 0.05em;
    }
}
.account-menu .cols-small .col--small {
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding-right: 10px;
}
@media (max-width: 1199px) {
    .account-menu .cols-small .col--small {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu .cols-small .col--small {
        margin-bottom: 7px;
    }
}
.account-menu .cols-small.last {
    margin-bottom: 60px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu .cols-small.last {
        margin-bottom: 36px;
    }
}
/*  Secondary  */
@media (max-width: 1199px) {
    .account-menu--secondary {
        padding: 50px 30px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--secondary {
        padding: 50px 0;
    }
}
.account-menu--secondary .account-menu__title {
    margin-bottom: 55px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--secondary .account-menu__title {
        margin-bottom: 45px;
        text-transform: uppercase;
        font-size: 16px;
        letter-spacing: 0.03em;
    }
}
/*  Tertiary  */
.account-menu--tertiary {
    padding: 50px 120px 65px 60px;
    margin-bottom: 80px;
}
@media (max-width: 1199px) {
    .account-menu--tertiary {
        padding: 32px 20px 45px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--tertiary {
        padding: 32px 0 45px;
        margin-bottom: 40px;
        border-bottom: solid 1px rgba(112, 112, 112, 0.25);
    }
}
.account-menu--tertiary .account-menu__title {
    margin-bottom: 56px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--tertiary .account-menu__title {
        margin-bottom: 48px;
    }
}
.account-menu--tertiary .btn {
    padding: 9px 48px;
}
/*  Mobile version  */
.account-menu--mobile .form-account .form__label {
    padding-right: 10px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .form__label {
        display: none;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .form__title {
        display: block;
        margin: 30px 0 11px;
        font-weight: 300;
        font-size: 18px;
        line-height: 1.33;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .form__row {
        margin-bottom: 0;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .form__actions {
        margin-top: 20px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .field,
    .account-menu--mobile .form-account .select select {
        pointer-events: none;
        height: auto;
        background-color: transparent;
        border: none;
        padding: 0;
        font-weight: 300;
        font-size: 17px;
        line-height: 1.47;
        background: none;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .btn {
        display: none;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .btn--edit {
        display: inline-block;
    }
}
.account-menu--mobile .form-account .btn--cancel {
    display: none;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .btn--cancel {
        display: none;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .btn+.btn {
        margin: 15px 0 0;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .checkbox {
        display: none;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--mobile .form-account .checkbox~label {
        display: none;
    }
}
/*  No margin  */
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menu--no-margin {
        margin: 0;
        padding: 43px 0 10px;
    }
}
/* ------------------------------------------------------------ *\
	Account-menus
\* ------------------------------------------------------------ */
.account-menus {
    overflow: hidden;
}
.account-menus .cols {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -55px;
}
@media (max-width: 1650px) {
    .account-menus .cols {
        margin: 0 -20px;
    }
}
.account-menus .col--1of2 {
    padding: 0 55px;
}
@media (max-width: 1650px) {
    .account-menus .col--1of2 {
        padding: 0 20px;
    }
}
@media (max-width: 1023px) {
    .account-menus .col--1of2 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.account-menus .col--size-1 {
    max-width: 69%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 69%;
    flex: 0 0 69%;
    padding: 0 40px 0 55px;
}
@media (max-width: 1650px) {
    .account-menus .col--size-1 {
        padding: 0 20px;
    }
}
@media (max-width: 1023px) {
    .account-menus .col--size-1 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menus .col--size-1 {
        padding: 0;
    }
}
.account-menus .col--size-2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    padding: 0 55px 0 40px;
}
@media (max-width: 1650px) {
    .account-menus .col--size-2 {
        padding: 0 20px;
    }
}
.account-menus .col--size-3 {
    max-width: 81.5%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 81.5%;
    flex: 0 0 81.5%;
    padding: 0 55px;
}
@media (max-width: 1650px) {
    .account-menus .col--size-3 {
        padding: 0 20px;
    }
}
@media (max-width: 1199px) {
    .account-menus .col--size-3 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menus .col--size-3 {
        padding: 0;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menus--secondary {
        padding: 0;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menus--secondary .cols {
        margin: 0;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .account-menus--secondary .col--1of2 {
        padding: 0;
    }
}
/* ------------------------------------------------------------ *\
	Article-large
\* ------------------------------------------------------------ */
.article-large {
    padding-bottom: 127px;
}
@media (max-width: 1023px) {
    .article-large {
        padding-bottom: 58px;
        border-bottom: solid 1px rgba(112, 112, 112, 0.25);
    }
}
.article-large .article__meta {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.33;
    color: #ddbd78;
    margin-bottom: 11px;
}
@media (max-width: 767px) {
    .article-large .article__meta {
        font-size: 13px;
        letter-spacing: 0.06em;
        margin-bottom: 25px;
    }
}
.article-large .article__title {
    font-weight: 300;
    font-size: 28px;
    line-height: 1.32;
    letter-spacing: 0.04em;
    margin-bottom: 43px;
}
@media (max-width: 767px) {
    .article-large .article__title {
        font-size: 21px;
        letter-spacing: 0;
    }
}
.article-large .article__image {
    margin-bottom: 66px;
}
@media (max-width: 1023px) {
    .article-large .article__image {
        margin: 0 -36px 57px;
    }
}
@media (max-width: 767px) {
    .article-large .article__image {
        height: 100vw;
    }
}
.article-large .article__image a {
    display: block;
}
.article-large .article__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.article-large .article__entry {
    padding: 0 19.59% 0 11.04%;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.045em;
    line-height: 1.5;
}
@media (max-width: 1400px) {
    .article-large .article__entry {
        padding: 0 10%;
    }
}
@media (max-width: 1023px) {
    .article-large .article__entry {
        max-width: 65ch;
        margin: 0 auto;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .article-large .article__entry {
        font-size: 16px;
        letter-spacing: 0.065em;
    }
}
.article-large .article__entry p+p {
    margin-top: 30px;
}
@media (max-width: 767px) {
    .article-large .article__entry p+p {
        margin-top: 23px;
    }
}
/* ------------------------------------------------------------ *\
	Article-news
\* ------------------------------------------------------------ */
.article-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 300;
}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .article-news {
        display: block;
    }
}
.article-news .article__image {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    overflow: hidden;
}
@media (max-width: 767px) {
    .article-news .article__image {
        max-width: 254px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 254px;
        flex: 0 0 254px;
    }
}
.article-news .article__image a {
    width: 100%;
    display: block;
}
.article-news .article__image img {
    width: 100%;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    margin: 0;
}
.article-news .article__image img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.article-news .article__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    padding: 13px 0 0 30px;
}
@media (max-width: 767px) {
    .article-news .article__content {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        padding: 13px 0 32px 0;
    }
}
.article-news .article__meta {
    line-height: 1.31;
    letter-spacing: 0.06em;
    margin-bottom: 19px;
}
@media (max-width: 767px) {
    .article-news .article__meta {
        margin-bottom: 10px;
    }
}
.article-news .article__title {
    max-width: 225px;
    min-height: 80px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.article-news .article__title:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    .article-news .article__title {
        min-height: 65px;
    }
}
.article-news .article__entry {
    letter-spacing: 0.075em;
    line-height: 1.5;
    margin-bottom: 20px;
}
.article-news .article__btn {
    min-width: 140px;
    font-size: 11px;
}
@media (max-width: 767px) {
    .article-news .article__btn {
        width: auto;
    }
}
/*  Secondary  */
.article-news--secondary {
    /*  Image  */
    /*  Content  */
}
@media (max-width: 1023px) {
    .article-news--secondary {
        margin-bottom: 19px;
    }
}
@media (max-width: 767px) {
    .article-news--secondary {
        padding-right: 0;
    }
}
.article-news--secondary .article__inner {
    border-bottom: solid 1px rgba(112, 112, 112, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 75px 0;
}
@media (max-width: 1200px) {
    .article-news--secondary .article__inner {
        display: block;
    }
}
@media (max-width: 1023px) {
    .article-news--secondary .article__inner {
        padding: 33px 0 50px;
    }
}
.article-news--secondary .article__image {
    max-width: 46.5%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 46.5%;
    flex: 0 0 46.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1650px) {
    .article-news--secondary .article__image {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media (max-width: 1200px) {
    .article-news--secondary .article__image {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 767px) {
    .article-news--secondary .article__image {
        height: 67.73vw;
    }
}
.article-news--secondary .article__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.article-news--secondary .article__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    padding: 38px 0 0 74px;
    font-size: 18px;
}
@media (max-width: 1650px) {
    .article-news--secondary .article__content {
        padding-left: 30px;
    }
}
@media (max-width: 1200px) {
    .article-news--secondary .article__content {
        padding-left: 0;
    }
}
@media (max-width: 1023px) {
    .article-news--secondary .article__content {
        padding-top: 11px;
    }
}
.article-news--secondary .article__title {
    margin-bottom: 12px;
}
@media (max-width: 767px) {
    .article-news--secondary .article__title {
        margin-bottom: 0;
    }
}
.article-news--secondary .article__entry {
    margin-bottom: 39px;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media (max-width: 1023px) {
    .article-news--secondary .article__entry {
        margin-bottom: 29px;
    }
}
@media (max-width: 767px) {
    .article-news--secondary .article__entry {
        max-height: 75px;
        overflow: hidden;
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0.065em;
    }
}
.article-news--secondary .article__btn {
    padding: 9px 44px;
    font-size: 16px;
}
@media (max-width: 1023px) {
    .article-news--secondary .article__btn {
        padding: 5px 15px;
        font-size: 11px;
    }
}
/* ------------------------------------------------------------ *\
	Articles
\* ------------------------------------------------------------ */
.articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -53px;
}
.articles .articles__item {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 0 53px;
}
@media (max-width: 1200px) {
    .articles .articles__item {
        max-width: 33.33%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
    }
}
@media (max-width: 1023px) {
    .articles .articles__item {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    .articles .articles__item {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
/* ------------------------------------------------------------ *\
	Box-info
\* ------------------------------------------------------------ */
.box-info {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.box-info:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}
.box-info:hover:after {
    background-color: rgba(0, 0, 0, 0);
}
.box-info .box-info__btn {
    width: 57.44%;
    height: 20%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 300;
    font-size: 20px;
    border-radius: 5px;
    vertical-align: middle;
}
@media (max-width: 1400px) {
    .box-info .box-info__btn {
        font-size: 16px;
    }
}
@media (max-width: 1200px) {
    .box-info .box-info__btn {
        font-size: 14px;
    }
}
@media (max-width: 1023px) {
    .box-info .box-info__btn {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .box-info .box-info__btn {
        font-size: 16px;
    }
}
.box-info .box-info__btn span {
    max-width: 95%;
    overflow-x: hidden;
    white-space: nowrap;
}
/* ------------------------------------------------------------ *\
	Boxes-info
\* ------------------------------------------------------------ */
.boxes-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -38px;
    padding: 55px 0;
}
@media (max-width: 1400px) {
    .boxes-info {
        margin: 0 -15px;
    }
}
.boxes-info .boxes-info__item {
    max-width: 25%;
    height: 17.14vw;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 0 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1400px) {
    .boxes-info .boxes-info__item {
        padding: 0 15px;
    }
}
@media (max-width: 1023px) {
    .boxes-info .boxes-info__item {
        max-width: 50%;
        height: 35vw;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        padding-bottom: 36px;
    }
}
@media (max-width: 767px) {
    .boxes-info .boxes-info__item {
        max-width: 100%;
        height: 86.84vw;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
/* ------------------------------------------------------------ *\
	Breadcrumbs
\* ------------------------------------------------------------ */
.breadcrumbs {
    font-size: 17px;
    color: #ddbd78;
}
@media (max-width: 1023px) {
    .breadcrumbs {
        display: none;
    }
}
.breadcrumbs li {
    display: inline;
}
.breadcrumbs li+li:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 17px;
    background-color: #080808;
    margin: 0 7px;
}
.breadcrumbs a {
    font-family: 'PF Handbook Pro', sans-serif;
}
.breadcrumbs .current {
    color: #000;
}
.breadcrumbs .current a {
    text-decoration: none;
}
.breadcrumbs .breadcrumbs__divider {
    padding: 0 5px;
}
@media (max-width: 767px) {
    .breadcrumbs {
        margin-bottom: 30px;
    }
}
.breadcrumbs--alt {
    padding-top: 20px;
}
@media (max-width: 767px) {
    .breadcrumbs--alt {
        font-size: 13px;
    }
}
.breadcrumbs--alt li+li:before {
    margin: 0 10px;
}
@media (max-width: 767px) {
    .breadcrumbs--alt li+li:before {
        margin: 0 7px;
    }
}
@media (max-width: 1023px) {
    .breadcrumbs--alt {
        display: block;
    }
}
/*  Cart  */
@media (max-width: 767px) {
    .breadcrumbs--cart {
        padding: 0;
    }
}
/*  News  */
.breadcrumbs--news {
    font-size: 20px;
    margin-bottom: 50px;
}
.breadcrumbs--news a {
    font-weight: 300;
}
@media (max-width: 767px) {
    .breadcrumbs--news {
        display: none;
    }
}
/*  Secondary  */
.breadcrumbs--replica a {
    font-family: "Replica", Arial, Helvetica, sans-serif;
    font-weight: 300;
}
/*  News-individual  */
.breadcrumbs--news-individual {
    margin-bottom: 20px;
}
/*  Info  */
.breadcrumbs--info {
    margin-top: 18px;
}
.breadcrumbs--small-mobile {
    font-size: 20px;
}
@media (max-width: 767px) {
    .breadcrumbs--small-mobile {
        font-size: 13px;
        margin-top: 0;
        padding-top: 0;
    }
}
.breadcrumbs--small-mobile a {
    font-weight: 300;
}
/* ------------------------------------------------------------ *\
	Button
\* ------------------------------------------------------------ */
.btn {
    display: inline-block;
    border-radius: 0;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 900;
    background: #ddbd78;
    padding: 10px 32px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.btn:hover {
    background-color: #fff;
    color: #ddbd78;
    border-color: currentColor;
}
.btn--inverse {
    background: #fff;
    color: #080808;
    border-color: #fff;
}
.btn--inverse:hover {
    background: #ddbd78;
    color: #fff;
    border-color: transparent;
}
.btn--block {
    display: block;
    padding-left: 0;
    padding-right: 0;
}
.btn--transparent {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #fff;
}
.btn--transparent:hover {
    background-color: #fff;
    color: #080808;
    border-color: #fff;
}
.btn--outline {
    padding: 5px 28px;
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    -webkit-transition: color .4s, background-color .4s;
    -o-transition: color .4s, background-color .4s;
    transition: color .4s, background-color .4s;
}
@media (max-width: 1200px) {
    .btn--outline {
        padding: 4px 18px;
    }
}
@media (max-width: 767px) {
    .btn--outline {
        width: 100%;
    }
}
.btn--outline:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}
.btn--outline-white {
    background-color: transparent;
    border: solid 2px #fff;
    color: #fff;
}
.btn--outline-white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #080808;
}
.btn--black {
    border-color: #080808;
    background-color: #080808;
    color: #fff;
}
.btn--black:hover {
    color: #080808;
    border-color: #080808;
    background-color: transparent;
}
.btn--icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.btn--icon svg {
    margin-right: 15px;
}
.btn--account {
    padding-top: 11px;
    padding-bottom: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 45px;
}
.btn--account svg {
    fill: currentColor;
    margin: 0 0 2px 22px;
}
.btn--account.is-cloned svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.btn--admin {
    min-width: 156px;
    padding: 11px 10px;
}
.btn--admin+.btn--admin {
    margin-left: 24px;
}
.btn--admin-small {
    min-width: 114px;
    padding: 11px 10px;
}
.btn--admin-small+.btn--admin-small {
    margin-left: 17px;
}
.btn--nowrap {
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}
/* ------------------------------------------------------------ *\
  Callout
\* ------------------------------------------------------------ */
.form-login+.callout {
    margin-top: 85px;
}
.callout {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    background-color: #080808;
    padding: 35px 35px;
    display: block;
    color: #fff;
    text-align: center;
}
@media (max-width: 767px) {
    .callout {
        padding: 28px 35px;
    }
}
.callout .callout__title {
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -0.02em;
}
@media (max-width: 767px) {
    .callout .callout__title {
        font-size: 16px;
    }
}
.callout .callout__inner {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}
.callout .callout__actions {
    margin-top: 20px;
}
@media (max-width: 767px) {
    .callout .callout__btn {
        font-size: 12px;
    }
}
/* ------------------------------------------------------------ *\
	Cart
\* ------------------------------------------------------------ */
.cart {
    padding: 55px 0 108px;
}
@media (max-width: 767px) {
    .cart {
        padding: 0;
    }
}
.cart .cart__warning {
    margin-bottom: 40px;
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    font-size: 23px;
    font-weight: 300;
    color: #ddbd78;
}
.cart .cart__title {
    font-weight: 400;
}
@media (max-width: 767px) {
    .cart .cart__title {
        border-bottom: solid 1px rgba(112, 112, 112, 0.22);
        padding-bottom: 24px;
        font-size: 28px;
    }
}
@media (max-width: 1023px) {
    .cart .cart__title--alt {
        margin-bottom: 9px;
        font-size: 22px;
        letter-spacing: 0.03em;
    }
}
@media (max-width: 767px) {
    .cart .cart__title--alt {
        border: 0;
        font-weight: 300;
    }
}
.cart .cart__title span {
    padding-left: 7px;
}
.cart .cart__actions {
    color: #ddbd78;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.cart .cart__actions a+a {
    position: relative;
    margin-left: 18px;
}
.cart .cart__actions--secondary {
    margin-left: 40px;
}
.cart .cart__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cart .cart__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
@media (max-width: 1400px) {
    .cart .cart__content {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.cart .cart__aside {
    max-width: 320px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
    margin-left: 56px;
    padding-top: 24px;
}
@media (max-width: 1400px) {
    .cart .cart__aside {
        margin: 0 auto;
    }
}
@media (max-width: 1023px) {
    .cart .cart__aside {
        max-width: 100%;
        margin: 0 0 61px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        padding-top: 28px;
    }
}
.cart .cart__aside--alt {
    max-width: 453px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 453px;
    flex: 0 0 453px;
}
@media (max-width: 767px) {
    .cart .cart__aside--alt {
        max-width: auto;
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
    }
}
.cart .cart__actions--alt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1023px) {
    .cart .cart__actions--alt {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
    }
}
.cart .cart__actions--alt a+a {
    margin: 0;
}
.cart .cart__btn {
    padding: 9px 42px;
}
@media (max-width: 1023px) {
    .cart .cart__btn {
        width: 100%;
    }
}
.cart .cart__btn--alt {
    padding: 9px 35px;
}
@media (max-width: 1023px) {
    .cart .cart__btn--alt {
        padding: 9px 30px;
    }
}
.cart .cart__btn+.cart__btn {
    margin-left: 17px;
}
@media (max-width: 1023px) {
    .cart .cart__btn+.cart__btn {
        margin: 0 0 15px;
    }
}
.cart .cart__details {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 40px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.02em;
}
@media (max-width: 767px) {
    .cart .cart__details {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
.cart .cart__details ul {
    list-style: none;
    letter-spacing: 0.05em;
}
.cart .cart__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.cart .cart__col--size-1 {
    max-width: 485px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 485px;
    flex: 0 0 485px;
}
.cart .cart__col--size-2 {
    max-width: 685px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 685px;
    flex: 0 0 685px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 60px;
}
.cart .cart__row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 22px;
}
@media (max-width: 1023px) {
    .cart .cart__row {
        display: block;
        padding-left: 0;
    }
}
.cart .cart__subtitle {
    font-size: 20px;
    max-width: 37.6%;
    font-weight: 300;
    padding-right: 26px;
}
@media (max-width: 1650px) {
    .cart .cart__subtitle {
        max-width: 100%;
    }
}
.cart .cart__subtitle--alt {
    word-break: break-word;
    white-space: pre-wrap;
    padding-top: 15px;
}
.cart .cart__details p {
    width: 50%;
    margin: 0 0 0 37px;
    letter-spacing: 0.05em;
}
@media (max-width: 1650px) {
    .cart .cart__details p {
        margin: 0;
    }
}
.cart .cart__field {
    width: 100%;
    height: 56px;
    max-width: 229px;
    margin-left: 20px;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #080808;
    border: 1px solid black;
}
@media (max-width: 1023px) {
    .cart .cart__field {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .cart .cart__field {
        max-width: 100%;
    }
}
.cart .cart__field::-webkit-input-placeholder {
    color: #080808;
}
.cart .cart__field::-moz-placeholder {
    color: #080808;
}
.cart .cart__field:-ms-input-placeholder {
    color: #080808;
}
.cart .cart__field::-ms-input-placeholder {
    color: #080808;
}
.cart .cart__field::placeholder {
    color: #080808;
}
.cart .cart__field--textarea {
    max-width: 443px;
    width: 100%;
    max-height: 183px;
    height: 100%;
    margin: 0;
    resize: none;
}
@media (max-width: 767px) {
    .cart .cart__field--textarea {
        max-width: 100%;
        max-height: 160px;
    }
}
/*  Cart alt  */
.cart--alt {
    position: relative;
}
@media (max-width: 767px) {
    .cart--alt {
        padding-bottom: 100px;
    }
}
@media (max-width: 1650px) {
    .cart--alt ul {
        margin: 0;
    }
}
@media (max-width: 1023px) {
    .cart--alt ul {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .cart--alt .cart__aside {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        border-top: solid 1px rgba(112, 112, 112, 0.22);
    }
}
.cart--alt .cart__subtitle {
    font-weight: normal;
}
@media (max-width: 1650px) {
    .cart--alt .cart__subtitle {
        margin-bottom: 16px;
    }
}
@media (max-width: 1650px) {
    .cart--alt .cart__col {
        display: block;
    }
}
@media (max-width: 1023px) {
    .cart--alt .cart__col {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    .cart--alt .cart__col {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 37px;
    }
}
@media (max-width: 1650px) {
    .cart--alt .cart__col--size-1 {
        max-width: 33.33%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
    }
}
@media (max-width: 1023px) {
    .cart--alt .cart__col--size-1 {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    .cart--alt .cart__col--size-1 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 1650px) {
    .cart--alt .cart__col--size-2 {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    .cart--alt .cart__col--size-2 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0;
    }
}
@media (max-width: 1023px) {
    .cart--alt .cart__col--fullwidth {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 1650px) {
    .cart--alt .cart__actions--secondary {
        margin: 0;
    }
}
@media (max-width: 1023px) {
    .cart--alt .cart__actions--secondary {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}
@media (max-width: 767px) {
    .cart--alt .cart__actions--secondary {
        position: absolute;
        bottom: 47px;
        left: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}
@media (max-width: 767px) {
    .cart--alt .cart__btn {
        max-width: 100%;
        margin: 0 0 15px;
    }
}
@media (max-width: 767px) {
    .cart--tertiary {
        padding-bottom: 146px;
    }
}
.cart--tertiary .cart__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .cart--tertiary .cart__head {
        display: block;
        padding-bottom: 20px;
    }
}
.cart--tertiary .cart__title {
    border: none;
}
@media (max-width: 767px) {
    .cart--tertiary .cart__title {
        padding-bottom: 0;
    }
}
.cart--tertiary .cart__head-aside {
    min-width: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
    padding: 17px 45px 0 0;
    overflow: hidden;
    letter-spacing: 0.02em;
    font-weight: 300;
}
@media (max-width: 767px) {
    .cart--tertiary .cart__head-aside {
        max-width: 210px;
        padding: 0;
    }
}
.cart--tertiary .cart__head-aside-col {
    width: 50%;
    padding: 0 10px;
}
.cart--tertiary .cart__head-aside span {
    white-space: nowrap;
    display: block;
    margin-bottom: 18px;
    font-size: 18px;
    color: #ddbd78;
}
.cart--tertiary .cart__head-aside p {
    margin-bottom: 18px;
}
.cart--tertiary .cart__warning {
    font-size: 23px;
    font-family: "Replica", Arial, Helvetica, sans-serif;
    letter-spacing: 0.02em;
}
.cart--tertiary .cart__subtitle--alt {
    padding-top: 0;
}
.cart--tertiary .cart__col {
    margin-bottom: 66px;
}
@media (max-width: 767px) {
    .cart--tertiary .cart__col {
        margin-bottom: 37px;
    }
}
@media (max-width: 767px) {
    .cart--tertiary .cart__col--fullwidth {
        margin-bottom: 27px;
    }
}
.cart--tertiary .cart__row {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}
.cart--tertiary .cart__subtitle--alt {
    max-width: 33.5%;
}
@media (max-width: 767px) {
    .cart--tertiary .cart__subtitle--alt {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .cart--tertiary .cart__aside {
        padding-top: 47px;
    }
}
@media (max-width: 767px) {
    .cart--tertiary .cart__title--alt {
        margin-bottom: 34px;
    }
}
.cart--tertiary .cart__actions--secondary {
    margin: 15px 0 0 auto;
}
@media (max-width: 767px) {
    .cart--tertiary .cart__actions--secondary {
        bottom: 27px;
    }
}
@media (max-width: 767px) {
    .cart--tertiary .cart__details p {
        width: 80%;
        padding-bottom: 3px;
        font-size: 16px;
        letter-spacing: 0.08em;
        line-height: 1.4;
    }
}
/* ------------------------------------------------------------ *\
	Checkbox
\* ------------------------------------------------------------ */
.checkbox {
    position: relative;
}
.checkbox input {
    width: 0;
    height: 0;
    position: absolute;
}
.checkbox label {
    width: 14px;
    height: 14px;
    display: block;
    position: relative;
}
.checkbox input[type='checkbox']~label:before {
    width: 14px;
    height: 14px;
    background: white;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, white), to(#dbdbdb));
    background: -o-linear-gradient(bottom, white 45%, #dbdbdb 100%);
    background: linear-gradient(0deg, white 45%, #dbdbdb 100%);
    border: solid 1px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin: 0;
}
.checkbox input[type='checkbox']:checked~label:before {
    width: 14px;
    height: 14px;
    background: #3B99FC;
    border: solid 1px #3b77fc;
    border-radius: 3px;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    display: block;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.checkbox input[type='checkbox']~label:after {
    width: 8px;
    height: 6px;
    color: #fff;
    top: 3px;
    left: 3px;
    z-index: 6;
    font-size: 10px;
}
/* ------------------------------------------------------------ *\
  Collection Item
\* ------------------------------------------------------------ */
.collection-item {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.collection-item a {
    text-decoration: none;
    width: 100%;
}
.collection-item:hover .collection-item__image:after {
    opacity: 0;
}
.collection-item__image {
    overflow: hidden;
    border-radius: 3px;
    position: relative;
    padding-top: 100%;
    background-color: black;
}
.collection-item .collection-item__image img {
    margin: 0;
    padding: 0;
    transition-duration: 0.5s;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.collection-item .collection-item__image:hover img {
    transform: scale(1.1);
}
.collection-item h3 {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.2rem;
}
@media (max-width: 1400px) {
    .collection-item .collection-item__btn {
        font-size: 18px;
    }
}
@media (max-width: 1200px) {
    .collection-item .collection-item__btn {
        font-size: 16px;
        padding: 12px 15px;
    }
}
@media (max-width: 767px) {
    .collection-item .collection-item__btn {
        font-size: 14px;
        min-width: 0;
        padding: 3px 13px;
        white-space: pre-wrap;
    }
}
/* ------------------------------------------------------------ *\
	Content
\* ------------------------------------------------------------ */
.content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    max-width: 100%;
    padding: 90px 0 70px 100px;
    overflow-x: hidden;
}
@media (max-width: 1650px) {
    .content {
        padding-left: 50px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .content {
        display: none;
    }
}
.content .content__cols {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    margin: 0 -54px;
}
.content .content__cols .col {
    padding: 0 54px;
}
.content .content__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .content .content__head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.content .content__title {
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 25px;
    line-height: 1.32;
    letter-spacing: 0.02em;
}
.content--secondary {
    padding: 5px 0 45px 50px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .content--secondary {
        display: block;
        padding: 0;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .content--secondary .content__title {
        display: none;
    }
}
.content--secondary .content__title span {
    display: inline-block;
}
.content--secondary .content__title svg {
    fill: #ddbd78;
    margin-right: 30px;
}
.content--secondary .content__subtitle {
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.36;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.content--secondary .content__subtitle span {
    margin-right: 15px;
    -ms-flex-item-align: end;
    align-self: flex-end;
}
/*  Tertiary  */
.content--tertiary {
    padding-bottom: 145px;
}
@media (max-width: 1199px) {
    .content--tertiary {
        padding-bottom: 20px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .content--tertiary .content__title {
        display: block;
        text-transform: capitalize;
        font-size: 22px;
        margin-bottom: 30px;
    }
}
.content--tertiary .content__title svg {
    margin-right: 10px;
}
/*  Admin  */
@media (max-width: 1023px) {
    .content--admin {
        padding-left: 0;
    }
}
.content--admin .content__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.content--admin .content__title svg {
    fill: #080808;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .content--admin .content__head {
        margin-bottom: 20px;
    }
}
.content--admin .content__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (max-width: 1399px) {
    .content--admin .content__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}
.content--admin .content__actions .btn+.btn {
    margin-left: 32px;
}
@media (max-width: 1399px) {
    .content--admin .content__actions .btn+.btn {
        margin: 15px 0 0;
    }
}
.content--admin .content__actions a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 11px 30px 9px;
}
.content--admin .content__actions a span {
    margin-top: 2px;
    margin-right: 18px;
    line-height: 1;
}
.content--admin .content__actions a span svg {
    fill: currentColor;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .content--admin .content__body {
        padding-top: 10px;
    }
}
.content--admin .btn--account {
    margin-bottom: 15px;
}
.content--small {
    padding-left: 20px;
}
/* ------------------------------------------------------------ *\
  Filters
\* ------------------------------------------------------------ */
.filters {
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: normal;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .filters.alignright {
        float: none;
    }
}
/* ------------------------------------------------------------ *\
	Form-account
\* ------------------------------------------------------------ */
.form-account {
    font-weight: 300;
}
.form-account .form__title {
    display: none;
}
.form-account .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-account .form__row {
        margin-bottom: 23px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.form-account .form__label {
    max-width: 34%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 34%;
    flex: 0 0 34%;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-account .form__label {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 1.35;
        letter-spacing: -0.01em;
    }
}
.form-account .form__controls {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-account .form__controls {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.form-account .form__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-account .form__actions {
        display: block;
    }
}
.form-account .form__actions--secondary {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.form-account .field,
.form-account .select select {
    width: 100%;
    height: 56px;
    font-weight: 300;
}
.form-account .field::-webkit-input-placeholder {
    color: #080808;
}
.form-account .field::-moz-placeholder {
    color: #080808;
}
.form-account .field:-ms-input-placeholder {
    color: #080808;
}
.form-account .field::-ms-input-placeholder {
    color: #080808;
}
.form-account .field::placeholder {
    color: #080808;
}
.form-account .select {
    width: 100%;
}
.form-account .select select {
    background-size: 43px calc(100% + 7px);
}
.form-account .btn {
    padding: 10px 7%;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-account .btn--edit {
        display: none;
    }
}
.form-account .btn+.btn {
    margin-left: 30px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-account .btn+.btn {
        margin: 15px 0 0;
    }
}
.form-account .checkbox~label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    padding-left: 15px;
}
/*  Secondary  */
.form-account--secondary .form__label {
    font-size: 20px;
    letter-spacing: -0.01em;
}
.form-account--secondary .btn {
    padding-left: 40px;
    padding-right: 40px;
}
/* ------------------------------------------------------------ *\
	Form-edit-item
\* ------------------------------------------------------------ */
.form-edit-item {
    border: solid 2px #ddbd78;
    padding: 80px;
}
@media (max-width: 1199px) {
    .form-edit-item {
        padding: 30px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item {
        padding: 0 0 30px;
        border: 0;
    }
}
.form-edit-item p {
    font-weight: 300;
    font-size: 16px;
}
.form-edit-item .form__cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -66px;
}
@media (max-width: 1650px) {
    .form-edit-item .form__cols {
        margin: 0 -20px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item .form__cols {
        margin: 0;
    }
}
.form-edit-item .form__cols--nomargin {
    margin: 0;
}
@media (max-width: 1399px) {
    .form-edit-item .form__cols--alt {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.form-edit-item .form__hint {
    display: block;
    color: #ddbd78;
}
.form-edit-item .form__col {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media (max-width: 1023px) {
    .form-edit-item .form__col.flexend {
        -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
        justify-content: stretch;
    }
}
.form-edit-item .form__col--size-1 {
    max-width: 35%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
}
@media (max-width: 1399px) {
    .form-edit-item .form__col--size-1 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.form-edit-item .form__col--size-2 {
    max-width: 23%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23%;
    flex: 0 0 23%;
    padding-right: 10px;
}
@media (max-width: 1399px) {
    .form-edit-item .form__col--size-2 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.form-edit-item .form__col--1of2 {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 0 66px;
}
@media (max-width: 1650px) {
    .form-edit-item .form__col--1of2 {
        padding: 0 20px;
    }
}
@media (max-width: 1023px) {
    .form-edit-item .form__col--1of2 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item .form__col--1of2 {
        padding: 0;
    }
}
.form-edit-item .form__col--2of3 {
    max-width: 66.66%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66%;
    flex: 0 0 66.66%;
}
@media (max-width: 1399px) {
    .form-edit-item .form__col--2of3 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.form-edit-item .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
@media (max-width: 1023px) {
    .form-edit-item .form__row {
        margin-bottom: 15px;
    }
}
.form-edit-item .form__row--nomargin {
    margin: 0;
}
@media (max-width: 1023px) {
    .form-edit-item .form__actions {
        float: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item .form__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}
.form-edit-item .form__actions--alt {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1399px) {
    .form-edit-item .form__actions--alt {
        margin-top: 20px;
    }
}
.form-edit-item .form__actions--alt a {
    padding: 11px 27px 8px;
}
.form-edit-item .form__actions--alt a+a {
    margin-left: 17px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item .form__actions--alt a+a {
        margin-left: 0;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item .form__actions a+a {
        margin: 10px 0 0;
    }
}
.form-edit-item .form__image {
    margin-right: 20px;
    width: 160px;
    height: 115px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item .form__image {
        width: 100%;
        height: 72vw;
        margin-bottom: 15px;
    }
}
.form-edit-item .form__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.form-edit-item .form__label {
    margin-top: 18px;
    font-weight: normal;
    font-size: 16px;
}
@media (max-width: 1399px) {
    .form-edit-item .form__label {
        margin-top: 0;
    }
}
.form-edit-item .form__label--nomargin {
    margin: 0;
}
.form-edit-item .form__label--dimensions {
    max-width: 26.45%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26.45%;
    flex: 0 0 26.45%;
}
.form-edit-item .form__controls {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.form-edit-item .form__controls--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-edit-item .form__controls--flexstart {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item .form__controls--flexstart {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.form-edit-item .form__controls--1of3 {
    max-width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
}
.form-edit-item .form__controls--dimensions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 20px;
}
.form-edit-item .form__controls svg {
    margin-left: 25px;
    margin-top: 8px;
}
.form-edit-item .form__field,
.form-edit-item .form__select select {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 17px;
    border: solid 1px rgba(112, 112, 112, 0.25);
    background-size: 43px calc(100% + 7px);
}
.form-edit-item .form__select {
    width: 100%;
}
.form-edit-item .form__select--small {
    width: 40%;
}
.form-edit-item .form__field--textarea {
    resize: none;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item .form__field--textarea {
        height: 150px;
    }
}
.form-edit-item .form__field--textarea-long {
    height: 291px;
}
.form-edit-item .form__field--textarea-countries {
    width: 211px;
    height: 162px;
}
.form-edit-item .form__field--small {
    max-width: 80px;
    margin-left: 7px;
    padding: 4px 5px;
    font-size: 16px;
}
.form-edit-item .form__field--size-45 {
    max-width: 45%;
}
.form-edit-item .form__field--dimensions {
    max-width: 65px;
}
@media (max-width: 1023px) {
    .form-edit-item--alt .form__col--1of2 {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-edit-item--alt .form__col--1of2 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
/* ------------------------------------------------------------ *\
  Form login
\* ------------------------------------------------------------ */
.form-login {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border: solid 3px #000;
    border-radius: 5px;
    padding: 67px 35px;
}
.login__content .form-login-top {
    margin-bottom: 2rem;
}
.form-login .form__cols {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .form-login .form__col {
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 767px) {
    .form-login .form__col+.form__col {
        margin-top: 15px;
    }
}
.form-login .form__head {
    margin-bottom: 50px;
}
.form-login .form__head p {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
@media (max-width: 767px) {
    .form-login .form__head p {
        font-size: 15px;
    }
}
.form-login .form__title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .form-login .form__title {
        font-size: 12px;
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .form-login {
        padding: 40px 35px;
    }
}
.form-login .form__text {
    margin-bottom: 25px;
}
.form-login .form__text p {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -.02em;
}
@media (max-width: 767px) {
    .form-login .form__text p {
        font-size: 16px;
    }
}
.form-login .form__text p span {
    font-size: 20px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .form-login .form__text p span {
        font-size: 12px;
    }
}
.form-login .form__row {
    margin-bottom: 0;
}
.form-login .form__row+.form__row {
    margin-top: 32px;
}
@media (max-width: 767px) {
    .form-login .form__row+.form__row {
        margin-top: 15px;
    }
}
.form-login form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.form-login .form__inner {
    max-width: 540px;
    width: 100%;
}
.form-login .form__inner--message {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.form-login .form__label {
    display: block;
    font-weight: 900;
    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding-left: 15px;
    margin-bottom: 13px;
}
@media (max-width: 767px) {
    .form-login .form__label {
        font-size: 14px;
    }
}
.form-login .form__field {
    width: 100%;
    height: 37px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 1;
    border: solid 1px #ABABAB;
    border-radius: 0 !important;
}
@media (max-width: 767px) {
    .form-login .form__field {
        font-size: 14px;
    }
}
.form-login .form__field::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}
.form-login .form__field::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
    transform: translateY(2px);
}
.form-login .form__field:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}
.form-login .form__field::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}
.form-login .form__field::placeholder {
    color: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}
.form-login .form__field--textarea {
    height: 110px;
    padding-top: 15px;
    resize: vertical;
}
@media (max-width: 767px) {
    .form-login .form__field--textarea {
        height: 105px;
    }
}
.form-login .form__actions {
    margin-top: 23px;
}
.form-login .form__pass {
    display: block;
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 21px;
}
@media (max-width: 767px) {
    .form-login .form__pass {
        font-size: 14px;
    }
}
.form-login .form__actions-inner {
    text-align: right;
}
.form-login .form__btn {
    padding: 10px 56px;
}
@media (max-width: 767px) {
    .form-login .form__btn {
        display: block;
        width: 100%;
        font-size: 14px;
        padding-left: 0;
        padding-right: 0;
        margin-top: 15px;
    }
}
.form-login.is-send .form__inner {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.form-login.is-send .form__inner--message {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: opacity .5s, visibility .5s;
    -o-transition: opacity .5s, visibility .5s;
    transition: opacity .5s, visibility .5s;
}
.form-login--large {
    max-width: 1360px;
}
.form-login--large .form__inner {
    max-width: 1140px;
}
.form-login--large .form__actions {
    margin-top: 70px;
}
@media (max-width: 767px) {
    .form-login--large .form__actions {
        margin-top: 30px;
    }
}
.form-login--large .form__actions-inner {
    text-align: center;
}
/* ------------------------------------------------------------ *\
	Form-order-filters
\* ------------------------------------------------------------ */
.form-order-filters {
    border: solid 2px #ddbd78;
    padding: 37px 48px 14px 53px;
    margin-bottom: 73px;
    font-size: 17px;
}
@media (max-width: 1400px) {
    .form-order-filters {
        margin-bottom: 30px;
        padding: 30px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-order-filters {
        padding: 30px 0;
        border-left: 0;
        border-right: 0;
    }
}
.form-order-filters .form__select {
    width: 100%;
    max-width: 313px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    position: relative;
    margin-left: 20px;
}
@media (max-width: 1400px) {
    .form-order-filters .form__select {
        margin-left: inherit;
    }
}
@media (max-width: 1023px) {
    .form-order-filters .form__select {
        max-width: 274px;
    }
}
@media (max-width: 767px) {
    .form-order-filters .form__select {
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
    }
}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .form-order-filters .form__select {
        display: inline-block;
    }
}
.form-order-filters .form__select select {
    width: 100%;
    background-image: none;
    background-color: transparent;
    border: 1px solid #eee;
    line-height: 18px;
}
.form-order-filters .form__select-arrow {
    width: 34px;
    height: 100%;
    background-color: #080808;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}
.form-order-filters .form__cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.form-order-filters .form__col {
    max-width: 31.5%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 31.5%;
    flex: 0 0 31.5%;
    padding: 0 10px;
}
@media (max-width: 1400px) {
    .form-order-filters .form__col {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    .form-order-filters .form__col {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.form-order-filters .form__col--size-2 {
    max-width: 18.5%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18.5%;
    flex: 0 0 18.5%;
}
@media (max-width: 1400px) {
    .form-order-filters .form__col--size-2 {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    .form-order-filters .form__col--size-2 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 1400px) {
    .form-order-filters .form__label {
        width: 20%;
    }
}
@media (max-width: 1023px) {
    .form-order-filters .form__label {
        width: 100%;
    }
}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .form-order-filters .form__label {
        display: inline-block;
    }
}
.form-order-filters .form__field {
    margin-right: 15px;
    font-size: 18px;
    color: #9D9D99;
    width: 100%;
}
@media (max-width: 1023px) {
    .form-order-filters .form__field {
        margin-right: 0;
    }
}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .form-order-filters .form__field {
        display: inline-block;
    }
}
.form-order-filters .form__field--size-1 {
    max-width: 276px;
    padding: 6px;
    margin-left: 18px;
}
@media (max-width: 1400px) {
    .form-order-filters .form__field--size-1 {
        margin-left: 0;
    }
}
@media (max-width: 1023px) {
    .form-order-filters .form__field--size-1 {
        max-width: 240px;
    }
}
@media (max-width: 767px) {
    .form-order-filters .form__field--size-1 {
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
    }
}
.form-order-filters .form__field--size-2 {
    max-width: 112px;
    padding: 6px;
}
@media (max-width: 767px) {
    .form-order-filters .form__field--size-2 {
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
    }
}
.form-order-filters .form__field-date {
    margin-right: 25px;
    font-size: 15px;
    padding: 8px 6px 7px;
}
.form-order-filters .form__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 33px;
}
@media (max-width: 1400px) {
    .form-order-filters .form__controls {
        margin-bottom: 15px;
    }
}
@media (max-width: 1023px) {
    .form-order-filters .form__controls {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .form-order-filters .form__controls {
        display: block;
    }
}
.form-order-filters .form__controls a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*  Admin  */
.form--admin {
    padding-bottom: 22px;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 25px;
}
.form--admin .form__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1023px) {
    .form--admin .form__body {
        display: block;
    }
}
.form--admin .form__cols {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1400px) {
    .form--admin .form__cols {
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
    }
}
@media (max-width: 1023px) {
    .form--admin .form__cols {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.form--admin .form__col {
    margin-bottom: 0;
}
@media (max-width: 1023px) {
    .form--admin .form__col {
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 1650px) {
    .form--admin .form__col--size-2 .form__controls {
        display: block;
    }
}
@media (max-width: 1400px) {
    .form--admin .form__col--size-2 .form__controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.form--admin .form__col--size-2 .form__label {
    margin: 0;
}
@media (max-width: 1650px) {
    .form--admin .form__col--size-2 .form__label {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 1400px) {
    .form--admin .form__col--size-2 .form__label {
        max-width: 30%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
    }
}
.form--admin .form__col--1of3 {
    max-width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
}
@media (max-width: 1399px) {
    .form--admin .form__col--1of3 {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 1023px) {
    .form--admin .form__col--1of3 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.form--admin .form__col.flex-start {
    margin-right: auto;
}
@media (max-width: 1023px) {
    .form--admin .form__col.flex-start {
        margin: 0;
    }
}
.form--admin .form__col.flex-start .form__controls {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.form--admin .form__submit {
    background-color: #080808;
    max-width: 34px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 34px;
    flex: 0 0 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 15px 10px;
}
@media (max-width: 1023px) {
    .form--admin .form__submit {
        max-width: 100%;
        height: 34px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin: 15px 0 0;
    }
}
.form--admin .form__submit a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.form--admin .form__label {
    font-weight: normal;
    letter-spacing: -0.01em;
    min-width: 30%;
    padding-right: 10px;
}
@media (max-width: 1199px) {
    .form--admin .form__label {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
    }
}
.form--admin .form__select {
    margin: 0;
}
.form--admin .form__select select {
    background-image: url(../images/cap.png);
    background-position: calc(100% + 2px) center;
    background-size: 35px calc(100% + 7px);
    background-repeat: no-repeat;
}
.form--admin .form__select.form__field--size-2,
.form--admin .form__select.form__field--size-1 {
    padding: 0;
}
.form--admin .form__field--size-1 {
    max-width: 50%;
}
@media (max-width: 1199px) {
    .form--admin .form__field--size-1 {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        max-width: 100%;
    }
}
.form--admin .form__field--size-2 {
    max-width: 50%;
}
@media (max-width: 1199px) {
    .form--admin .form__field--size-2 {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        max-width: 100%;
    }
}
.form--admin .form__field--size-3 {
    max-width: 40%;
    padding: 6px;
}
@media (max-width: 1199px) {
    .form--admin .form__field--size-3 {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        max-width: 100%;
    }
}
.form--admin .form__controls {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 15px;
}
@media (max-width: 1650px) {
    .form--admin .form__controls {
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
    }
}
@media (max-width: 1199px) {
    .form--admin .form__controls {
        display: block;
    }
}
@media (max-width: 1023px) {
    .form--admin .form__controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.form--admin-normal .form__cols {
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .form--admin-normal .form__cols {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
.form--admin-normal .form__controls {
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
}
/* ------------------------------------------------------------ *\
	Form-upload
\* ------------------------------------------------------------ */
.form-upload {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    padding: 0 15px;
}
@media (max-width: 1399px) {
    .form-upload {
        max-width: 60%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        margin-bottom: 30px;
    }
}
@media (max-width: 1199px) {
    .form-upload {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0;
    }
}
.form-upload .form__controls {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-upload .form__label {
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding-right: 10px;
    font-weight: 300;
}
@media (max-width: 1399px) {
    .form-upload .form__label {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .form-upload .form__label {
        font-size: 20px;
    }
}
.form-upload .field {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.form-upload .btn {
    width: 100%;
}
/* ------------------------------------------------------------ *\
	Grid-news
\* ------------------------------------------------------------ */
.grid-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.grid-news .grid__col {
    width: 100%;
    max-width: 512px;
}
/* ------------------------------------------------------------ *\
  Grid Responsive
\* ------------------------------------------------------------ */
@media (max-width: 1200px) {
    .grid-responsive {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -30px -18px;
    }
}
/* ------------------------------------------------------------ *\
  Grid
\* ------------------------------------------------------------ */
.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -40px -45px;
}
@media (max-width: 1400px) {
    .grid {
        margin: -30px;
    }
}
@media (max-width: 767px) {
    .grid {
        margin: -50px;
    }
}
.grid .grid__item {
    padding: 40px 45px;
}
@media (max-width: 1400px) {
    .grid .grid__item {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .grid .grid__item {
        padding: 50px;
    }
}
.grid--of-5 .grid__item {
    width: 16.6%;
}
@media (max-width: 1650px) {
    .grid--of-5 .grid__item {
        width: 20%;
    }
}
@media (max-width: 1400px) {
    .grid--of-5 .grid__item {
        width: 25%;
    }
}
@media (max-width: 1023px) {
    .grid--of-5 .grid__item {
        width: 33.3%;
    }
}
@media (max-width: 767px) {
    .grid--of-5 .grid__item {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .grid--of-5 .grid__item {
        width: 100%;
    }
}
/* ------------------------------------------------------------ *\
	Hero-info
\* ------------------------------------------------------------ */
.hero-info {
    position: relative;
}
@media (max-width: 1023px) {
    .hero-info {
        margin: 0 -36px;
        overflow-x: hidden;
    }
}
.hero-info .hero__background img {
    min-height: 378px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.hero-info .hero__title {
    max-width: 495px;
    position: absolute;
    top: 76px;
    left: 75px;
    z-index: 5;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 76px;
    line-height: 0.87;
    letter-spacing: -0.01em;
    color: #fff;
}
@media (max-width: 1023px) {
    .hero-info .hero__title {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .hero-info .hero__title {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 10vw;
    }
}
/* ------------------------------------------------------------ *\
	Intro
\* ------------------------------------------------------------ */
.intro {
    position: relative;
    overflow: hidden;
}
.intro img {
    display: block;
    width: 100%;
    margin: 0;
}
@media (max-width: 767px) {
    .intro img {
        max-width: none;
        width: 620px;
    }
}
.intro .intro__title {
    position: absolute;
    bottom: 9.1%;
    left: 4.2%;
    color: #fff;
    font-size: 76px;
    font-weight: 400;
    max-width: 450px;
    line-height: 0.92;
}
@media (max-width: 1200px) {
    .intro .intro__title {
        font-size: 60px;
    }
}
@media (max-width: 1023px) {
    .intro .intro__title {
        font-size: 45px;
    }
}
@media (max-width: 767px) {
    .intro .intro__title {
        display: none;
    }
}
.intro .intro__title--top {
    bottom: none;
    top: 9%;
}
.intro--alt {
    max-width: 1760px;
    margin: auto;
}
@media (max-width: 767px) {
    .intro--alt {
        max-width: none;
        width: 100%;
        height: 253px;
        background-size: cover;
        background-position: 40% center;
    }
}
@media (max-width: 767px) {
    .intro--alt img {
        display: none;
        background-repeat: no-repeat;
    }
}
/* ------------------------------------------------------------ *\
  Item List
\* ------------------------------------------------------------ */
.item-list+.item-list {
    margin-top: 29px;
    padding-top: 29px;
    border-top: solid 1px #707070;
}
@media (max-width: 1200px) {
    .item-list+.item-list {
        padding-top: 30px;
        margin-top: 0;
        border: 0;
    }
}
.item-list--titles+.item-list {
    margin-top: 0;
    padding-top: 0;
    border: 0;
}
@media (max-width: 1200px) {
    .item-list--titles+.item-list {
        padding-top: 30px;
    }
}
@media (max-width: 1200px) {
    .item-list {
        width: 33.3%;
        padding: 30px 18px;
    }
}
@media (max-width: 767px) {
    .item-list {
        width: 50%;
    }
}
.item-list .item__image {
    display: none;
}
@media (max-width: 1200px) {
    .item-list .item__image {
        display: block;
        text-align: center;
        text-align: center;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .item-list .item__image {
        margin-bottom: 26px;
    }
}
.item-list .item__image img {
    margin: 0;
}
@media (max-width: 767px) {
    .item-list .item__image img {
        max-width: 150px;
        height: 160px;
        width: 100%;
    }
}
.item-list .item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 300;
    letter-spacing: .06em;
}
@media (max-width: 1200px) {
    .item-list .item__content {
        display: block;
    }
}
.item-list .item__code {
    width: 6.6%;
}
@media (max-width: 1200px) {
    .item-list .item__code {
        font-size: 18px;
        font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
        color: #969696;
    }
}
@media (max-width: 767px) {
    .item-list .item__code {
        font-size: 13px;
    }
}
.item-list .item__title {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 300;
    width: 17.2%;
    letter-spacing: 0.06em;
    padding-right: 15px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
@media (max-width: 1200px) {
    .item-list .item__title {
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 0.05em;
        color: #080808;
        margin-bottom: 5px;
    }
}
@media (max-width: 767px) {
    .item-list .item__title {
        font-size: 11px;
    }
}
.item-list .item__inner-qty {
    width: 7.6%;
}
@media (max-width: 1650px) {
    .item-list .item__inner-qty {
        width: 6%;
    }
}
.item-list .item__outer-qty {
    width: 7.6%;
}
@media (max-width: 1650px) {
    .item-list .item__outer-qty {
        width: 6%;
    }
}
.item-list .item__barcode {
    width: 10.7%;
    font-size: 16px;
    padding-right: 15px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.item-list .item__track-barcode {
    width: 11.1%;
}
.item-list .item__weight {
    width: 8.2%;
}
@media (max-width: 1650px) {
    .item-list .item__weight {
        width: 6%;
    }
}
.item-list .item__dimensions {
    width: 13.1%;
}
.item-list .item__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 6.3%;
}
@media (max-width: 1650px) {
    .item-list .item__price {
        width: 5.5%;
    }
}
@media (max-width: 1200px) {
    .item-list .item__price {
        display: block;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .item-list .item__price {
        font-size: 15px;
        margin-bottom: 4px;
    }
}
.item-list .item__qty-inner {
    display: none;
}
@media (max-width: 1200px) {
    .item-list .item__qty-inner {
        display: block;
        font-size: 14px;
        font-weight: 400;
        margin-top: 2px;
    }
}
@media (max-width: 767px) {
    .item-list .item__qty-inner {
        font-size: 10px;
    }
}
.item-list .item__qty label {
    font-weight: 300;
}
@media (max-width: 767px) {
    .item-list .item__qty label {
        font-size: 10px;
    }
}
@media (max-width: 767px) {
    .item-list .item__qty input {
        width: 33px;
        height: 18px;
        font-size: 10px;
    }
}
.item-list .item__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 11.6%;
}
@media (max-width: 1650px) {
    .item-list .item__actions {
        width: 17%;
    }
}
@media (max-width: 1200px) {
    .item-list .item__actions {
        display: block;
    }
}
.item-list .item__actions-inner {
    font-weight: 700;
}
@media (max-width: 1200px) {
    .item-list .item__actions-inner {
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    .item-list .item__btn {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 11px;
        font-weight: 900;
    }
}
@media (max-width: 1200px) {
    .item-list .item__inner-qty,
    .item-list .item__outer-qty,
    .item-list .item__barcode,
    .item-list .item__track-barcode,
    .item-list .item__weight,
    .item-list .item__dimensions {
        display: none;
    }
    .item-list .item__code,
    .item-list .item__title,
    .item-list .item__price,
    .item-list .item__actions {
        width: 100%;
    }
}
/*  TITLES  */
.item-list--titles {
    margin-bottom: 32px;
    border-bottom: solid 1px #707070;
    padding: 19px 0;
    font-size: 14px;
}
@media (max-width: 1200px) {
    .item-list--titles {
        display: none;
    }
}
.item-list--titles .item__title {
    font-size: 14px;
}
.item-list--titles .item__barcode {
    font-size: 14px;
}
.item-list--titles .item__dimensions {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.item-list--titles .item__field {
    font-weight: 700;
}
@media (max-width: 1650px) {
    .item-list--titles .item__field {
        padding-right: 15px;
    }
}
@media (max-width: 1650px) {
    .item-list--titles .item__weight {
        white-space: nowrap;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}
/* ------------------------------------------------------------ *\
  Item
\* ------------------------------------------------------------ */
.item .item__image {
    display: block;
    text-align: center;
    margin-bottom: 14px;
    height: 252px;
}
@media (max-width: 767px) {
    .item .item__image {
        margin-bottom: 15px;
    }
}
.item .item__image img {
    max-width: 250px;
    width: auto;
    height: 100%;
    margin: 0 auto;
}
.item .item__code {
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #969696;
}
.item .item__title {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.33;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
    /*white-space: nowrap;*/
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.item .item__price {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}
.item .item__qty-inner {
    display: none;
}
@media (max-width: 767px) {
    .item .item__qty-inner {
        display: block;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0.02em;
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}
.item .item__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.item .item__actions-inner {
    margin-left: 15px;
}
@media (max-width: 767px) {
    .item .item__actions-inner {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .item .item__btn {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
.item--big .item__image {
    height: 340px;
}
@media (max-width: 1400px) {
    .item--big .item__image {
        height: 280px;
    }
}
@media (max-width: 767px) {
    .item--big .item__image {
        height: 162px;
    }
}
.item--big .item__code {
    font-size: 23px;
    margin-bottom: 5px;
}
@media (max-width: 1400px) {
    .item--big .item__code {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .item--big .item__code {
        font-size: 18px;
    }
}
.item--big .item__title {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: .05em;
}
@media (max-width: 1400px) {
    .item--big .item__title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .item--big .item__title {
        font-size: 18px;
    }
}
.item--big .item__price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 23px;
}
@media (max-width: 1400px) {
    .item--big .item__price {
        font-size: 20px;
    }
}
.item--big .item__qty label {
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-right: 30px;
}
@media (max-width: 1400px) {
    .item--big .item__qty label {
        font-size: 14px;
        margin-right: 20px;
    }
}
.item--big .item__qty input {
    width: 58px;
    height: 32px;
    font-size: 16px;
}
@media (max-width: 1400px) {
    .item--big .item__qty input {
        width: 50px;
        height: 30px;
    }
}
.item--big .item__btn {
    font-size: 20px;
    font-weight: 900;
    padding: 9px 40px;
}
@media (max-width: 1400px) {
    .item--big .item__btn {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .item--big .item__actions {
        display: none;
    }
}
/* ------------------------------------------------------------ *\
  List-item
\* ------------------------------------------------------------ */
.list-item {
    width: 104px;
    height: 104px;
    background-color: #dddddd;
    position: relative;
}
.list-item:after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 900;
    color: #000;
}
.list-item--large {
    width: 183px;
    height: 183px;
}
.list-item a {
    height: 100%;
    display: block;
    position: relative;
    z-index: 10;
}
.list-item img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}
/* ------------------------------------------------------------ *\
	List
\* ------------------------------------------------------------ */
[class^='list-'] {
    list-style: none outside none;
    margin-left: 0;
}
/* ------------------------------------------------------------ *\
	List Categories
\* ------------------------------------------------------------ */
.list-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 50px;
}
@media (max-width: 700px) {
    .list-categories {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
/* ------------------------------------------------------------ *\
	List Contacts
\* ------------------------------------------------------------ */
.list-contacts {
    margin: 0;
    padding: 0;
}
.list-contacts a {
    text-decoration: none;
    cursor: pointer;
}
.list-contacts a span {
    font-weight: 700;
}
/* ------------------------------------------------------------ *\
	List-images
\* ------------------------------------------------------------ */
.list-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -13px;
    padding: 41px 0 15px;
    overflow: hidden;
    list-style: none;
}
@media (max-width: 375px) {
    .list-images {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .list-images {
        margin: 0 -6px;
        padding: 36px 0 12px;
    }
}
.list-images li {
    max-width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    display: block;
    margin-bottom: 24px;
    padding: 0 13px;
}
@media (max-width: 1023px) {
    .list-images li {
        max-width: 153px;
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 153px;
        flex: 0 0 153px;
        padding: 0 6px;
    }
}
@media (max-width: 1023px) {
    .list-images li:nth-child(3n) {
        display: none;
    }
}
.list-images a {
    display: block;
    overflow: hidden;
}
.list-images img {
    margin: 0;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}
.list-images img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
/* ------------------------------------------------------------ *\
	List Account Info
\* ------------------------------------------------------------ */
.list-account-info {
    margin-bottom: 60px;
    list-style: none;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: 0.06em;
}
.list-account-info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 0;
}
.list-account-info li+li {
    border-top: solid 1px rgba(112, 112, 112, 0.25);
}
.list-account-info span {
    display: block;
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding-right: 10px;
}
.list-account-info a {
    text-decoration: none;
}
.list-account-info--large {
    margin-bottom: 0;
    font-size: 20px;
}
.list-account-info--large li {
    padding: 45px 0;
}
.list-account-info--large svg {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}
.list-requirements li {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.31;
}
/*  product images  */
.list-product-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -9px;
}
.list-product-images li {
    padding: 0 9px;
    margin-bottom: 10px;
}
/* ------------------------------------------------------------ *\
  Logo
\* ------------------------------------------------------------ */
.logo {
    display: inline-block;
}
.logo svg {
    display: block;
}
/* ------------------------------------------------------------ *\
  Main
\* ------------------------------------------------------------ */
.main {
    padding-top: 38px;
}
@media (max-width: 767px) {
    .main {
        padding-top: 18px;
    }
}
.main .main__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
/* ------------------------------------------------------------ *\
  Nav Bar
\* ------------------------------------------------------------ */
.nav-bar {
    font-size: 17px;
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    text-align: right;
    margin-bottom: 33px;
}
@media (max-width: 1023px) {
    .nav-bar {
        text-align: left;
        font-size: 26px;
    }
}
.nav-bar ul {
    list-style: none;
    list-style-position: outside;
    margin: 0;
    padding: 0;
}
.nav-bar ul>li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 17px;
}
@media (max-width: 1023px) {
    .nav-bar ul>li {
        display: block;
        margin-left: 0;
    }
}
.nav-bar ul>li>a {
    text-decoration: underline;
    display: block;
}
@media (max-width: 1023px) {
    .nav-bar ul>li>a {
        text-decoration: none;
    }
}
.nav-bar ul>li>a:hover {
    text-decoration: none;
}
/* ------------------------------------------------------------ *\
  Nav Utilities
\* ------------------------------------------------------------ */
.nav-utilities ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.nav-utilities ul>li:not(:first-child):before {
    content: '|';
    margin: 0 28px;
}
@media (max-width: 767px) {
    .nav-utilities ul>li:not(:first-child):before {
        margin: 0 11px;
    }
}
.nav-utilities ul>li>a.btn {
    min-width: 165px;
    padding: 10px;
}
.nav-utilities .nav__item-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.nav-utilities .nav__item-cart>span {
    display: block;
    text-align: right;
    line-height: 1;
    padding-right: 26px;
}
.nav-utilities .nav__item-cart>span strong {
    display: block;
    font-size: 27px;
}
@media (max-width: 767px) {
    .nav-utilities .nav__item-cart>span strong {
        font-size: 18px;
    }
}
.nav-utilities .nav__item-cart>span span {
    font-size: 17px;
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
}
@media (max-width: 767px) {
    .nav-utilities .nav__item-cart>span span {
        font-size: 12px;
    }
}
/* ------------------------------------------------------------ *\
  Nav
\* ------------------------------------------------------------ */
.nav {
    font-size: 17px;
    font-weight: 300;
}
@media (max-width: 1023px) {
    .nav {
        font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
        font-size: 26px;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
        margin-bottom: 10px;
    }
}
.nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1023px) {
    .nav ul {
        display: block;
    }
}
.nav li:not(:first-child) {
    padding-left: 25px;
}
@media (max-width: 1400px) {
    .nav li:not(:first-child) {
        padding-left: 25px;
    }
}
@media (max-width: 1023px) {
    .nav li:not(:first-child) {
        padding-left: 0;
    }
}
.nav li a {
    text-decoration: none;
    letter-spacing: 0.05em;
}
.nav li a:hover {
    text-decoration: underline;
}
.nav .nav__trigger {
    display: none;
}
@media (max-width: 1023px) {
    .nav .nav__trigger {
        display: block;
        position: absolute;
        width: 0;
        height: 100vh;
        left: 100%;
        top: 0;
    }
}
/* ------------------------------------------------------------ *\
	Options
\* ------------------------------------------------------------ */
.options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 17px;
    font-family: 'PF Handbook Pro', sans-serif;
    font-weight: 700;
    color: #000;
    padding-right: 20px;
}
.options>p {
    margin-right: 15px;
}
@media (max-width: 767px) {
    .options>p {
        display: none;
    }
}
.options>p:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 17px;
    background-color: #080808;
    margin-left: 11px;
}
.options .select {
    display: inline-block;
    width: auto;
}
/* ------------------------------------------------------------ *\
  Paging
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Popup
\* ------------------------------------------------------------ */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.51);
}
.popup.is-active {
    display: block;
}
.popup .popup__content {
    max-width: 489px;
    background-color: #fff;
    border: solid 2px #000;
    border-radius: 5px;
    padding: 55px 70px;
    position: absolute;
    top: 21.15%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .popup .popup__content {
        max-width: 100%;
        width: 100%;
        top: auto;
        bottom: 0;
        padding: 20px;
    }
}
.popup .popup__title {
    margin-bottom: 28px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.07;
}
.popup .popup__entry {
    margin-bottom: 28px;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: -0.02em;
}
.popup .popup__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.popup .btn {
    max-width: 140px;
    padding: 12px 45px 15px;
    font-size: 14px;
}
.popup .btn+.btn {
    margin-left: 20px;
}
/* ------------------------------------------------------------ *\
	Product
\* ------------------------------------------------------------ */
.product-item {
    width: 16.66%;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.085em;
    margin-bottom: 83px;
    padding-left: 92px;
    -ms-flex-item-align: end;
    align-self: flex-end;
}
@media (max-width: 1650px) {
    .product-item {
        width: 20%;
    }
}
@media (max-width: 1400px) {
    .product-item {
        width: 25%;
    }
}
@media (max-width: 1200px) {
    .product-item {
        padding: 0 10px;
    }
}
@media (max-width: 1023px) {
    .product-item {
        width: 33.33%;
    }
}
@media (max-width: 767px) {
    .product-item {
        width: 308px;
        padding: 0 3px 0 2px;
        margin-bottom: 60px;
    }
}
@media (max-width: 375px) {
    .product-item {
        width: 100%;
    }
}
.product-item:after {
    content: "";
    clear: both;
    display: table;
}
.product-item figure {
    margin-bottom: 17px;
}
@media (max-width: 767px) {
    .product-item figure {
        margin: 0 auto 15px;
    }
}
.product-item figure a {
    display: block;
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    .product-item img {
        display: block;
        margin: 0 auto;
        min-height: 314px;
    }
}
.product-item .product__code {
    display: block;
    color: #959595;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0em;
}
@media (max-width: 767px) {
    .product-item .product__code {
        margin-bottom: 5px;
    }
}
.product-item .product__name {
    display: block;
    font-weight: 300;
    width: 309px;
    line-height: 0;
    margin-bottom: 13px;
    color: #080808;
    letter-spacing: 0.019em;
    text-decoration: none;
}
@media (max-width: 1650px) {
    .product-item .product__name {
        line-height: 1;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .product-item .product__name {
        margin-bottom: 5px;
    }
}
.product-item .product__price {
    margin-bottom: 17px;
}
@media (max-width: 767px) {
    .product-item .product__price {
        margin-bottom: -5px;
    }
}
.product-item .product__inner-qty {
    display: none;
}
@media (max-width: 767px) {
    .product-item .product__inner-qty {
        display: block;
        font-size: 10px;
        font-weight: 300;
        margin-bottom: 15px;
        letter-spacing: 0;
    }
}
.product-item .product__outer-qty,
.product-item .product__barcode,
.product-item .product__track-barcode,
.product-item .product__weight,
.product-item .product__dimensions {
    display: none;
}
.product-item .product__qty {
    display: inline-block;
    float: left;
    width: 50%;
    vertical-align: middle;
}
@media (max-width: 1023px) {
    .product-item .product__qty {
        width: 100px;
    }
}
@media (max-width: 767px) {
    .product-item .product__qty {
        width: 143px;
    }
}
@media (max-width: 375px) {
    .product-item .product__qty {
        width: auto;
    }
}
.product-item .product__qty label {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    margin-right: 12px;
}
.product-item .product__qty input {
    display: inline-block;
    width: 46px;
    margin-top: 3px;
    padding: 5px 7px 2px;
    font-size: 14px;
    letter-spacing: 0.08em;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
}
.product-item .product__qty input::-webkit-outer-spin-button,
.product-item .product__qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-item .product__actions {
    display: inline-block;
    float: left;
    width: 50%;
    text-align: right;
}
@media (max-width: 1023px) {
    .product-item .product__actions {
        width: 115px;
    }
}
@media (max-width: 767px) {
    .product-item .product__actions {
        width: 156px;
        float: right;
    }
}
@media (max-width: 375px) {
    .product-item .product__actions {
        width: 130px;
    }
}
.product-item--alt {
    width: 100%;
    padding: 0;
    margin: 0;
}
.product-item--alt .product__inner-qty {
    display: none;
}
.product-item--alt .product__actions {
    width: auto;
    float: none;
}
.product-item--alt .product__code {
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    font-size: 23px;
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    .product-item--alt .product__code {
        font-size: 18px;
    }
}
.product-item--alt .product__name {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1;
    width: auto;
    margin-bottom: 7px;
}
@media (max-width: 767px) {
    .product-item--alt .product__name {
        font-size: 18px;
    }
}
.product-item--alt .product__price {
    font-size: 26px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .product-item--alt .product__price {
        font-size: 20px;
    }
}
.product-item--alt .product__foot {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .product-item--alt .product__foot {
        display: none;
    }
}
.product-item--alt .product__qty label {
    font-size: 18px;
    margin-right: 35px;
}
.product-item--alt .product__qty input {
    width: 60px;
    height: 32px;
}
.product-item--alt .product__btn {
    font-size: 20px;
    font-weight: 900;
    padding: 8px 35px;
}
.product-item--alt img {
    margin: 0 auto;
    width: 100%;
    max-width: 270px;
}
.product-item--alt figure {
    margin-bottom: 21px;
}
.product-item--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 0;
    height: 60px;
    width: 100%;
    padding-left: 0;
}
.product-item--list:after {
    content: "";
    clear: both;
    display: table;
}
@media (max-width: 1023px) {
    .product-item--list {
        display: block;
        width: 33.33%;
        height: unset;
        font-weight: 700;
        font-size: 20px;
        letter-spacing: -0.085em;
        margin-bottom: 83px;
        padding: 0;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
}
@media (max-width: 767px) {
    .product-item--list {
        width: 145px;
    }
}
@media (max-width: 375px) {
    .product-item--list {
        width: 50%;
    }
}
.product-item--list+.product--list {
    border-top: 1px solid #707070;
    height: 97px;
    padding-top: 3px;
}
@media (max-width: 1023px) {
    .product-item--list+.product--list {
        height: unset;
        border: none;
        padding-top: 0;
    }
}
.product-item--list img {
    display: none;
}
@media (max-width: 1023px) {
    .product-item--list img {
        display: block;
    }
}
@media (max-width: 767px) {
    .product-item--list img {
        min-height: unset;
        margin-bottom: 20px;
    }
}
.product-item--list .product__code {
    width: 6%;
    min-width: 55px;
    font-size: inherit;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.06em;
    color: #000;
    margin: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
@media (max-width: 1400px) {
    .product-item--list .product__code {
        width: 5%;
    }
}
@media (max-width: 1023px) {
    .product-item--list .product__code {
        width: unset;
        min-width: none;
        display: block;
        color: #959595;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.2;
        letter-spacing: 0em;
    }
}
@media (max-width: 767px) {
    .product-item--list .product__code {
        font-size: 13px;
    }
}
.product-item--list .product__name {
    width: 17%;
    min-width: 150px;
    font-size: inherit;
    margin: 0;
    line-height: 1;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
@media (max-width: 1650px) {
    .product-item--list .product__name {
        width: 13%;
    }
}
@media (max-width: 1023px) {
    .product-item--list .product__name {
        min-width: none;
        display: block;
        font-weight: 300;
        width: 309px;
        line-height: 1;
        margin-bottom: 13px;
        color: #080808;
        letter-spacing: 0.019em;
        text-decoration: none;
    }
}
@media (max-width: 767px) {
    .product-item--list .product__name {
        width: 100%;
        line-height: 1;
        font-size: 11px;
        margin-bottom: 7px;
    }
}
.product-item--list .product__inner-qty {
    display: block;
    width: 7%;
    min-width: 36px;
    font-size: inherit;
    margin: 0;
    letter-spacing: 0.3em;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
@media (max-width: 1200px) {
    .product-item--list .product__inner-qty {
        width: 4%;
    }
}
@media (max-width: 1023px) {
    .product-item--list .product__inner-qty {
        width: unset;
        min-width: none;
        display: block;
        font-size: 10px;
        font-weight: 300;
        margin-bottom: 15px;
        letter-spacing: 0;
    }
}
@media (max-width: 767px) {
    .product-item--list .product__inner-qty {
        margin-bottom: 0;
    }
}
.product-item--list .product__outer-qty {
    display: block;
    min-width: 36px;
    width: 8%;
    font-size: inherit;
    margin: 0;
    letter-spacing: 0.3em;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
@media (max-width: 1200px) {
    .product-item--list .product__outer-qty {
        width: 5%;
    }
}
@media (max-width: 1023px) {
    .product-item--list .product__outer-qty {
        display: none;
    }
}
.product-item--list .product__barcode {
    display: block;
    width: 11%;
    min-width: 135px;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: 0.078em;
    margin: 0;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
@media (max-width: 1650px) {
    .product-item--list .product__barcode {
        width: 12%;
    }
}
@media (max-width: 1023px) {
    .product-item--list .product__barcode {
        display: none;
    }
}
.product-item--list .product__track-barcode {
    display: block;
    width: 11%;
    min-width: 50px;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
@media (max-width: 1400px) {
    .product-item--list .product__track-barcode {
        width: 8%;
    }
}
@media (max-width: 1023px) {
    .product-item--list .product__track-barcode {
        display: none;
    }
}
.product-item--list .product__weight {
    display: block;
    width: 8%;
    min-width: 30px;
    font-size: inherit;
    letter-spacing: 0.06em;
    margin: 0;
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
@media (max-width: 1650px) {
    .product-item--list .product__weight {
        width: 9%;
    }
}
@media (max-width: 1023px) {
    .product-item--list .product__weight {
        display: none;
    }
}
.product-item--list .product__dimensions {
    display: block;
    width: 13%;
    min-width: 135px;
    font-size: inherit;
    letter-spacing: 0.06em;
    margin: 0;
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
@media (max-width: 1023px) {
    .product-item--list .product__dimensions {
        display: none;
    }
}
.product-item--list .product__price {
    width: 6%;
    min-width: 55px;
    font-size: inherit;
    margin: 0;
    letter-spacing: 0.06em;
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
@media (max-width: 1200px) {
    .product-item--list .product__price {
        width: 7%;
    }
}
@media (max-width: 1023px) {
    .product-item--list .product__price {
        width: unset;
        min-width: none;
        font-weight: 700;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .product-item--list .product__price {
        font-size: 15px;
    }
}
.product-item--list .product__qty {
    width: 7%;
    min-width: 90px;
    font-size: inherit;
    float: none;
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
@media (max-width: 767px) {
    .product-item--list .product__qty {
        font-size: 10px;
        margin-bottom: 16px;
    }
}
.product-item--list .product__qty label {
    margin-right: 10px;
    font-weight: 300;
    font-size: inherit;
}
@media (max-width: 1200px) {
    .product-item--list .product__qty label {
        margin-right: 5px;
    }
}
@media (max-width: 767px) {
    .product-item--list .product__qty input {
        padding: 3px 5px;
        font-size: 9px;
    }
}
.product-item--list .product__actions {
    width: 6%;
    font-size: inherit;
    float: none;
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
@media (max-width: 767px) {
    .product-item--list .product__actions {
        width: 100%;
        height: 20px;
        text-align: left;
    }
}
.product-item--list .product__actions a {
    padding: 4px 0;
    width: 70px;
    font-weight: 300;
    font-size: 11px;
}
.product-item--titles {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    border-bottom: solid 1px #000;
    margin-bottom: 32px;
}
@media (max-width: 1023px) {
    .product-item--titles {
        display: none;
    }
}
.product-item--titles .product__inner-qty,
.product-item--titles .product__outer-qty {
    letter-spacing: 0.03em;
}
.hidden {
    display: none;
}
/* ------------------------------------------------------------ *\
	Product-titles
\* ------------------------------------------------------------ */
.product-titles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.product-titles--hidden {
    display: none;
}
/* ------------------------------------------------------------ *\
  Products Related
\* ------------------------------------------------------------ */
.products-related {
    padding: 120px 0 98px;
}
@media (max-width: 1023px) {
    .products-related {
        padding: 80px 0;
    }
}
.products-related .products__container {
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    padding-top: 76px;
}
@media (max-width: 1023px) {
    .products-related .products__container {
        padding-top: 50px;
    }
}
@media (max-width: 767px) {
    .products-related .products__container {
        position: relative;
        border: 0;
    }
    .products-related .products__container:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 1px;
        right: 36px;
        background-color: rgba(0, 0, 0, 0.2);
    }
}
@media (max-width: 1200px) {
    .products-related .products__shell {
        padding: 0;
        padding-left: 36px;
    }
}
.products-related .products__title {
    margin-bottom: 110px;
    font-weight: 400;
}
@media (max-width: 767px) {
    .products-related .products__title {
        font-size: 22px;
        margin-bottom: 40px;
    }
}
.products-related .slick-slide {
    padding: 0 70px;
}
@media (max-width: 1400px) {
    .products-related .slick-slide {
        padding: 0 20px;
    }
}
@media (max-width: 1200px) {
    .products-related .slick-slide {
        width: 270px !important;
    }
}
@media (max-width: 1023px) {
    .products-related .slick-slide {
        padding: 0 20px;
    }
}
.products-related .products__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 32px;
    padding-top: 40px;
}
.products-related .products__arrow+.products__arrow {
    margin-left: 17px;
}
.products-related .products__arrow {
    font-size: 0;
    line-height: 0;
    border: 0;
    background-color: transparent;
}
.products-related .products__next {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
/* ------------------------------------------------------------ *\
	Products
\* ------------------------------------------------------------ */
.products {
    padding-bottom: 10px;
    border-bottom: 1px solid #707070;
    margin-bottom: 54px;
    overflow: hidden;
    /*.products__body {
		display: flex;
		flex-wrap: wrap;
		margin-left: -92px;
		@media (max-width: 1200px)  {
			margin: 0 -10px;
		}
		@media (max-width: 767px)  {
			justify-content: center;
			margin: 0;
		}
	}*/
}
@media (max-width: 767px) {
    .products {
        border: none;
        margin-bottom: 0;
    }
}
.products:last-child {
    border-bottom: none;
}
.products .products__head {
    width: 492px;
    height: 66px;
    background-color: #ddbd78;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 66px;
    margin-bottom: 77px;
}
@media (max-width: 767px) {
    .products .products__head {
        display: none;
    }
}
.products .products__title {
    font-weight: 700;
}
.products .products__body {
    padding-bottom: 83px;
}
@media (max-width: 767px) {
    .products .products__body--alt {
        padding-bottom: 0;
    }
}
.products--list {
    border: none;
    margin-bottom: 90px;
}
.products--list .products__head {
    margin-bottom: 61px;
}
.products--list .products__body {
    margin: 0;
}
@media (max-width: 1023px) {
    .products--list .products__body {
        margin-right: -92px;
    }
}
@media (max-width: 767px) {
    .products--list .products__body {
        margin: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
/* ------------------------------------------------------------ *\
  Qty
\* ------------------------------------------------------------ */
.qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.qty .qty__label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-right: 14px;
}
.qty .qty__field {
    width: 44px;
    height: 24px;
    font-size: 14px;
    font-weight: 400;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
    padding: 0 7px;
}
.qty .qty__field::-webkit-outer-spin-button,
.qty .qty__field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* ------------------------------------------------------------ *\
	Requirements
\* ------------------------------------------------------------ */
.requirements {
    padding-top: 80px;
}
@media (max-width: 1023px) {
    .requirements {
        padding-top: 35px;
    }
}
.requirements h5 {
    margin-bottom: 24px;
}
.requirements.is-cloned {
    padding: 0 0 46px;
}
.requirements--nomargin {
    padding: 0;
}
/* ------------------------------------------------------------ *\
  Search
\* ------------------------------------------------------------ */
.search {
    position: relative;
    width: 402px;
}
@media (max-width: 1200px) {
    .search {
        width: 300px;
    }
}
.search.search--header {
    margin-left: 83px;
}
@media (max-width: 1200px) {
    .search.search--header {
        margin-left: 0;
        margin-top: 30px;
    }
}
@media (max-width: 1023px) {
    .search.search--header {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #000;
        border-radius: 0;
        opacity: 0;
        max-height: 0;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .search.search--header.open {
        max-height: 35px;
        opacity: 1;
    }
}
.search .search__field {
    border: 0;
    display: block;
    width: 100%;
    padding: 0 45px 0 35px;
    font-size: 13px;
    height: 28px;
    line-height: 29px;
    color: #000;
    background-image: url(../images/icon-search.png);
    background-repeat: no-repeat;
    background-size: 13px 13px;
    background-position: 17px center;
}
.search .search__field::-webkit-input-placeholder {
    opacity: 0.5;
}
.search .search__field::-moz-placeholder {
    opacity: 0.5;
}
.search .search__field:-ms-input-placeholder {
    opacity: 0.5;
}
.search .search__field::-ms-input-placeholder {
    opacity: 0.5;
}
.search .search__field::placeholder {
    opacity: 0.5;
}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .search .search__field::-webkit-input-placeholder {
        opacity: 1;
    }
    .search .search__field::-moz-placeholder {
        opacity: 1;
    }
    .search .search__field:-ms-input-placeholder {
        opacity: 1;
    }
    .search .search__field::-ms-input-placeholder {
        opacity: 1;
    }
    .search .search__field::placeholder {
        opacity: 1;
    }
}
@media (max-width: 1023px) {
    .search .search__field {
        height: 34px;
        border-radius: 0;
    }
}
.search .search__btn {
    border: 0;
    background-color: #000;
    color: #fff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #707070;
}
@media (max-width: 1023px) {
    .search .search__btn {
        height: 34px;
        line-height: 34px;
    }
}
.search .search__btn svg {
    display: inline-block;
}
/* ------------------------------------------------------------ *\
  Section Categories
\* ------------------------------------------------------------ */
.section-categories .section__head {
    padding: 49px 0;
}
@media (max-width: 767px) {
    .section-categories .section__head {
        padding: 24px 0;
    }
}
/* ------------------------------------------------------------ *\
	Section-information
\* ------------------------------------------------------------ */
.section-information {
    padding: 62px 0 31px;
}
.section-information .section__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 25px;
    line-height: 1.32;
    letter-spacing: 0.02em;
}
.section-information .section__title span {
    padding-left: 23px;
}
/* ------------------------------------------------------------ *\
	Section-login
\* ------------------------------------------------------------ */
.section-login {
    min-height: 100vh;
    background-size: cover;
    padding: 133px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .section-login {
        padding: 55px 0;
    }
}
.section-login .section__inner {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    -ms-flex-item-align: center;
    align-self: center;
}
.section-login .section__logo {
    margin-bottom: 43px;
}
@media (max-width: 767px) {
    .section-login .section__logo {
        max-width: 255px;
        margin: 0 auto 65px;
    }
}
.section-login .section__head {
    text-align: center;
}
/* ------------------------------------------------------------ *\
	Section-news-individual
\* ------------------------------------------------------------ */
.section-news-individual {
    padding: 0 0 150px;
    overflow: hidden;
    /*  Section Content  */
    /*  Section Aside  */
    /*  Article-news override  */
    /*  Widget-instagram override  */
}
@media (max-width: 767px) {
    .section-news-individual {
        padding-bottom: 24px;
    }
}
.section-news-individual .section__inner {
    padding-top: 105px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1200px) {
    .section-news-individual .section__inner {
        display: block;
    }
}
@media (max-width: 1023px) {
    .section-news-individual .section__inner {
        padding-top: 0;
    }
}
.section-news-individual .section__content {
    max-width: 64.38%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 64.38%;
    flex: 0 0 64.38%;
}
@media (max-width: 1200px) {
    .section-news-individual .section__content {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.section-news-individual .section__title {
    margin-bottom: 37px;
    font-size: 28px;
    line-height: 1.32;
    font-weight: 300;
    color: #080808;
}
.section-news-individual .section__aside {
    width: 29.38%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 29.38%;
    flex: 0 0 29.38%;
}
@media (max-width: 1200px) {
    .section-news-individual .section__aside {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 1400px) {
    .section-news-individual .article-news {
        display: block;
        padding-right: 50px;
    }
}
@media (max-width: 767px) {
    .section-news-individual .article-news .article__meta {
        font-size: 14px;
    }
}
.section-news-individual .article-news .article__image {
    max-width: 45%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
}
@media (max-width: 1400px) {
    .section-news-individual .article-news .article__image {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-height: 20vw;
    }
}
@media (max-width: 1400px) {
    .section-news-individual .article-news .article__image {
        max-height: 30vw;
    }
}
@media (max-width: 767px) {
    .section-news-individual .article-news .article__image {
        max-height: 85.37vw;
    }
}
.section-news-individual .article-news .article__content {
    padding-right: 54px;
}
@media (max-width: 1650px) {
    .section-news-individual .article-news .article__content {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (max-width: 1400px) {
    .section-news-individual .article-news .article__content {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .section-news-individual .article-news .article__content {
        padding-right: 0;
    }
}
.section-news-individual .article-news .article__title {
    letter-spacing: 0.02em;
}
@media (max-width: 767px) {
    .section-news-individual .widget-instagram {
        padding: 55px 0 0;
    }
}
/* ------------------------------------------------------------ *\
	Section-news
\* ------------------------------------------------------------ */
.section-news {
    padding-bottom: 67px;
    /*  Cols  */
}
@media (max-width: 1650px) {
    .section-news {
        padding-bottom: 27px;
    }
}
@media (max-width: 767px) {
    .section-news {
        padding-bottom: 0;
    }
}
.section-news .section__head {
    padding: 70px 0 82px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.section-news .section__head:after {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.66);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}
@media (max-width: 767px) {
    .section-news .section__head {
        padding: 41px 0 52px;
    }
}
.section-news .section__title {
    font-size: 76px;
    letter-spacing: 0.01em;
    font-weight: bold;
    color: #fff;
    position: relative;
    z-index: 5;
}
@media (max-width: 767px) {
    .section-news .section__title {
        font-size: 29px;
    }
}
.section-news .section__body {
    padding-top: 82px;
}
@media (max-width: 767px) {
    .section-news .section__body {
        padding-top: 38px;
    }
}
.section-news .section__body-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.section-news .section__subtitle {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.32;
}
@media (max-width: 767px) {
    .section-news .section__subtitle {
        font-size: 22px;
        line-height: 1;
    }
}
@media (max-width: 767px) {
    .section-news .section__actions {
        padding: 36px 0;
        border-top: solid 1px rgba(112, 112, 112, 0.25);
        border-bottom: solid 1px rgba(112, 112, 112, 0.25);
    }
}
.section-news .section__btn {
    min-width: 363px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    letter-spacing: -0.01em;
}
@media (max-width: 767px) {
    .section-news .section__btn {
        width: 100%;
        min-width: auto;
        border-color: #080808;
        background-color: #080808;
        color: #fff;
    }
    .section-news .section__btn:hover {
        color: #080808;
        border-color: #080808;
        background-color: transparent;
    }
}
.section-news .cols {
    margin: 0 -58px;
    overflow: hidden;
}
@media (max-width: 1650px) {
    .section-news .cols {
        margin: 0 -20px;
    }
}
.section-news .col {
    padding: 0 58px;
}
@media (max-width: 1650px) {
    .section-news .col {
        padding: 0 20px;
    }
}
@media (max-width: 1200px) {
    .section-news .col--1of3 {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 1023px) {
    .section-news .col--1of3 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 1200px) {
    .section-news .col--1of3:not(:last-child) {
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .section-news .col--1of3:not(:last-child) {
        margin-bottom: 60px;
    }
}
@media (max-width: 1200px) {
    .section-news .col--fullwidth {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.section-news .section__paging {
    margin: 30px 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.section-news .section__paging ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
}
.section-news .section__paging li {
    border: solid 2px #000;
    border-radius: 5px;
}
.section-news .section__paging li+li {
    margin-left: 10px;
}
.section-news .section__paging a {
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2px;
    text-decoration: none;
    font-size: 18px;
    -webkit-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}
.section-news .section__paging a:hover {
    background-color: #000;
    color: #fff;
}
/*  Secondary  */
.section-news--secondary {
    padding-bottom: 86px;
}
.section-news--secondary .section__title {
    text-transform: uppercase;
}
@media (max-width: 1023px) {
    .section-news--secondary .section__title {
        text-transform: none;
    }
}
.section-news--secondary .section__subtitle {
    margin-bottom: -10px;
}
@media (max-width: 1023px) {
    .section-news--secondary .section__subtitle {
        text-transform: capitalize;
    }
}
/* ------------------------------------------------------------ *\
	Section-order-history
\* ------------------------------------------------------------ */
.section-order-history {
    font-weight: 300;
    padding-bottom: 77px;
}
.section-order-history .section__breadcrumbs {
    display: block;
    margin-bottom: 55px;
}
.section-order-history .section__breadcrumbs a {
    font-size: 17px;
    font-family: "Replica", Arial, Helvetica, sans-serif;
}
.section-order-history .section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .section-order-history .section__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 20px;
    }
}
.section-order-history .section__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .section-order-history .section__title {
        margin-bottom: 20px;
    }
}
.section-order-history .section__subtitle {
    margin: 0 0 19px 50px;
    font-size: 17px;
    font-weight: inherit;
    letter-spacing: 0.02em;
}
@media (max-width: 767px) {
    .section-order-history .section__subtitle {
        margin: 0;
    }
}
.section-order-history .section__title span {
    padding-left: 25px;
    font-weight: 300;
    letter-spacing: 0.1em;
}
.section-order-history .section__btn {
    width: 294px;
    padding: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.section-order-history .section__btn:hover path {
    fill: currentColor;
}
.section-order-history .section__btn-text {
    padding-left: 30px;
    letter-spacing: -0.03em;
}
.section-order-history .section__btn--alt {
    max-width: 162px;
}
.section-order-history .section__foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
/* ------------------------------------------------------------ *\
	Section-product
\* ------------------------------------------------------------ */
.section-product .section__nav {
    margin-bottom: 69px;
}
@media (max-width: 767px) {
    .section-product .section__nav {
        margin-bottom: 45px;
        padding: 0 36px;
    }
}
@media (max-width: 767px) {
    .section-product .section__shell {
        padding: 0;
    }
}
/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */
.section {
    padding-bottom: 22px;
}
.section .section__head {
    padding: 32px 0 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .section .section__head {
        padding: 43px 0 80px;
    }
}
.section .section__headings {
    display: none;
}
@media (max-width: 767px) {
    .section .section__headings {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-bottom: 1px solid #707070;
        padding-bottom: 28px;
        margin-bottom: 40px;
    }
}
.section .section__headings h1 {
    width: 100%;
    font-weight: 400;
    margin-bottom: 19px;
}
.section .section__headings h6 {
    width: 33.33%;
    font-weight: 300;
    text-align: center;
    margin-bottom: 9px;
}
/* ------------------------------------------------------------ *\
	Select
\* ------------------------------------------------------------ */
.select {
    width: unset;
    border: none;
    padding: 0;
    font-weight: 400;
    margin-right: 40px;
}
@media (max-width: 767px) {
    .select {
        margin-right: 0;
    }
}
.select p {
    display: inline-block;
    margin-right: 10px;
}
@media (max-width: 767px) {
    .select p {
        margin-right: 14px;
    }
}
.select select::-ms-expand {
    display: none;
}
.select select::-ms-value {
    background-color: transparent;
    color: #000;
}
.select select {
    padding: 7px 17px;
    width: 270px;
    border-color: rgba(0, 0, 0, 0.22);
    border-radius: 0 5px 5px 0;
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/cap.png);
    background-position: calc(100% + 2px) center;
    background-size: 35px calc(100% + 7px);
    background-repeat: no-repeat;
}
@media (max-width: 767px) {
    .select select {
        width: 241px;
        padding: 8px 18px;
    }
}
@media (max-width: 767px) {
    .select select {
        width: 180px;
    }
}
.select select:hover {
    cursor: pointer;
}
.select option {
    padding-top: 2px;
}
/* ------------------------------------------------------------ *\
	Sidebar
\* ------------------------------------------------------------ */
.sidebar {
    max-width: 300px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    padding-right: 50px;
}
@media (max-width: 767px) {
    .sidebar {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding-right: 0;
    }
}
.sidebar .sidebar__title {
    margin-bottom: 50px;
    font-weight: normal;
    font-size: 28px;
    line-height: 1.32;
}
.sidebar .sidebar__subtitle {
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 15px;
    line-height: 1.33;
    letter-spacing: 0.03em;
}
.sidebar li a {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}
.sidebar li:hover a {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}
.sidebar--secondary {
    padding-right: 0;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .sidebar--secondary {
        width: 100%;
        height: 100vh;
        background-color: #fff;
        position: absolute;
        overflow: auto;
        top: 0;
        left: 0;
        z-index: 20;
        padding: 30px 20px 10px;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -webkit-transition: -webkit-transform .4s ease-out .4s;
        transition: -webkit-transform .4s ease-out .4s;
        -o-transition: transform .4s ease-out .4s;
        transition: transform .4s ease-out .4s;
        transition: transform .4s ease-out .4s, -webkit-transform .4s ease-out .4s;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .sidebar--secondary li {
        text-align: center;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .sidebar--secondary .sidebar__title {
        display: none;
    }
}
.sidebar--secondary .sidebar__nav {
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .sidebar--secondary .sidebar__nav {
        opacity: 0;
    }
}
.sidebar--secondary.is-active {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: -webkit-transform .4s ease-out;
    transition: -webkit-transform .4s ease-out;
    -o-transition: transform .4s ease-out;
    transition: transform .4s ease-out;
    transition: transform .4s ease-out, -webkit-transform .4s ease-out;
}
.sidebar--secondary.is-active .sidebar__nav {
    opacity: 1;
    -webkit-transition: .4s .4s;
    -o-transition: .4s .4s;
    transition: .4s .4s;
}
.sidebar--admin {
    padding-right: 50px;
    padding-bottom: 40px;
    position: relative;
}
.sidebar--admin:after {
    content: '';
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        #000000,
        #000000 5px,
        transparent 5px,
        transparent 15px
      );
}
@media (max-width: 1023px) {
    .sidebar--admin:after {
        display: none;
    }
}
@media (max-width: 1023px) {
    .sidebar--admin {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background-color: #fff;
        position: absolute;
        overflow: auto;
        top: 0;
        left: 0;
        z-index: 20;
        padding: 30px 20px 10px;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -webkit-transition: -webkit-transform .4s ease-out .4s;
        transition: -webkit-transform .4s ease-out .4s;
        -o-transition: transform .4s ease-out .4s;
        transition: transform .4s ease-out .4s;
        transition: transform .4s ease-out .4s, -webkit-transform .4s ease-out .4s;
    }
}
@media (max-width: 1023px) {
    .sidebar--admin li {
        text-align: center;
    }
}
@media (max-width: 1023px) {
    .sidebar--admin .sidebar__title {
        display: none;
    }
}
.sidebar--admin .sidebar__nav {
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}
@media (max-width: 1023px) {
    .sidebar--admin .sidebar__nav {
        opacity: 0;
    }
}
.sidebar--admin.is-active {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: -webkit-transform .4s ease-out;
    transition: -webkit-transform .4s ease-out;
    -o-transition: transform .4s ease-out;
    transition: transform .4s ease-out;
    transition: transform .4s ease-out, -webkit-transform .4s ease-out;
}
.sidebar--admin.is-active .sidebar__nav {
    opacity: 1;
    -webkit-transition: .4s .4s;
    -o-transition: .4s .4s;
    transition: .4s .4s;
}
@media (max-width: 1199px) {
    .sidebar--small {
        max-width: 230px;
        padding-right: 20px;
    }
}
/* ------------------------------------------------------------ *\
	Slider-news-featured
\* ------------------------------------------------------------ */
.slider-news-featured {
    position: relative;
    /*  Slick override  */
}
@media (max-width: 767px) {
    .slider-news-featured {
        padding-top: 55px;
        padding-bottom: 40px;
    }
}
.slider-news-featured .slider__title {
    font-weight: 300;
    font-size: 22px;
    line-height: 1.32;
    margin-bottom: 0;
}
.slider-news-featured .slider__actions {
    width: 41px;
    position: absolute;
    bottom: 0;
    right: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .slider-news-featured .slider__actions {
        right: 50px;
        bottom: 45px;
    }
}
.slider-news-featured .slider__prev,
.slider-news-featured .slider__next {
    cursor: pointer;
}
.slider-news-featured .slick-list {
    overflow: visible;
}
.slider-news-featured .slick-slide {
    border-top: solid 1px rgba(112, 112, 112, 0.25);
    padding: 45px 0;
}
@media (max-width: 767px) {
    .slider-news-featured .slick-slide {
        border: none;
        padding-top: 25px;
    }
}
/* ------------------------------------------------------------ *\
	Slider-news
\* ------------------------------------------------------------ */
.slider-news {
    position: relative;
    overflow: hidden;
}
@media (max-width: 1023px) {
    .slider-news {
        margin: 0 -36px;
        padding: 0 48px 0 36px;
    }
}
.slider-news .slider__slide {
    padding: 40px 0 50px;
}
@media (max-width: 1023px) {
    .slider-news .slider__slide {
        padding-right: 37px;
    }
}
@media (max-width: 767px) {
    .slider-news .slider__slide {
        padding-top: 33px;
    }
}
.slider-news .slick-list {
    overflow: visible;
}
.slider-news .slick-slide:not(:first-child) {
    border-top: solid 1px rgba(112, 112, 112, 0.25);
}
@media (max-width: 1023px) {
    .slider-news .slick-slide:not(:first-child) {
        border: none;
    }
}
.slider-news .slider__actions {
    width: 41px;
    position: absolute;
    bottom: 0;
    right: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .slider-news .slider__actions {
        bottom: 30px;
    }
}
.slider-news .slider__prev,
.slider-news .slider__next {
    cursor: pointer;
}
/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  Socials
\* ------------------------------------------------------------ */
@media (max-width: 767px) {
    .socials {
        padding-top: 30px;
    }
}
.socials ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    list-style-position: outside;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.socials ul>li {
    padding: 0 10px;
}
@media (max-width: 767px) {
    .socials ul>li:first-child {
        padding-left: 0;
    }
}
.socials ul>li>a {
    display: block;
}
.socials ul>li>a:hover {
    color: #ddbd78;
}
.socials ul>li>a svg {
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/* ------------------------------------------------------------ *\
	Switch
\* ------------------------------------------------------------ */
.switch-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.switch-container label {
    font-size: 14px;
    font-weight: 300;
}
.switch {
    width: 51px;
    height: 31px;
    position: relative;
    display: inline-block;
    margin-left: 17px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch input:checked+span {
    background-color: #34C759;
}
.switch input:focus+span {
    -webkit-box-shadow: 0 0 1px #34C759;
    box-shadow: 0 0 1px #34C759;
}
.switch input:checked+span:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}
.switch span {
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
}
.switch span:before {
    content: "";
    width: 27px;
    height: 27px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    bottom: 2px;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
}
/* ------------------------------------------------------------ *\
	Table-cart
\* ------------------------------------------------------------ */
.table-cart {
    letter-spacing: 0.05em;
    font-weight: 300;
}
.table-cart input[type='number'] {
    -moz-appearance: textfield;
}
.table-cart input[type=number]::-webkit-inner-spin-button,
.table-cart input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
@media (max-width: 767px) {
    .table-cart tr {
        border-bottom: solid 1px rgba(112, 112, 112, 1);
        position: relative;
        display: grid;
        grid-template-columns: 47% auto;
        grid-template-rows: auto;
        padding-bottom: 80px;
    }
}
.table-cart th {
    border-bottom: solid 1px rgba(112, 112, 112, 1);
    padding: 23px 0 19px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}
.table-cart td {
    border-bottom: solid 1px rgba(112, 112, 112, 1);
    padding: 0 10px;
}
@media (max-width: 1023px) {
    .table-cart td {
        font-size: 14px;
        letter-spacing: 0;
        padding: 0 5px;
    }
}
@media (max-width: 767px) {
    .table-cart td {
        border: 0;
        display: block;
        padding: 0;
        font-size: 15px;
        color: #969696;
    }
    .table-cart td:nth-child(2) {
        grid-row: 1 / span 5;
    }
}
@media (max-width: 767px) {
    .table-cart .table-cart__price {
        grid-row: 2 / 3;
        font-size: 17px;
        line-height: 1;
        margin-bottom: 15px;
        color: #080808;
    }
}
@media (max-width: 767px) {
    .table-cart .table-cart__code {
        line-height: 1;
    }
}
@media (max-width: 767px) {
    .table-cart .table-cart__barcode {
        grid-row: 4 / 5;
    }
}
@media (max-width: 767px) {
    .table-cart .table-cart__inner-qty {
        grid-row: 5 / 6;
    }
}
.table-cart .table-cart__qty:before {
    content: '';
}
@media (max-width: 767px) {
    .table-cart .table-cart__qty:before {
        content: attr(data-label);
    }
}
.table-cart .table-cart__order-qty:before {
    content: '';
}
@media (max-width: 767px) {
    .table-cart .table-cart__order-qty:before {
        content: attr(data-label);
    }
}
.table-cart td:before {
    content: '';
}
@media (max-width: 767px) {
    .table-cart td:before {
        content: attr(data-label);
    }
}
.table-cart .table-cart__title {
    margin-bottom: 8px;
    padding-top: 15px;
    font-weight: 300;
    letter-spacing: 0.08em;
}
@media (max-width: 767px) {
    .table-cart .table-cart__title {
        max-width: 137px;
        padding: 26px 0 0;
        margin: 0 0 3px;
        font-size: 17px;
        line-height: 1.4;
        letter-spacing: 0.06em;
        color: #080808;
    }
}
.table-cart .table-cart__image {
    padding: 15px 0 3px 10px;
}
@media (max-width: 767px) {
    .table-cart .table-cart__image {
        max-width: 140px;
        margin-left: auto;
        padding: 30px 20px 0 7px;
    }
}
.table-cart .table-cart__image a {
    display: block;
}
@media (max-width: 767px) {
    .table-cart .table-cart__image img {
        width: 100%;
    }
}
.table-cart .table-cart__actions {
    letter-spacing: 0.05em;
    color: #ddbd78;
}
@media (max-width: 767px) {
    .table-cart .table-cart__actions {
        width: 200px;
        position: absolute;
        bottom: 39px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 17px;
    }
}
.table-cart .table-cart__actions a {
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 17px;
}
.table-cart .table-cart__label {
    cursor: pointer;
    text-decoration: underline;
}
.table-cart .table-cart__label:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    .table-cart .table-cart__action a+a {
        margin-left: 20px;
    }
}
.table-cart .table-cart__field {
    width: 40px;
    height: 24px;
    margin-right: 24px;
    padding: 0 8px;
    font-size: 14px;
    letter-spacing: -0.004em;
    border: 0;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #080808;
}
@media (max-width: 767px) {
    .table-cart--alt tr {
        padding-bottom: 8px;
    }
}
.table-cart--alt td:first-child {
    width: 90px;
    padding: 10px 0;
}
@media (max-width: 767px) {
    .table-cart--alt td:first-child {
        width: 100%;
        padding: 5px 0;
    }
}
.table-cart--alt td:nth-child(2) {
    width: auto;
}
@media (max-width: 767px) {
    .table-cart--alt td:nth-child(1) {
        grid-row: 1 / span 5;
    }
    .table-cart--alt td:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
}
.table-cart--alt .table-cart__image {
    padding-left: 0;
}
@media (max-width: 767px) {
    .table-cart--alt .table-cart__image {
        margin-left: auto;
    }
}
@media (max-width: 767px) {
    .table-cart--alt .table-cart__title {
        max-width: 100%;
        padding-top: 30px;
    }
}
/*  Tertiary  */
.table-cart--tertiary {
    margin-bottom: 70px;
}
/* ------------------------------------------------------------ *\
	Table-checkout
\* ------------------------------------------------------------ */
.table-checkout {
    background-color: #080808;
    margin-bottom: 27px;
    padding: 30px 32px 26px 46px;
    color: #fff;
}
@media (max-width: 1023px) {
    .table-checkout {
        background-color: transparent;
        margin-bottom: 35px;
        padding: 0 17px 0 0;
        color: #080808;
        font-size: 21px;
        font-weight: 300;
        letter-spacing: 0.05em;
    }
}
@media (max-width: 1023px) {
    .table-checkout tr {
        width: 100%;
        display: block;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 1023px) {
    .table-checkout tr td:first-child {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 76.66%;
        flex: 0 0 76.66%;
    }
}
@media (max-width: 1023px) {
    .table-checkout tr:first-child td {
        padding: 0 0 31px;
    }
}
.table-checkout td {
    width: 50%;
    padding: 0 0 18px;
}
@media (max-width: 1023px) {
    .table-checkout td {
        padding: 0 0 21px;
    }
}
.table-checkout tr:last-child td {
    border-top: solid 1px rgba(112, 112, 112, 0.22);
    font-size: 18px;
    padding: 21px 0 0;
}
@media (max-width: 1023px) {
    .table-checkout tr:last-child td {
        padding: 38px 0 7px;
        font-size: inherit;
    }
}
.table-checkout--alt {
    padding-bottom: 38px;
}
@media (max-width: 1023px) {
    .table-checkout--alt {
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .table-checkout--alt tr:first-child td {
        padding-bottom: 18px;
    }
}
/* ------------------------------------------------------------ *\
	Table-order-history
\* ------------------------------------------------------------ */
.table-order-history {
    font-weight: 300;
    padding-bottom: 90px;
}
@media (max-width: 767px) {
    .table-order-history tr {
        width: 100%;
        text-align: center;
    }
}
.table-order-history th {
    padding: 22px 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    border-bottom: solid 1px rgba(112, 112, 112, 0.25);
}
@media (max-width: 767px) {
    .table-order-history th {
        display: none;
    }
}
.table-order-history td {
    padding: 28px 10px 26px;
    border-bottom: solid 1px rgba(112, 112, 112, 0.25);
    letter-spacing: 0.06em;
}
.table-order-history td:before {
    content: attr(data-label);
    display: none;
}
@media (max-width: 767px) {
    .table-order-history td:before {
        display: inline;
    }
}
@media (max-width: 767px) {
    .table-order-history td {
        border: none;
        display: block;
        margin: 0 auto;
        padding: 5px 0;
    }
}
@media (max-width: 767px) {
    .table-order-history tr td:last-child {
        border-bottom: solid 1px rgba(112, 112, 112, 0.25);
        padding-bottom: 30px;
    }
}
.table-order-history tr td:first-child,
.table-order-history tr th:first-child {
    padding-left: 60px;
}
@media (max-width: 1023px) {
    .table-order-history tr td:first-child,
    .table-order-history tr th:first-child {
        padding-left: inherit;
    }
}
@media (max-width: 767px) {
    .table-order-history tr td:first-child,
    .table-order-history tr th:first-child {
        padding-top: 30px;
    }
}
/* ------------------------------------------------------------ *\
	Table
\* ------------------------------------------------------------ */
.table--admin tr td:first-child,
.table--admin tr th:first-child {
    padding-left: 0;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .table--admin tr td:first-child,
    .table--admin tr th:first-child {
        padding-top: 10px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .table--admin td {
        text-align: left;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .table--admin tr td:first-child {
        padding-top: 20px;
    }
}
.table--admin tr td:last-child {
    text-align: right;
}
.table--admin tr th:last-child {
    text-align: center;
}
@media (max-width: 1023px) {
    .table--admin .btn {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
        white-space: nowrap;
    }
}
/*  Table-small  */
.table-small {
    margin-bottom: 63px;
}
.table-small th {
    padding: 23px 10px;
    font-weight: bold;
    text-align: left;
    font-size: 14px;
}
.table-small td {
    padding: 15px 10px;
    font-weight: 300;
    font-size: 16px;
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .table-small td {
        font-size: 14px;
    }
}
.table-small td div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.table-small th,
.table-small td {
    border-bottom: solid 1px #ddd;
}
.table-small--alt tr th:last-child {
    padding-right: 32px;
}
.table-small--alt tr th:last-child,
.table-small--alt tr td:last-child {
    text-align: right;
}
/* ------------------------------------------------------------ *\
	View
\* ------------------------------------------------------------ */
.view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 400;
}
@media (max-width: 767px) {
    .view {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .view {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 7px;
    }
}
.view p {
    margin-right: 17px;
}
@media (max-width: 767px) {
    .view p {
        margin-right: 20px;
    }
}
.view a+a {
    margin-left: 23px;
}
/* ------------------------------------------------------------ *\
	Widget-instagram
\* ------------------------------------------------------------ */
.widget-instagram {
    margin-bottom: 40px;
}
@media (max-width: 1200px) {
    .widget-instagram {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 1023px) {
    .widget-instagram {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 767px) {
    .widget-instagram {
        border-top: solid 1px rgba(112, 112, 112, 0.25);
        padding: 26px 0;
    }
}
.widget-instagram .widget__title {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.32;
    font-weight: bold;
    color: #080808;
}
@media (max-width: 767px) {
    .widget-instagram .widget__title {
        font-size: 22px;
    }
}
.widget-instagram .widget__btn {
    min-width: 204px;
}
/* ------------------------------------------------------------ *\
	Widget-twitter
\* ------------------------------------------------------------ */
@media (max-width: 1200px) {
    .widget-twitter {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 1023px) {
    .widget-twitter {
        display: none;
    }
}
.widget-twitter .widget__title {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: bold;
    color: #080808;
}
/* ------------------------------------------------------------ *\
	Widgets
\* ------------------------------------------------------------ */
.widgets {
    list-style: none;
}
@media (max-width: 1200px) {
    .widgets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .widgets {
        margin-left: 0;
    }
}
/* ------------------------------------------------------------ *\
  Rta
\* ------------------------------------------------------------ */
.rta.ql-container {
    height: 546px;
    margin-bottom: 41px;
}
@media (max-width: 1023px) {
    .rta.ql-container {
        height: 300px;
    }
}
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .rta.ql-container {
        height: 200px;
    }
}
/* ------------------------------------------------------------ *\
  Products Related
\* ------------------------------------------------------------ */
.products-related {
    padding: 120px 0 98px;
}
@media (max-width: 1023px) {
    .products-related {
        padding: 80px 0;
    }
}
.products-related .products__container {
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    padding-top: 76px;
}
@media (max-width: 1023px) {
    .products-related .products__container {
        padding-top: 50px;
    }
}
@media (max-width: 767px) {
    .products-related .products__container {
        position: relative;
        border: 0;
    }
    .products-related .products__container:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 1px;
        right: 36px;
        background-color: rgba(0, 0, 0, 0.2);
    }
}
@media (max-width: 1200px) {
    .products-related .products__shell {
        padding: 0;
        padding-left: 36px;
    }
}
.products-related .products__title {
    margin-bottom: 110px;
    font-weight: 400;
}
@media (max-width: 767px) {
    .products-related .products__title {
        font-size: 22px;
        margin-bottom: 40px;
    }
}
.products-related .slick-slide {
    padding: 0 70px;
}
@media (max-width: 1400px) {
    .products-related .slick-slide {
        padding: 0 20px;
    }
}
@media (max-width: 1200px) {
    .products-related .slick-slide {
        width: 270px !important;
    }
}
@media (max-width: 1023px) {
    .products-related .slick-slide {
        padding: 0 20px;
    }
}
.products-related .products__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 32px;
    padding-top: 40px;
}
.products-related .products__arrow+.products__arrow {
    margin-left: 17px;
}
.products-related .products__arrow {
    font-size: 0;
    line-height: 0;
    border: 0;
    background-color: transparent;
}
.products-related .products__next {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
/* ------------------------------------------------------------ *\
  Form login
\* ------------------------------------------------------------ */
.form-login {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border: solid 3px #000;
    border-radius: 5px;
    padding: 67px 35px;
}
.form-login .form__cols {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .form-login .form__col {
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 767px) {
    .form-login .form__col+.form__col {
        margin-top: 15px;
    }
}
.form-login .form__head {
    margin-bottom: 50px;
}
.form-login .form__head p {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
@media (max-width: 767px) {
    .form-login .form__head p {
        font-size: 15px;
    }
}
.form-login .form__title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .form-login .form__title {
        font-size: 12px;
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .form-login {
        padding: 40px 35px;
    }
}
.form-login .form__text {
    margin-bottom: 25px;
}
.form-login .form__text p {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -.02em;
}
@media (max-width: 767px) {
    .form-login .form__text p {
        font-size: 16px;
    }
}
.form-login .form__text p span {
    font-size: 20px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .form-login .form__text p span {
        font-size: 12px;
    }
}
.form-login .form__row {
    margin-bottom: 0;
}
.form-login .form__row+.form__row {
    margin-top: 32px;
}
@media (max-width: 767px) {
    .form-login .form__row+.form__row {
        margin-top: 15px;
    }
}
.form-login form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.form-login .form__inner {
    max-width: 540px;
    width: 100%;
}
.form-login .form__inner--message {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.form-login .form__label {
    display: block;
    font-weight: 900;
    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding-left: 15px;
    margin-bottom: 13px;
}
@media (max-width: 767px) {
    .form-login .form__label {
        font-size: 14px;
    }
}
.form-login .form__field {
    width: 100%;
    height: 37px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 1;
    border: solid 1px #ABABAB;
    border-radius: 0 !important;
}
@media (max-width: 767px) {
    .form-login .form__field {
        font-size: 14px;
    }
}
.form-login .form__field::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}
.form-login .form__field::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
    transform: translateY(2px);
}
.form-login .form__field:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}
.form-login .form__field::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}
.form-login .form__field::placeholder {
    color: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}
.form-login .form__field--textarea {
    height: 110px;
    padding-top: 15px;
    resize: vertical;
}
@media (max-width: 767px) {
    .form-login .form__field--textarea {
        height: 105px;
    }
}
.form-login .form__actions {
    margin-top: 23px;
}
.form-login .form__pass {
    display: block;
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 21px;
}
@media (max-width: 767px) {
    .form-login .form__pass {
        font-size: 14px;
    }
}
.form-login .form__actions-inner {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    flex-wrap: wrap;
}
.form-login .form__btn {
    padding: 10px 56px;
}
@media (max-width: 767px) {
    .form-login .form__btn {
        display: block;
        width: 100%;
        font-size: 14px;
        padding-left: 0;
        padding-right: 0;
        margin-top: 15px;
    }
}
.form-login.is-send .form__inner {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.form-login.is-send .form__inner--message {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: opacity .5s, visibility .5s;
    -o-transition: opacity .5s, visibility .5s;
    transition: opacity .5s, visibility .5s;
}
.form-login--large {
    max-width: 1360px;
}
.form-login--large .form__inner {
    max-width: 1140px;
}
.form-login--large .form__actions {
    margin-top: 70px;
}
@media (max-width: 767px) {
    .form-login--large .form__actions {
        margin-top: 30px;
    }
}
.form-login--large .form__actions-inner {
    text-align: center;
}
/* ------------------------------------------------------------ *\
  Callout
\* ------------------------------------------------------------ */
.form-login+.callout {
    margin-top: 85px;
}
.callout {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    background-color: #080808;
    padding: 35px 35px;
    display: block;
    color: #fff;
    text-align: center;
}
@media (max-width: 767px) {
    .callout {
        padding: 28px 35px;
    }
}
.callout .callout__title {
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -0.02em;
}
@media (max-width: 767px) {
    .callout .callout__title {
        font-size: 16px;
    }
}
.callout .callout__inner {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}
.callout .callout__actions {
    margin-top: 20px;
}
@media (max-width: 767px) {
    .callout .callout__btn {
        font-size: 12px;
    }
}
/* ------------------------------------------------------------ *\
  Item
\* ------------------------------------------------------------ */
.item .item__image {
    display: block;
    text-align: center;
    margin-bottom: 14px;
    height: 252px;
}
@media (max-width: 767px) {
    .item .item__image {
        margin-bottom: 15px;
    }
}
.item .item__image img {
    max-width: 250px;
    width: auto;
    height: 100%;
    margin: 0 auto;
}
.item .item__code {
    font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #969696;
}
.item .item__title {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.33;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
    /*white-space: nowrap;*/
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.item .item__price {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}
.item .item__qty-inner {
    display: none;
}
@media (max-width: 767px) {
    .item .item__qty-inner {
        display: block;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0.02em;
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}
.item .item__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.item .item__actions-inner {
    margin-left: 15px;
}
@media (max-width: 767px) {
    .item .item__actions-inner {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .item .item__btn {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
.item--big .item__image {
    height: 340px;
}
@media (max-width: 1400px) {
    .item--big .item__image {
        height: 280px;
    }
}
@media (max-width: 767px) {
    .item--big .item__image {
        height: 162px;
    }
}
.item--big .item__code {
    font-size: 23px;
    margin-bottom: 5px;
}
@media (max-width: 1400px) {
    .item--big .item__code {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .item--big .item__code {
        font-size: 18px;
    }
}
.item--big .item__title {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: .05em;
}
@media (max-width: 1400px) {
    .item--big .item__title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .item--big .item__title {
        font-size: 18px;
    }
}
.item--big .item__price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 23px;
}
@media (max-width: 1400px) {
    .item--big .item__price {
        font-size: 20px;
    }
}
.item--big .item__qty label {
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-right: 30px;
}
@media (max-width: 1400px) {
    .item--big .item__qty label {
        font-size: 14px;
        margin-right: 20px;
    }
}
.item--big .item__qty input {
    width: 58px;
    height: 32px;
    font-size: 16px;
}
@media (max-width: 1400px) {
    .item--big .item__qty input {
        width: 50px;
        height: 30px;
    }
}
.item--big .item__btn {
    font-size: 20px;
    font-weight: 900;
    padding: 9px 40px;
}
@media (max-width: 1400px) {
    .item--big .item__btn {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .item--big .item__actions {
        display: none;
    }
}
/* ------------------------------------------------------------ *\
  Grid
\* ------------------------------------------------------------ */
.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -40px -45px;
}
@media (max-width: 1400px) {
    .grid {
        margin: -30px;
    }
}
@media (max-width: 767px) {
    .grid {
        margin: -50px;
    }
}
.grid .grid__item {
    padding: 40px 45px;
}
@media (max-width: 1400px) {
    .grid .grid__item {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .grid .grid__item {
        padding: 50px;
    }
}
.grid--of-5 .grid__item {
    width: 16.6%;
}
@media (max-width: 1650px) {
    .grid--of-5 .grid__item {
        width: 20%;
    }
}
@media (max-width: 1400px) {
    .grid--of-5 .grid__item {
        width: 25%;
    }
}
@media (max-width: 1023px) {
    .grid--of-5 .grid__item {
        width: 33.3%;
    }
}
@media (max-width: 767px) {
    .grid--of-5 .grid__item {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .grid--of-5 .grid__item {
        width: 100%;
    }
}
/* ------------------------------------------------------------ *\
  Grid Responsive
\* ------------------------------------------------------------ */
@media (max-width: 1200px) {
    .grid-responsive {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -30px -18px;
    }
}
/* ------------------------------------------------------------ *\
  Qty
\* ------------------------------------------------------------ */
.qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.qty .qty__label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-right: 14px;
}
.qty .qty__field {
    width: 44px;
    height: 24px;
    font-size: 14px;
    font-weight: 400;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
    padding: 0 7px;
}
.qty .qty__field::-webkit-outer-spin-button,
.qty .qty__field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* ------------------------------------------------------------ *\
  Item List
\* ------------------------------------------------------------ */
.item-list+.item-list {
    margin-top: 29px;
    padding-top: 29px;
    border-top: solid 1px #707070;
}
@media (max-width: 1200px) {
    .item-list+.item-list {
        padding-top: 30px;
        margin-top: 0;
        border: 0;
    }
}
.item-list--titles+.item-list {
    margin-top: 0;
    padding-top: 0;
    border: 0;
}
@media (max-width: 1200px) {
    .item-list--titles+.item-list {
        padding-top: 30px;
    }
}
@media (max-width: 1200px) {
    .item-list {
        width: 33.3%;
        padding: 30px 18px;
    }
}
@media (max-width: 767px) {
    .item-list {
        width: 50%;
    }
}
.item-list .item__image {
    display: none;
}
@media (max-width: 1200px) {
    .item-list .item__image {
        display: block;
        text-align: center;
        text-align: center;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .item-list .item__image {
        margin-bottom: 26px;
    }
}
.item-list .item__image img {
    margin: 0;
}
@media (max-width: 767px) {
    .item-list .item__image img {
        max-width: 150px;
        height: 160px;
        width: 100%;
    }
}
.item-list .item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 300;
    letter-spacing: .06em;
}
@media (max-width: 1200px) {
    .item-list .item__content {
        display: block;
    }
}
.item-list .item__code {
    width: 6.6%;
}
@media (max-width: 1200px) {
    .item-list .item__code {
        font-size: 18px;
        font-family: "PF Handbook Pro", Arial, Helvetica, sans-serif;
        color: #969696;
    }
}
@media (max-width: 767px) {
    .item-list .item__code {
        font-size: 13px;
    }
}
.item-list .item__title {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 300;
    width: 17.2%;
    letter-spacing: 0.06em;
    padding-right: 15px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
@media (max-width: 1200px) {
    .item-list .item__title {
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 0.05em;
        color: #080808;
        margin-bottom: 5px;
    }
}
@media (max-width: 767px) {
    .item-list .item__title {
        font-size: 11px;
    }
}
.item-list .item__inner-qty {
    width: 7.6%;
}
@media (max-width: 1650px) {
    .item-list .item__inner-qty {
        width: 6%;
    }
}
.item-list .item__outer-qty {
    width: 7.6%;
}
@media (max-width: 1650px) {
    .item-list .item__outer-qty {
        width: 6%;
    }
}
.item-list .item__barcode {
    width: 10.7%;
    font-size: 16px;
    padding-right: 15px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.item-list .item__track-barcode {
    width: 11.1%;
}
.item-list .item__weight {
    width: 8.2%;
}
@media (max-width: 1650px) {
    .item-list .item__weight {
        width: 6%;
    }
}
.item-list .item__dimensions {
    width: 13.1%;
}
.item-list .item__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 6.3%;
}
@media (max-width: 1650px) {
    .item-list .item__price {
        width: 5.5%;
    }
}
@media (max-width: 1200px) {
    .item-list .item__price {
        display: block;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .item-list .item__price {
        font-size: 15px;
        margin-bottom: 4px;
    }
}
.item-list .item__qty-inner {
    display: none;
}
@media (max-width: 1200px) {
    .item-list .item__qty-inner {
        display: block;
        font-size: 14px;
        font-weight: 400;
        margin-top: 2px;
    }
}
@media (max-width: 767px) {
    .item-list .item__qty-inner {
        font-size: 10px;
    }
}
.item-list .item__qty label {
    font-weight: 300;
}
@media (max-width: 767px) {
    .item-list .item__qty label {
        font-size: 10px;
    }
}
@media (max-width: 767px) {
    .item-list .item__qty input {
        width: 33px;
        height: 18px;
        font-size: 10px;
    }
}
.item-list .item__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 11.6%;
}
@media (max-width: 1650px) {
    .item-list .item__actions {
        width: 17%;
    }
}
@media (max-width: 1200px) {
    .item-list .item__actions {
        display: block;
    }
}
.item-list .item__actions-inner {
    font-weight: 700;
}
@media (max-width: 1200px) {
    .item-list .item__actions-inner {
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    .item-list .item__btn {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 11px;
        font-weight: 900;
    }
}
@media (max-width: 1200px) {
    .item-list .item__inner-qty,
    .item-list .item__outer-qty,
    .item-list .item__barcode,
    .item-list .item__track-barcode,
    .item-list .item__weight,
    .item-list .item__dimensions {
        display: none;
    }
    .item-list .item__code,
    .item-list .item__title,
    .item-list .item__price,
    .item-list .item__actions {
        width: 100%;
    }
}
/*  TITLES  */
.item-list--titles {
    margin-bottom: 32px;
    border-bottom: solid 1px #707070;
    padding: 19px 0;
    font-size: 14px;
}
@media (max-width: 1200px) {
    .item-list--titles {
        display: none;
    }
}
.item-list--titles .item__title {
    font-size: 14px;
}
.item-list--titles .item__barcode {
    font-size: 14px;
}
.item-list--titles .item__dimensions {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.item-list--titles .item__field {
    font-weight: 700;
}
@media (max-width: 1650px) {
    .item-list--titles .item__field {
        padding-right: 15px;
    }
}
@media (max-width: 1650px) {
    .item-list--titles .item__weight {
        white-space: nowrap;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}
/*  Pages  */

/* Updates */


/* Login */
.login {
    padding: 0;
    display: flex;
}

.login__content {
    width: 33%;
    min-width: 600px;
    display: flex;
    justify-content: center;
    background-color: white;
    flex-direction: column;
    position: relative;
    align-items: center;

}

.login__poster {
    width: 77%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.login__logo {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3rem;
}

.login__logo img {
    width: 100px;
}

.login__content .form-login {
    max-width: none;
    padding: 0;
    border: none;
}

.login__content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}


.login__content .form__label {
    padding: 0;
}

.login__content .form__field {
    border: none;
    border-bottom: solid 1px #ABABAB;
    padding: 0;
}

.login__content .form__inner {
    max-width: none;
}

.login__content .callout {
    max-width: none;
}

.login__details {
    padding: 3rem;
    max-width: 600px;
    width: 100%;
}

.callout {
    position: absolute;
    bottom: 0;
}

@media (max-width: 1000px) {
    .login__content {
        width: 100%;
        min-width: 0;
    }

    .login__poster {
        display: none;
    }
}

/* Admin Header */

.header__actions {
    margin: auto 0;
}


.header .header__body {
    padding: 0;
}

.header .header__nav {
    padding: 10px 0;
}

.header__pre {
    background-color: #151515;
    color: white;
    padding: 0.5rem 0;
    border-bottom: solid #1e1e1e 1px;
}

.header__pre .nav-bar {
    margin-bottom: 0;
}

.header .header__aside {
    padding-top: 0;
}


/* Order Form */

.table-order-history td {
    padding: 10px 10px 10px;
}

.table-order-history img {
    margin-bottom: 0;
}

.list-account-info li svg {
    font-size: 1.25rem;
}

table .btn.btn--outline {
    border: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-decoration: underline;
}

table .btn.btn--outline:hover {
    background-color: transparent;
    color: inherit;
}

/* Order Form */

.btn {
    text-transform: capitalize;
    border-radius: 0;
}
