/* General */
/* remove "view cart" link which appears after click on the "add to cart" */
a.added_to_cart.wc-forward {
    display: none !important;
}

.header-top p {
    margin: 0;
    padding: 0;
}

/* Header cart */
.header-cart-btn {
    display: inline-block;
    padding: 1px 6px;
}


.header-cart .product-price__regular {
    color: #000;
}

.header-cart .product-price__old {
    line-height: 1.1;
    text-decoration: none;
}

.header-cart .product-price__old span.amount {
    text-decoration: line-through;
}

.header-cart .product-price__old .discount {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #FF3D00;
    line-height: 1;
}


/* Page Loading Animation */
.woo-loading {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #ffffffa2;
}

.woo-loading.active {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media(max-width:768px) {
    .woo-loading .woo-loading__content {
        margin: 0;
        text-align: right;
        position: absolute;
        top: 0px;
        right: 0px;

    }
}

.woo-loading svg.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    animation: loading-spinner 1s linear infinite;
}

@keyframes loading-spinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}




/* Single Product */
.skeleton-box {
    display: inline-block;
    height: 368px;
    position: relative;
    overflow: hidden;
    background: #DDDBDD;
}

.skeleton-box.skeleton-box--thumb {
    width: 66px;
    height: 66px;
}

.skeleton-box.skeleton-box--featured {
    width: 506px;
    height: 506px;
}

.skeleton-box::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    -webkit-animation: shimmer 5s infinite;
    animation: shimmer 5s infinite;
    content: "";
}

@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}


@media(max-width: 767px) {
    .single-product .product-heading .product-heading-holder {
        display: block;
    }
}

@media(max-width: 767px) {
    .single-product .product-info-header__logo {
        display: none;
    }
}

/* .single-product .product-thumb {
    overflow: hidden;
  } */

/* single product add to cart form */
.single-product .product-info form.cart {
    position: relative;
}

.single-product .product-info form.cart.blocked::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffffc7;
    z-index: 11;
    width: 100%;
    height: 102%;
}

.single-product .product-info form.cart.blocked::before {
    content: '';
    position: absolute;
    z-index: 12;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 35px;
    height: 35px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ibG9hZGluZy1zcGlubmVyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4Ij48ZyBmaWxsPSJub25lIj48cGF0aCBpZD0idHJhY2siIGZpbGw9IiNFNkU5RTkiIGQ9Ik0yNCw0OCBDMTAuNzQ1MTY2LDQ4IDAsMzcuMjU0ODM0IDAsMjQgQzAsMTAuNzQ1MTY2IDEwLjc0NTE2NiwwIDI0LDAgQzM3LjI1NDgzNCwwIDQ4LDEwLjc0NTE2NiA0OCwyNCBDNDgsMzcuMjU0ODM0IDM3LjI1NDgzNCw0OCAyNCw0OCBaIE0yNCw0NCBDMzUuMDQ1Njk1LDQ0IDQ0LDM1LjA0NTY5NSA0NCwyNCBDNDQsMTIuOTU0MzA1IDM1LjA0NTY5NSw0IDI0LDQgQzEyLjk1NDMwNSw0IDQsMTIuOTU0MzA1IDQsMjQgQzQsMzUuMDQ1Njk1IDEyLjk1NDMwNSw0NCAyNCw0NCBaIj48L3BhdGg+PHBhdGggaWQ9InNlY3Rpb24iIGZpbGw9IiMwMTIzMUYiIGQ9Ik0yNCwwIEMzNy4yNTQ4MzQsMCA0OCwxMC43NDUxNjYgNDgsMjQgTDQ0LDI0IEM0NCwxMi45NTQzMDUgMzUuMDQ1Njk1LDQgMjQsNCBMMjQsMCBaIj48L3BhdGg+PC9nPjwvc3ZnPg==');
    animation: spin 0.7s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* add to cart button */

.single-product .single_add_to_cart_button {
    width: 100%;
    height: 50px;
    font-size: 17px;
}

.single-product .product-label {
    line-height: 20px;
    font-size: 11px;
}


.single-product .product-info-header__brand a {
    text-decoration: none;
    color: #FF3D00;
}

.single-product .product-info-header__brand a:hover {
    color: #ff8b66;
}

.single-product .product-info-stock.onbackorder {
    color: #9F7B5E;
}



.single-product .product-label.practice {
    background: #4f6662;
}

.single-product .product-label.casual {
    background: #9c7960;
}

.single-product .product-label.superior {
    background: #2e9c88;
}

.single-product .product-label.authentic {
    background: #000;
}



/* price */
.single-product .price {
    font-weight: 700;
    line-height: 110%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    margin: 0 0 16px;
    color: #000;
}


.single-product .price ins {
    order: 1;
}

.single-product .price del {
    order: 2;
}


.single-product .price del,
.single-product .price ins {
    text-decoration: none;
}

.single-product .price ins bdi {
    color: #f80101;
}

.single-product .price del .amount {
    color: #80918F;
    text-decoration: line-through;
}

.single-product .price del bdi {
    color: #80918F;
    text-decoration: line-through;
}

.single-product .price span.amount {
    font-size: 32px;
    margin: 0px;
    line-height: 110%;
    text-decoration: none;
}

.single-product .price del span.amount {
    font-size: 17px;
    color: #80918F;
}

.product-info .price .discount {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #FF3D00;
    text-decoration: none;
    line-height: 1;
}


/* product grid item price */
.product-item .product-price .price del,
.product-item .product-price .price ins {
    text-decoration: none;
}


.product-item .product-price del {
    order: 2;
    text-decoration: none;
}

.product-item .product-price ins {
    order: 1;
    text-decoration: none;
}


.product-item .product-price ins bdi {
    color: #f80101;
}

.product-item .product-price del bdi {
    color: #80918F;
    text-decoration: line-through;
    font-size: 14px;
}


/* .product-item .product-price span.amount{
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 110%;
    text-decoration: none;
} */

.product-item .product-price ins span.amount {
    font-size: 17px;
    color: #80918F;
}

.product-item .product-price .discount {
    display: none;
}


.product-item .product-item__inner {
    padding: 5px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex: 1;
    flex: 1;
}

.product-item .product-item__inner .product-item__footer {
    margin-top: auto;
}

.product-item .product-item__description {
    padding-right: 0px;
}


@media(max-width:767px) {
    .product-item .product-item__description {
        font-size: 13px;
    }
}


.product-item .product-item__title {
    font-size: 11px;
    margin-bottom: 2px;
}


.single-product .stock.available-on-backorder {
    display: none;
}


.product-info p.out-of-stock {
    display: none;
}

.product-info #out-of-stock-single-product {
    background: #B3BDBC;
    pointer-events: none;
    border-color: #B3BDBC;
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 20px;
    height: 50px;
    border-radius: 2px;
    font-size: 17px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0;
}


