/* ----------------------------------------

Table of Contents:

- Components
  - .account-nav
  - .alert
  - .badge
  - .block-header
  - .breadcrumb
  - .btn
  - .card
  - .card-table
  - .filters-button
  - forms
  - .input-check
  - .input-check-color
  - .input-number
  - .input-radio
  - .input-radio-color
  - .input-radio-label
  - .layout-switcher
  - .modal
  - .nouislider
  - .pagination
  - .post-card
  - .product-card
  - .product-image
  - .rating
  - .select2
  - .share-links
  - .social-links
  - .tags
  - .tooltip
  - .typography
- Filters
  - .filter
  - .filter-categories
  - .filter-categories-alt
  - .filter-color
  - .filter-list
  - .filter-price


- Shop
  - .address-card
  - .addresses-list
  - .cart
  - .cart-table
  - .category-card
  - .compare-table
  - .dashboard
  - .order-header
  - .order-list
  - .order-success
  - .product
  - .product-gallery
  - .product-tabs
  - .products-list
  - .products-view
  - .profile-card
  - .quickview
  - .review
  - .reviews-list
  - .reviews-view
  - .shop-layout
  - .spec
  - .view-options
  - .wishlist
- Blog
  - .comment
  - .comments-list
  - .post
  - .post-author
  - .post-header
  - .posts-list
  - .posts-view
  - .related-posts
- Blocks
  - .block
  - .block-banner
  - .block-brands
  - .block-categories
  - .block-empty
  - .block-features
  - .block-finder
  - .block-map
  - .block-posts
  - .block-product-columns
  - .block-products
  - .block-products-carousel
  - .block-sidebar
  - .block-slideshow
- Widgets
  - .widget
  - .widget-aboutus
  - .widget-categories
  - .widget-comments
  - .widget-filters
  - .widget-newsletter
  - .widget-posts
  - .widget-products
  - .widget-search
  - .widget-tags

---------------------------------------- */

@import "skeleton/breadcrumb.css";
@import "skeleton/page.css";
@import "skeleton/buttons.css";
@import "skeleton/header.css";
@import "skeleton/footer.css";
@import "pages/about_us.css";
@import "pages/checkout.css";
@import "pages/faq.css";
@import "pages/not_found.css";
@import "pages/search.css";
@import "Shop/account.css";
@import "Shop/order.css";
@import "Shop/product.css";
@import "Shop/quickview.css";
@import "Shop/review.css";
@import "Shop/wishlist.css";
@import "blog.css";

/* ----------------------------------------
// Common
// ---------------------------------------- */


/*
// animations
*/

@-webkit-keyframes preloader-animation {
    from {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }

    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes preloader-animation {
    from {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }

    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}


/*
// base
*/

html {
    height: 100%;
}

body {
    height: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #333333;
    font-weight: 400;
    line-height: 1.5;
    background: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-y: scroll;
}

body {
    text-align: left;
    direction: ltr;
}

[dir="rtl"] body {
    text-align: right;
    direction: rtl;
}

svg {
    display: block;
}

a {
    color: #333333;
}

a:hover {
    color: #ea500d;
    text-decoration: none;
}

label {
    margin-bottom: 0.25rem;
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

h5 {
    font-size: 20px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 700;
}


/* ----------------------------------------
// Components
// ---------------------------------------- */


/*
// .account-nav
*/

.account-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-nav__item a {
    display: block;
    color: #6c757d;
    font-size: 15px;
}

.account-nav__item a:hover {
    background-color: #f7f7f7;
}

@media (min-width: 992px) {
    .account-nav {
        border: 2px solid #f0f0f0;
        border-radius: 2px;
    }

    .account-nav ul {
        padding-bottom: 18px;
    }

    .account-nav__title {
        font-size: 20px;
        padding: 24px 26px 0;
        margin-bottom: 1rem;
    }

    .account-nav__item a {
        padding: 5px 26px;
    }

    .account-nav__item a {
        margin-left: -2px;
        border-left: 2px solid #f0f0f0;
    }

    [dir="rtl"] .account-nav__item a {
        margin-right: -2px;
        border-right: 2px solid #f0f0f0;
    }

    .account-nav__item--active a {
        color: #333333;
        font-weight: 500;
    }

    .account-nav__item--active a {
        border-left: 2px solid #ea500d;
    }

    [dir="rtl"] .account-nav__item--active a {
        border-right: 2px solid #ea500d;
    }
}

@media (max-width: 991px) {
    .account-nav__title {
        display: none;
    }

    .account-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .account-nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        white-space: nowrap;
        width: 100%;
        border-bottom: 2px solid #f0f0f0;
    }

    .account-nav__item a {
        padding: 8px 16px;
        margin-bottom: -2px;
        border-bottom: 2px solid #f0f0f0;
    }

    .account-nav__item--active a {
        color: #333333;
        font-weight: 500;
        border-color: #ea500d;
    }
}


/*
// .alert
*/

.alert {
    border: none;
    border-radius: 2px;
    font-size: 15px;
    line-height: 20px;
    padding: 0.75rem 1rem;
}

.alert a {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    color: currentColor;
    font-weight: bold;
    border-radius: 1.5px;
    padding: 0 3px;
}

.alert a:hover {
    color: #333333;
}

.alert-primary {
    background: #ea500d;
    color: #fff;
}

.alert-secondary {
    background: #d9d9d9;
    color: #4d4d4d;
}

.alert-info {
    background: #b8e2e5;
    color: #2d3e40;
}

.alert-success {
    background: #bde5a1;
    color: #34402d;
}

.alert-danger {
    background: #ffb8b8;
    color: #473333;
}

.alert-warning {
    background: #f2e291;
    color: #4d472e;
}

.alert-lg {
    font-size: 16px;
    padding: 1.125rem 1.375rem;
}

.alert-dismissible {
    padding-right: 3rem;
}

[dir="rtl"] .alert-dismissible {
    padding-left: 3rem;
}

.alert-dismissible .close {
    opacity: 1;
    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: 0 1rem;
    height: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    fill: rgba(0, 0, 0, 0.3);
    background: transparent;
}

.alert-dismissible .close {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 1.5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 1.5px;
}

[dir="rtl"] .alert-dismissible .close {
    right: auto;
    left: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 1.5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1.5px;
}

.alert-dismissible .close:focus {
    outline: none;
}

.alert-dismissible .close:not(:disabled):not(.disabled):focus,
.alert-dismissible .close:not(:disabled):not(.disabled):hover {
    background: rgba(0, 0, 0, 0.08);
    fill: rgba(0, 0, 0, 0.5);
    opacity: 1;
}


/*
// .badge
*/

.badge {
    border-radius: 1.5px;
    font-weight: 500;
    padding: 0.25em 0.5em;
}


/*
// .block-header
*/

.block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
}

.block-header__title {
    margin-bottom: 0;
    font-size: 16px;
    color: #333333;
}

.block-header__divider {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 2px;
    background: #ebebeb;
}

.block-header__groups-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.block-header__groups-list li+li {
    margin-left: 3px;
}

.block-header__groups-list li+li {
    margin-right: 3px;
}