.outofstock .product-info .product-amount {
    display: none;
}


.single-product .product-details,
.single-product .specifications-table-item {
    font-size: 16px;
}


.single-product .product-details .product-details-content {
    max-width: 950px;
    margin: 0 0 30px 10px;
}

@media(max-width:767px) {
    .single-product .product-details .product-details-content {
        margin: 0 5px 30px;
    }
}

@media(min-width:767px) {
    .single-product .popup__footer {
        display: flex;
        align-items: center;
    }
}

.single-product .popup__footer span {
    display: inline-block;
    margin-right: 5px;
}

@media(max-width:767px) {
    .single-product .popup__footer span {
        display: block;
        margin: 0 0 5px;
    }
}



/* variations */
.single-product .variations {
    min-width: 400px;
}

.single-product .variations th,
.single-product .variations td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0px;
    border: none;
}

.single-product .variations th {
    font-weight: 700;
    font-size: 12px;
    line-height: 135%;
    color: #80918F;
    text-transform: uppercase;
    margin-bottom: 4px;
}


.single-product .variations td {
    margin-bottom: 16px;
    background: #fff;
}

.single-product .variations td .select {
    padding: 10px 30px 10px 10px;
}

.single-product .variations a.reset_variations {
    display: none !important;
}

/* hide variations price range  */
.single-product .variations_button .price {
    display: none;
}

/* Archive/shop sidebar */
body .filters {
    display: block;
    margin-bottom: 30px;
    gap: 0;
}

.filter-handler,
.filters__top-btn {
    cursor: pointer;
}


.filters__top-btn {
    margin-bottom: 15px;
}


body .filters .js-filters .filters-item__options {
    max-height: unset;
    overflow-y: hidden;
    border: none;
}


body .filters .js-filters .filters-item__options label.filters-item__option.not-active {
    pointer-events: none;
}

body .filters .js-filters .filters-item__options label.filters-item__option.not-active .custom-checkbox__box {
    border: 1px solid #B3BDBC;
}

body .filters .js-filters .filters-item__options label.filters-item__option.not-active .custom-checkbox__box svg {
    opacity: 0;
}

body .filters .js-filters .filters-item__options label.filters-item__option.not-active .custom-checkbox__label,
body .filters .js-filters .filters-item__options label.filters-item__option.not-active .custom-checkbox__label .filter-count {
    color: #B3BDBC;
}

body .filters .js-filters .filters-item__inner {
    padding-top: 8px;
    overflow-y: auto;
    max-height: 220px;
    /* border-top: 1px solid #B3BDBC; */
}


@media(max-width:1000px) {
    body .filters #js-filters-price .filters-item__inner {
        display: block !important;
    }
}



body .filters-item__inner::-webkit-scrollbar {
    width: 4px;
}

body .filters-item__inner::-webkit-scrollbar-track {
    background-color: #E6E9E9;
    border-radius: 15px;
}

body .filters-item__inner::-webkit-scrollbar-thumb {
    background-color: #4D6562;
    border-radius: 15px;
}



#filter-results-mobile {
    display: none;
    cursor: pointer;
    width: 100%;
}

#filter-results-mobile:hover {
    background: #fff;
    color: #FF3D00;
}

@media(max-width: 767px) {
    #filter-results-mobile {
        display: inline-block;
        height: 45px;
    }
}


.filters-collector {
    /* background: #05241f;
    padding: 15px; */
    position: relative;
    border-bottom: solid 1px #d2d8d7;
    padding-bottom: 16px;
}

@media(max-width: 767px) {
    .filters-collector {
        display: none !important;
        background: transparent;
        position: sticky;
        bottom: 93%;
        left: 0;
        z-index: 3;
        gap: 30px;
        width: 100%;
        padding: 0px;
    }
}

.filters-collector__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #09251f;
}


.filters-collector__results {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    align-content: stretch;
    gap: 15px;
    margin: 0px;
}

.filters-collector__results-item {
    position: relative;
    cursor: pointer;
    background: #09251f;
    color: #fff;
    font-size: 13px;
    padding: 7px 15px;
    display: inline-block;
    border: none;
    border-radius: 3px;
    margin: 0px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.filters-collector__results-item:hover {
    color: #fff;
    background: #f72314;
}

.filters-collector__results-item svg {
    position: absolute;
    right: -10px;
    top: -10px;
    bottom: 0;
    margin: 0;
    width: 20px;
    height: 20px;
    background: #f72314;
    padding: 4px;
    display: inline-block;
    border-radius: 40px;
}

.filters-collector__results-item svg path {
    fill: #fff;
}


.filters-collector .shop-sidebar-filters-apply,
.filters-collector .shop-sidebar-filters-reset {
    /* position: absolute;
    right: 15px;
    top: 15px; */
    background: #fff;
    border: 1px solid #009688;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 12px;
    line-height: 1.2;
    height: auto;
    flex: 0 1 auto;
    margin: 0px;
}


/* @media(max-width: 767px) {
    .filters-collector .shop-sidebar-filters-apply,
    .filters-collector .shop-sidebar-filters-reset {
        padding: 10px;
        flex: 1;
    }
} */



.filters-collector .shop-sidebar-filters-apply:hover {
    background: #009688;
    color: #fff;
}

.filters-collector .shop-sidebar-filters-reset {
    background: #fff;
    border: 1px solid #FF3D00;
    color: #FF3D00;
}

.filters-collector .shop-sidebar-filters-reset:hover {
    background: #FF3D00;
    color: #fff;
}




/* Clear filters */
.filters-clear {
    margin-bottom: 15px;
    border-color: #FF3D00;
    color: #FF3D00;
}

.filters-clear:hover {
    background: #E6E9E9;
}

.filters-clear svg path {
    fill: #FF3D00;
}

/* @media (min-width: 1000px) {
    .filters-clear {
        position: relative;
        z-index: 10;
    }
} */

/* .filters-clear span::before {
    cursor: pointer;
    content:'';
    position: absolute;
    top:0;
    left:0;

} */


/* Price widget */
/* .widget_price_filter {
    visibility: hidden;
    opacity: 0;
    min-height: 43px;
}

.filters .price_slider_wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.filters .price-filter button[type="submit"] {
    display: none;
}

.filters .price-filter__heading {
    -webkit-justify-content: center;
    justify-content: center;
} */


.filters .price-filter {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    align-content: stretch;
    flex-wrap: wrap;
    margin-top: 0px;
}

.filters .price-filter-input-wrapper {
    max-width: 50%;
    position: relative;
    width: calc(50% - 14px);
}

.filters .price-filter-input-label {
    display: none;
    color: #4D6562;
    font-size: 12px;
    line-height: 1.2;
}


.filters .price-filter-input-delimiter {
    line-height: 40px;
    margin: 0;
    width: 28px;
    text-align: center;
}

.filters .price-filter-input {
    -webkit-appearance: normal !important;
    background-clip: padding-box;
    border: 1px solid #E6E9E9;
    border-radius: 4px;
    color: #1d1e20;
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    text-align: left;
    width: 100%;
    padding: 8px 12px;
}

.filters .price-filter-input::-webkit-input-placeholder,
.filters .price-filter-input::-moz-placeholder,
.filters .price-filter-input:-ms-input-placeholder,
.filters .price-filter-input::-ms-input-placeholder,
.filters .price-filter-input::placeholder {
    color: #1d1e20;
    font-weight: 700;
    font-size: 16px;
    opacity: 1;
}

.price-filter-btn {
    margin: 15px 0 0;
    width: 100%;
    border-radius: 4px;
    background-color: #E6E9E9;
    color: #4D6562;
    font-size: 16px;
    font-weight: 700;
    line-height: 135%;
    text-align: center;
    transition: background-color 0.2s;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.price-filter-btn.active {
    background-color: #FF3D00;
    color: #fff;
}




#price-filter-notice-box {
    position: relative;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: 5px;
    margin: 10px 0 0;
    padding: 10px;
    line-height: 1.4;
    font-size: 14px;
}


.js-filters .accordion .filters-item {
    border-top: none;
}

/* .js-filters .accordion:last-of-type>.filters-item {
    border-bottom: 1px solid #B3BDBC;
} */


/* Attributes fitler */
.js-filters-attributes .accordion:first-of-type .filters-item,
.js-filters-stock-status .accordion:first-of-type .filters-item {
    border-top: none;
}

.color-filter-marker {
    border: solid 1px #ccc;
}


.custom-checkbox__label {
    margin-right: 5px;
}

.filter-count {
    color: #7a7a7a;
    display: inline-block;
}


.filters-item__action {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    align-content: stretch;
    gap: 8px;
    margin-top: 15px;
}

.filters-item__action-btn {
    flex: 1;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 4px;
    border: solid 1px #B3BDBC;
    font-size: 14px;
    font-weight: 700;
    color: #B3BDBC;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.filters-item__action-btn.filters-item__action-btn--reset:hover,
.filters-item__action-btn.filters-item__action-btn--reset.active {
    border-color: #FF3D00;
    color: #FF3D00;
}

.filters-item__action-btn.filters-item__action-btn--reset svg path {
    transition: all .2s ease-in-out;
}

.filters-item__action-btn.filters-item__action-btn--reset:hover>svg path,
.filters-item__action-btn.filters-item__action-btn--reset.active svg path {
    fill: #FF3D00;
}


.filters-item__action-btn.filters-item__action-btn--apply {
    background: #B3BDBC;
    color: #fff;
}

.filters-item__action-btn.filters-item__action-btn--apply span {
    margin: 0 auto;
}

.filters-item__action-btn.filters-item__action-btn--apply:hover,
.filters-item__action-btn.filters-item__action-btn--apply.active {
    border-color: #FF3D00;
    background: #FF3D00;
    color: #fff;
}


.filters-top-wrapper,
.filters-item__heading .filters-item__count,
.filters-item__heading .js-selected-items {
    display: none;
}

.filters-top__count,
.filters-item__count {
    display: none;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 14px;
    border-radius: 50%;
    background: #FF3D00;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.filters-top__count {
    margin-left: 8px;
}

.filters-item__count {
    margin-right: 10px;
}

.filters-top__count.active,
.filters-item__count.active {
    display: inline-block;
}


.filters-top-name,
.filters-item__label {
    width: 100%;
    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;
}


.filters-item__label {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mobile-filter-buttons {
    display: none;
}

@media(max-width: 1000px) {

    .filters {
        padding: 0px;
        top: 0;
        height: 100%;
        z-index: 20;
        overflow: hidden;
    }

    .filters.active {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-align-content: stretch;
        align-content: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    .filters-clear {
        display: none !important;
    }

    .filters-wrapper {
        overflow-y: auto;
        flex: 1;
        /* max-height: calc(100vh - 127px);
        min-height: -webkit-fill-available; */
    }




    .filters-item {
        border: none;
        border-bottom: solid 1px #E6E9E9;
    }

    /* .filters-wrapper .accordion:last-child .filters-item {
        border: none;

    } */


    .filters-top-name,
    .filters-item__label {
        width: auto;
    }

    .filters-item__count {
        margin-right: 20px;
    }

    body .filters .js-filters .filters-item__inner {
        padding-top: 0px;
        margin-top: 10px;
        max-height: 100%;
        overflow: hidden;
    }

    body .filters .js-filters .filters-item__options {
        padding-top: 0px;
        padding-right: 0px;
        overflow-y: auto;
        max-height: 100%;
    }

    body .filters-wrapper::-webkit-scrollbar,
    body .filters-item__options::-webkit-scrollbar {
        width: 4px;
    }

    body .filters-wrapper::-webkit-scrollbar-track,
    body .filters-item__options::-webkit-scrollbar-track {
        background-color: #E6E9E9;
        border-radius: 15px;
    }

    body .filters-wrapper::-webkit-scrollbar-thumb,
    body .filters-item__options::-webkit-scrollbar-thumb {
        background-color: #4D6562;
        border-radius: 15px;
    }


    .filters-item__option {
        background: #fff;
        border: none;
        border-bottom: solid 1px #e6e9e9;
        min-height: 0px;
        padding: 15px 0 15px 12px;
        margin: 0px;
    }


    .filters-item__option.active,
    .filters-item__option:hover {
        background: #f0f2f2;
    }

    .filters-item.is-active {
        border: none;
    }

    .filters-item__heading {
        display: block;
        position: relative;
    }

    .filters-item__heading.active {
        margin-bottom: 10px;
    }

    .filters-item__heading::after {
        position: absolute;
        top: 12px;
        bottom: 0;
        right: 0;
        /* margin: auto 0; */
        transform: rotate(-90deg);
    }

    body .filters #js-filters-price .filters-item__heading {
        cursor: default;
    }

    body .filters #js-filters-price .filters-item__heading::after {
        display: none;
    }

    .filters-item__heading.mobile-visible .filters-item__count {
        margin-right: 0px;
    }

    .filters-item__heading.mobile-visible::after {
        display: none;
    }

    .filters-item__heading.mobile-visible .filters-item__label {
        font-size: 17px;
    }

    .filters-item__heading .js-selected-items {
        display: block;
        max-width: 90%;
        font-size: 14px;
        font-weight: 500;
        line-height: 135%;
        color: #4D6562;
        padding: 0px;
        margin: 0px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        text-transform: none;
    }

    .filters-item__heading.mobile-visible .js-selected-items {
        display: none;
    }

    .filters-top-wrapper {
        display: block;
        background-color: #f0f2f2;
    }

    .filters-top {
        width: 100%;
        padding: 0 16px 0 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 15px;
        font-weight: 700;
        line-height: 135%;
        color: #01231F;
    }

    .filters-top-get-back {
        cursor: pointer;
        margin: 0px 18px 0px 0px;
        padding: 20px 18px;
        border-right: solid 1px #E6E9E9;
        display: flex;
        align-items: center;
    }

    .filters-top-name {
        font-weight: bold;
        text-transform: uppercase;
        color: #01231F;
        font-size: 16px;
    }

    .filters-top-reset {
        display: none;
        cursor: pointer;
        margin-left: auto;
        color: #FF3D00;
        font-weight: 700;
        font-size: 16px;

    }

    .filters-top-reset.active {
        display: inline-block;
    }


    .mobile-filter-buttons {
        display: flex;
        align-items: center;
        height: 66px;
        border-top: 1px solid #E6E9E9;
        background-color: #fff;
        margin-top: auto;
        /* position: fixed; */
        /* z-index: 99; */
        /* bottom: 0px; */
        /* left: 0; */
        width: 100%;
        padding: 10px;
        overflow: hidden;
    }

    .mobile-filter-buttons .save-filter {
        border-radius: 4px;
        background-color: #E6E9E9;
        color: #4D6562;
        font-size: 16px;
        font-weight: 700;
        line-height: 135%;
        text-align: center;
        transition: background-color 0.2s;
        width: 100%;
        height: 100%;
        border: 0;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
        pointer-events: none;
    }

    .mobile-filter-buttons .save-filter.active {
        background-color: #FF3D00;
        color: #fff;
        cursor: pointer;
        pointer-events: all;
    }


    .mobile-filter-buttons .apply-filter {
        border-radius: 4px;
        background-color: #E6E9E9;
        color: #4D6562;
        font-size: 16px;
        font-weight: 700;
        line-height: 135%;
        text-align: center;
        transition: background-color 0.2s;
        width: 100%;
        height: 100%;
        border: 0;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: default;
        pointer-events: none;
    }

    .mobile-filter-buttons .apply-filter.active {
        background-color: #FF3D00;
        color: #fff;
        cursor: pointer;
        pointer-events: all;
    }

    .mobile-filter-buttons .apply-filter.active:hover {
        background-color: #ca3000;
    }
}

/* Product category / Brand select2 */
.category-page-products__sort .select2 .selection .select2-selection {
    height: 38px;
}

.category-page-products__sort .select2 .selection .select2-selection__rendered {
    font-size: 14px;
    max-width: 100%;
    width: 195px;
    height: 38px;
    line-height: 36px;
    padding: 0px 30px 0px 20px;
    border-radius: 4px;
    overflow: hidden;
}


.product-sorting .select2-selection__placeholder {
    color: #01231F !important;
}


.category-page-products-top .product-sorting {
    height: 38px;
}

.category-page-products-top .product-sorting select {
    font-family: "Public Sans", sans-serif !important;
}

.product-sorting select,
.product-sorting select.select2-hidden-accessible {
    display: block;
    max-width: 100%;
    text-align: left;
    font-size: 14px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    color: #01231F;
    width: 195px !important;
    height: 38px !important;
    line-height: 36px !important;
    padding: 0px 30px 0px 20px !important;
    border: 1px solid #4D6562 !important;
    margin: 0px !important;
}



.category-page-products__result-info--top-mobile {
    display: none;
}


@media only screen and (max-width: 1000px) {
    .category-page-products-top {
        flex-wrap: wrap;
        border-top: 1px solid #B3BDBC;
        border-bottom: 1px solid #B3BDBC;
        background: #E6E9E9;
        gap: 16px;
        margin-bottom: 0px;
    }

    .category-page-products-top .category-page-products__result-info {
        order: 1;
        flex: 1 0 195px;
        max-width: 195px;
        margin-bottom: 10px;
        display: none;
    }

    .category-page-products-top .filter-handler {
        border: solid 1px #4D6562;
        border-radius: 4px;
        overflow: hidden;
    }

    .category-page-products-top .filter-handler {
        order: 2;
        flex: 0 1 auto;
        max-width: 195px;
        font-size: 14px;
    }

    .category-page-products-top .category-page-products__sort {
        order: 3;
        flex: 0 1 auto;
        max-width: unset;
        height: 40px;
    }

    .category-page-products__sort .select2 .selection .select2-selection {
        height: 40px;
    }

    .category-page-products__sort .select2 .selection .select2-selection__rendered {
        height: 40px;
        line-height: 38px;
    }


    .category-page-products-top .product-sorting {
        height: 40px;
    }

    .product-sorting select,
    .product-sorting select.select2-hidden-accessible {
        height: 40px !important;
        line-height: 38px !important;
    }


    .category-page-products__result-info--top-mobile {
        display: block;
        padding: 16px 0;
    }



}

@media (max-width: 455px) {

    .product-sorting select,
    .product-sorting select.select2-hidden-accessible {
        width: 155px !important;
        max-width: 155px !important;
        text-align: center;
    }

    .category-page-products-top .category-page-products__sort {
        flex: 0 0 auto;
    }

    .category-page-products-top .filter-handler {
        flex: 0 0 auto;
    }

    .category-page-products-top .category-page-products__sort .select2 .selection .select2-selection__rendered {
        width: unset;
        max-width: unset;
    }

    .category-page-products__sort .select2 .selection .select2-selection__rendered {
        text-align: center;
    }

}


@media (max-width: 375px) {
    .category-page-products-top {
        display: block;
    }


    .product-sorting select,
    .product-sorting select.select2-hidden-accessible {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: 0px 18px !important
    }

    .category-page-products-top .category-page-products__sort {
        width: 100% !important;
        max-width: 100% !important;
    }

    .category-page-products-top .filter-handler {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 10px;
    }

    .category-page-products-top .category-page-products__sort .select2 .selection .select2-selection__rendered {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0px;
    }

}



.swordis-sidebar-cats label.filters-item__option {
    margin: 0 0 10px;
}

.swordis-sidebar-cats label.filters-item__option a {
    color: #01231F;
    text-decoration: none;
}

.swordis-sidebar-cats label.filters-item__option a:hover {
    color: #000;
    text-decoration: underline;
}











.swordis-sidebar-cats div.subcat {
    margin: 0 0 0 10px;
}


.swordis-sidebar-cats .current-cat .children .children {
    display: none;
}

.swordis-sidebar-cats .cat-item {
    display: none;
}

.swordis-sidebar-cats .current-cat-ancestor {
    display: block;
}

.swordis-sidebar-cats .current-cat-ancestor>label {
    display: none;
}

.swordis-sidebar-cats .current-cat-parent.current-cat-ancestor {
    display: block;
}

.swordis-sidebar-cats .current-cat-parent.current-cat-ancestor>label {
    display: flex;
}


.swordis-sidebar-cats .current-cat {
    display: block;
}

.swordis-sidebar-cats .current-cat>label .custom-checkbox__box svg {
    opacity: 1;
}


.swordis-sidebar-cats .current-cat .cat-item {
    display: block;
}

/* Show all categories on shop page */
.woocommerce-shop .swordis-sidebar-cats .cat-item {
    display: block;
}

/* Cart Page */
.woocommerce-cart .woocommerce-notices-wrapper {
    max-width: 1310px;
    padding: 0 15px;
    margin: 20px auto 10px;
}

.woocommerce-cart .woocommerce-notices-wrapper ul {
    list-style-type: none;
    padding: 10px;
    margin: 0px;
    background: #e6e9e9;
}

.woocommerce-cart .woocommerce-notices-wrapper ul.woocommerce-error {
    background: #000;
    color: #fff;
}


.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message {
    padding: 10px;
    background: #e6e9e9;
}

@media (max-width: 767px) {
    .woocommerce-cart .cart-coupon__inner .cart-coupon__btn {
        text-transform: none;
        font-size: 16px;
        height: 45px;
    }

}

.woocommerce-cart .cart-coupon__inner #cart-coupon__status-wrap {
    border-bottom: solid 1px #B3BDBC;
    margin-bottom: 10px;
    padding-bottom: 10px;

}

.woocommerce-cart .cart-coupon__inner #cart-coupon__status-box {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, .25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: solid 2px #0D9A88;
    margin: 0px;
    padding: 0 10px;
    text-transform: uppercase;
    font-weight: 700;
    height: 44px;
    line-height: 44px;

}