.block-header__group {
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    display: block;
    color: inherit;
    padding: 2px 11px 1px;
    border-radius: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.block-header__group:focus {
    outline: none;
}

.block-header__group:focus,
.block-header__group:hover {
    -webkit-box-shadow: 0 0 0 2px #ebebeb inset;
    box-shadow: 0 0 0 2px #ebebeb inset;
    color: inherit;
}

.block-header__group--active,
.block-header__group--active:focus,
.block-header__group--active:hover {
    cursor: default;
    border-radius: 9.5px;
    border: solid 1px #333333;
}

.block-header__arrows-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-header__arrow {
    width: 27px;
    height: 29px;
    padding: 0;
    margin: 0;
    border: none;
    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;
    cursor: pointer;
    fill: #999;
    border-radius: 1.5px;
    background: #f2f2f2;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.block-header__arrow:focus {
    outline: none;
}

.block-header__arrow:focus,
.block-header__arrow:hover {
    background: #ea500d;
    fill: #fff;
}

.block-header__arrow:active {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    background: #ea500d;
    fill: #fff;
}

.block-header__arrow+.block-header__arrow {
    margin-left: 3px;
}

[dir="rtl"] .block-header__arrow+.block-header__arrow {
    margin-right: 3px;
}

.block-header__arrow svg {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

[dir="rtl"] .block-header__arrow svg {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.block-header__arrow--left svg {
    position: relative;
}

.block-header__arrow--left svg {
    left: -1px;
}

[dir="rtl"] .block-header__arrow--left svg {
    right: -1px;
}

.block-header__arrow--right svg {
    position: relative;
}

.block-header__arrow--right svg {
    left: 1px;
}

[dir="rtl"] .block-header__arrow--right svg {
    right: 1px;
}

.block-header__title+.block-header__divider {
    margin-left: 16px;
    margin-right: 16px;
}

[dir="rtl"] .block-header__title+.block-header__divider {
    margin-right: 16px;
}

.block-header__divider+.block-header__groups-list {
    margin-left: 12px;
}

[dir="rtl"] .block-header__divider+.block-header__groups-list {
    margin-right: 12px;
}

.block-header__groups-list+.block-header__arrows-list {
    margin-left: 10px;
}

[dir="rtl"] .block-header__groups-list+.block-header__arrows-list {
    margin-right: 10px;
}

.block-header__divider+.block-header__arrows-list {
    margin-left: 16px;
}

[dir="rtl"] .block-header__divider+.block-header__arrows-list {
    margin-right: 16px;
}

@media (max-width: 767px) {
    .block-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .block-header__groups-list {
        padding: 8px 0;
        margin-top: 8px;
        margin-bottom: -8px;
        -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
        order: 100;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .block-header__divider+.block-header__groups-list {
        margin-left: auto;
        margin-right: auto;
    }

    [dir="rtl"] .block-header__divider+.block-header__groups-list {
        margin-right: auto;
        margin-left: auto;
    }

    [dir="ltr"] .block-header__divider+.block-header__groups-list+.block-header__arrows-list {
        margin-left: 16px;
    }

    [dir="rtl"] .block-header__divider+.block-header__groups-list+.block-header__arrows-list {
        margin-right: 16px;
    }
}


/*
// .card
*/

.card {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
}

.card-body {
    padding: 2rem;
}

.card-header,
.card-footer {
    padding: 1.5rem 2rem;
    border-top: none;
    border-bottom: none;
    background-color: transparent;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6,
.card-footer h1,
.card-footer h2,
.card-footer h3,
.card-footer h4,
.card-footer h5,
.card-footer h6 {
    margin-bottom: 0;
}

.card-title {
    margin-bottom: 1.75rem;
}

.card-title h1,
.card-title h2,
.card-title h3,
.card-title h4,
.card-title h5,
.card-title h6 {
    margin-bottom: 0;
}

.card-divider {
    height: 2px;
    background: #f0f0f0;
}

.card-body .card-title:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {

    .card-header,
    .card-footer {
        padding: 1.25rem 1.5rem;
    }

    .card-title {
        font-size: 26px;
        margin-bottom: 1.5rem;
    }

    .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {

    .card-header,
    .card-footer {
        padding: 1rem 1.375rem;
    }

    .card-title {
        font-size: 26px;
        margin-bottom: 1.5rem;
    }

    .card-body {
        padding: 1.375rem;
    }
}


/*
// .card-table
*/

.card-table {
    font-size: 15px;
}

.card-table a:not(.btn):hover {
    text-decoration: underline;
}

.card-table table {
    width: 100%;
    min-width: 500px;
}

.card-table table {
    text-align: left;
}

[dir="rtl"] .card-table table {
    text-align: right;
}

.card-table thead th {
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 12px;
}

.card-table tbody th,
.card-table tbody td,
.card-table tfoot th,
.card-table tfoot td {
    padding: 12px 12px;
}

.card-table tfoot th,
.card-table tfoot td {
    padding-top: 16px;
    padding-bottom: 16px;
}

.card-table tbody+tbody tr th,
.card-table tbody+tbody tr td,
.card-table tbody+tfoot tr th,
.card-table tbody+tfoot tr td,
.card-table tbody tr+tr th,
.card-table tbody tr+tr td {
    border-top: 1px solid #f0f0f0;
}

.card-table tbody tr:hover>*,
.card-table tfoot tr:hover>* {
    background-color: #f7f7f7;
}

.card-table th:first-child,
.card-table td:first-child {
    padding-left: 2rem;
}

.card-table th:last-child,
.card-table td:last-child {
    padding-right: 2rem;
    text-align: right;
}

[dir="rtl"] .card-table th:first-child,
[dir="rtl"] .card-table td:first-child {
    padding-right: 2rem;
}

[dir="rtl"] .card-table th:last-child,
[dir="rtl"] .card-table td:last-child {
    padding-left: 2rem;
}

.card-table .card-table__body--merge-rows th,
.card-table .card-table__body--merge-rows td {
    padding-top: 3px;
    padding-bottom: 3px;
}

.card-table .card-table__body--merge-rows tr:first-child th,
.card-table .card-table__body--merge-rows tr:first-child td {
    padding-top: 12px;
}

.card-table .card-table__body--merge-rows tr:last-child th,
.card-table .card-table__body--merge-rows tr:last-child td {
    padding-bottom: 12px;
}

.card-table .card-table__body--merge-rows tr+tr th,
.card-table .card-table__body--merge-rows tr+tr td {
    border-top: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-table {
        font-size: 14px;
    }

    .card-table th:first-child,
    .card-table td:first-child {
        padding-left: 1.5rem;
    }

    .card-table th:last-child,
    .card-table td:last-child {
        padding-right: 1.5rem;
    }

    [dir="rtl"] .card-table th:first-child,
    [dir="rtl"] .card-table td:first-child {
        padding-right: 1.5rem;
    }

    [dir="rtl"] .card-table th:last-child,
    [dir="rtl"] .card-table td:last-child {
        padding-left: 1.5rem;
    }
}

@media (max-width: 767px) {
    .card-table {
        font-size: 14px;
    }

    .card-table th:first-child,
    .card-table td:first-child {
        padding-left: 1.375rem;
    }

    .card-table th:last-child,
    .card-table td:last-child {
        padding-right: 1.375rem;
    }

    [dir="rtl"] .card-table th:first-child,
    [dir="rtl"] .card-table td:first-child {
        padding-right: 1.375rem;
    }

    [dir="rtl"] .card-table th:last-child,
    [dir="rtl"] .card-table td:last-child {
        padding-left: 1.375rem;
    }
}


/*
// .filters-button
*/

.filters-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 9px;
    height: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    color: inherit;
}

.filters-button:focus {
    outline: none;
}

.filters-button:hover {
    background: #f5f5f5;
    border-color: #e5e5e5;
}

.filters-button__icon {
    fill: #3d464d;
}

.filters-button__icon {
    margin-right: 8px;
}

[dir="rtl"] .filters-button__icon {
    margin-left: 8px;
}

.filters-button__counter {
    display: block;
    height: 20px;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 5px 0;
    border-radius: 2px;
    line-height: 16px;
    background: #ea500d;
    color: #ffffff;
}

.filters-button__counter {
    margin-left: 12px;
    margin-right: -4px;
}

[dir="rtl"] .filters-button__counter {
    margin-right: 12px;
    margin-left: -4px;
}


/*
// forms
*/

.form-group {
    margin-bottom: 1.5rem;
}

.form-check {
    padding-left: 1.5rem;
}

[dir="rtl"] .form-check {
    padding-right: 1.5rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.1875rem;
}

.form-check-input {
    margin-left: -1.5rem;
}

.form-check-label a {
    font-weight: bold;
}

.form-rgpd {
    margin-bottom: 1.5em;
}

.form-rgpd input[type="checkbox"] {
    vertical-align: middle;
}

.form-rgpd sup,
.form-group sup {
    color: #ea500d;
    margin: 0 5px;
}

.form-rgpd a {
    font-weight: bold;
}

[dir="rtl"] .form-check-input {
    margin-right: -1.5rem;
}

@media (max-width: 767px) {
    .form-group {
        margin-bottom: 1.125rem;
    }
}

.form-control {
    border-radius: 2px;
    line-height: 1.25;
}

.form-control-sm {
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: 0.3125rem 0.5rem;
}

.form-control-lg {
    height: calc(2.75rem + 2px);
    line-height: 1.25;
}

.form-control:valid,
.form-control.is-valid,
.form-control:invalid,
.form-control.is-invalid {
    background-image: none;
}

.form-control:focus {
    color: #333333;
    background-color: #fff;
    border-color: #ea500dad;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #ea500dad;

}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.form-control::-ms-expand {
    display: none;
}

select.form-control,
select.form-control:valid,
select.form-control.is-valid,
select.form-control:invalid,
select.form-control.is-invalid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 5 10'%3E%3Cpath fill='%234d4d4d' d='M4.503,4 L0.497,4 C0.094,4 -0.142,3.492 0.089,3.122 L2.095,0.233 C2.293,-0.084 2.712,-0.084 2.911,0.233 L4.911,3.122 C5.142,3.492 4.906,4 4.503,4 ZM0.497,6 L4.503,6 C4.906,6 5.142,6.504 4.911,6.871 L2.905,9.737 C2.707,10.052 2.288,10.052 2.089,9.737 L0.089,6.871 C-0.142,6.504 0.094,6 0.497,6 Z'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 5px 10px;
    background-position: 92% center;
}

select.form-control,
select.form-control:valid,
select.form-control.is-valid,
select.form-control:invalid,
select.form-control.is-invalid {
    background-position: right 0.75rem center;
    padding-right: calc(0.75rem * 2 + 5px);
}

[dir="rtl"] select.form-control,
[dir="rtl"] select.form-control:valid,
[dir="rtl"] select.form-control.is-valid,
[dir="rtl"] select.form-control:invalid,
[dir="rtl"] select.form-control.is-invalid {
    background-position: left 0.75rem center;
    padding-left: calc(0.75rem * 2 + 5px);
}

select.form-control-sm,
select.form-control-sm:valid,
select.form-control-sm.is-valid,
select.form-control-sm:invalid,
select.form-control-sm.is-invalid {
    background-position: right 0.5rem center;
    padding-right: calc(0.5rem * 2 + 5px);
}

[dir="rtl"] select.form-control-sm,
[dir="rtl"] select.form-control-sm:valid,
[dir="rtl"] select.form-control-sm.is-valid,
[dir="rtl"] select.form-control-sm:invalid,
[dir="rtl"] select.form-control-sm.is-invalid {
    background-position: left 0.5rem center;
    padding-left: calc(0.5rem * 2 + 5px);
}

select.form-control-lg,
select.form-control-lg:valid,
select.form-control-lg.is-valid,
select.form-control-lg:invalid,
select.form-control-lg.is-invalid {
    background-position: right 1rem center;
    padding-right: calc(1rem * 2 + 5px);
}

[dir="rtl"] select.form-control-lg,
[dir="rtl"] select.form-control-lg:valid,
[dir="rtl"] select.form-control-lg.is-valid,
[dir="rtl"] select.form-control-lg:invalid,
[dir="rtl"] select.form-control-lg.is-invalid {
    background-position: left 1rem center;
    padding-left: calc(1rem * 2 + 5px);
}


/*
// .input-check
*/

.input-check {
    display: inline-block;
}

.input-check__body {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
}

.input-check__input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: inherit;
}

.input-check__box {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 1.2px;
    background: #fff;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
    -webkit-transition: background 0.15s, -webkit-box-shadow 0.15s;
    transition: background 0.15s, -webkit-box-shadow 0.15s;
    transition: background 0.15s, box-shadow 0.15s;
    transition: background 0.15s, box-shadow 0.15s, -webkit-box-shadow 0.15s;
}

.input-check__icon {
    pointer-events: none;
    position: absolute;
    left: 4px;
    top: 5px;
    fill: #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: fill 0.15s, visibility 0s 0.15s, -webkit-transform 0.15s;
    transition: fill 0.15s, visibility 0s 0.15s, -webkit-transform 0.15s;
    transition: fill 0.15s, transform 0.15s, visibility 0s 0.15s;
    transition: fill 0.15s, transform 0.15s, visibility 0s 0.15s, -webkit-transform 0.15s;
}

.input-check__input:checked~.input-check__box {
    background: #ea500d;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}

.input-check__input:checked~.input-check__icon {
    fill: #ffffff;
    -webkit-transition-delay: 0s, 0s, 0s;
    transition-delay: 0s, 0s, 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.input-check__input:disabled~.input-check__box {
    background: #f2f2f2;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}

.input-check__input:disabled~.input-check__icon {
    fill: rgba(0, 0, 0, 0.2);
}


/*
// .input-check-color
*/

.input-check-color {
    display: inline-block;
}

.input-check-color__body {
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 1.2px;
    overflow: hidden;
    cursor: inherit;
    margin: 0;
}

.input-check-color__input {
    position: absolute;
    visibility: hidden;
}

.input-check-color__box {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 1.2px;
    background: currentColor;
    cursor: inherit;
}

.input-check-color__icon {
    position: absolute;
    left: 5px;
    top: 6px;
    fill: #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.15s;
    transition: -webkit-transform 0.15s;
    transition: transform 0.15s;
    transition: transform 0.15s, -webkit-transform 0.15s;
}

.input-check-color__input:checked~.input-check-color__icon {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.input-check-color__input:disabled {
    cursor: default;
}

.input-check-color__input:disabled~.input-check-color__box {
    position: relative;
    left: 0px;
    top: 0px;
    width: 22px;
    height: 22px;
    opacity: 0.5;
    cursor: default;
}

.input-check-color__input:disabled~.input-check-color__stick {
    pointer-events: none;
    display: block;
    position: absolute;
    width: 2px;
    border-radius: 1px;
    height: 34px;
    left: calc(50% - 1px);
    top: -6px;
    background: rgba(102, 102, 102, 0.9);
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.input-check-color--light .input-check-color__icon {
    fill: #3d464d;
}

.input-check-color--white .input-check-color__box {
    -webkit-box-shadow: 0 0 0 2px #d9d9d9 inset;
    box-shadow: 0 0 0 2px #d9d9d9 inset;
}

.input-check-color--white .input-check-color__icon {
    fill: #bfbfbf;
}

.input-check-color--selector .input-check-color__box {
    -webkit-box-shadow: 0 0 0 2px var(--hex) inset;
    box-shadow: 0 0 0 2px var(--hex) inset;
}


/*
// .input-number
*/

.input-number {
    display: block;
    width: 100%;
    position: relative;
}

.input-number__input {
    -moz-appearance: textfield;
    display: block;
    width: 100%;
    min-width: 88px;
    padding: 0 24px 1px;
    text-align: center;
}

.input-number__input::-webkit-inner-spin-button,
.input-number__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.input-number__sub,
.input-number__add {
    position: absolute;
    height: 100%;
    width: 24px;
    top: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0.3;
    -webkit-transition: opacity 0.18s;
    transition: opacity 0.18s;
}

.input-number__sub:before,
.input-number__sub:after,
.input-number__add:before,
.input-number__add:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: currentColor;
}

.input-number__sub:before,
.input-number__add:before {
    width: 8px;
    height: 2px;
}

.input-number__sub:hover,
.input-number__add:hover {
    opacity: 1;
}

.input-number__sub {
    left: 1px;
}

.input-number__sub {
    right: 1px;
}

.input-number__add {
    right: 1px;
}

[dir="rtl"] .input-number__add {
    left: 1px;
}

.input-number__add:after {
    width: 2px;
    height: 8px;
}


/*
// .input-radio
*/

.input-radio {
    display: inline-block;
}

.input-radio__body {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
}

.input-radio__input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: inherit;
}

.input-radio__circle {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.17) inset;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.17) inset;
    -webkit-transition: background 0.2s, -webkit-box-shadow 0.2s;
    transition: background 0.2s, -webkit-box-shadow 0.2s;
    transition: background 0.2s, box-shadow 0.2s;
    transition: background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.input-radio__circle::after {
    display: block;
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: background 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    transition: background 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    transition: background 0.2s, transform 0.2s, visibility 0s 0.2s;
    transition: background 0.2s, transform 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    visibility: hidden;
}

.input-radio__input:checked~.input-radio__circle {
    background: #ea500d;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}

.input-radio__input:checked~.input-radio__circle::after {
    background: #fff;
    visibility: visible;
    -webkit-transition-delay: 0s, 0s, 0s;
    transition-delay: 0s, 0s, 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.input-radio__input:disabled~.input-radio__circle {
    background: #f2f2f2;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset;
}

.input-radio__input:disabled~.input-radio__circle::after {
    background: rgba(0, 0, 0, 0.2);
}


/*
// .input-radio-color
*/

.input-radio-color {
    display: block;
}

.input-radio-color__list {
    padding: 1px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -2px;
}

.input-radio-color__item {
    width: 30px;
    height: 30px;
    display: block;
    margin: 2px;
    cursor: pointer;
}

.input-radio-color__item input {
    pointer-events: none;
    opacity: 0;
    position: absolute;
}

.input-radio-color__item span {
    position: relative;
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 15px;
    background: currentColor;
    -webkit-transform: scale(0.73333);
    transform: scale(0.73333);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.input-radio-color__item span:before,
.input-radio-color__item span:after {
    display: block;
    position: absolute;
    content: "";
    border-radius: 1000px;
}

.input-radio-color__item span:before {
    left: 3px;
    top: 3px;
    width: 24px;
    height: 24px;
    background: #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.input-radio-color__item span:after {
    left: 8px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: currentColor;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.input-radio-color__item:hover input:enabled~span {
    -webkit-transform: scale(0.86667);
    transform: scale(0.86667);
}

.input-radio-color__item input:enabled:checked~span,
.input-radio-color__item input:enabled:checked~span:before,
.input-radio-color__item input:enabled:checked~span:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.input-radio-color__item--disabled {
    cursor: default;
}

.input-radio-color__item--disabled span {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
}

.input-radio-color__item--disabled span:before {
    -webkit-transform: scale(1.33) rotateZ(45deg);
    transform: scale(1.33) rotateZ(45deg);
    left: 14px;
    top: -1px;
    width: 2px;
    height: calc(100% + 2px);
    background: rgba(0, 0, 0, 0.3);
}

.input-radio-color__item--white span {
    -webkit-box-shadow: inset 0 0 0 2px #ccc;
    box-shadow: inset 0 0 0 2px #ccc;
}

.input-radio-color__item--white span:after {
    -webkit-box-shadow: inset 0 0 0 2px #ccc;
    box-shadow: inset 0 0 0 2px #ccc;
}


/*
// .input-radio-label
*/

.input-radio-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.input-radio-label__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -3px;
}

.input-radio-label__list input {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.input-radio-label__list label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-radio-label__list span {
    cursor: pointer;
    display: block;
    height: 32px;
    padding: 0.3125rem 1rem;
    border-radius: 2px;
    background: #f0f0f0;
    color: #333333;
    -webkit-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
}

.input-radio-label__list input:not(:checked):not(:disabled)~span:hover {
    background: #e0e0e0;
    color: #ffffff;
}

.input-radio-label__list input:checked~span {
    cursor: default;
    background: #ea500d;
    color: #ffffff;
    -webkit-transition-duration: 0.08s, 0.08s;
    transition-duration: 0.08s, 0.08s;
}

.input-radio-label__list input:disabled~span {
    cursor: default;
    opacity: 0.5;
}


/*
// .layout-switcher
*/

.layout-switcher__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
}

.layout-switcher__button {
    border: 1px solid #e5e5e5;
    cursor: pointer;
    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: 0 9px;
    height: 32px;
    border-radius: 0;
    background: #fff;
    fill: #a1abb3;
}

.layout-switcher__button:focus {
    outline: none;
}

.layout-switcher__button:hover {
    border-color: #e5e5e5;
    background: #f2f2f2;
    fill: #3d464d;
}

.layout-switcher__button:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

[dir="rtl"] .layout-switcher__button:first-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.layout-switcher__button:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

[dir="rtl"] .layout-switcher__button:last-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.layout-switcher__button+.layout-switcher__button {
    margin-left: -1px;
}

[dir="rtl"] .layout-switcher__button+.layout-switcher__button {
    margin-right: -1px;
}

.layout-switcher__button--active,
.layout-switcher__button--active:hover {
    cursor: default;
    border-color: #333333;
    background: #333333;
    fill: #ffffff;
    z-index: 1;
}


/*
// .modal
*/

.modal {
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    border: none;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
}


/*
// .nouislider
*/


/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
    direction: ltr;
}

.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}


/* Wrapper for all connect elements.
 */

.noUi-connects {
    overflow: hidden;
    z-index: 0;
}

.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    -webkit-transform-style: flat;
    transform-style: flat;
}

.noUi-connect {
    height: 100%;
    width: 100%;
}

.noUi-origin {
    height: 10%;
    width: 10%;
}


/* Offset direction
 */

html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
    left: auto;
    right: 0;
}


/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */

.noUi-vertical .noUi-origin {
    width: 0;
}

.noUi-horizontal .noUi-origin {
    height: 0;
}

.noUi-handle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
}

.noUi-touch-area {
    height: 100%;
    width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    -webkit-transition: transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}


/* Slider size and handle placement;
 */

.noUi-horizontal {
    height: 18px;
}

.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    left: -17px;
    top: -6px;
}

.noUi-vertical {
    width: 18px;
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    left: -6px;
    top: -17px;
}

.noUi-target {
    height: 16px;
}

.noUi-base {
    padding-top: 5px;
}

.noUi-connects {
    background: #e0e0e0;
    border-radius: 3px;
    height: 6px;
}

.noUi-connect {
    border-radius: 2px;
    background: #ea500d;
}

.noUi-horizontal .noUi-handle {
    cursor: ew-resize;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #3d464d;
    -webkit-box-shadow: 0 0 0 0 rgba(61, 70, 77, 0);
    box-shadow: 0 0 0 0 rgba(61, 70, 77, 0);
    -webkit-transition: -webkit-box-shadow 0.2s;
    transition: -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s;
    transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.noUi-horizontal .noUi-handle:after {
    top: 0;
    display: block;
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    margin: 5px;
    border-radius: 3px;
    background: #ea500d;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.noUi-horizontal .noUi-handle:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 3px rgba(61, 70, 77, 0.3);
    box-shadow: 0 0 0 3px rgba(61, 70, 77, 0.3);
}

.noUi-horizontal .noUi-handle:focus:after {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.noUi-horizontal .noUi-handle {
    top: 0px;
}

.noUi-horizontal .noUi-handle {
    left: auto;
    right: -8px;
}

[dir="rtl"] .noUi-horizontal .noUi-handle {
    right: auto;
    left: -8px;
}


/*
// .pagination
*/

.pagination {
    margin-bottom: 0;
}

.page-link,
.page-numbers,
.navigation .pagination li a {
    font-weight: 500;
    border-radius: 2px;
    border: none;
    line-height: 1;
    margin: 0 2px;
    padding: 9px 10px 8px;
    height: 33px;
    background: transparent;
    color: #333333;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-link:hover,
.page-numbers:hover,
.navigation .pagination li:hover,
.page-link:focus,
.page-numbers:focus,
.navigation .pagination li:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ebebeb;
    color: #ffffff;
}

.page-link--with-arrow {
    width: 29px;
    position: relative;
}

.page-link--with-arrow .page-link__arrow {
    position: absolute;
    fill: currentColor;
    top: 10px;
}

.page-link--with-arrow .page-link__arrow {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

[dir="rtl"] .page-link--with-arrow .page-link__arrow {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.page-link--with-arrow .page-link__arrow--left {
    left: 10px;
}

[dir="rtl"] .page-link--with-arrow .page-link__arrow--left {
    right: 10px;
}

.page-link--with-arrow .page-link__arrow--right {
    left: 11px;
}

[dir="rtl"] .page-link--with-arrow .page-link__arrow--right {
    right: 11px;
}

.page-item:first-child .page-link,
.page-item:first-child .page-numbers,
.page-item:first-child .navigation .pagination li {
    border-radius: 2px;
}

.page-item:first-child .page-link,
.page-item:first-child .page-numbers,
.page-item:first-child .navigation .pagination li {
    margin-left: 0;
}

[dir="rtl"] .page-item:first-child .page-link,
[dir="rtl"] .page-item:first-child .page-numbers,
[dir="rtl"] .page-item:first-child .navigation .pagination li {
    margin-right: 0;
}

.page-item:last-child .page-link,
.page-item:last-child .page-numbers,
.page-item:last-child .navigation .pagination li {
    border-radius: 2px;
}

.page-item:last-child .page-link,
.page-item:last-child .page-numbers,
.page-item:last-child .navigation .pagination li {
    margin-right: 0;
}

[dir="rtl"] .page-item:last-child .page-link,
[dir="rtl"] .page-item:last-child .page-numbers,
[dir="rtl"] .page-item:last-child .navigation .pagination li {
    margin-left: 0;
}

.page-item.active .page-link,
.page-item.active .page-numbers,
.page-item.active .navigation .pagination li {
    background: #333333;
    color: #fff;
    cursor: default;
    z-index: 2;
}

.page-item.disabled .page-link,
.page-item.disabled .page-numbers,
.page-item.disabled .navigation .pagination li {
    background: transparent;
    color: #b3b3b3;
}


/*
// .post-card
*/

.post-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 1.5px;
}

.post-card__image img {
    max-width: 100%;
}

.post-card__image ::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    z-index: 1;
}

.post-card__image:hover ::before {
    opacity: 1;
}

.post-card__category {
    font-size: 14px;
    color: #adadad;
}

.post-card__category a {
    color: inherit;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.post-card__category a:hover {
    color: #ea500d;
}

.post-card__date {
    font-size: 14px;
    color: #adadad;
}

.post-card__name {
    font-size: 20px;
    line-height: 1.125;
    font-weight: 500;
}

.post-card__name a {
    color: inherit;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.post-card__name a:hover {
    color: #ea500d;
}

.post-card__content {
    font-size: 15px;
    line-height: 24px;
}

.post-card--layout--related .post-card__name {
    width: 100%;
    font-size: 17px;
    margin-top: 16px;
    line-height: 24px;
}

.post-card--layout--related .post-card__name a {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.post-card--layout--related .post-card__name a:hover {
    color: #1a66ff;
}

.post-card--layout--related .post-card__date {
    margin-top: 8px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .post-card--layout--related .post-card__name {
        margin-top: 12px;
        font-size: 15px;
        line-height: 20px;
    }

    .post-card--layout--related .post-card__date {
        margin-top: 4px;
        font-size: 14px;
    }
}

.post-card--layout--grid .post-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post-card--layout--grid .post-card__image {
    margin-bottom: 14px;
}

.post-card--layout--grid .post-card__category {
    display: none;
}

.post-card--layout--grid .post-card__date {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.post-card--layout--grid .post-card__name {
    width: 100%;
    font-size: 18px;
    margin-top: 4px;
    line-height: 22px;
}

.post-card--layout--grid .post-card__content {
    width: 100%;
    margin-top: 12px;
}

.post-card--layout--grid .post-card__read-more {
    width: 100%;
    display: none;
}

.post-card--layout--grid.post-card--size--lg .post-card__image {
    margin-bottom: 0;
    border-radius: 3px;
}

.post-card--layout--grid.post-card--size--lg .post-card__info {
    padding: 28px 36px 12px;
}

.post-card--layout--grid.post-card--size--lg .post-card__category {
    font-size: 15px;
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    display: block;
}

.post-card--layout--grid.post-card--size--lg .post-card__date {
    font-size: 15px;
    position: relative;
}

.post-card--layout--grid.post-card--size--lg .post-card__date {
    padding-left: 22px;
}

[dir="rtl"] .post-card--layout--grid.post-card--size--lg .post-card__date {
    padding-right: 22px;
}

.post-card--layout--grid.post-card--size--lg .post-card__date::before {
    top: 9px;
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: currentColor;
}

[dir="ltr"] .post-card--layout--grid.post-card--size--lg .post-card__date::before {
    left: 9px;
}

[dir="rtl"] .post-card--layout--grid.post-card--size--lg .post-card__date::before {
    right: 9px;
}

.post-card--layout--grid.post-card--size--lg .post-card__name {
    margin-top: 8px;
    font-size: 24px;
    line-height: 32px;
}

.post-card--layout--grid.post-card--size--lg .post-card__content {
    margin-top: 20px;
    font-size: 16px;
}

.post-card--layout--grid.post-card--size--lg .post-card__read-more {
    display: block;
    margin-top: 18px;
}

@media (max-width: 767px) {
    .post-card--layout--grid.post-card--size--lg .post-card__info {
        padding: 20px 20px 12px;
    }

    .post-card--layout--grid.post-card--size--lg .post-card__name {
        font-size: 22px;
        line-height: 26px;
    }

    .post-card--layout--grid.post-card--size--lg .post-card__content {
        margin-top: 12px;
    }
}

@media (max-width: 479px) {
    .post-card--layout--grid.post-card--size--lg .post-card__info {
        padding: 12px 12px 12px;
    }

    .post-card--layout--grid.post-card--size--lg .post-card__name {
        font-size: 20px;
        line-height: 22px;
    }

    .post-card--layout--grid.post-card--size--lg .post-card__content {
        margin-top: 10px;
        font-size: 15px;
    }
}

@media (max-width: 379px) {
    .post-card--layout--grid.post-card--size--lg .post-card__name {
        margin-top: 4px;
    }

    .post-card--layout--grid.post-card--size--lg .post-card__info {
        padding: 10px 0;
    }
}

.post-card--layout--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.post-card--layout--list.post-card--size--nl .post-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 10px;
}

.post-card--layout--list.post-card--size--nl .post-card__image {
    width: 350px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.post-card--layout--list.post-card--size--nl .post-card__image {
    margin-right: 30px;
}

[dir="rtl"] .post-card--layout--list.post-card--size--nl .post-card__image {
    margin-left: 30px;
}

.post-card--layout--list.post-card--size--nl .post-card__category {
    font-size: 15px;
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    display: block;
}

.post-card--layout--list.post-card--size--nl .post-card__date {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    font-size: 15px;
    position: relative;
}

.post-card--layout--list.post-card--size--nl .post-card__date {
    padding-left: 22px;
}

[dir="rtl"] .post-card--layout--list.post-card--size--nl .post-card__date {
    padding-right: 22px;
}

.post-card--layout--list.post-card--size--nl .post-card__date::before {
    top: 9px;
    left: 15px;
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: currentColor;
}

[dir="ltr"] .post-card--layout--list.post-card--size--nl .post-card__date::before {
    left: 9px;
}

[dir="rtl"] .post-card--layout--list.post-card--size--nl .post-card__date::before {
    right: 9px;
}

.post-card--layout--list.post-card--size--nl .post-card__name {
    margin-top: 6px;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
}

.post-card--layout--list.post-card--size--nl .post-card__content {
    margin-top: 20px;
    font-size: 16px;
    width: 100%;
}

.post-card--layout--list.post-card--size--nl .post-card__read-more {
    display: block;
    margin-top: 14px;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .post-card--layout--list.post-card--size--nl .post-card__info {
        padding-top: 0;
    }

    .post-card--layout--list.post-card--size--nl .post-card__image {
        width: 260px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .post-card--layout--list.post-card--size--nl .post-card__image {
        margin-right: 22px;
    }

    [dir="rtl"] .post-card--layout--list.post-card--size--nl .post-card__image {
        margin-left: 22px;
    }

    .post-card--layout--list.post-card--size--nl .post-card__content {
        margin-top: 8px;
        font-size: 16px;
        overflow: hidden;
        height: 48px;
    }

    .post-card--layout--list.post-card--size--nl .post-card__read-more {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .post-card--layout--list.post-card--size--nl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .post-card--layout--list.post-card--size--nl .post-card__image {
        width: auto;
    }

    .post-card--layout--list.post-card--size--nl .post-card__image {
        margin-right: 0;
    }

    [dir="rtl"] .post-card--layout--list.post-card--size--nl .post-card__image {
        margin-left: 0;
    }

    .post-card--layout--list.post-card--size--nl .post-card__content {
        margin-top: 10px;
    }
}

.post-card--layout--list.post-card--size--sm .post-card__image {
    width: 240px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.post-card--layout--list.post-card--size--sm .post-card__image {
    margin-right: 22px;
}

[dir="rtl"] .post-card--layout--list.post-card--size--sm .post-card__image {
    margin-left: 22px;
}

.post-card--layout--list.post-card--size--sm .post-card__name {
    margin-top: 10px;
    font-size: 16px;
    line-height: 20px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    height: 40px;
    overflow: hidden;
}

.post-card--layout--list.post-card--size--sm .post-card__date {
    margin-top: 6px;
}

.post-card--layout--list.post-card--size--sm .post-card__category {
    display: none;
}

.post-card--layout--list.post-card--size--sm .post-card__content {
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
    height: 66px;
    overflow: hidden;
}

.post-card--layout--list.post-card--size--sm .post-card__read-more {
    display: none;
}


/*
// .product-card
*/

.product-card {
    position: relative;
    padding: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
}

.product-card::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 0 1px #ededed inset;
    box-shadow: 0 0 0 1px #ededed inset;
    -webkit-transition: -webkit-box-shadow 0.2s;
    transition: -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s;
    transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.product-card:hover::before {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-box-shadow: 0 0 0 2px #ea500d inset;
    box-shadow: 0 0 0 2px #ea500d inset;
    z-index: 2;
}

.product-card:hover .product-card__quickview {
    -webkit-transition-duration: 0s, 0s;
    transition-duration: 0s, 0s;
    background: #ea500d;
}

.product-card:hover .product-card__quickview:not(.product-card__quickview--preload) {
    color: #ffffff;
}

.product-card:hover .product-card__quickview:not(.product-card__quickview--preload):hover {
    -webkit-transition-duration: 0.2s, 0.2s;
    transition-duration: 0.2s, 0.2s;
    background: #3d464d;
    color: #fff;
}

.product-card__image {
    padding: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-card__quickview {
    z-index: 2;
    position: absolute;
    border: none;
    font-size: 10px;
    text-transform: uppercase;
    fill: currentColor;
    padding: 7px;
    cursor: pointer;
    top: 0;
    background: transparent;
    color: #ccc;
    -webkit-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
    /* this needs only to avoid slow performance on Microsoft Edge while rendering huge amount of svg */
}

.product-card__quickview {
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 0;
}

[dir="rtl"] .product-card__quickview {
    left: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 0;
}

.product-card__quickview .fake-svg-icon {
    display: none;
}

@supports (-ms-ime-align: auto) {
    .product-card__quickview svg {
        display: none;
    }

    .product-card__quickview .fake-svg-icon {
        display: block;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        font-size: 16px;
    }

    .product-card__quickview .fake-svg-icon::before {
        content: "\e900";
    }
}

.product-card__quickview:focus {
    outline: none;
}

.product-card__quickview--preload {
    color: transparent;
}

.product-card__quickview--preload:after {
    display: block;
    content: "";
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: border-color 0.1s;
    transition: border-color 0.1s;
    -webkit-animation-name: preloader-animation;
    animation-name: preloader-animation;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    border-radius: 8px;
}

.product-card__info {
    padding: 2px 22px 24px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-card__name {
    font-size: 15px;
    line-height: 19px;
}

.product-card__name a {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.13;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.product-card__name a:hover {
    color: #ea500d;
}

.product-card__rating {
    margin-top: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-card__rating-stars,
.product-card__rating-legend {
    margin-top: 3px;
    margin-left: 10px;
}

.product-card__rating-stars {
    margin-right: 8px;
}

[dir="rtl"] .product-card__rating-stars {
    margin-left: 8px;
}

.product-card__rating-legend {
    font-size: 13px;
    line-height: 1;
    color: #b3b3b3;
    padding-top: 1px;
    white-space: nowrap;
}

.product-card__prices {
    margin-top: 14px;
    line-height: 1;
    font-weight: 700;
    color: #333333;
}

.product-card__new-price {
    color: #ff2626;
}

.product-card__old-price,
del .woocommerce-Price-amount {
    color: #b3b3b3;
    font-weight: 400;
    font-size: 13px;
    text-decoration: line-through;
}

.product-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.product-card__buttons .product-card__addtocart {
    background: #ea500d;
    border: #ea500d;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.product-card__buttons .product-card__addtocart:hover {
    background: #ea500dd4;
    border: #ea500dd4;
}

.product-card__wishlist:hover {
    fill: #ea500d;
}

.product-card__buttons>*:first-child {
    margin-right: auto;
}

[dir="rtl"] .product-card__buttons>*:first-child {
    margin-left: auto;
}

.product-card__buttons>*+* {
    margin-left: 4px;
}

[dir="rtl"] .product-card__buttons>*+* {
    margin-right: 4px;
}

.product-card__addtocart--list {
    display: none;
}

.product-card__features-list {
    list-style: none;
    margin: 10px 0 6px;
    padding: 0;
    color: #6c757d;
    font-size: 13px;
    line-height: 15px;
}

.product-card__features-list li {
    padding: 3px 0 3px;
    position: relative;
}

.product-card__features-list li {
    padding-left: 12px;
}

[dir="rtl"] .product-card__features-list li {
    padding-right: 12px;
}

.product-card__features-list li::before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    border: 1px solid currentColor;
}

.product-card__features-list li::before {
    left: -10px;
}

[dir="rtl"] .product-card__features-list li::before {
    right: 0;
}

.product-card__badges-list {
    top: 18px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    z-index: 1;
}

.product-card__badges-list {
    left: 18px;
}

[dir="rtl"] .product-card__badges-list {
    right: 18px;
}

.product-card__badge {
    font-size: 11px;
    border-radius: 1.5px;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 5px 8px 4px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-card__badge {
    margin-right: 4px;
}

[dir="rtl"] .product-card__badge {
    margin-left: 4px;
}

.product-card__badge--sale {
    background: #ff3333;
    color: #fff;
}

.product-card__badge--new {
    background: #ea500d;
    color: #fff;
}

.product-card__badge--hot {
    background: #614ba6;
    color: #fff;
}

.product-card--layout--horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.product-card--layout--horizontal .product-card__image {
    width: 120px;
    padding: 16px;
}

.product-card--layout--horizontal .product-card__badges-list {
    top: 10px;
}

.product-card--layout--horizontal .product-card__badges-list {
    left: 10px;
}

[dir="rtl"] .product-card--layout--horizontal .product-card__badges-list {
    right: 10px;
}

.product-card--layout--horizontal .product-card__badge {
    padding: 3px 5px 2px;
}

.product-card--layout--horizontal .product-card__info {
    padding-top: 14px;
    padding-bottom: 42px;
    width: 100%;
}

.product-card--layout--horizontal .product-card__info {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .product-card--layout--horizontal .product-card__info {
    padding-right: 0;
    padding-left: 30px;
}

.product-card--layout--horizontal .product-card__name {
    overflow: hidden;
    max-height: 38px;
}

.product-card--layout--horizontal .product-card__rating {
    white-space: nowrap;
}

.product-card--layout--horizontal .product-card__description {
    display: none;
}

.product-card--layout--horizontal .product-card__availability {
    display: none;
}

.product-card--layout--horizontal .product-card__buttons {
    display: none;
}

.product-card--layout--horizontal .product-card__actions {
    position: absolute;
    bottom: 18px;
    left: 41%;
}

.product-card--layout--horizontal .product-card__actions {
    left: 120px;
}

[dir="rtl"] .product-card--layout--horizontal .product-card__actions {
    right: 120px;
}

.product-card--layout--horizontal .product-card__features-list {
    display: none;
}

.product-card--layout--grid .product-card__image {
    padding: 18px 18px 20px;
}

.product-card--layout--grid .product-card__info {
    padding: 0 24px 0;
}

.product-card--layout--grid .product-card__actions {
    padding: 0 24px 24px;
}

.product-card--layout--grid .product-card__description {
    display: none;
}

.product-card--layout--grid .product-card__availability {
    display: none;
}

.product-card--layout--grid .product-card__features-list {
    display: none;
}

.product-card--layout--grid.product-card--size--sm .product-card__image {
    padding: 15px;
}

.product-card--layout--grid.product-card--size--sm .product-card__badges-list {
    top: 16px;
}

[dir="ltr"] .product-card--layout--grid.product-card--size--sm .product-card__badges-list {
    left: 16px;
}

[dir="rtl"] .product-card--layout--grid.product-card--size--sm .product-card__badges-list {
    right: 16px;
}

.product-card--layout--grid.product-card--size--sm .product-card__info {
    padding: 0 15px 0;
}

.product-card--layout--grid.product-card--size--sm .product-card__actions {
    padding: 0 15px 15px;
}

.product-card--layout--grid.product-card--size--sm .product-card__buttons .btn {
    font-size: 0.8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 0.25rem 0.5625rem;
    font-weight: 500;
}

.product-card--layout--grid.product-card--size--sm .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
}

@media (hover: hover) {
    .product-card--layout--grid.product-card--size--sm--hidden-actions .product-card__buttons {
        display: none;
    }

    .product-card--layout--grid.product-card--size--sm--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .product-card--layout--grid.product-card--size--sm--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .product-card--layout--grid.product-card--size--sm--hidden-actions .product-card__buttons {
        display: none;
    }

    .product-card--layout--grid.product-card--size--sm--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .product-card--layout--grid.product-card--size--sm--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.product-card--layout--grid.product-card--size--nl .product-card__buttons .btn {
    font-size: 0.875rem;
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: 0.375rem 1rem;
    font-weight: 500;
}

.product-card--layout--grid.product-card--size--nl .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.875rem + 2px);
}

@media (hover: hover) {
    .product-card--layout--grid.product-card--size--nl--hidden-actions .product-card__buttons {
        display: none;
    }

    .product-card--layout--grid.product-card--size--nl--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -56px;
    }

    .product-card--layout--grid.product-card--size--nl--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .product-card--layout--grid.product-card--size--nl--hidden-actions .product-card__buttons {
        display: none;
    }

    .product-card--layout--grid.product-card--size--nl--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -56px;
    }

    .product-card--layout--grid.product-card--size--nl--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.product-card--layout--grid.product-card--size--lg .product-card__image {
    padding: 25px;
}

.product-card--layout--grid.product-card--size--lg .product-card__info {
    padding: 0 30px 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.product-card--layout--grid.product-card--size--lg .product-card__name {
    font-size: 17px;
    line-height: 23px;
}

.product-card--layout--grid.product-card--size--lg .product-card__actions {
    padding: 0 30px 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-card--layout--grid.product-card--size--lg .product-card__rating {
    margin-top: 7px;
}

.product-card--layout--grid.product-card--size--lg .product-card__prices {
    margin-bottom: auto;
    font-size: 20px;
}

.product-card--layout--list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.product-card--layout--list .product-card__image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 24px;
    width: 210px;
}

.product-card--layout--list .product-card__info {
    padding: 20px 0;
}

.product-card--layout--list .product-card__info {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .product-card--layout--list .product-card__info {
    padding-right: 0;
    padding-left: 20px;
}

.product-card--layout--list .product-card__name {
    font-size: 16px;
    line-height: 20px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.product-card--layout--list .product-card__rating {
    margin-top: 4px;
}

.product-card--layout--list .product-card__description {
    color: #6c757d;
    font-size: 15px;
    line-height: 22px;
    margin-top: 12px;
}

.product-card--layout--list .product-card__actions {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 190px;
    padding: 16px 20px;
}

.product-card--layout--list .product-card__actions {
    border-left: 1px solid #ebebeb;
}

[dir="rtl"] .product-card--layout--list .product-card__actions {
    border-right: 1px solid #ebebeb;
}

.product-card--layout--list .product-card__prices {
    margin-top: 16px;
    font-size: 18px;
}

.product-card--layout--list .product-card__old-price {
    font-size: 14px;
}

.product-card--layout--list .product-card__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-card--layout--list .product-card__addtocart {
    display: none;
}

.product-card--layout--list .product-card__addtocart--list {
    display: block;
}

.product-card--layout--list .product-card__addtocart {
    width: 100%;
}

.product-card--layout--list .product-card__addtocart+* {
    margin-left: 0;
}

[dir="rtl"] .product-card--layout--list .product-card__addtocart+* {
    margin-right: 0;
}

.product-card--layout--list .product-card__addtocart~* {
    margin-top: 8px;
}

.product-card--layout--list .product-card__addtocart,
.product-card--layout--list .product-card__wishlist,
.product-card--layout--list .product-card__compare {
    font-size: 0.875rem;
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: 0.375rem 1rem;
    font-weight: 500;
}

.product-card--layout--list .product-card__addtocart.btn-svg-icon,
.product-card--layout--list .product-card__wishlist.btn-svg-icon,
.product-card--layout--list .product-card__compare.btn-svg-icon {
    width: calc(1.875rem + 2px);
}

.product-card--layout--list .product-card__availability {
    color: #999;
    font-size: 14px;
}

.product-card--layout--list .product-card__availability {
    padding-right: 10px;
}

[dir="rtl"] .product-card--layout--list .product-card__availability {
    padding-left: 10px;
}

.product-card--layout--list .product-card__features-list {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 0;
}

.product-card--layout--list .product-card__features-list li {
    padding: 3px 0;
}

.product-card--layout--list .product-card__features-list li {
    padding-left: 12px;
    padding-right: 0;
}

[dir="rtl"] .product-card--layout--list .product-card__features-list li {
    padding-right: 12px;
    padding-left: 0;
}

.product-card--layout--list .product-card__features-list li::before {
    top: 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product-card--layout--list .product-card__image {
        width: 180px;
    }

    .product-card--layout--list .product-card__image {
        padding-left: 20px;
        padding-right: 20px;
    }

    [dir="rtl"] .product-card--layout--list .product-card__image {
        padding-right: 20px;
        padding-left: 20px;
    }

    .product-card--layout--list .product-card__info {
        padding-left: 4px;
        padding-right: 20px;
    }

    [dir="rtl"] .product-card--layout--list .product-card__info {
        padding-right: 4px;
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .product-card--layout--list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .product-card--layout--list .product-card__image {
        width: 250px;
        max-width: 100%;
        padding: 20px;
        margin: 0 auto;
    }

    .product-card--layout--list .product-card__info {
        border-top: 1px solid #ebebeb;
        padding: 20px;
    }

    .product-card--layout--list .product-card__info {
        padding-left: 20px;
        padding-right: 20px;
    }

    [dir="rtl"] .product-card--layout--list .product-card__info {
        padding-right: 20px;
        padding-left: 20px;
    }

    .product-card--layout--list .product-card__actions {
        width: auto;
        border-top: 1px solid #ebebeb;
        padding: 20px;
    }

    .product-card--layout--list .product-card__actions {
        border-left: none;
    }

    [dir="rtl"] .product-card--layout--list .product-card__actions {
        border-right: none;
    }

    .product-card--layout--list .product-card__buttons {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .product-card--layout--list .product-card__buttons .btn {
        font-size: 1rem;
        height: calc(2.25rem + 2px);
        line-height: 1.5;
        padding: 0.375rem 1.25rem;
        font-weight: 500;
    }

    .product-card--layout--list .product-card__buttons .btn.btn-svg-icon {
        width: calc(2.25rem + 2px);
    }

    .product-card--layout--list .product-card__addtocart--list {
        width: auto;
    }

    .product-card--layout--list .product-card__addtocart--list {
        margin-right: auto;
    }

    [dir="rtl"] .product-card--layout--list .product-card__addtocart--list {
        margin-left: auto;
    }
}


/*
// .product-image
*/

.product-image__body {
    display: block;
    position: relative;
    padding-bottom: 100%;
    width: 100%;
}

.product-image__img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.product-image__img:hover {
    transform: scale(1.1);
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

    .product-image__img,
    .owl-carousel .owl-item .product-image__img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
}

.owl-carousel .owl-item .product-image--location--gallery .product-image__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}


/*
// .rating
*/

.rating__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rating__star+.rating__star {
    margin-left: 3px;
}

[dir="rtl"] .rating__star+.rating__star {
    margin-right: 3px;
}

.rating__star:first-child+.rating__star--only-edge {
    margin-left: 0;
}

[dir="rtl"] .rating__star:first-child+.rating__star--only-edge {
    margin-right: 0;
}

.rating__fill {
    color: #ccc;
    fill: currentColor;
}

.rating__stroke {
    color: rgba(0, 0, 0, 0.08);
    fill: currentColor;
}

.rating__star--active .rating__fill {
    color: #ea500d;
}

.rating__star--active .rating__stroke {
    color: rgba(0, 0, 0, 0.08);
}

.rating__star--only-edge {
    position: relative;
    display: none;
}

@supports (-ms-ime-align: auto) {
    svg.rating__star {
        display: none;
    }

    .rating__star--only-edge {
        display: block;
    }

    .rating__fill .fake-svg-icon,
    .rating__stroke .fake-svg-icon {
        display: block;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 13px;
        height: 12px;
        font-size: 12px;
    }

    .rating__fill .fake-svg-icon::before {
        content: "\e902";
    }

    .rating__stroke {
        position: absolute;
        top: 0;
    }

    .rating__stroke {
        left: 0;
    }

    [dir="rtl"] .rating__stroke {
        right: 0;
    }

    .rating__stroke .fake-svg-icon::before {
        content: "\e903";
    }
}


/*
// .select2
*/

.form-control+.select2-container {
    width: 100%;
}

.form-control+.select2-container .select2-selection__arrow {
    display: none;
}

.form-control+.select2-container .select2-selection--single {
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    background-clip: border-box;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 5 10'%3E%3Cpath fill='%234d4d4d' d='M4.503,4 L0.497,4 C0.094,4 -0.142,3.492 0.089,3.122 L2.095,0.233 C2.293,-0.084 2.712,-0.084 2.911,0.233 L4.911,3.122 C5.142,3.492 4.906,4 4.503,4 ZM0.497,6 L4.503,6 C4.906,6 5.142,6.504 4.911,6.871 L2.905,9.737 C2.707,10.052 2.288,10.052 2.089,9.737 L0.089,6.871 C-0.142,6.504 0.094,6 0.497,6 Z'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 5px 10px;
    -webkit-transition: border-color 0.15s ease-in-out, background 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, background 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, background 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, background 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form-control+.select2-container .select2-selection--single:focus {
    outline: none;
}

.form-control+.select2-container .select2-selection__rendered {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-control+.select2-container .select2-selection--single {
    background-color: #fff;
    border-color: #ced4da;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control+.select2-container .select2-selection__rendered {
    color: #495057;
}

.form-control+.select2-container--disabled .select2-selection--single {
    background-color: #e9ecef;
}

.form-control+.select2-container--open .select2-selection--single {
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control+.select2-container .select2-selection--single {
    height: 38px;
}

.form-control+.select2-container .select2-selection--single {
    background-position: right 12px center;
}

[dir="rtl"] .form-control+.select2-container .select2-selection--single {
    background-position: left 12px center;
}

.form-control+.select2-container .select2-selection__rendered {
    line-height: 21px;
    padding: calc(15px / 2) 12px;
    font-size: 16px;
}

.form-control+.select2-container .select2-selection__rendered {
    padding-right: 31px;
}

[dir="rtl"] .form-control+.select2-container .select2-selection__rendered {
    padding-left: 31px;
}

.form-control-lg+.select2-container .select2-selection--single {
    height: 46px;
}

.form-control-lg+.select2-container .select2-selection--single {
    background-position: right 16px center;
}

[dir="rtl"] .form-control-lg+.select2-container .select2-selection--single {
    background-position: left 16px center;
}

.form-control-lg+.select2-container .select2-selection__rendered {
    line-height: 25px;
    padding: calc(19px / 2) 16px;
    font-size: 20px;
}

.form-control-lg+.select2-container .select2-selection__rendered {
    padding-right: 39px;
}

[dir="rtl"] .form-control-lg+.select2-container .select2-selection__rendered {
    padding-left: 39px;
}

.form-control-sm+.select2-container .select2-selection--single {
    height: 32px;
}

.form-control-sm+.select2-container .select2-selection--single {
    background-position: right 8px center;
}

[dir="rtl"] .form-control-sm+.select2-container .select2-selection--single {
    background-position: left 8px center;
}

.form-control-sm+.select2-container .select2-selection__rendered {
    line-height: 17px;
    padding: calc(13px / 2) 8px;
    font-size: 14px;
}

.form-control-sm+.select2-container .select2-selection__rendered {
    padding-right: 23px;
}

[dir="rtl"] .form-control-sm+.select2-container .select2-selection__rendered {
    padding-left: 23px;
}

.select2-dropdown {
    background: #fff;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2), 0 1px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2), 0 1px 5px rgba(0, 0, 0, 0.1);
}

.select2-search--dropdown {
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: none;
    padding: 6px 10px;
    font-size: 15px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background: #f2f2f2;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #d9ecff;
    color: #36414d;
}

.select2-results__option {
    padding: 4px 10px;
    font-size: 15px;
}

.select2-results__options:before,
.select2-results__options:after {
    display: list-item;
    content: "";
    height: 6px;
}


/*
// .share-links
*/

.share-links__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 11px;
    line-height: 18px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

.share-links__item+.share-links__item {
    margin-left: 4px;
}

[dir="rtl"] .share-links__item+.share-links__item {
    margin-right: 4px;
}

.share-links__item a {
    border-radius: 1.5px;
    display: block;
    padding: 2px 6px 1px 6px;
}

.share-links__item a,
.share-links__item a:hover {
    color: inherit;
    text-decoration: none;
}

.share-links__item--type--like a {
    background: #4267b2;
}

.share-links__item--type--like a:hover {
    background: #3b5c9f;
}

.share-links__item--type--tweet a {
    background: #1b95e0;
}

.share-links__item--type--tweet a:hover {
    background: #1886c9;
}

.share-links__item--type--pin a {
    background: #e63939;
}

.share-links__item--type--pin a:hover {
    background: #e32222;
}

.share-links__item--type--counter a {
    color: #737373;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.share-links__item--type--counter a:hover {
    color: #666666;
}


/*
// .social-links
*/

.social-links__list {
    list-style: none;
    padding: 0;
    margin: 0 0 -7px -7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-links__item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 7px;
    margin-bottom: 7px;
}

.social-links__link {
    font-size: 16px;
    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: 34px;
    height: 34px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background: #ea500d;
    color: #fff;
}

.social-links__link:hover {
    color: #fff;
    background-color: #ea500dd4;
}

.social-links__link:hover {
    opacity: 0.8;
}

.social-links--shape--circle .social-links__link {
    border-radius: 17px;
}

.social-links--shape--rounded .social-links__link {
    border-radius: 2px;
}


/*
// .tags
*/

.tags__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    margin: -2px;
}

.tags__list a {
    display: block;
    background: transparent;
    border: 1px solid #e5e5e5;
    color: #333333;
    border-radius: 1.5px;
    padding: 3px 8px 2px;
    margin: 2px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.tags__list a:focus,
.tags__list a:hover {
    background: #ea500d;
    border: 1px solid #ea500d;
    color: #ffffff;
}

.tags--lg .tags__list {
    margin: -3px;
}

.tags--lg .tags__list a {
    padding: 6px 10px 5px;
    margin: 3px;
}


/*
// .tooltip
*/

.tooltip {
    pointer-events: none;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    font-family: inherit;
}

.tooltip.show {
    opacity: 1;
}

.tooltip-inner {
    background: #3d464d;
    color: #fff;
    border-radius: 1.5px;
    position: relative;
    padding: 0.1875rem 0.625rem 0.125rem;
}

.tooltip .arrow {
    width: 8px;
    height: 8px;
}

.tooltip .arrow::before {
    width: 8px;
    height: 8px;
    border-radius: 1px;
    border: none;
    background: #3d464d;
    -webkit-transform: rotateZ(45deg) scale(0.7619);
    transform: rotateZ(45deg) scale(0.7619);
}

.bs-tooltip-auto[x-placement^="top"],
.bs-tooltip-top {
    padding: 4px 0;
}

.bs-tooltip-auto[x-placement^="top"] .arrow,
.bs-tooltip-auto[x-placement^="top"] .tooltip-inner,
.bs-tooltip-top .arrow,
.bs-tooltip-top .tooltip-inner {
    bottom: 3px;
}

.bs-tooltip-auto[x-placement^="bottom"],
.bs-tooltip-bottom {
    padding: 4px 0;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .tooltip-inner,
.bs-tooltip-bottom .arrow,
.bs-tooltip-bottom .tooltip-inner {
    top: 3px;
}

.bs-tooltip-auto[x-placement^="right"],
.bs-tooltip-right {
    padding: 0 4px;
}

.bs-tooltip-auto[x-placement^="right"] .arrow,
.bs-tooltip-auto[x-placement^="right"] .tooltip-inner,
.bs-tooltip-right .arrow,
.bs-tooltip-right .tooltip-inner {
    left: 3px;
}

.bs-tooltip-auto[x-placement^="left"],
.bs-tooltip-left {
    padding: 0 4px;
}

.bs-tooltip-auto[x-placement^="left"] .arrow,
.bs-tooltip-auto[x-placement^="left"] .tooltip-inner,
.bs-tooltip-left .arrow,
.bs-tooltip-left .tooltip-inner {
    right: 3px;
}


/*
// .typography
*/

.typography {
    line-height: 1.625;
}

.typography a:hover {
    text-decoration: underline;
}

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    margin-top: 1.75em;
    margin-bottom: 0.75em;
}

.typography p {
    margin-bottom: 1.5em;
}

.typography ol,
.typography ul {
    margin: 1.7em 0;
}

.typography li {
    margin-bottom: 0.7em;
}

.typography>*:first-child {
    margin-top: 0;
}

.typography>*:last-child {
    margin-bottom: 0;
}

.typography a>img {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.typography a:hover>img {
    opacity: 0.8;
}

.typography img {
    max-width: 100%;
}

.typography figure {
    margin: 2.5em 0;
}

.typography figcaption {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.typography hr {
    position: relative;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: #ccc;
    margin: 2.5em auto;
}

.typography hr::after,
.typography hr::before {
    position: absolute;
    content: "";
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background: inherit;
}

.typography hr::after {
    left: -30px;
}

[dir="rtl"] .typography hr::after {
    right: -30px;
}

.typography hr::before {
    right: -30px;
}

[dir="rtl"] .typography hr::before {
    left: -30px;
}

.typography blockquote {
    margin: 3em 2.5em 2.5em;
    text-align: center;
    font-size: 18px;
    font-style: italic;
}

.typography blockquote cite {
    margin-top: -0.5em;
    color: #999;
    display: block;
    font-size: 15px;
    font-style: normal;
}

.typography blockquote p {
    margin-bottom: 1.25em;
}

.typography blockquote>*:first-child {
    margin-top: 0;
}

.typography blockquote>*:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .typography h1,
    .typography h2,
    .typography h3,
    .typography h4,
    .typography h5,
    .typography h6 {
        margin-top: 1.25em;
        margin-bottom: 0.5em;
    }
}

@media (max-width: 767px) {

    .typography ol,
    .typography ul {
        margin: 1.5em 0;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .typography blockquote {
        margin: 2.5em 1.5em 2em;
    }
}

@media (max-width: 575px) {
    .typography blockquote {
        font-size: 16px;
        margin: 2.25em 0;
    }

    .typography blockquote {
        text-align: left;
    }

    [dir="rtl"] .typography blockquote {
        text-align: right;
    }
}

@media (min-width: 992px) {
    .typography--expanded figure {
        text-align: center;
        position: relative;
        width: calc(100% + 190px);
        margin: 3em 0;
    }

    .typography--expanded figure {
        left: -95px;
    }

    [dir="rtl"] .typography--expanded figure {
        right: -95px;
    }

    .typography--expanded figure img {
        overflow: hidden;
        border-radius: 3px;
    }
}


/* ----------------------------------------
// Filters
// ---------------------------------------- */


/*
// .filter
*/

.filter__title {
    display: block;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    width: calc(100% + 20px);
    position: relative;
    color: inherit;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    border-radius: 2px;
    margin: 0 -10px;
    -webkit-transition: background-color 0.2s, fill 0.2s;
    transition: background-color 0.2s, fill 0.2s;
    background: transparent;
    fill: #ccc;
}

.filter__title {
    text-align: left;
}

[dir="rtl"] .filter__title {
    text-align: right;
}

.filter__title:focus,
.filter__title:hover {
    -webkit-transition-duration: 0.1s, 0.1s;
    transition-duration: 0.1s, 0.1s;
    background: #f2f2f2;
    fill: #b3b3b3;
}

.filter__title:focus {
    outline: none;
}

.filter__arrow {
    position: absolute;
    top: 11px;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.filter__arrow {
    right: 10px;
}

[dir="rtl"] .filter__arrow {
    left: 10px;
}

.filter__body {
    margin: 0 -20px;
    overflow: hidden;
    visibility: hidden;
    height: 0;
    opacity: 0;
    -webkit-transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.filter__container {
    padding: 10px 20px 16px;
}

.filter--opened .filter__body {
    -webkit-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
    visibility: visible;
    height: auto;
    opacity: 1;
}

.filter--opened .filter__arrow {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}


/*
// .filter-categories
*/

.filter-categories__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 18px;
}

.filter-categories__list a {
    color: inherit;
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
}

.filter-categories__list a:hover {
    color: #ea500d;
}

.filter-categories__item {
    padding: 6px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.filter-categories__item>a {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.filter-categories__item>a {
    padding-right: 10px;
}

[dir="rtl"] .filter-categories__item>a {
    padding-left: 10px;
}

.filter-categories__item--parent {
    position: relative;
}

.filter-categories__item--parent {
    padding-left: 14px;
}

[dir="rtl"] .filter-categories__item--parent {
    padding-right: 14px;
}

.filter-categories__item--current {
    font-weight: 700;
}

.filter-categories__item--child {
    position: relative;
    font-size: 15px;
}

.filter-categories__item--child {
    padding-left: 14px;
}

[dir="rtl"] .filter-categories__item--child {
    padding-right: 14px;
}

.filter-categories__arrow {
    fill: #ccc;
    position: absolute;
    top: 10px;
}

.filter-categories__arrow {
    left: 0;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

[dir="rtl"] .filter-categories__arrow {
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.filter-categories__counter {
    font-size: 12px;
    line-height: 12px;
    padding-top: 4px;
    font-weight: 400;
    color: #999;
}


/*
// .filter-categories-alt
*/

.filter-categories-alt__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 18px;
}

.filter-categories-alt__list a {
    color: inherit;
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
}

.filter-categories-alt__list a:hover {
    color: #ea500d;
}

.filter-categories-alt__expander {
    margin: -3px 0;
    width: 24px;
    height: 24px;
    position: relative;
    border: none;
    border-radius: 1.5px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    color: #ccc;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    vertical-align: top;
}

.filter-categories-alt__expander {
    float: right;
    margin-right: -6px;
    margin-left: 8px;
}

[dir="rtl"] .filter-categories-alt__expander {
    float: left;
    margin-left: -6px;
    margin-right: 8px;
}

.filter-categories-alt__expander:before,
.filter-categories-alt__expander:after {
    display: block;
    position: absolute;
    content: "";
    background: currentColor;
    width: 8px;
    height: 2px;
    top: calc(50% - 1px);
}

.filter-categories-alt__expander:before,
.filter-categories-alt__expander:after {
    left: calc(50% - 4px);
}

[dir="rtl"] .filter-categories-alt__expander:before,
[dir="rtl"] .filter-categories-alt__expander:after {
    right: calc(50% - 4px);
}

.filter-categories-alt__expander:after {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.filter-categories-alt__expander:focus,
.filter-categories-alt__expander:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #a6a6a6;
}

.filter-categories-alt__expander:focus {
    outline: none;
}

.filter-categories-alt__children {
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.filter-categories-alt__children:before,
.filter-categories-alt__children:after {
    display: block;
    content: "";
    clear: both;
}

.filter-categories-alt__list--level--1>.filter-categories-alt__item {
    padding: 6px 0;
}

.filter-categories-alt__list--level--1>.filter-categories-alt__item>.filter-categories-alt__children {
    margin: 0 -20px;
}

.filter-categories-alt__list--level--1>.filter-categories-alt__item>.filter-categories-alt__children:before {
    height: 12px;
}

.filter-categories-alt__list--level--2 {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 17px;
    border: 0 solid #ebebeb;
    border-top-width: 1px;
    border-bottom-width: 1px;
    background: #f7f7f7;
}

.filter-categories-alt__list--level--2>.filter-categories-alt__item {
    padding: 4px 0;
}

.filter-categories-alt__list--level--2 .filter-categories-alt__children {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
}

.filter-categories-alt__list--level--2 .filter-categories-alt__children:before {
    height: 5px;
}

.filter-categories-alt__list--level--3,
.filter-categories-alt__list--level--3 .filter-categories-alt__list {
    font-size: 14px;
    line-height: 17px;
}

.filter-categories-alt__list--level--3,
[dir="ltr"] .filter-categories-alt__list--level--3 .filter-categories-alt__list {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 14px;
    margin-left: 6px;
}

[dir="rtl"] .filter-categories-alt__list--level--3,
[dir="rtl"] .filter-categories-alt__list--level--3 .filter-categories-alt__list {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 14px;
    margin-right: 6px;
}

.filter-categories-alt__list--level--3>.filter-categories-alt__item,
.filter-categories-alt__list--level--3 .filter-categories-alt__list>.filter-categories-alt__item {
    padding: 2px 0;
}

.filter-categories-alt__list--level--3 .filter-categories-alt__children:after,
.filter-categories-alt__list--level--3 .filter-categories-alt__list .filter-categories-alt__children:after {
    height: 3px;
}

.filter-categories-alt__item--open>.filter-categories-alt__expander:after {
    -webkit-transform: none;
    transform: none;
}

.filter-categories-alt__item--open>.filter-categories-alt__children {
    height: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s, 0s, 0s;
    transition-delay: 0s, 0s, 0s;
}

.filter-categories-alt__item--current>a {
    font-weight: 700;
    vertical-align: top;
}


/*
// .filter-color
*/

.filter-color__list {
    padding: 2px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -4px;
}

.filter-color__item {
    cursor: pointer;
    margin: 4px;
}

.filter-color__check {
    display: block;
}


/*
// .filter-list
*/

.filter-list__list {
    margin: -8px 0;
}

.filter-list__item {
    padding: 1px 0;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 8px 0;
}

.filter-list__input {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.filter-list__input {
    margin-right: 7px;
}

[dir="rtl"] .filter-list__input {
    margin-left: 7px;
}

.filter-list__title {
    padding: 1px 0;
    font-size: 14px;
    line-height: 16px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.filter-list__counter {
    padding-top: 3px;
    font-size: 12px;
    line-height: 12px;
    color: #999;
}

.filter-list__counter {
    margin-left: 12px;
}

[dir="rtl"] .filter-list__counter {
    margin-right: 12px;
}

.filter-list__item--disabled {
    cursor: default;
}

.filter-list__item--disabled .filter-list__title {
    color: #999;
}


/*
// .filter-price
*/

.filter-price__slider {
    margin-top: 6px;
}

.filter-price__title {
    margin-top: 16px;
    font-size: 14px;
    color: #999;
}


/* ----------------------------------------
// Pages
// ---------------------------------------- */


/*
// .rules
*/

.rules a {
    margin-right: 20px;
    font-size: 15px;
}


/* ----------------------------------------
// Shop
// ---------------------------------------- */


/*
// .address-card
*/

.address-card {
    position: relative;
}

.address-card__badge {
    position: absolute;
    background-color: #ea500d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 4px 8px 2px;
    top: -2px;
}

.address-card__badge {
    right: 0.75rem;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

[dir="rtl"] .address-card__badge {
    left: 0.75rem;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.address-card__badge--muted {
    background-color: #ea500d;
    color: #ffffff;
}

.address-card__body {
    padding: 1.5rem;
    font-size: 15px;
    line-height: 18px;
}

.address-card__name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.125rem;
}

.address-card__row+.address-card__row {
    margin-top: 0.75rem;
}

.address-card__row-title {
    font-size: 12px;
    color: #999;
}

.address-card__footer {
    margin-top: 1.625rem;
}

.address-card--featured .address-card__body {
    padding: 2rem;
}

.address-card--featured .address-card__name {
    font-weight: 700;
}

@media (min-width: 768px) and (max-width: 991px) {
    .address-card--featured .address-card__body {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .address-card--featured .address-card__body {
        padding: 1.375rem;
    }
}


/*
// .addresses-list
*/

.addresses-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.addresses-list__item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.addresses-list__item--new {
    border-radius: 2px;
    border: 2px dashed #ebebeb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
}

.addresses-list__divider:last-child {
    display: none;
}

.addresses-list__plus {
    width: 60px;
    height: 60px;
    border: 2px dashed #ebebeb;
    position: relative;
    border-radius: 30px;
    margin-bottom: 24px;
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.addresses-list__plus::before,
.addresses-list__plus::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 4px;
    background-color: #e5e5e5;
    border-radius: 1.5px;
    top: calc(50% - 2px);
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.addresses-list__plus::before,
.addresses-list__plus::after {
    left: calc(50% - 16px);
}

[dir="rtl"] .addresses-list__plus::before,
[dir="rtl"] .addresses-list__plus::after {
    right: calc(50% - 16px);
}

.addresses-list__plus::after {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.addresses-list__item--new:hover .addresses-list__plus {
    border-color: #e0e0e0;
}

.addresses-list__item--new:hover .addresses-list__plus::before,
.addresses-list__item--new:hover .addresses-list__plus::after {
    background-color: #dbdbdb;
}

@media (min-width: 1200px) {
    /*.addresses-list__item {
        max-width: calc((100% - 32px) / 3);
    }
    .addresses-list__divider:nth-child(2n) {
        width: 16px;
    }
    .addresses-list__divider:nth-child(6n) {
        width: 100%;
        height: 16px;
    }*/
}

@media (min-width: 768px) and (max-width: 1199px) {
    .addresses-list__item {
        max-width: calc((100% - 24px) / 3);
    }

    .addresses-list__divider:nth-child(2n) {
        width: 12px;
    }

    .addresses-list__divider:nth-child(6n) {
        width: 100%;
        height: 12px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .addresses-list__item {
        max-width: calc((100% - 12px) / 2);
    }

    .addresses-list__divider:nth-child(2n) {
        width: 12px;
    }

    .addresses-list__divider:nth-child(4n) {
        width: 100%;
        height: 12px;
    }
}

@media (max-width: 479px) {
    .addresses-list__item {
        max-width: calc((100% - 0px) / 1);
    }

    .addresses-list__divider:nth-child(2n) {
        width: 12px;
    }

    .addresses-list__divider:nth-child(2n) {
        width: 100%;
        height: 12px;
    }
}


/*
// .cart
*/

.cart__actions {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart__coupon-form {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart__coupon-form .btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cart__coupon-form .btn {
    margin-left: 0.5rem;
    background-color: #333333;
    border: #333333;
    color: #fff;
    margin-right: 0.5rem;
}

.cart__coupon-form .btn:hover {
    background-color: #ea500d;
    border: #ea500d;
}

.cart__buttons {
    width: calc(53% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.cart__update-button {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    background-color: #333333;
    border: #333333;
    color: #fff;
    line-height: 1.5;
}

.cart__update-button:hover {
    background-color: #ea500d;
    border: #ea500d;
}

.cart__totals {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.cart__totals a:hover {
    text-decoration: underline;
}

.cart__totals th,
.cart__totals td {
    vertical-align: top;
    padding: 6px 0;
}

.cart__totals th {
    font-weight: 700;
}

.cart__totals tr> :first-child {
    padding-right: 20px;
}

[dir="rtl"] .cart__totals tr> :first-child {
    padding-left: 20px;
}

.cart__totals tr> :last-child {
    text-align: right;
}

[dir="rtl"] .cart__totals tr> :last-child {
    text-align: left;
}

.cart__totals-header tr:last-child>* {
    padding-bottom: 10px;
}

.cart__totals-body tr:first-child>* {
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
}

.cart__totals-body tr:last-child>* {
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}

.cart__totals-footer {
    font-size: 24px;
}

.cart__totals-footer th {
    font-weight: 500;
}

.cart__totals-footer tr:first-child>* {
    padding-top: 20px;
}

.cart__calc-shipping {
    margin-top: 2px;
    font-size: 15px;
}

.cart__checkout-button {
    background-color: #333333;
    border: #333333;
    color: #fff;
}

.cart__checkout-button:hover {
    background-color: #ea500d;
    border: #ea500d;
}

.cart__totals-body th.shipping_header {
    text-align: left;
}

.cart__totals-body .shippping-choose {
    list-style-type: none;
}

.cart__totals-body .shippping-choose label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    margin-bottom: 0;
}

.cart__totals-body .shippping-choose__list {
    margin: 0;
    padding: 0;
}

.cart__totals-body tr> :first-child {
    padding-right: 0;
}

.cart__totals-body .shippping-choose label .shippping-choose__item-radio {
    margin-right: 10px;
}

.shippping-choose__item-container {
    overflow: hidden;
    height: 0;
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
}

.shippping-choose__item-description {
    font-size: 15px;
    line-height: 20px;
    padding: 2px 16px 13px 16px;
    text-align: left;
}

.shippping-choose__item--active,
.shippping-choose__item--active:hover {
    /* background: #f7f7f7; */
    /* border: 1px solid #e5e5e5; */
}

.shippping-choose__item--active .shippping-choose__item-container {
    height: auto;
}

@media (max-width: 767px) {
    .cart__actions {
        margin-top: 1.5rem;
        display: block;
    }

    .cart__coupon-form {
        width: 100%;
    }

    .cart__buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 2.5rem;
        width: 100%;
    }

    .cart__update-button {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 0.75rem;
    }

    .cart__update-button {
        margin-left: 0;
    }

    [dir="rtl"] .cart__update-button {
        margin-right: 0;
    }
}

@media (max-width: 479px) {
    .cart__checkout-button {
        font-size: 1.125rem;
        height: calc(2.75rem + 2px);
        padding: 0.8125rem 2rem;
        line-height: 1;
        font-weight: 500;
    }

    .cart__checkout-button.btn-svg-icon {
        width: calc(2.75rem + 2px);
    }
}

@media (max-width: 379px) {
    .cart__checkout-button {
        font-size: 1rem;
        height: calc(2.25rem + 2px);
        line-height: 1.5;
        padding: 0.375rem 1.25rem;
        font-weight: 500;
    }

    .cart__checkout-button.btn-svg-icon {
        width: calc(2.25rem + 2px);
    }
}


/*
// .cart-table
*/

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.cart-table__product-name {
    color: inherit;
}

.cart-table__options {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    font-size: 14px;
    color: #999;
    line-height: 19px;
}

.cart-table__options li {
    position: relative;
}

.cart-table__options li {
    padding-left: 12px;
}

[dir="rtl"] .cart-table__options li {
    padding-right: 12px;
}

.cart-table__options li::before {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: currentColor;
}

.cart-table__options li::before {
    left: 1px;
}

[dir="rtl"] .cart-table__options li::before {
    right: 1px;
}

@media (min-width: 768px) {
    .cart-table__column {
        padding: 12px 18px;
        border-top: 1px solid #ebebeb;
    }

    .cart-table__column:first-child {
        /* border-left: 1px solid #ebebeb; */
    }

    [dir="rtl"] .cart-table__column:first-child {
        /*border-right: 1px solid #ebebeb;*/
    }

    .cart-table__column:last-child {
       /* border-right: 1px solid #ebebeb; */
    }

    [dir="rtl"] .cart-table__column:last-child {
        border-left: 1px solid #ebebeb;
    }

    .cart-table__head {
        background: #f7f7f7;
        font-size: 15px;
    }

    .cart-table__head .cart-table__column {
        font-weight: 500;
    }

    .cart-table__head .cart-table__column:first-child {
        border-top-left-radius: 2.5px;
    }

    [dir="rtl"] .cart-table__head .cart-table__column:first-child {
        border-top-right-radius: 2.5px;
    }

    .cart-table__head .cart-table__column:last-child {
        border-top-right-radius: 2.5px;
    }

    [dir="rtl"] .cart-table__head .cart-table__column:last-child {
        border-top-left-radius: 2.5px;
    }

    .cart-table__body .cart-table__column {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .cart-table__body .cart-table__row:last-child .cart-table__column {
        border-bottom: 1px solid #ebebeb;
    }

    [dir="ltr"] .cart-table__body .cart-table__row:last-child .cart-table__column:first-child {
        border-bottom-left-radius: 2.5px;
    }

    [dir="rtl"] .cart-table__body .cart-table__row:last-child .cart-table__column:first-child {
        border-bottom-right-radius: 2.5px;
    }

    [dir="ltr"] .cart-table__body .cart-table__row:last-child .cart-table__column:last-child {
        border-bottom-right-radius: 2.5px;
    }

    [dir="rtl"] .cart-table__body .cart-table__row:last-child .cart-table__column:last-child {
        border-bottom-left-radius: 2.5px;
    }

    .cart-table__column--image {
        width: 1px;
        text-align: center;
    }

    .cart-table__column--image {
        padding-right: 4px;
    }

    [dir="rtl"] .cart-table__column--image {
        padding-left: 4px;
    }

    .cart-table__column--image .product-image {
        width: 80px;
    }

    .cart-table__column--price {
        width: 170px;
    }

    .cart-table__column--price {
        text-align: right;
    }

    [dir="rtl"] .cart-table__column--price {
        text-align: left;
    }

    .cart-table__column--quantity {
        text-align: center;
        width: 1px;
    }

    .cart-table__column--quantity {
        /*padding-left: 90px;*/
    }

    [dir="rtl"] .cart-table__column--quantity {
        padding-right: 90px;
    }

    .cart-table__column--total {
        width: 170px;
    }

    .cart-table__column--total {
        text-align: right;
    }

    [dir="rtl"] .cart-table__column--total {
        text-align: left;
    }

    .cart-table__column--remove {
        width: 1px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cart-table__column--quantity {
        /*padding-left: 40px;*/
    }

    [dir="rtl"] .cart-table__column--quantity {
        padding-right: 40px;
    }

    .cart-table__column--price,
    .cart-table__column--total {
        width: 130px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cart-table__column--quantity {
        padding-left: 0;
        padding-right: 0;
    }

    [dir="rtl"] .cart-table__column--quantity {
        padding-right: 0;
        padding-left: 0;
    }

    .cart-table__column--price,
    .cart-table__column--total {
        width: 1px;
    }

    .cart-table__column--remove {
        padding-left: 0;
    }

    [dir="rtl"] .cart-table__column--remove {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .cart-table {
        display: block;
    }

    .cart-table__head {
        display: none;
    }

    .cart-table__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cart-table__row {
        position: relative;
        width: 100%;
        display: block;
        border: 1px solid #ebebeb;
        border-radius: 2px;
    }

    .cart-table__row+.cart-table__row {
        margin-top: 15px;
    }

    .cart-table__column {
        display: block;
        padding: 0;
    }

    .cart-table__column--image {
        padding: 20px 20px 12px;
        text-align: center;
    }

    .cart-table__column--image .product-image {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    }

    .cart-table__column--product {
        text-align: center;
        border-bottom: 1px solid #ebebeb;
        padding: 0 20px 18px;
    }

    .cart-table__column--price,
    .cart-table__column--quantity,
    .cart-table__column--total {
        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;
        padding: 8px 20px;
    }

    .cart-table__column--price::before,
    .cart-table__column--quantity::before,
    .cart-table__column--total::before {
        font-weight: 500;
        width: 55%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        content: attr(data-title) ": ";
    }

    .cart-table__column--price::before,
    .cart-table__column--quantity::before,
    .cart-table__column--total::before {
        text-align: left;
    }

    [dir="rtl"] .cart-table__column--price::before,
    [dir="rtl"] .cart-table__column--quantity::before,
    [dir="rtl"] .cart-table__column--total::before {
        text-align: left;
    }

    .cart-table__column--quantity .input-number {
        width: 110px;
    }

    .cart-table__column--price {
        padding-top: 18px;
    }

    .cart-table__column--total {
        padding-bottom: 18px;
    }

    .cart-table__column--remove {
        position: absolute;
        top: 5px;
    }

    .cart-table__column--remove {
        right: 5px;
    }

    [dir="rtl"] .cart-table__column--remove {
        left: 5px;
    }

    .cart-table__options li::before {
        display: none;
    }
}


/*
// .category-card
*/

.category-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.category-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 2px;
    background: #fff;
    -webkit-box-shadow: 0 1px 16px rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.04);
    padding: 24px 20px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.category-card__image {
    width: 130px;
}

.category-card__image {
    margin-right: 24px;
}

[dir="rtl"] .category-card__image {
    margin-left: 24px;
}

.category-card__image img {
    max-width: 100%;
}

.category-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.category-card__name {
    margin-top: -2px;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
}

.category-card__name a {
    color: #333333;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.category-card__name a:hover {
    color: #ea500d;
}

.category-card__links {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.31;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.category-card__links a {
    color: #333333;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.category-card__links a:hover {
    color: #ea500d;
}

.category-card__all {
    margin-top: 14px;
    font-size: 14px;
}

.category-card__all a {
    font-size: 13px;
    color: #ea500d;
}

.category-card__all a:hover {
    text-decoration: underline;
}

.category-card__products {
    display: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .category-card--layout--classic .category-card__image {
        width: 90px;
    }
}

@media (min-width: 480px) and (max-width: 991px) {
    .category-card--layout--classic .category-card__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 24px 28px;
    }

    .category-card--layout--classic .category-card__image {
        width: auto;
        margin: 0 0 18px;
    }
}

@media (min-width: 400px) and (max-width: 479px) {
    .category-card--layout--classic .category-card__image {
        width: 40%;
    }
}

@media (max-width: 399px) {
    .category-card--layout--classic .category-card__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 24px 28px;
        text-align: center;
    }

    .category-card--layout--classic .category-card__image {
        width: 120px;
        margin: 0 auto 18px;
    }
}

.category-card--layout--compact .category-card__body {
    padding: 16px 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.category-card--layout--compact .category-card__image {
    margin-right: 30px;
}

[dir="rtl"] .category-card--layout--compact .category-card__image {
    margin-left: 30px;
}

.category-card--layout--compact .category-card__name {
    margin-top: 0;
    font-size: 17px;
    line-height: 19px;
}

.category-card--layout--compact .category-card__products {
    display: block;
    font-size: 15px;
    color: #999;
    margin-top: 5px;
}


/*
// .compare-table
*/

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    line-height: 18px;
}

.compare-table tr>* {
    border-top: 1px solid #ebebeb;
}

.compare-table tr>* {
    border-left: 1px solid #ebebeb;
}

[dir="rtl"] .compare-table tr>* {
    border-right: 1px solid #ebebeb;
}

.compare-table tr>*:last-child {
    border-right: 1px solid #ebebeb;
}

[dir="rtl"] .compare-table tr>*:last-child {
    border-left: 1px solid #ebebeb;
}

.compare-table>*:first-child>tr:first-child>*:first-child {
    border-top-left-radius: 2.5px;
}

[dir="rtl"] .compare-table>*:first-child>tr:first-child>*:first-child {
    border-top-right-radius: 2.5px;
}

.compare-table>*:first-child>tr:first-child>*:last-child {
    border-top-right-radius: 2.5px;
}

[dir="rtl"] .compare-table>*:first-child>tr:first-child>*:last-child {
    border-top-left-radius: 2.5px;
}

.compare-table>*:last-child>tr:last-child>*:first-child {
    border-bottom-left-radius: 2.5px;
}

[dir="rtl"] .compare-table>*:last-child>tr:last-child>*:first-child {
    border-bottom-right-radius: 2.5px;
}

.compare-table>*:last-child>tr:last-child>*:last-child {
    border-bottom-right-radius: 2.5px;
}

[dir="rtl"] .compare-table>*:last-child>tr:last-child>*:last-child {
    border-bottom-left-radius: 2.5px;
}

.compare-table>*:last-child>tr:last-child>* {
    border-bottom: 1px solid #ebebeb;
}

.compare-table th {
    min-width: 140px;
    background: #f7f7f7;
    font-weight: 500;
}

.compare-table th {
    text-align: right;
}

[dir="rtl"] .compare-table th {
    text-align: left;
}

.compare-table td {
    min-width: 180px;
    max-width: 180px;
    text-align: center;
    vertical-align: top;
}

.compare-table td,
.compare-table th {
    padding: 14px 16px;
}

.compare-table__product-link {
    display: block;
    padding: 8px 8px 0;
    color: inherit;
}

.compare-table__product-image {
    margin: 0 auto 14px;
    width: 140px;
    max-width: 100%;
}

.compare-table__product-name {
    line-height: 20px;
}

.compare-table__product-rating {
    padding-top: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.compare-table__product-rating-legend {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1;
    color: #b3b3b3;
}

.compare-table__product-badge {
    font-size: 12px;
}


/*
// .dashboard
*/

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

.dashboard__orders {
    margin-top: 24px;
    width: 100%;
}

@media (min-width: 768px) {

    .dashboard__profile,
    .dashboard__address {
        width: calc(50% - 12px);
    }
}

@media (max-width: 767px) {

    .dashboard__profile,
    .dashboard__address {
        width: 100%;
    }

    .dashboard__address {
        margin-top: 24px;
    }
}


/*} ?*/

/*
// .spec
*/
.spec {
    font-size: 15px;
    line-height: 18px;
}

.spec__header {
    margin-bottom: 50px;
}

.spec__section+.spec__section {
    margin-top: 40px;
}

.spec__section-title {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 20px;
    margin: 0 0 12px;
}

.spec__row {
    padding: 8px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #ebebeb;
}

.spec__row:first-of-type {
    border-top: 1px solid #ebebeb;
}

.spec__name {
    width: 230px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #999;
}

.spec__name {
    padding-right: 30px;
}

[dir="rtl"] .spec__name {
    padding-left: 30px;
}

.spec__disclaimer {
    margin-top: 40px;
    font-size: 14px;
    line-height: 22px;
    color: #999;
}

@media (min-width: 576px) and (max-width: 767px) {
    .spec__name {
        width: 170px;
    }
}

@media (max-width: 575px) {
    .spec__header {
        margin-bottom: 30px;
    }

    .spec__row {
        display: block;
        padding: 12px 0;
    }

    .spec__name {
        width: auto;
        margin-bottom: 6px;
    }
}

/*
// .view-options
*/
.view-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
}

.view-options__legend {
    margin-left: 20px;
}

[dir="rtl"] .view-options__legend {
    margin-right: 20px;
}

.view-options__divider {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.view-options__filters-button {
    margin-right: 12px;
}

[dir="rtl"] .view-options__filters-button {
    margin-left: 12px;
}

.view-options__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
}

.view-options__control {
    margin-left: 24px;
}

[dir="rtl"] .view-options__control {
    margin-right: 24px;
}

.view-options__control label {
    margin-bottom: 0;
    margin-right: 10px;
}

.view-options__control label {
    margin-right: 8px;
}

[dir="rtl"] .view-options__control label {
    margin-left: 8px;
}

@media (max-width: 991px) {
    .view-options {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .view-options__legend {
        margin-left: auto;
    }

    [dir="rtl"] .view-options__legend {
        margin-right: auto;
    }

    .view-options__divider {
        width: 100%;
        height: 12px;
    }

    .view-options__control {
        margin-left: auto;
    }

    [dir="rtl"] .view-options__control {
        margin-right: auto;
    }

    .view-options__control+.view-options__control {
        margin-left: 24px;
    }

    [dir="rtl"] .view-options__control+.view-options__control {
        margin-right: 24px;
    }
}

@media (max-width: 474px) {
    .view-options__legend {
        width: 100%;
        padding-top: 12px;
    }

    .view-options__divider {
        height: 8px;
    }

    .view-options__control {
        display: block;
    }

    .view-options__control {
        margin-left: 0;
        margin-right: 24px;
    }

    [dir="rtl"] .view-options__control {
        margin-right: 0;
        margin-left: 24px;
    }

    .view-options__control+.view-options__control {
        margin-left: 0;
    }

    [dir="rtl"] .view-options__control+.view-options__control {
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .view-options--offcanvas--mobile .view-options__filters-button {
        display: none;
    }
}

/* ----------------------------------------
// Blocks
// ---------------------------------------- */

/*
// .block
*/
.block {
    margin-bottom: 50px;
}

.block--highlighted {
    padding: 50px 0 60px;
    background: #f9f9f9;
}

@media (max-width: 991px) {
    .block {
        margin-bottom: 30px;
    }
}

/*
// .block-banner
*/
.block-banner__body {
    position: relative;
    display: block;
    height: 170px;
    text-align: center;
    color: inherit;
}

.block-banner__body:hover {
    color: inherit;
}

.block-banner__image {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.block-banner__image--mobile {
    display: none;
}

.block-banner__title {
    padding-top: 28px;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.block-banner__text {
    padding-top: 8px;
}

.block-banner__button {
    padding-top: 20px;
}

.block-banner__mobile-br {
    display: none;
}

@media (max-width: 767px) {
    .block-banner__body {
        height: 390px;
    }

    .block-banner__image--desktop {
        display: none;
    }

    .block-banner__image--mobile {
        display: block;
    }

    .block-banner__title,
    .block-banner__text,
    .block-banner__button {
        width: 220px;
        margin-left: auto;
        margin-right: auto;
    }

    .block-banner__title {
        padding-top: 48px;
        line-height: 1.1;
    }

    .block-banner__text {
        padding-top: 12px;
    }

    .block-banner__button {
        padding-top: 28px;
    }

    .block-banner__mobile-br {
        display: block;
    }
}

/*
// .block-brands
*/
.block-brands__slider {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
}

.block-brands__item {
    padding: 32px 24px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .block-brands__item {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .block-brands__item {
        padding: 20px 24px;
    }
}

.block-brands__item img {
    object-fit: contain;
}

/*
// .block-categories
*/
.block-categories__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -6px;
}

.block-categories__item {
    margin: 6px;
    width: calc(33.3333% - 12px);
}

@media (min-width: 480px) and (max-width: 767px) {
    .block-categories--layout--classic .block-categories__item {
        width: calc(50% - 12px);
    }
}

@media (max-width: 479px) {
    .block-categories--layout--classic .block-categories__item {
        width: calc(100% - 12px);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .block-categories--layout--compact .block-categories__item {
        width: calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .block-categories--layout--compact .block-categories__item {
        width: calc(100% - 12px);
    }
}

/*
// .block-features
*/
.block-empty__body {
    text-align: center;
    padding: 18px 0 60px;
}

.block-empty__message {
    font-size: 17px;
}

.block-empty__actions .btn {
    margin-top: 24px;
    background-color: #333333;
    border: #333333;
    color: #fff;
}

.block-empty__actions .btn:hover {
    background-color: #ea500d;
    border: #ea500d;
}

/*
// .block-features
*/
.block-features__list {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-features__item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 16px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-features__divider {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.block-features__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    fill: #ea500d;
}

.block-features__icon {
    margin-right: 20px;
}

[dir="rtl"] .block-features__icon {
    margin-left: 20px;
}

.block-features__icon svg {
    display: block;
}

.block-features__content {
    padding-top: 2px;
}

.block-features__title {
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
}

.block-features__subtitle {
    font-size: 14px;
}

.block-features--layout--boxed .block-features__list {
    border: none;
}

.block-features--layout--boxed .block-features__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #f7f7f7;
    border-radius: 3px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 28px 28px;
}

.block-features--layout--boxed .block-features__divider {
    width: 14px;
}

.block-features--layout--boxed .block-features__icon {
    margin-bottom: 12px;
}

.block-features--layout--boxed .block-features__icon {
    margin-right: 0;
}

[dir="rtl"] .block-features--layout--boxed .block-features__icon {
    margin-left: 0;
}

@media (min-width: 480px) and (max-width: 991px) {
    .block-features--layout--boxed .block-features__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .block-features--layout--boxed .block-features__item {
        width: 50%;
    }

    .block-features--layout--boxed .block-features__divider:nth-child(4n) {
        width: 100%;
        height: 14px;
    }
}

@media (max-width: 479px) {
    .block-features--layout--boxed .block-features__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .block-features--layout--boxed .block-features__item {
        width: 100%;
    }

    .block-features--layout--boxed .block-features__divider {
        width: 100%;
        height: 14px;
    }
}

.block-features--layout--classic {
    margin-top: -20px;
}

.block-features--layout--classic .block-features__divider {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 2px;
    background: #f0f0f0;
}

@media (max-width: 1199px) and (min-width: 992px),
(max-width: 767px) and (min-width: 576px) {
    .block-features--layout--classic .block-features__item {
        padding: 12px;
    }

    .block-features--layout--classic .block-features__icon {
        margin-right: 16px;
    }

    [dir="rtl"] .block-features--layout--classic .block-features__icon {
        margin-left: 16px;
    }

    .block-features--layout--classic .block-features__content {
        padding-top: 0;
    }
}

@media (max-width: 991px) and (min-width: 420px) {
    .block-features--layout--classic .block-features__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .block-features--layout--classic .block-features__item {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        width: calc(50% - 1px);
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .block-features--layout--classic .block-features__divider:nth-child(4n) {
        width: 100%;
        height: 2px;
    }
}

@media (max-width: 575px) and (min-width: 420px) {
    .block-features--layout--classic .block-features__item {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .block-features--layout--classic .block-features__icon {
        margin-bottom: 20px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .block-features--layout--classic .block-features__icon {
        margin-right: 0;
    }

    [dir="rtl"] .block-features--layout--classic .block-features__icon {
        margin-left: 0;
    }
}

@media (max-width: 419px) {
    .block-features--layout--classic .block-features__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .block-features--layout--classic .block-features__item {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        width: 100%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .block-features--layout--classic .block-features__icon {
        margin-right: 24px;
    }

    [dir="rtl"] .block-features--layout--classic .block-features__icon {
        margin-left: 24px;
    }

    .block-features--layout--classic .block-features__divider {
        width: 100%;
        height: 2px;
    }
}

/*
// .block-finder
*/
.block-finder {
    margin-bottom: 50px;
}

.block-finder--layout--full {
    margin-top: 20px;
}

.block-finder__body {
    padding: 0 52px 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 400px;
    background: #f5f5f5 no-repeat bottom center;
    color: #ffffff;
}

.block-finder__header {
    padding: 46px 0 36px;
}

.block-finder__title {
    font-size: 32px;
    line-height: 44px;
    font-weight: 700;
}

.block-finder__subtitle {
    margin-top: 2px;
    font-size: 17px;
    line-height: 1.25;
    color: #6c757d;
}

.block-finder__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-item-align: center;
    align-self: center;
}

.block-finder__button {
    margin-top: 40px;
    height: 43px;
    padding-left: 44px;
    padding-right: 44px;
    font-size: 17px;
}

.block-finder__select,
.block-finder__select+.select2-container--default {
    width: 100%;
}

.block-finder__select,
.block-finder__select+.select2-container--default .select2-selection--single {
    height: 42px;
    border: none;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(0, 0, 0, 0.03);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 5 10'%3E%3Cpath fill='rgba(0, 0, 0, 0.5)' d='M4.503,4 L0.497,4 C0.094,4 -0.142,3.492 0.089,3.122 L2.095,0.233 C2.293,-0.084 2.712,-0.084 2.911,0.233 L4.911,3.122 C5.142,3.492 4.906,4 4.503,4 ZM0.497,6 L4.503,6 C4.906,6 5.142,6.504 4.911,6.871 L2.905,9.737 C2.707,10.052 2.288,10.052 2.089,9.737 L0.089,6.871 C-0.142,6.504 0.094,6 0.497,6 Z'/%3E%3C/svg%3E%0A") no-repeat;
    background-size: 5px 10px;
}

.block-finder__select,
[dir="ltr"] .block-finder__select+.select2-container--default .select2-selection--single {
    background-position: right 12px center;
}

[dir="rtl"] .block-finder__select,
[dir="rtl"] .block-finder__select+.select2-container--default .select2-selection--single {
    background-position: left 12px center;
}

.block-finder__select:focus,
.block-finder__select+.select2-container--default .select2-selection--single:focus {
    outline: none;
}

.block-finder__select,
.block-finder__select+.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
}

.block-finder__select,
[dir="ltr"] .block-finder__select+.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 13px;
    padding-right: 31px;
    text-align: left;
}

[dir="rtl"] .block-finder__select,
[dir="rtl"] .block-finder__select+.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 13px;
    padding-left: 31px;
    text-align: right;
}

.block-finder__select:disabled,
.block-finder__select+.select2-container--disabled .select2-selection--single {
    background-color: #fafafa;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    opacity: 0.6;
    cursor: default;
}

.block-finder__select:disabled,
.block-finder__select+.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: #6c757d;
}

.block-finder__select {
    -webkit-transition: background-color 0.15s, color 0.15s, opacity 0.15s, -webkit-box-shadow 0.15s;
    transition: background-color 0.15s, color 0.15s, opacity 0.15s, -webkit-box-shadow 0.15s;
    transition: background-color 0.15s, box-shadow 0.15s, color 0.15s, opacity 0.15s;
    transition: background-color 0.15s, box-shadow 0.15s, color 0.15s, opacity 0.15s, -webkit-box-shadow 0.15s;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.block-finder__select::-ms-expand {
    display: none;
}

.block-finder__select+.select2-container--default .select2-selection--single {
    -webkit-transition: background-color 0.15s, opacity 0.15s, -webkit-box-shadow 0.15s;
    transition: background-color 0.15s, opacity 0.15s, -webkit-box-shadow 0.15s;
    transition: background-color 0.15s, box-shadow 0.15s, opacity 0.15s;
    transition: background-color 0.15s, box-shadow 0.15s, opacity 0.15s, -webkit-box-shadow 0.15s;
}

.block-finder__select+.select2-container--default .select2-selection--single .select2-selection__rendered {
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
}

.block-finder__select+.select2-container--default .select2-selection--single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-finder__select+.select2-container--default .select2-selection__arrow {
    display: none;
}

.block-finder--layout--with-departments .block-finder__body {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .block-finder--layout--with-departments .block-finder__body {
        margin-top: 15px;
        height: 395px;
    }

    .block-finder--layout--with-departments .block-finder__body {
        margin-left: -15px;
    }

    [dir="rtl"] .block-finder--layout--with-departments .block-finder__body {
        margin-right: -15px;
    }

    .block-finder--layout--with-departments .block-finder__select,
    .block-finder--layout--with-departments .block-finder__select+.select2-container--default .select2-selection--single {
        height: 40px;
    }
}

@media (min-width: 1200px) {
    .block-finder--layout--with-departments .block-finder__form {
        margin: -6px;
        width: 728px;
    }

    .block-finder--layout--with-departments .block-finder__form-item {
        width: calc(100% / 4 - 12px);
        margin: 6px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .block-finder--layout--with-departments .block-finder__form {
        margin: -6px;
        width: 424px;
    }

    .block-finder--layout--with-departments .block-finder__form-item {
        width: calc(100% / 2 - 12px);
        margin: 6px;
    }

    .block-finder--layout--with-departments .block-finder__header {
        padding-bottom: 32px;
    }

    .block-finder--layout--with-departments .block-finder__button {
        margin-top: 36px;
    }
}

@media (min-width: 992px) {
    .block-finder--layout--full .block-finder__form {
        margin: -7px;
        width: 816px;
    }

    .block-finder--layout--full .block-finder__form-item {
        width: calc(100% / 4 - 14px);
        margin: 7px;
    }
}

@media (max-width: 991px) {
    .block-finder__header {
        padding-bottom: 28px;
    }

    .block-finder__button {
        margin-top: 32px;
    }

    .block-finder__form {
        margin: -7px;
        width: 428px;
    }

    .block-finder__form-item {
        width: calc(100% / 2 - 14px);
        margin: 7px;
    }
}

@media (max-width: 767px) {
    .block-finder__header {
        padding-top: 40px;
    }

    .block-finder__title {
        font-size: 28px;
        line-height: 30px;
    }

    .block-finder__subtitle {
        margin-top: 8px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .block-finder__body {
        height: auto;
    }

    .block-finder__form {
        margin: -7px;
        width: 234px;
    }

    .block-finder__form-item {
        width: calc(100% / 1 - 14px);
        margin: 7px;
    }

    .block-finder__select,
    .block-finder__select+.select2-container--default .select2-selection--single {
        height: 40px;
    }
}

/*
// .block-map
*/
.block-map {
    margin-bottom: 10px;
    margin-top: 44px;
}

.block-map__body {
    height: 540px;
    position: relative;
}

.block-map__body::before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.block-map__body::after {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.block-map__body iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
    .block-map__body {
        height: 500px;
    }
}

@media (max-width:1023.98px) {
    .block-map {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .block-map__body {
        height: 440px;
    }
}

@media (max-width: 767px) {
    .block-map__body {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .block-map__body {
        height: 300px;
    }
}

/*
// .block-posts
*/
.block-posts {
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .block-posts--layout--list-sm .post-card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .block-posts--layout--list-sm .post-card .post-card__image {
        width: 240px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .block-posts--layout--list-sm .post-card .post-card__image {
        margin-right: 22px;
    }

    [dir="rtl"] .block-posts--layout--list-sm .post-card .post-card__image {
        margin-left: 22px;
    }

    .block-posts--layout--list-sm .post-card .post-card__name {
        margin-top: 10px;
        font-size: 16px;
        line-height: 20px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        height: 40px;
        overflow: hidden;
    }

    .block-posts--layout--list-sm .post-card .post-card__date {
        margin-top: 6px;
    }

    .block-posts--layout--list-sm .post-card .post-card__category {
        display: none;
    }

    .block-posts--layout--list-sm .post-card .post-card__content {
        margin-top: 10px;
        font-size: 15px;
        line-height: 22px;
        height: 66px;
        overflow: hidden;
    }

    .block-posts--layout--list-sm .post-card .post-card__read-more {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .block-posts--layout--list-sm .post-card .post-card__image {
        width: 210px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .block-posts--layout--list-sm .post-card .post-card__image {
        margin-right: 18px;
    }

    [dir="rtl"] .block-posts--layout--list-sm .post-card .post-card__image {
        margin-left: 18px;
    }

    .block-posts--layout--list-sm .post-card .post-card__name {
        margin-top: 5px;
        font-size: 15px;
        line-height: 19px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .block-posts--layout--list-sm .post-card .post-card__date {
        margin-top: 4px;
    }

    .block-posts--layout--list-sm .post-card .post-card__category {
        display: none;
    }

    .block-posts--layout--list-sm .post-card .post-card__content {
        margin-top: 10px;
        font-size: 15px;
        line-height: 20px;
        height: 60px;
        overflow: hidden;
    }

    .block-posts--layout--list-sm .post-card .post-card__read-more {
        display: none;
    }
}

@media (max-width: 575px) {
    .block-posts--layout--list-sm .post-card .post-card__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .block-posts--layout--list-sm .post-card .post-card__image {
        margin-bottom: 14px;
    }

    .block-posts--layout--list-sm .post-card .post-card__category {
        display: none;
    }

    .block-posts--layout--list-sm .post-card .post-card__date {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .block-posts--layout--list-sm .post-card .post-card__name {
        width: 100%;
        font-size: 18px;
        margin-top: 4px;
        line-height: 22px;
    }

    .block-posts--layout--list-sm .post-card .post-card__content {
        width: 100%;
        margin-top: 12px;
    }

    .block-posts--layout--list-sm .post-card .post-card__read-more {
        width: 100%;
        display: none;
    }
}

.block-posts--layout--grid-nl .post-card .post-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.block-posts--layout--grid-nl .post-card .post-card__image {
    margin-bottom: 14px;
}

.block-posts--layout--grid-nl .post-card .post-card__category {
    display: none;
}

.block-posts--layout--grid-nl .post-card .post-card__date {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.block-posts--layout--grid-nl .post-card .post-card__name {
    width: 100%;
    font-size: 18px;
    margin-top: 4px;
    line-height: 22px;
}

.block-posts--layout--grid-nl .post-card .post-card__content {
    width: 100%;
    margin-top: 12px;
}

.block-posts--layout--grid-nl .post-card .post-card__read-more {
    width: 100%;
    display: none;
}

/*
// .block-product-columns
*/
.block-product-columns__item {
    position: relative;
}

.block-product-columns__item+.block-product-columns__item {
    margin-top: -1px;
}

.block-product-columns__item:hover {
    z-index: 2;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .block-product-columns .product-card .product-card__image {
        width: 110px;
    }

    .block-product-columns .product-card .product-card__rating {
        display: none;
    }

    .block-product-columns .product-card .product-card__actions {
        left: 110px;
    }

    [dir="rtl"] .block-product-columns .product-card .product-card__actions {
        right: 110px;
    }
}

/*
// .block-products
*/
.block-products__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-products__featured {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 36%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.block-products__featured-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.block-products__featured-item .product-card {
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.block-products__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -6px;
}

.block-products__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(33.3333% - 12px);
    margin: 6px;
}

.block-products__list-item .product-card {
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.block-products__list-item .product-card .product-card__image {
    padding: 18px 18px 20px;
}

.block-products__list-item .product-card .product-card__info {
    padding: 0 24px 0;
}

.block-products__list-item .product-card .product-card__actions {
    padding: 0 24px 24px;
}

.block-products__list-item .product-card .product-card__description {
    display: none;
}

.block-products__list-item .product-card .product-card__availability {
    display: none;
}

.block-products__list-item .product-card .product-card__features-list {
    display: none;
}

@media (min-width: 480px) {
    .block-products__list-item .product-card .product-card__image {
        padding: 15px;
    }

    .block-products__list-item .product-card .product-card__badges-list {
        top: 16px;
    }

    [dir="ltr"] .block-products__list-item .product-card .product-card__badges-list {
        left: 16px;
    }

    [dir="rtl"] .block-products__list-item .product-card .product-card__badges-list {
        right: 16px;
    }

    .block-products__list-item .product-card .product-card__info {
        padding: 0 15px 0;
    }

    .block-products__list-item .product-card .product-card__actions {
        padding: 0 15px 15px;
    }

    .block-products__list-item .product-card .product-card__buttons .btn {
        font-size: 0.8125rem;
        height: calc(1.5rem + 2px);
        line-height: 1.25;
        padding: 0.25rem 0.5625rem;
        font-weight: 500;
    }

    .block-products__list-item .product-card .product-card__buttons .btn.btn-svg-icon {
        width: calc(1.5rem + 2px);
    }
}

@media (min-width: 480px) and (hover: hover) {
    .block-products__list-item .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products__list-item .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 480px) and (-ms-high-contrast: active),
(min-width: 480px) and (-ms-high-contrast: none) {
    .block-products__list-item .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products__list-item .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 479px) {
    .block-products__list-item .product-card .product-card__buttons .btn {
        font-size: 0.875rem;
        height: calc(1.875rem + 2px);
        line-height: 1.25;
        padding: 0.375rem 1rem;
        font-weight: 500;
    }

    .block-products__list-item .product-card .product-card__buttons .btn.btn-svg-icon {
        width: calc(1.875rem + 2px);
    }
}

@media (max-width: 479px) and (hover: hover) {
    .block-products__list-item .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products__list-item .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -56px;
    }

    .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 479px) and (-ms-high-contrast: active),
(max-width: 479px) and (-ms-high-contrast: none) {
    .block-products__list-item .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products__list-item .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -56px;
    }

    .block-products__list-item .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 992px) {
    .block-products__featured-item .product-card .product-card__image {
        padding: 18px 18px 20px;
    }

    .block-products__featured-item .product-card .product-card__info {
        padding: 0 24px 0;
    }

    .block-products__featured-item .product-card .product-card__actions {
        padding: 0 24px 24px;
    }

    .block-products__featured-item .product-card .product-card__description {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__availability {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__features-list {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__image {
        padding: 25px;
    }

    .block-products__featured-item .product-card .product-card__info {
        padding: 0 30px 0;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .block-products__featured-item .product-card .product-card__name {
        font-size: 17px;
        line-height: 23px;
    }

    .block-products__featured-item .product-card .product-card__actions {
        padding: 0 30px 30px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .block-products__featured-item .product-card .product-card__rating {
        margin-top: 7px;
    }

    .block-products__featured-item .product-card .product-card__prices {
        margin-bottom: auto;
        font-size: 20px;
    }

    .block-products__featured+.block-products__list {
        margin-left: 6px;
    }

    [dir="rtl"] .block-products__featured+.block-products__list {
        margin-right: 6px;
    }

    .block-products__list+.block-products__featured {
        margin-left: 12px;
    }

    [dir="rtl"] .block-products__list+.block-products__featured {
        margin-right: 12px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .block-products__featured-item {
        display: block;
    }

    .block-products__featured-item .product-card {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .block-products__featured-item .product-card .product-card__image {
        width: 120px;
        padding: 16px;
    }

    .block-products__featured-item .product-card .product-card__badges-list {
        top: 10px;
    }

    [dir="ltr"] .block-products__featured-item .product-card .product-card__badges-list {
        left: 10px;
    }

    [dir="rtl"] .block-products__featured-item .product-card .product-card__badges-list {
        right: 10px;
    }

    .block-products__featured-item .product-card .product-card__badge {
        padding: 3px 5px 2px;
    }

    .block-products__featured-item .product-card .product-card__info {
        padding-top: 14px;
        padding-bottom: 42px;
        width: 100%;
    }

    .block-products__featured-item .product-card .product-card__info {
        padding-left: 0;
        padding-right: 30px;
    }

    [dir="rtl"] .block-products__featured-item .product-card .product-card__info {
        padding-right: 0;
        padding-left: 30px;
    }

    .block-products__featured-item .product-card .product-card__name {
        overflow: hidden;
        max-height: 38px;
    }

    .block-products__featured-item .product-card .product-card__rating {
        white-space: nowrap;
    }

    .block-products__featured-item .product-card .product-card__description {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__availability {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__buttons {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__actions {
        position: absolute;
        bottom: 18px;
    }

    [dir="ltr"] .block-products__featured-item .product-card .product-card__actions {
        left: 120px;
    }

    [dir="rtl"] .block-products__featured-item .product-card .product-card__actions {
        right: 120px;
    }

    .block-products__featured-item .product-card .product-card__features-list {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__image {
        width: 216px;
    }

    [dir="ltr"] .block-products__featured-item .product-card .product-card__image {
        padding-left: 24px;
        padding-right: 24px;
        margin-right: 16px;
    }

    [dir="rtl"] .block-products__featured-item .product-card .product-card__image {
        padding-right: 24px;
        padding-left: 24px;
        margin-left: 16px;
    }

    .block-products__featured-item .product-card .product-card__info {
        padding-top: 20px;
        padding-bottom: 120px;
    }

    .block-products__featured-item .product-card .product-card__name {
        font-size: 17px;
        margin-bottom: 2px;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .block-products__featured-item .product-card .product-card__actions {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        bottom: 26px;
    }

    [dir="ltr"] .block-products__featured-item .product-card .product-card__actions {
        left: 232px;
    }

    [dir="rtl"] .block-products__featured-item .product-card .product-card__actions {
        right: 232px;
    }

    .block-products__featured-item .product-card .product-card__prices {
        margin-top: 0;
        font-size: 20px;
    }

    [dir="ltr"] .block-products__featured-item .product-card .product-card__prices {
        margin-right: 24px;
    }

    [dir="rtl"] .block-products__featured-item .product-card .product-card__prices {
        margin-left: 24px;
    }

    .block-products__featured-item .product-card .product-card__buttons {
        display: block;
    }
}

@media (max-width: 991px) {
    .block-products__body {
        display: block;
    }

    .block-products__featured {
        width: 100%;
    }

    .block-products__featured+.block-products__list {
        margin-top: 6px;
    }

    .block-products__list+.block-products__featured {
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .block-products__list-item {
        width: calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .block-products__featured-item .product-card .product-card__image {
        padding: 18px 18px 20px;
    }

    .block-products__featured-item .product-card .product-card__info {
        padding: 0 24px 0;
    }

    .block-products__featured-item .product-card .product-card__actions {
        padding: 0 24px 24px;
    }

    .block-products__featured-item .product-card .product-card__description {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__availability {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__features-list {
        display: none;
    }

    .block-products__featured-item .product-card .product-card__buttons .btn {
        font-size: 0.875rem;
        height: calc(1.875rem + 2px);
        line-height: 1.25;
        padding: 0.375rem 1rem;
        font-weight: 500;
    }

    .block-products__featured-item .product-card .product-card__buttons .btn.btn-svg-icon {
        width: calc(1.875rem + 2px);
    }
}

@media (max-width: 575px) and (hover: hover) {
    .block-products__featured-item .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products__featured-item .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -56px;
    }

    .block-products__featured-item .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 575px) and (-ms-high-contrast: active),
(max-width: 575px) and (-ms-high-contrast: none) {
    .block-products__featured-item .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products__featured-item .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -56px;
    }

    .block-products__featured-item .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 479px) {
    .block-products__list-item {
        width: calc(100% - 12px);
    }
}

/*
// .block-products-carousel
*/
.block-products-carousel .owl-stage {
    padding-bottom: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-products-carousel .owl-stage-outer {
    margin-bottom: -56px;
}

.block-products-carousel .owl-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-products-carousel__slider {
    position: relative;
}

.block-products-carousel__preloader {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    right: 0;
    bottom: 56px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
    transition: opacity 0.3s, visibility 0s 0.3s;
}

.block-products-carousel__preloader:after {
    display: block;
    content: "";
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: border-color 0.1s;
    transition: border-color 0.1s;
    -webkit-animation-name: preloader-animation;
    animation-name: preloader-animation;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    width: 100px;
    height: 100px;
    border-radius: 50px;
}

.block-products-carousel--loading .block-products-carousel__preloader {
    -webkit-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
    opacity: 1;
    visibility: visible;
}

.block-products-carousel__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .block-products-carousel__column {
        display: block;
    }
}

.block-products-carousel__cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.block-products-carousel__cell+.block-products-carousel__cell {
    margin-top: 14px;
}

.block-products-carousel__cell .product-card {
    width: 100%;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__image {
    padding: 18px 18px 20px;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__info {
    padding: 0 24px 0;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__actions {
    padding: 0 24px 24px;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__description {
    display: none;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__availability {
    display: none;
}

.block-products-carousel[data-layout^="grid-"] .product-card .product-card__features-list {
    display: none;
}

.block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn {
    /*font-size: 0.875rem;*/
    height: calc(1.875rem + 2px);
    line-height: 1.25;
    padding: 0.375rem 1rem;
    font-weight: 500;
}

.block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.875rem + 2px);
}

@media (hover: hover) {
    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -56px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -56px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__image {
        padding: 15px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
        top: 16px;
    }

    [dir="ltr"] .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
        left: 16px;
    }

    [dir="rtl"] .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
        right: 16px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__info {
        padding: 0 15px 0;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__actions {
        padding: 0 15px 15px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn {
        font-size: 0.8125rem;
        height: calc(1.5rem + 2px);
        line-height: 1.25;
        padding: 0.25rem 0.5625rem;
        font-weight: 500;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn.btn-svg-icon {
        width: calc(1.5rem + 2px);
    }
}

@media (min-width: 768px) and (max-width: 1199px) and (hover: hover) {
    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (-ms-high-contrast: active),
(min-width: 768px) and (max-width: 1199px) and (-ms-high-contrast: none) {
    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 575px) {
    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__image {
        padding: 15px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
        top: 16px;
    }

    [dir="ltr"] .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
        left: 16px;
    }

    [dir="rtl"] .block-products-carousel[data-layout="grid-4"] .product-card .product-card__badges-list {
        right: 16px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__info {
        padding: 0 15px 0;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__actions {
        padding: 0 15px 15px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn {
        font-size: 0.8125rem;
        height: calc(1.5rem + 2px);
        line-height: 1.25;
        padding: 0.25rem 0.5625rem;
        font-weight: 500;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card .product-card__buttons .btn.btn-svg-icon {
        width: calc(1.5rem + 2px);
    }
}

@media (max-width: 575px) and (hover: hover) {
    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 575px) and (-ms-high-contrast: active),
(max-width: 575px) and (-ms-high-contrast: none) {
    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products-carousel[data-layout="grid-4"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.block-products-carousel[data-layout="grid-4-sm"] .product-card .product-card__image {
    padding: 15px;
}

.block-products-carousel[data-layout="grid-4-sm"] .product-card .product-card__badges-list {
    top: 16px;
}

[dir="ltr"] .block-products-carousel[data-layout="grid-4-sm"] .product-card .product-card__badges-list {
    left: 16px;
}

[dir="rtl"] .block-products-carousel[data-layout="grid-4-sm"] .product-card .product-card__badges-list {
    right: 16px;
}

.block-products-carousel[data-layout="grid-4-sm"] .product-card .product-card__info {
    padding: 0 15px 0;
}

.block-products-carousel[data-layout="grid-4-sm"] .product-card .product-card__actions {
    padding: 0 15px 15px;
}

.block-products-carousel[data-layout="grid-4-sm"] .product-card .product-card__buttons .btn {
    font-size: 0.8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 0.25rem 0.5625rem;
    font-weight: 500;
}

.block-products-carousel[data-layout="grid-4-sm"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
}

@media (hover: hover) {
    .block-products-carousel[data-layout="grid-4-sm"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-4-sm"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products-carousel[data-layout="grid-4-sm"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .block-products-carousel[data-layout="grid-4-sm"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-4-sm"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products-carousel[data-layout="grid-4-sm"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.block-products-carousel[data-layout="grid-5"] .product-card .product-card__image {
    padding: 15px;
}

.block-products-carousel[data-layout="grid-5"] .product-card .product-card__badges-list {
    top: 16px;
}

[dir="ltr"] .block-products-carousel[data-layout="grid-5"] .product-card .product-card__badges-list {
    left: 16px;
}

[dir="rtl"] .block-products-carousel[data-layout="grid-5"] .product-card .product-card__badges-list {
    right: 16px;
}

.block-products-carousel[data-layout="grid-5"] .product-card .product-card__info {
    padding: 0 15px 0;
}

.block-products-carousel[data-layout="grid-5"] .product-card .product-card__actions {
    padding: 0 15px 15px;
}

.block-products-carousel[data-layout="grid-5"] .product-card .product-card__buttons .btn {
    font-size: 0.8125rem;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 0.25rem 0.5625rem;
    font-weight: 500;
}

.block-products-carousel[data-layout="grid-5"] .product-card .product-card__buttons .btn.btn-svg-icon {
    width: calc(1.5rem + 2px);
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .block-products-carousel[data-layout="grid-5"] .product-card--hidden-actions .product-card__buttons {
        display: none;
    }

    .block-products-carousel[data-layout="grid-5"] .product-card--hidden-actions:hover {
        position: relative;
        z-index: 3;
        margin-bottom: -50px;
    }

    .block-products-carousel[data-layout="grid-5"] .product-card--hidden-actions:hover .product-card__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.block-products-carousel[data-layout="horizontal"] .product-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__image {
    width: 120px;
    padding: 16px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__badges-list {
    top: 10px;
}

[dir="ltr"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__badges-list {
    left: 10px;
}

[dir="rtl"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__badges-list {
    right: 10px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__badge {
    padding: 3px 5px 2px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__info {
    padding-top: 14px;
    padding-bottom: 42px;
    width: 100%;
}

[dir="ltr"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__info {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__info {
    padding-right: 0;
    padding-left: 30px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__name {
    overflow: hidden;
    max-height: 38px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__rating {
    white-space: nowrap;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__description {
    display: none;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__availability {
    display: none;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__buttons {
    display: none;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__actions {
    position: absolute;
    bottom: 18px;
}

[dir="ltr"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__actions {
    left: 120px;
}

[dir="rtl"] .block-products-carousel[data-layout="horizontal"] .product-card .product-card__actions {
    right: 120px;
}

.block-products-carousel[data-layout="horizontal"] .product-card .product-card__features-list {
    display: none;
}

/*
// .block-sidebar
*/
.block-sidebar__item+.block-sidebar__item {
    margin-top: 30px;
}

.block-sidebar--position--start {
    padding-right: 20px;
}

[dir="rtl"] .block-sidebar--position--start {
    padding-left: 20px;
}

@media (max-width: 1199px) {
    .block-sidebar--position--start {
        padding-right: 6px;
    }

    [dir="rtl"] .block-sidebar--position--start {
        padding-left: 6px;
    }
}

@media (max-width: 991px) {
    .block-sidebar--position--start {
        padding-right: 0;
    }

    [dir="rtl"] .block-sidebar--position--start {
        padding-left: 0;
    }
}

.block-sidebar--position--end {
    padding-left: 20px;
}

[dir="rtl"] .block-sidebar--position--end {
    padding-right: 20px;
}

@media (max-width: 1199px) {
    .block-sidebar--position--end {
        padding-left: 6px;
    }

    [dir="rtl"] .block-sidebar--position--end {
        padding-right: 6px;
    }
}

@media (max-width: 991px) {
    .block-sidebar--position--end {
        padding-left: 0;
    }

    [dir="rtl"] .block-sidebar--position--end {
        padding-right: 0;
    }
}

.block-sidebar__header {
    height: 55px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    display: none;
}

.block-sidebar__title {
    padding: 0 20px;
    font-weight: 700;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.block-sidebar__close {
    border: none;
    background: transparent;
    height: 54px;
    width: 55px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    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;
    cursor: pointer;
    fill: #999;
    -webkit-transition: fill 0.2s;
    transition: fill 0.2s;
}

.block-sidebar__close {
    border-left: 1px solid #ebebeb;
}

[dir="rtl"] .block-sidebar__close {
    border-right: 1px solid #ebebeb;
}

.block-sidebar__close:focus {
    outline: none;
}

.block-sidebar__close:focus,
.block-sidebar__close:hover {
    fill: #3d464d;
}

.block-sidebar--offcanvas--always {
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    -webkit-transition: visibility 0s 0.3s;
    transition: visibility 0s 0.3s;
}

.block-sidebar--offcanvas--always {
    left: 0;
}

[dir="rtl"] .block-sidebar--offcanvas--always {
    right: 0;
}

.block-sidebar--offcanvas--always .block-sidebar__backdrop {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #3d464d;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.block-sidebar--offcanvas--always .block-sidebar__backdrop {
    left: 0;
}

[dir="rtl"] .block-sidebar--offcanvas--always .block-sidebar__backdrop {
    right: 0;
}

.block-sidebar--offcanvas--always .block-sidebar__body {
    position: absolute;
    top: 0;
    width: 290px;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.block-sidebar--offcanvas--always .block-sidebar__body {
    left: 0;
    -webkit-transform: translateX(-100%) translateX(-30px);
    transform: translateX(-100%) translateX(-30px);
}

[dir="rtl"] .block-sidebar--offcanvas--always .block-sidebar__body {
    right: 0;
    -webkit-transform: translateX(100%) translateX(30px);
    transform: translateX(100%) translateX(30px);
}

.block-sidebar--offcanvas--always .block-sidebar__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-sidebar--offcanvas--always.block-sidebar--open {
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.block-sidebar--offcanvas--always.block-sidebar--open .block-sidebar__backdrop {
    opacity: 0.2;
}

.block-sidebar--offcanvas--always.block-sidebar--open .block-sidebar__body {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media (max-width: 991px) {
    .block-sidebar--offcanvas--mobile {
        visibility: hidden;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        -webkit-transition: visibility 0s 0.3s;
        transition: visibility 0s 0.3s;
    }

    .block-sidebar--offcanvas--mobile {
        left: 0;
    }

    [dir="rtl"] .block-sidebar--offcanvas--mobile {
        right: 0;
    }

    .block-sidebar--offcanvas--mobile .block-sidebar__backdrop {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: #3d464d;
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }

    .block-sidebar--offcanvas--mobile .block-sidebar__backdrop {
        left: 0;
    }

    [dir="rtl"] .block-sidebar--offcanvas--mobile .block-sidebar__backdrop {
        right: 0;
    }

    .block-sidebar--offcanvas--mobile .block-sidebar__body {
        position: absolute;
        top: 0;
        width: 290px;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .block-sidebar--offcanvas--mobile .block-sidebar__body {
        left: 0;
        -webkit-transform: translateX(-100%) translateX(-30px);
        transform: translateX(-100%) translateX(-30px);
    }

    [dir="rtl"] .block-sidebar--offcanvas--mobile .block-sidebar__body {
        right: 0;
        -webkit-transform: translateX(100%) translateX(30px);
        transform: translateX(100%) translateX(30px);
    }

    .block-sidebar--offcanvas--mobile .block-sidebar__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .block-sidebar--offcanvas--mobile.block-sidebar--open {
        visibility: visible;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    .block-sidebar--offcanvas--mobile.block-sidebar--open .block-sidebar__backdrop {
        opacity: 0.9;
    }

    .block-sidebar--offcanvas--mobile.block-sidebar--open .block-sidebar__body {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/*
// .block-slideshow
*/
.block-slideshow {
    margin-bottom: 50px;
    position: relative;
}

.block-slideshow .owl-carousel .owl-dots {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
}

[dir="rtl"] .block-slideshow .owl-carousel .owl-dots {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    right: 50%;
}

.block-slideshow .owl-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #e0e0e0;
}

.block-slideshow .owl-carousel .owl-dot:focus {
    outline: none;
}

.block-slideshow .owl-carousel .owl-dot:hover {
    background: #d1d1d1;
}

.block-slideshow .owl-carousel .owl-dot.active {
    background: #ea500d;
}

.block-slideshow .owl-carousel .owl-dot+.owl-dot {
    margin-left: 6px;
}

[dir="rtl"] .block-slideshow .owl-carousel .owl-dot+.owl-dot {
    margin-right: 6px;
}

.block-slideshow__slide {
    position: relative;
    display: block;
    color: inherit;
}

.block-slideshow__slide:hover {
    color: inherit;
}

.block-slideshow__slide-image {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.block-slideshow__slide-image--mobile {
    display: none;
}

.block-slideshow__slide-content {
    position: absolute;
    bottom: 46px;
    left: 66px;
}

.block-slideshow__slide-content {
    left: 46px;
}

[dir="rtl"] .block-slideshow__slide-content {
    right: 46px;
}

.block-slideshow__slide-title {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 0;
    -webkit-transition: all 1s 0.2s;
    transition: all 1s 0.2s;
    color: #fff;
    max-width: 231px;
    width: 100%;
}

.block-slideshow__slide-text {
    line-height: 1.625;
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 0.8s 0.5s;
    transition: all 0.8s 0.5s;
    color: #fff;
    max-width: 369px;
    width: 100%;
}

.block-slideshow__slide-button {
    margin-top: 40px;
    opacity: 0;
    -webkit-transition: all 1s 0.4s;
    transition: all 1s 0.4s;
}

.block-slideshow__slide-button span {
    background-color: #333333;
    border: 1px solid #333333;
    color: #fff;
}

.block-slideshow__slide-button:hover span {
    background-color: #ea500d;
    border: 1px solid #ea500d;
    color: #fff;
}

.block-slideshow .owl-carousel .owl-dots {
    bottom: 20px;
    position: absolute;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4px;
    border-radius: 9px;
    left: 50%;
}

.block-slideshow .owl-carousel .owl-dot.active {
    background: #ea500d;
}

.block-slideshow .active .block-slideshow__slide-title,
.block-slideshow .active .block-slideshow__slide-text,
.block-slideshow .active .block-slideshow__slide-button {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.block-slideshow--layout--full {
    margin-top: 45px;
}

.admin-bar .block-slideshow {
    margin-top: 25px;
}

@media (min-width: 768px) {

    .block-slideshow--layout--full .block-slideshow__body,
    .block-slideshow--layout--full .block-slideshow__slide {
        height: 415px;
    }

    .block-slideshow--layout--full .block-slideshow__slide-content {
        bottom: 100px;
    }

    .block-slideshow--layout--full .block-slideshow__slide-content {
        left: 237px;
    }

    [dir="rtl"] .block-slideshow--layout--full .block-slideshow__slide-content {
        right: 72px;
    }

    .block-slideshow--layout--full .block-slideshow__slide-title {
        margin-bottom: 16px;
        line-height: 36px;
    }

    .block-slideshow--layout--full .block-slideshow__slide-button {
        margin-top: 20px;
    }
}

@media (min-width: 992px) and (max-width:1023.98px) {
    .block-slideshow--layout--full {
        margin-top: 0px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .block-slideshow--layout--full .block-slideshow__slide-content {
        left: 56px;
    }

    [dir="rtl"] .block-slideshow--layout--full .block-slideshow__slide-content {
        right: 56px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .block-slideshow--layout--full .block-slideshow__slide-content {
        bottom: 25px;
    }

    .block-slideshow--layout--full .block-slideshow__slide-content {
        left: 48px;
    }

    [dir="rtl"] .block-slideshow--layout--full .block-slideshow__slide-content {
        right: 48px;
    }

    .block-slideshow--layout--full .block-slideshow__slide-title {
        margin-bottom: 8px;
    }

    .block-slideshow--layout--full .block-slideshow__slide-button {
        margin-top: 40px;
    }
}

.block-slideshow--layout--with-departments .block-slideshow__body {
    margin-top: 15px;
    height: 395px;
}

.block-slideshow--layout--with-departments .block-slideshow__slide {
    height: 395px;
}

@media (min-width: 992px) {
    [dir="ltr"] .block-slideshow--layout--with-departments .block-slideshow__body {
        margin-left: -15px;
    }

    [dir="rtl"] .block-slideshow--layout--with-departments .block-slideshow__body {
        margin-right: -15px;
    }
}

@media (max-width: 991px) {
    .block-slideshow--layout--with-departments .block-slideshow__slide-button .btn {
        font-size: 0.875rem;
        height: calc(1.875rem + 2px);
        line-height: 1.25;
        padding: 0.375rem 1rem;
        font-weight: 500;
    }

    .block-slideshow--layout--with-departments .block-slideshow__slide-button .btn.btn-svg-icon {
        width: calc(1.875rem + 2px);
    }

    .block-slideshow--layout--full {
        margin-top: 0;
    }
}

@media (max-width: 767px) {

    .block-slideshow__body,
    .block-slideshow__slide {
        height: 395px;
    }

    .block-slideshow__slide-image--mobile {
        background-position: top center;
        display: block;
    }

    .block-slideshow__slide-content {
        bottom: 100px;
        left: 20;
        text-align: left;
    }

    [dir="rtl"] .block-slideshow__slide-content {
        right: 5%;
        left: 5%;
    }

    .block-slideshow__slide-title {
        font-size: 26px;
        line-height: 32px;
    }

    .block-slideshow__slide-text {
        display: none;
    }

    .block-slideshow__slide-button {
        margin-top: 24px;
    }

    .block-slideshow__slide-button .btn {
        font-size: 0.875rem;
        height: calc(1.875rem + 2px);
        line-height: 1.25;
        padding: 0.375rem 1rem;
        font-weight: 500;
    }

    .block-slideshow__slide-button .btn.btn-svg-icon {
        width: calc(1.875rem + 2px);
    }
}

/* ----------------------------------------
// Widgets
// ---------------------------------------- */

/*
// .widget
*/
.widget__title {
    margin-bottom: 20px;
    font-size: 20px;
}

/*
// .widget-aboutus
*/
.widget-aboutus {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    padding: 28px;
}

.widget-aboutus__socials {
    margin-top: 20px;
}

/*
// .widget-categories
*/
.widget-categories {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    padding: 28px;
}

.widget-categories__list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 18px;
    font-size: 16px;
}

.widget-categories__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget-categories__row a {
    position: relative;
    display: block;
    color: inherit;
    padding-top: 7px;
    padding-bottom: 7px;
    fill: #ccc;
    -webkit-transition: 0.15s color;
    transition: 0.15s color;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.widget-categories__row a {
    padding-left: 16px;
    padding-right: 10px;
}

[dir="rtl"] .widget-categories__row a {
    padding-right: 16px;
    padding-left: 10px;
}

.widget-categories__row a:hover {
    color: #ea500d;
}

.widget-categories__arrow {
    position: absolute;
    top: calc(50% - 5px);
}

.widget-categories__arrow {
    left: 0;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

[dir="rtl"] .widget-categories__arrow {
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.widget-categories__expander {
    margin-top: 1px;
    width: 28px;
    height: 28px;
    position: relative;
    border: none;
    border-radius: 1.5px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    color: #ccc;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.widget-categories__expander {
    margin-right: -10px;
}

[dir="rtl"] .widget-categories__expander {
    margin-left: -10px;
}

.widget-categories__expander:focus,
.widget-categories__expander:hover {
    background: #f2f2f2;
    color: #a6a6a6;
}

.widget-categories__expander:focus {
    outline: none;
}

.widget-categories__expander::before,
.widget-categories__expander::after {
    display: block;
    position: absolute;
    content: "";
    background: currentColor;
}

.widget-categories__expander::before {
    width: 8px;
    height: 2px;
    top: calc(50% - 1px);
}

.widget-categories__expander::before {
    left: calc(50% - 4px);
}

[dir="rtl"] .widget-categories__expander::before {
    right: calc(50% - 4px);
}

.widget-categories__expander::after {
    width: 2px;
    height: 8px;
    top: calc(50% - 4px);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.widget-categories__expander::after {
    left: calc(50% - 1px);
}

[dir="rtl"] .widget-categories__expander::after {
    right: calc(50% - 1px);
}

.widget-categories__subs {
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
    font-size: 15px;
    line-height: 26px;
    -webkit-transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.widget-categories__subs ul {
    list-style: none;
    padding: 6px 0 8px 0;
    margin: 0;
}

.widget-categories__subs li {
    position: relative;
}

.widget-categories__subs li {
    padding-left: 32px;
}

[dir="rtl"] .widget-categories__subs li {
    padding-right: 32px;
}

.widget-categories__subs li::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 6px;
    height: 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.widget-categories__subs li::before {
    left: 16px;
}

[dir="rtl"] .widget-categories__subs li::before {
    right: 16px;
}

.widget-categories__subs a {
    color: inherit;
    -webkit-transition: 0.15s color;
    transition: 0.15s color;
}

.widget-categories__subs a:hover {
    color: #1a66ff;
}

.widget-categories__item--open .widget-categories__expander::after {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.widget-categories__item--open .widget-categories__subs {
    height: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s, 0s, 0s;
    transition-delay: 0s, 0s, 0s;
}

.widget-categories--location--shop {
    padding: 20px;
}

/*
// .widget-comments
*/
.widget-comments {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    padding: 28px;
}

.widget-comments a {
    color: inherit;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.widget-comments a:hover {
    color: #1a66ff;
}

.widget-comments__list {
    list-style: none;
    margin: 0;
    padding: 8px 0 4px;
}

.widget-comments__item+.widget-comments__item {
    margin-top: 26px;
}

.widget-comments__author {
    font-size: 15px;
    line-height: 18px;
}

.widget-comments__author a {
    border-bottom: 2px solid #ebebeb;
    -webkit-transition: border 0.2s;
    transition: border 0.2s;
}

.widget-comments__author a:hover {
    border-color: rgba(26, 102, 255, 0.8);
}

.widget-comments__content {
    margin-top: 12px;
    font-size: 15px;
    line-height: 20px;
}

.widget-comments__meta {
    margin-top: 4px;
    font-size: 13px;
    color: #999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
}

.widget-comments__date {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.widget-comments__name {
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.widget-comments__name {
    padding-left: 20px;
}

[dir="rtl"] .widget-comments__name {
    padding-right: 20px;
}

.widget-comments__name::before {
    position: absolute;
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 2px;
    top: 8px;
}

.widget-comments__name::before {
    left: 8px;
}

[dir="rtl"] .widget-comments__name::before {
    right: 8px;
}

/*
// .widget-filters
*/
.widget-filters {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    padding: 20px;
}

.widget-filters__item {
    padding: 8px 20px;
    margin: 0 -20px;
    border-bottom: 2px solid #f0f0f0;
}

.widget-filters__item:first-child {
    border-top: 2px solid #f0f0f0;
}

.widget-filters__actions {
    padding-top: 24px;
    padding-bottom: 16px;
}

.widget-filters__actions>.btn+.btn {
    margin-left: 8px;
}

[dir="rtl"] .widget-filters__actions>.btn+.btn {
    margin-right: 8px;
}

.widget-filters--offcanvas--always {
    border: none;
    padding-top: 0;
}

.widget-filters--offcanvas--always .widget-filters__title {
    display: none;
}

.widget-filters--offcanvas--always .widget-filters__item:first-child {
    border-top: none;
}

.widget-filters--offcanvas--always .widget-filters__item {
    border-width: 1px;
}

@media (max-width: 991px) {
    .widget-filters--offcanvas--mobile {
        border: none;
        padding-top: 0;
    }

    .widget-filters--offcanvas--mobile .widget-filters__title {
        display: none;
    }

    .widget-filters--offcanvas--mobile .widget-filters__item:first-child {
        border-top: none;
    }

    .widget-filters--offcanvas--mobile .widget-filters__item {
        border-width: 1px;
    }
}

/*
// .widget-newsletter
*/
.widget-newsletter {
    background: #f5f5f5;
    border-radius: 2px;
    padding: 32px 30px 36px;
    text-align: center;
    font-size: 15px;
    line-height: 24px;
}

.widget-newsletter__title {
    font-size: 24px;
    padding-top: 6px;
    margin-bottom: 24px;
}

.widget-newsletter__text {
    margin-bottom: 22px;
}

.widget-newsletter__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/*
// .widget-posts
*/
.widget-posts {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    padding: 28px;
}

.widget-posts__list {
    padding-top: 10px;
}

.widget-posts__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget-posts__item+.widget-posts__item {
    margin-top: 22px;
}

.widget-posts__image {
    width: 90px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 1.5px;
    overflow: hidden;
    -ms-flex-item-align: self-start;
    align-self: self-start;
    position: relative;
}

.widget-posts__image {
    margin-right: 16px;
}

[dir="rtl"] .widget-posts__image {
    margin-left: 16px;
}

.widget-posts__image ::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    z-index: 1;
}

.widget-posts__image img {
    max-width: 100%;
    display: block;
}

.widget-posts__image:hover ::before {
    opacity: 1;
}

.widget-posts__info {
    margin-top: -2px;
}

.widget-posts__name {
    font-size: 15px;
    line-height: 18px;
}

.widget-posts__name a {
    color: inherit;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.widget-posts__name a:hover {
    color: #ea500d;
}

.widget-posts__date {
    margin-top: 2px;
    font-size: 13px;
    color: #999;
}

/*
// .widget-products
*/
.widget-products {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    padding: 20px;
}

.widget-products__list {
    padding-top: 8px;
}

.widget-products__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget-products__item+.widget-products__item {
    margin-top: 18px;
}

.widget-products__image {
    width: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
}

.widget-products__image {
    margin-right: 12px;
}

[dir="rtl"] .widget-products__image {
    margin-left: 12px;woocommerce_order_status_changed
}

.widget-products__image img {
    max-width: 100%;
}

.widget-products__name {
    margin-top: -2px;
    font-size: 14px;
    line-height: 17px;
}

.widget-products__name a {
    color: #333333;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.widget-products__name a:hover {
    color: #1a66ff;
}

.widget-products__prices {
    padding-top: 2px;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
}

.widget-products__new-price {
    color: #ea500d;
}

.widget-products__old-price {
    color: #b3b3b3;
    font-weight: 400;
    font-size: 12px;
    text-decoration: line-through;
}

/*
// .widget-search
*/
.widget-search {
    height: 48px;
}

.widget-search__body {
    position: relative;
    height: 100%;
}

.widget-search__input {
    -webkit-box-shadow: 0 0 0 2px #ededed inset;
    box-shadow: 0 0 0 2px #ededed inset;
    -webkit-transition: -webkit-box-shadow 0.2s;
    transition: -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s;
    transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
    border-radius: 2px;
    height: 100%;
    width: 100%;
    background: transparent;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.widget-search__input {
    padding-left: 18px;
    padding-right: 48px;
}

[dir="rtl"] .widget-search__input {
    padding-right: 18px;
    padding-left: 48px;
    color: #ea500d;
}

.widget-search__input:hover {
    -webkit-box-shadow: 0 0 0 2px #d9d9d9 inset;
    box-shadow: 0 0 0 2px #d9d9d9 inset;
}

.widget-search__input:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 2px #ea500d inset;
    box-shadow: 0 0 0 2px #ea500d inset;
}

.widget-search__input::-webkit-input-placeholder {
    color: #999;
}

.widget-search__input::-moz-placeholder {
    color: #999;
}

.widget-search__input:-ms-input-placeholder {
    color: #999;
}

.widget-search__input::-ms-input-placeholder {
    color: #999;
}

.widget-search__input::placeholder {
    color: #999;
}

.widget-search__button {
    height: 48px;
    width: 48px;
    cursor: pointer;
    position: absolute;
    top: 0;
    background: transparent;
    border: none;
    padding: 0;
    fill: #ccc;
    -webkit-transition: fill 0.2s;
    transition: fill 0.2s;
}

.widget-search__button {
    right: 0;
}

[dir="rtl"] .widget-search__button {
    left: 0;
}

.widget-search__button svg {
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
}

.widget-search__button:focus {
    outline: none;
}

.widget-search__button:focus,
.widget-search__button:hover {
    fill: #ea500d;
}

/*
// .widget-tags
*/
.widget-tags {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    padding: 28px;
}

/*# sourceMappingURL=style.css.map;
 */

.navigation {
    padding-top: 32px;
}

.star-rating span::before {
    color: #ea500d !important;
}

p.stars.selected a.active::before {
    color: #ea500d !important;
}

p.stars.selected a:not(.active)::before {
    color: #ea500d !important;
}

a:hover {
    color: #ea500d;
}

.woocommerce-noreviews,
p.no-comments {
    background-color: transparent !important;
}

.woocommerce-info {
    background-color: #ea500d !important;
    margin-bottom: 15px;
    color: white !important;
    font-size: 14px;
    font-weight: bold;
    margin-left: 15px;
    padding: 5px !important;
    width: 90%;
}

.description__rating_stars {
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: 1.618em;
    line-height: 1.618;
}

.comment-form-title {
    display: none;
}

.cart-table__column--quantity .quantity {
    display: none;
}

.woocommerce-error li {
    padding: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: bolder;
}

.shippping-choose__item-title {
    padding: 0 10px;
}

.cart__checkout-button:hover {
    color: #fff !important;
}

#mini-cart-count {
    display: flex;
}

#mbway_phone:valid,
#mbway_phone.is-valid,
#mbway_phone:invalid,
#mbway_phone.is-invalid {
    background-image: none;
}

#mbway_phone:focus {
    color: #333333;
    background-color: #fff;
    border-color: #ea500dad;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #ea500dad;
}

#mbway_phone {
    border-radius: 2px;
    line-height: 1.25;
}

#mbway_phone {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.woocommerce-message {
    display: none;
}

.woocommerce-NoticeGroup-checkout .woocommerce-error{
    margin-left:16px;
    padding-top:10px;
    padding-bottom: 10px;
    padding-right:10px;
    border:4px solid maroon;
}

.woocommerce-form-login-toggle .woocommerce-info {
    display: none;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    font-size: 16px;
    padding: 1.125rem 1.375rem!important;
    background-color: #ea500d !important;
    color: white;
    margin: 0px;
    width: 100%;
}

.woocommerce-form-coupon-toggle .woocommerce-info a {

    font-weight: bold;
    color: white;
}

.woocommerce-info .showcoupon:hover {
    color: #333333;
}

.select2-container--default .select2-selection--single,
#billing_postcode,
#shipping_country,
.form-row.woocommerce-validated input.input-text,
#shipping_city,
#shipping_state {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
}

label {
    display: block;
}

#billing_country_field,
#billing_state_field,
#shipping_country_field,
#shipping_state_field {
    display: block;
    margin-left: 0px;
}

.woocommerce img.pswp__img,
.woocommerce-page img.pswp__img {
    /* bug zoom ratio image */
    object-fit: contain;
}

.screen-reader-text {
    display: none;
}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.button-variable-item {
    background: #e0e0e0;
    color: #ffffff;
    cursor: pointer;
    display: block;
    height: auto;
    padding: 0.3125rem 1rem;
    border-radius: 0;
    border: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    background: #f0f0f0;
    color: #333333;
    -webkit-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;

}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.selected {
    cursor: default;
    background: #ea500d;
    color: #ffffff;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color:after {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.button-variable-item span.variable-item-span {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.button-variable-item:hover {
    background: #e0e0e0;
    color: #ffffff;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.color-variable-item.selected {
    border-radius: 50%;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color {
    border: 1px solid #999999;
}

.variations .label label {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #6c757d;
    padding-bottom: 2px;
}

.woocommerce_custom_field {
    color: #999;
    font-size: 14px;
}

.includes_tax {
    font-size: 12px;
}

.put_info_cart {
    width: 100%;
    text-align: right;
    font-size: 18px;
    margin-bottom: 40px;
}

.woocommerce-variation-description {
    margin-top: 20px;
}

.loading_prod {
    position: absolute;
    width: 100%;
    min-height: 340px;
    height: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.loading_prod::before {
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border: 4px solid #ea500d20;
    /* Light grey */
    border-top: 4px solid #ea500d;
    /* Blue */
    border-radius: 50%;
    animation: spin 2s linear infinite;
    background-image: none !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.file_name {
    margin-left: 5px;
    font-weight: 700;
}

.product__meta_custom {
    list-style: none;
    margin: 12px 0 0;
    padding: 12px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #999;
    font-size: 14px;
    border-top: 1px solid #ebebeb;
}

.product__meta_custom li {
    margin-right: 18px;
}

@media (max-width: 767px) {

    .block-slideshow__slide-title,
    .block-slideshow__slide-text,
    .block-slideshow__slide-button {
        display: none;
    }
}

a.full_link_mobile {
    display: block !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 999;
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
    /* margin-bottom: 70px !important; */
    z-index: 9 !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}

.show-Widget-Above-site-footer__bottom {
    margin-bottom: 70px !important;
}

.rlv-has-spinner {
    border: 4px solid #ea500d !important;
}

.rlv-has-spinner::after {
    background: white !important;
}

.quantity .qty {
    width: 100%;
}

#wpcf7-f12-o1 label, #wpcf7-f393897-o1 label {
    display: inline-block;
}

.badge-custom{
    top:18px;
    left:182px;
    position:absolute;

}

.custom-stock-text, .custom-when-text {
    font-weight: bold;
}


@media (max-width: 767px) {
    #trp-floater-ls {
        margin:0px;
    }
}