.woocommerce-cart .cart-coupon__inner #cart-coupon__status {
    background: #e6e9e9;
    border-radius: 4px;
    box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    color: #0D9A88;
    font-weight: 700;
    font-size: 14px;
    height: 24px;
    line-height: 24px;
    margin-left: 10px;
    margin-top: -2px;
}

.woocommerce-cart .cart-coupon__inner .woocommerce-remove-coupon {
    display: inline-block;
    height: 24px;
    line-height: 24px;
}

.woocommerce-cart .cart-coupon__inner .woocommerce-remove-coupon:hover>svg path {
    fill: #FF3D00;
}


.cart-wrapp .cart-payment__row.shipping ul.woocommerce-shipping-methods {
    list-style-type: none;
    margin: 0 0 5px;
    padding: 0;
}

.cart-wrapp .cart-payment__row.shipping .cart-payment__value {
    text-align: right;
}

.cart-wrapp .cart-payment__row.shipping p {
    margin: 0;
    padding: 0;
}


.cart-wrapp .cart-payment__row.shipping .woocommerce-shipping-destination {
    display: none;
}

.cart-wrapp .cart-payment__row.cart-discount .cart-payment__value {
    color: #FF3D00;
    display: flex;
    align-items: center;
}

.cart-wrapp .cart-payment__row.cart-discount .cart-payment__value a.woocommerce-remove-coupon {
    display: none;
    text-transform: uppercase;
    font-size: 12px;
    color: #FF3D00;
    margin-left: 10px;
}

/*


/* Judge.me rating plugin */
/* #judgeme_product_reviews>.jdgm-rev-widg {
    padding: 0px;
}


@media (min-width: 767px) {
    .single-product .jdgm-rev-widg.jdgm-rev-widg {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 40px;
    }

    .single-product .jdgm-rev-widg__header {
        flex: 0 1 400px;
    }

    .single-product .swordis-reviews-box {
        flex: 0 1 840px;
    }
}

.single-product .jdgm-star {
    font-size: 13px;
}


body .jdgm-star.jdgm--on {
    color: #ff3d00;
}

body .jdgm-star.jdgm--off {
    color: #bac1bf;
}


.jdgm-prev-badge .jdgm-prev-badge__text span.average_rating {
    display: none;
}

.single-product .jdgm-prev-badge .jdgm-prev-badge__text span.average_rating {
    display: inline-block;
    font-weight: 700;

    color: #000;
}

/* Judge.me widget header */
/* .single-product .jdgm-rev-widg__header {
    margin-bottom: 40px;
}


.single-product .jdgm-rev-widg__header .jdgm-row-stars {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}


.single-product .jdgm-rev-widg__header .jdgm-row-stars .jdgm-rev-widg__summary {
    order: 1;
    margin: 0px;
}

.single-product .jdgm-rev-widg__header .jdgm-row-stars .jdgm-widget-actions-wrapper {
    order: 2;
}

.single-product .jdgm-rev-widg__header .jdgm-row-stars .jdgm-histogram {
    padding-top: 16px;
    margin: 16px 0 0 0;
    border-top: 1px solid #B3BDBC !important;
    order: 3;
}

@media(min-width: 992px) {
    .single-product .jdgm-rev-widg__header .jdgm-row-stars>div {
        display: block !important;
        width: 100% !important;
        border: none !important;
    }
}


.single-product .jdgm-rev-widg__header .jdgm-rev-widg__title {
    display: none;
}

.single-product .jdgm-rev-widg__header .jdgm-rev-widg__summary-inner {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.single-product .jdgm-rev-widg__header .jdgm-rev-widg__summary-inner .jdgm-rev-widg__summary-stars {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.single-product .jdgm-rev-widg__header .jdgm-rev-widg__summary-inner .jdgm-rev-widg__summary-average {
    font-size: 28px;
    font-weight: 700;
    margin-left: 4px;
}

.single-product .jdgm-rev-widg__header .jdgm-rev-widg__summary-inner .jdgm-rev-widg__summary-text {
    font-size: 14px;
}

.single-product .jdgm-rev-widg__header .jdgm-histogram__row:not(.jdgm-histogram__clear-filter) {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    height: 16px;
}

.single-product .jdgm-rev-widg__header .jdgm-histogram__row .jdgm-histogram__star {
    flex: 0 1 auto;
}

.single-product .jdgm-rev-widg__header .jdgm-histogram__row .jdgm-histogram__bar {
    flex: 1;
    border: 1px solid #B3BDBC;
}

.single-product .jdgm-rev-widg__header .jdgm-histogram__row .jdgm-histogram__frequency {
    flex: 0 1 auto;
    text-align: center;
}

.single-product .jdgm-rev-widg__header .jdgm-histogram__row .jdgm-histogram__frequency::before {
    content: '(';
    display: inline-block;
}

.single-product .jdgm-rev-widg__header .jdgm-histogram__row .jdgm-histogram__frequency::after {
    content: ')';
    display: inline-block;
}

.single-product .jdgm-rev-widg__header .jdgm-row-stars .jdgm-widget-actions-wrapper {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 16px;
    margin: 0px;
    padding: 0px;
}

.single-product .jdgm-rev-widg__header .jdgm-row-stars .jdgm-widget-actions-wrapper a {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 14px;
    background: #FF3D00;
    border: 2px solid #FF3D00;
    color: #fff;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0;
    line-height: 35px;
}

.single-product .jdgm-rev-widg__header .jdgm-row-stars .jdgm-widget-actions-wrapper a:hover {
    background: #fff;
    color: #FF3D00;
}  */

/* Judge.me sort dropdown */
/* .single-product .jdgm-row-actions {
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px;
    padding: 0px;
}

.single-product .jdgm-sort-dropdown-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.single-product .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown {
    margin: 0;
    border: 1px solid #4D6562;
    color: #000;
    border-radius: 2px;
    padding: 10px 30px 10px 20px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    white-space: nowrap;
    outline: none;
    font-size: 17px;
    width: 200px;
}

@media(max-width:767px) {
    .single-product .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown {
        font-size: 15px;
        width: 160px;
        padding: 10px;
    }

    .single-product .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown .select__item {
        padding: 10px;
    }
}


.single-product .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown .select__current {
    color: #000;
}

.single-product .jdgm-sort-dropdown-wrapper:hover .jdgm-sort-dropdown {
    opacity: 1;
}

.single-product .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown-arrow {
    display: none;
} */

/* Judge.me reviews */
/* .single-product .jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev {
    padding: 16px;
    border: 1px solid #B3BDBC;
    border-radius: 2px;
    background: #fff;
    margin-bottom: 20px;
}

.single-product .jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev .jdgm-rev__header .jdgm-row-rating {
    margin-bottom: 16px;
}

.single-product .jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev .jdgm-rev__header .jdgm-rev__timestamp {
    font-weight: 700;
    font-size: 12px;
    line-height: 135%;
    color: #4D6562;
}

.single-product .jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev .jdgm-rev__author {
    color: #000;
    font-weight: 700;
    font-size: 14px;
}

.single-product .jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev .jdgm-rev__icon {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 8px;
    background: #E6E9E9;
}

.single-product .jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev .jdgm-rev__icon:before {
    color: #05241f;
    font-size: 20px;
}


.single-product .jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev .jdgm-rev__body p {

    font-size: 14px;
} */

/* Judge.me write a review form*/
/* .single-product .jdgm-form {
    text-align: left;
    padding: 0px;
}
.single-product .jdgm-form .jdgm-rev-widg {
    padding: 0px;
}

.single-product .jdgm-form label {
    font-size: 15px;
}

.single-product .jdgm-form__reviewer-name-format-container {
    display: none;
}  */

/* Product archive pagination */

.pagination li span.pagination__link:not(.active) {
    cursor: pointer;
}

/* Custom Order - Cart Items Popup */

.custom-order-links {
    margin: 15px 0;
}

.custom-order-links a {
    display: block;
    margin-bottom: 10px;
    color: #FF3D00;
    font-weight: 500;
    font-size: 16px;
}

.custom-order-links a:last-child {
    margin-bottom: 0px;
}

.custom-order-links a a:hover {
    color: #ff8b66;
}


.custom-order-popup .tabs-list {
    margin: 0 0 15px;
}


.custom-order-popup .popup__title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 10px;
}

.custom-order-popup .classification-table {
    display: block;
    border: none;
    margin: 10px 0;
}

.custom-order-popup .classification-table__row {
    margin: 0 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #B3BDBC;
    padding-bottom: 16px;
}

.custom-order-popup .classification-item {
    border: none;
    padding: 0px;
    margin: 0px;
    align-content: stretch;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {

    /* .custom-order-popup .classification-item {
        flex:1;
    } */

    .custom-order-popup .classification-item__inner {
        width: 100%;
        padding: 0px 0px 10px;
    }
}


.custom-order-popup .classification-item__title {
    font-weight: 700;
    font-size: 15px;
}

.custom-order-popup .classification-item__title span {
    font-weight: 500;
}

.custom-order-popup .classification-item__caption {
    font-weight: 400;
    font-size: 15px;
    color: #4D6562;
}

@media only screen and (max-width: 767px) {
    .classification-item__caption {
        font-weight: 700;
        color: #000;
    }
}


.custom-order-popup .co-tabs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.custom-order-popup .co-tabs-list a {
    font-weight: 700;
    font-size: 12px;
    color: #80918F;
    text-decoration: none;
    padding: 0 15px;
    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;
    height: 36px;
    border: 1px solid #B3BDBC;
    border-radius: 2px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.custom-order-popup .co-tabs-list a.active {
    background: #0D9A88;
    border-color: #0D9A88;
    color: #fff;
}

@media only screen and (min-width: 1025px) {
    .custom-order-popup .co-tabs-list a:hover {
        border-color: #0D9A88;
    }
}