.flex-wrap {
    flex-wrap: wrap;
}

 .w-full {
     width: 100%;
 }

 .flex {
     display: flex;
 }

 .text-right {
     text-align: right;
 }

.product-wrapper {
    transition-delay: .2s;
    margin-bottom: 35px;
}

.overflow-hidden {
    overflow: hidden;
}

.bb-about-contact > .row {
    margin-left: 0;
    margin-right: 0;
}

.product-list-wrapper {
    position: relative;
}

.product-tile-view {
    flex-wrap: wrap;
    display: flex;
}

.product-wrapper .product-inner {
    background-color: #fff;
    border-radius: 20px;
    box-sizing: border-box;
    border: 1px solid #eeeeee;
}

.product-list-view .product-wrapper .product-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-wrapper .product-inner .product-image {
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;
    position: relative;
}

.product-wrapper .product-inner .product-image .highlight-ribbon {
    position: absolute;
    top: 30px;
    left: 0;
    height: 50px;
    z-index: 5;
}

.product-wrapper .product-inner .product-image .highlight-ribbon img {
    height: 100%;
}

.product-list-view .product-wrapper .product-inner .product-image {
    max-width: 250px;
    max-height: 250px;
    width: max-content;
    border-bottom: 0;
    border-right: 1px solid #eee;
}

.product-wrapper .product-inner .product-image .inner-image {
    overflow: hidden;
    display: block;
    position: relative;
    pointer-events: none;
}

.product-tile-view .product-inner .product-image .inner-image {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.product-tile-view .product-inner .product-image .inner-image img {
    margin: 0 auto;
}

.product-tile-view .product-wrapper .product-inner .inner-image .hover-img {
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
}

.product-list-view .product-inner .product-image .inner-image {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    height: 100%;
}

.product-list-view .product-inner .product-image .inner-image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    margin: 0 auto;
}

.product-wrapper .product-inner .inner-image img {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
    transition-property: all;
    max-height: 300px;
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.product-wrapper .product-inner:hover .inner-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.product-wrapper .product-inner:hover .inner-image img:not(:last-child) {
    opacity: 0;
}

.product-wrapper .product-inner .inner-image .hover-img {
    position: absolute;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0;
}

.product-wrapper .product-inner .inner-image .hover-img {
    opacity: 0;
}

.product-wrapper .product-inner:hover .inner-image .hover-img {
    opacity: 1;
}

.product-wrapper .product-inner .product-details {
    padding: 20px;
    position: relative;
}

.product-list-view .product-wrapper .product-inner .product-details {
    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;
    flex-grow: 1;
    min-width: 0;
}

.product-wrapper .product-inner .product-details .product-subtitle {
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 8px;
}

.product-wrapper .product-inner .product-details .product-text {
    display: none;
    color: #686e7d;
    letter-spacing: 0.03rem;
    font-weight: 400;
    line-height: 28px;
    font-size: 14px;
}

.product-list-view .product-wrapper .product-inner .product-details .product-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-wrapper .product-inner .product-details .product-subtitle a {
    color: #777777;
    letter-spacing: 0.03rem;
    line-height: 16px;
    font-size: 13px;
}

.product-wrapper .product-inner .product-details h4 {
    line-height: 18px;
    font-size: 16px;
    padding: 0;
    margin: 0 0 8px;
}

.product-wrapper .product-inner .product-details h4 a {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
    transition-property: all;
    color: #3d4750;
    letter-spacing: 0.03rem;
    line-height: 18px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    text-decoration: none;
}

.product-wrapper .product-inner .product-details h4 a:hover {
    color: var(--primary-color);
}

.product-wrapper .product-inner .product-details .product-price {
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
}

.product-wrapper .product-inner .product-details .product-price .inner-price {
    margin-left: -3px;
    margin-right: -3px;
}

.product-wrapper .product-inner .product-details .product-price .new-price {
    color: #686e7d;
    font-weight: 600;
    font-size: 16px;
    padding-left: 3px;
    padding-right: 3px;
}

.product-wrapper .product-inner .product-details .product-price .item-left,
.product-wrapper .product-inner .product-details .product-price .old-price {
    color: #686e7d;
    font-weight: 600;
    font-size: 14px;
    padding-left: 3px;
    padding-right: 3px;
}

.product-wrapper .product-inner .product-details .product-price .item-left {
    font-weight: 400;
    color: var(--primary-color);
}

.product-wrapper .product-inner .product-details .product-price .item-left.success {
    color: #008500;
}

.product-wrapper .product-inner .product-details .product-price .item-left.warning {
    color: #f60;
}

.product-wrapper .product-inner .product-details .product-price .item-left.danger {
    color: #666;
}

.product-wrapper .product-inner .product-details .product-price .last-items {
    font-size: 14px;
    color: #686e7d;
}

.line-through {
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
}

.absolute {
    position: absolute;
}

.product-wrapper .product-inner .product-details .add-to-chart {
    top: 7px;
    right: 7px;
}

.product-wrapper .product-inner .product-details .add-to-chart button {
    background-color: transparent;
    border: 1px solid #eeeeee;
    padding: 5px;
    margin: 0;
    width: 39px;
    height: 39px;
    border-radius: 5px;
    transition-duration: 0.3s;
    transition-property: all;
}

.product-wrapper .product-inner .product-details .add-to-chart button:hover {
    border: 1px solid var(--primary-color);
}

.product-wrapper .product-inner .product-details .add-to-chart svg {
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

.product-wrapper .product-inner .product-details .add-to-chart button:hover svg {
    fill: var(--primary-color);
}

.sort-bar {
    background-color: #f8f8fb;
    border: 1px solid #eeeeee;
    justify-content: space-between;
    display: flex;
    margin-bottom: 24px;
    border-radius: 20px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.pix-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.sort-display-mode-container,
.sort-order-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.sort-display-mode-container .sort-display-mode-button {
    background-color: transparent;
    padding: 5px;
    border-width: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 38px;
    height: 38px;
    -webkit-appearance: button;
    background-image: none;
    text-transform: none;
}

.sort-display-mode-container .sort-display-mode-button:not(:last-child) {
    margin-right: 5px;
}

.sort-display-mode-container .sort-display-mode-button.active {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 15px;
}

.sort-display-mode-container .sort-display-mode-button.active svg {
    fill: #fff;
}

.sort-order-container {
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    display: flex;
}

.sort-order-container .sort-order-inner {
    width: 130px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #777777;
    font-size: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    position: relative;
    margin-right: 30px;
}

.sort-order-container .sort-order-inner .custom-select {
    display: inline-block;
    text-align-last: right;
    text-align: right;
    position: relative;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: none !important;
    background-color: transparent;
}

.sort-order-container .sort-order-inner:after {
    content: url('/plugins/artisans/shop/assets/icons/chevron-down.svg');
    width: 0;
    height: 0;
    position: absolute;
    right: -5px;
    top: 0;
}

.product-pagination {
    justify-content: center !important;
    display: flex;
    margin-bottom: 24px;
}

/* Filter */
.product-filter-wrapper {
    background-color: #f8f8fb;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    position: sticky;
    top: 0;
    margin-bottom: 24px;
}

.product-filter-wrapper .product-filter-block {
    padding: 20px;
}

.product-filter-wrapper .product-filter-block:not(:last-child) {
    border-bottom: 1px solid #eeeeee;
}

.product-filter-wrapper .product-filter-block .product-filter-title {
    margin-bottom: 20px;
}

.product-group-wrapper .product-group-title {
    margin-bottom: 8px;
}

.product-filter-wrapper .product-filter-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-filter-wrapper .product-filter-content ul li {
    display: block;
    position: relative;
}

.product-filter-wrapper .product-filter-content ul li:not(:last-child) {
    margin-bottom: 14px;
}

.product-filter-wrapper .product-filter-content .filter-checkbox-wrapper {
    position: relative;
}

.checkbox-container {
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 22px;
}

.checkbox-container,
.color-container,
.balloon-container {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.balloon-container {
    text-decoration: none !important;
}

.checkbox-container input,
.color-container input,
.tag-container input,
.balloon-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.balloon-container.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.balloon-container.disabled .inner-balloon {
    background-color: #E5E5E5;
    color: #ABABAB !important;
    border-color: #e6e6e8 !important;
}

.product-pagination .ml-8 {
    margin-left: 8px!important;
}

.product-pagination .mr-8 {
    margin-right: 8px !important;
}

.checkbox-container .checkmark {
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 5px;
    outline: 0;
    width: 18px;
    height: 18px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 16px;
    text-align: center;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkbox-container .checkmark:after,
.color-container .inner-color:after {
    content: "";
    position: absolute;
    display: none;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
}
.color-container .inner-color:after {
    left: 8px;
    top: 5px;
}

.checkbox-container input:checked ~ .checkmark:after,
.color-container input:checked ~ .inner-color:after {
    display: block;
}

.price-range-slider {
    width: 100%;
    position: relative;
    margin-bottom: 7px;
}

.price-range-slider .range-value {
    margin: 0;
    padding: 0;
}

.price-range-slider .range-value input {
    outline: 0;
    color: #000000;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.price-range-slider .range-bar {
    border: none;
    background: #000;
    height: 3px;
    width: 96%;
    margin-left: 8px;
    border-radius: 3px;
    color: #333333;
    position: relative;
}

.price-range-slider .range-bar .ui-slider-handle {
    border-radius: 25px;
    background: #ffffff;
    top: -7px;
    border: 2px solid var(--primary-color);
    height: 17px;
    width: 17px;
    cursor: pointer;
    margin-left: -.6em;
    -ms-touch-action: none;
    touch-action: none;
    position: absolute;
    z-index: 2;
}

.price-range-slider .range-bar .ui-slider-handle + span {
    background: #ffffff;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
}

.price-range-slider .ui-slider-handle + span,
.price-range-slider .range-bar .ui-slider-range,
.price-range-slider .ui-slider-range {
    background: var(--primary-color);
}

.color-picker,
.balloon-picker {
    list-style: none;
    margin: 0;
    padding: 0;
}

.color-picker li,
.balloon-picker li {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
    transition-property: all;
    display: inline-block !important;
    margin: 0 5px 0 0 !important;
}

.color-picker li {
    padding: 2px;
    border-radius: 20px;
    cursor: pointer;
    width: 26px;
    height: 26px;
}

.balloon-picker li {
    border-radius: 5px;
}

.color-picker li .color-wrapper,
.balloon-picker li .balloon-wrapper {
    position: relative;
}

.color-picker li .color-wrapper .inner-color {
    border-radius: 20px;
    width: 22px;
    height: 22px;
    display: block;
}

.balloon-picker li .balloon-wrapper .inner-balloon {
    border-radius: 5px;
    padding: 0 15px;
    min-height: 40px;
    display: block;
    border: 1px solid #e6e6e8;
    line-height: 36px;
    color: #03031a;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: border-color ease-out .25s, border-color ease-out .25s;
}

.balloon-picker li .balloon-wrapper .inner-balloon:hover {
    border-color: #898989;
}

.balloon-container input:checked ~ .inner-balloon {
    border-color: var(--primary-color);
    font-weight: 600;
}

.product-tags ul {
    flex-wrap: wrap;
    display: flex;
    margin: -5px !important;
    list-style: none;
    padding: 0;
}

.product-tags ul li {
    margin: 5px;
}

.product-tags ul li .tag-content {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
    transition-property: all;
    padding: 2px 15px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    cursor: pointer;
    margin: 0;
    line-height: unset;
    font-size: unset;
    display: inline-block;
}

.product-tags ul li .tag-content span {
    color: #686e7d;
    letter-spacing: 0.03rem;
    line-height: 28px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 13px;
    display: block;
}

.product-tags ul li .tag-container:hover .tag-content span,
.tag-container input:checked ~ .tag-content span {
    color: #ffffff;
}

.tag-container input:checked ~ .tag-content,
.product-tags ul li .tag-content:hover {
    background-color: var(--primary-color);
}

.product-wrapper {
    width: 100%;
}

.product-wrapper.single-product .product-details {
    margin-bottom: 24px;
}

.product-details .product-group-wrapper {
    margin-bottom: 15px;
}

.product-image-wrapper {
    position: relative;
}

.product-wrapper .product-details .product-image-wrapper,
.product-wrapper .product-details .product-content-wrapper {
    margin-bottom: 24px;
}

.product-wrapper .product-details .product-image-wrapper,
.product-wrapper .product-details .product-content-wrapper,
.product-wrapper .product-tabs {
    padding-left: 12px;
    padding-right: 12px;
}

.product-wrapper .product-details .product-image-wrapper .product-image-body {
    padding: 15px;
    border: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    border-radius: 24px;
}


.product-wrapper .product-details .product-image-wrapper .product-image-body .single-slide {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.single-slide img {
    max-width: 100%;
    height: auto;
}

.single-pro-slider .single-nav-thumb .slick-arrow.slick-prev {
    left: 0;
    right: auto;
}

.single-pro-slider .single-nav-thumb .slick-arrow {
    position: absolute;
    top: 55%;
    left: auto;
    right: auto;
    margin: 0 auto;
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-pro-slider .single-nav-thumb button {
    background: transparent;
    outline: 0;
    border: 0;
}

.single-pro-slider .single-nav-thumb .slick-list {
    margin: 0 -8px;
}

.single-pro-slider .single-nav-thumb .single-slide {
    display: block !important;
    padding-left: 10px;
    padding-right: 10px;
}
.single-pro-slider .single-nav-thumb .slick-slide img {
    border: 1px solid transparent;
    border-radius: 15px;
}

.single-pro-slider .single-nav-thumb .slick-slide:hover img {
    border-color: var(--primary-color);
}

.single-pro-slider .single-nav-thumb .slick-slide.slick-current.slick-active img {
    border-color: var(--primary-color);
}

.mh .single-product-cover .slick-slide,
.mh .single-product-cover .slick-slide .single-slide {
    height: 468px !important;
}

.single-product-cover .slick-slide .single-slide img.img-responsive {
    max-height: 100%;
    margin: 0 auto;
}

.product-images-thumbs {
    margin-top: 10px;
}

.product-images-thumbs .single-slide img {
    cursor: pointer;
    border-radius: 15px;
    max-height: 100px;
    margin: 0 auto;
}
.single-slide img {
    transition: none !important;
}

.single-pro-slider .single-nav-thumb .slick-arrow:before {
    color: #686e7d;
    position: relative;
    font-size: 42px;
    width: 13px;
    line-height: 30px;
    height: 30px;
}

.single-pro-slider .single-nav-thumb .slick-arrow.slick-prev {
    left: 0;
    right: auto;
}

.single-pro-slider .single-nav-thumb .slick-arrow.slick-next {
    right: 0;
    left: auto;
}

.single-pro-slider .single-nav-thumb .slick-arrow.slick-prev:before {
    content: url(../icons/chevron-left.svg);
}

.single-pro-slider .single-nav-thumb .slick-arrow.slick-next:before {
    content: url(../icons/chevron-right.svg);
}

.product-title-container {
    margin-bottom: 20px;
}

.product-title-container .product-title {
    color: #3d4750;
    line-height: 1.2;
    letter-spacing: unset;
    font-weight: 600;
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.single-product-price-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: space-between;
    display: flex;
}

.product-filter-content .select-picker {
    padding: 0 40px 0 15px;
    min-height: 40px;
    max-width: 100%;
    -webkit-appearance: none !important;
    appearance: none;
    -moz-appearance: none !important;
    border-radius: 5px;
    background-color: unset;
    height: 45px;
    width: max-content;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
    background-position: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    border: 1px solid #e6e6e8;
}

.product-filter-content .select-picker:hover {
    border-color: #898989;
}

.product-filter-content .select-picker:focus {
    border-color: var(--primary-color);
    outline: none;
}

.product-description,
.product-details-content p,
.product-details-content li {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 26px;
}

.product-details-content p,
.product-details-content ul,
.product-details-content ol {
    padding-bottom: 20px;
}

.product-details-content ul,
.product-details-content ol {
    list-style: unset;
    margin-left: 15px;
}
.product-details-content table {
    max-width: 100%;
}

.product-details-content table tr td {
    padding: 5px;
    font-size: 15px;
    line-height: 26px;
}
.product-details-content table tr td:first-child {
    padding-left: 0px;
}

.product-details-content h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    margin-bottom: 5px;
    margin-top: 0px;
    color: #333;
    text-transform: none;
}

.product-details-content h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    margin-bottom: 5px;
    margin-top: 0px;
    color: #333;
    text-transform: none;
}

.product-details-content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    margin-bottom: 5px;
    margin-top: 0px;
    color: #333;
}

.single-product-price-wrapper .single-product-price-inner {
    padding-top: 15px;
    padding-bottom: 15px;
}

.single-product-price-wrapper .single-product-price-inner .single-price .discount-price {
    color: #666;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    font-family: AvenirBlack, Arial, Helvetica, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1;
}

.single-product-price-wrapper .single-product-price-inner .single-price .discount-price:before {
    border-top: 2px solid;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: rotate(-10deg);
}

.single-product-price-wrapper .single-product-price-inner .single-price .single-product-price {
    display: inline-block;
    font-family: AvenirBlack, Arial, Helvetica, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #000;
}

.single-product-vat-line {
    color: #757575;
    font-size: 15px;
    margin: 0;
}

.single-product-stock-line {
    color: #757575;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.single-product-stock-line.success {
    color: #008500;
}

.single-product-stock-line.warning {
    color: #f60;
}

.single-product-stock-line.danger {
    color: #666;
}

.add-to-cart {
    display: flex;
    margin-top: 5px;
}

.add-to-cart-quantity {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    padding-right: 18px;
    position: relative;
}

.add-to-cart-quantity input {
    width: 100%;
    height: 51px;
    border-radius: 5px;
    padding: 0 10px;
    border: 1px solid #e6e6e8;
    margin: 0;
    box-shadow: none;
    outline: none;
    position: relative;
}

.add-to-cart-quantity input:focus,
.add-to-cart-quantity input:active,
.add-to-cart-quantity input:hover {
    border-color: var(--primary-color);
}

.add-to-cart-quantity input:hover {
    background-color: #f7f7f7;
}

.add-to-cart-quantity input:focus ~ .add-to-cart-focus {
    width: 4px;
    background-color: var(--primary-color);
}

.add-to-cart-quantity .add-to-cart-focus {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width 0.15s ease-in-out;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: transparent 0 0 1px;
}

.add-to-cart-btn {
    width: 100%;
    border-radius: 5px;
    outline: none;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    font-weight: 500;
    line-height: 16px;
    min-width: 150px;
    padding: 12px 16px;
    text-align: center;
    border: none;
    transition: background 0.1s linear, box-shadow 0.1s linear;
    overflow: hidden;
    box-shadow: 0 4px 0 -2px rgba(3, 3, 26, .25);
    filter: brightness(1);
}

.add-to-cart-btn:hover {
    filter: brightness(1.1);
}

.add-to-cart-btn span {
    color: inherit;
}

.add-to-cart-btn .add-to-cart-inner {
    align-items: center;
    display: inline-flex;
}

.add-to-cart-btn .add-to-cart-inner .add-to-cart-icon {
    overflow: hidden;
    display: inline-block;
    height: 24px;
    width: auto;
}

.add-to-cart-btn .add-to-cart-inner .add-to-cart-icon svg{
    flex-shrink: 0;
    margin-right: 8px;
}

.discount-wrapper {
    margin-top: 35px;
}
.discounts {
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    border: 1px solid #e6e6e8;
    padding: 8px 15px;
    max-width: 400px;
}

.discounts .discount-cell {
    flex-grow: 1;
    width: 33%;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.discounts .discount-cell-header {
    font-weight: 600;
}

.discount-wrapper h4,
.video-inner h4 {
    margin-bottom: 10px;
}

.product-tabs .product-tabs-header {
    margin-bottom: 24px;
}

.product-tabs .product-tabs-header ul.product-tabs-nav {
    flex-wrap: wrap;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 0 -20px;
}

.product-tabs .product-tabs-header ul.product-tabs-nav .nav-item {
    position: relative;
    line-height: 28px;
}

.product-tabs .product-tabs-header ul.product-tabs-nav .nav-item:not(:last-child):after {
    content: "/";
    position: absolute;
    right: -4px;
    top: 0;
    font-size: 12px;
    color: #686e7d;
}

.product-tabs .product-tabs-header ul.product-tabs-nav .nav-item a {
    letter-spacing: 0.03rem;
    line-height: 28px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    text-decoration: none;
}

.product-tabs .product-tab-content .tab-pane-inner {
    padding: 15px;
    border: 1px solid #eeeeee;
    border-radius: 20px;
}

.product-tabs .product-tab-content .tab-pane-inner iframe,
.product-tabs .product-tab-content .tab-pane-inner video {
    max-width: 100% !important;
}

.product-tabs .product-tab-content .tab-pane-inner .video-inner {
    width: 100%;
}

.product-tabs .product-tab-content .tab-pane-inner .video-inner:not(:last-child) {
    margin-bottom: 20px;
}

.product-specifications ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-specifications ul li {
    color: #686e7d;
    line-height: 28px;
    font-weight: 400;
    font-size: 15px;
    padding: 5px 0;
}

.product-specifications ul li:first-child {
    padding-top: 0;
}

.product-specifications ul li:last-child {
    padding-bottom: 0;
}

.product-specifications ul li span {
    display: inline-flex;
    min-width: 150px;
    font-weight: 600;
}

ul#artisanTab li.active a {
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .category-item-wrapper .category-item-text p {
        font-size: 18px !important;
    }
    .zoomImg {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .single-product-cover.product-images::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 1;
    }

    .product-list-view .product-wrapper .product-inner .product-image {
        max-width: 100px;
        min-width: 100px;
    }
}
@media (min-width: 992px) {
    .product-wrapper .product-details .product-image-wrapper {
        width: 41.66%;
    }
}

@media (min-width: 992px) {
    .product-wrapper .product-details .product-content-wrapper {
        width: 58.33%;
    }
}

.category-item-wrapper {
    background-color: transparent;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.category-item-wrapper:hover img {
    transform: scale(1.1);
}

.category-item-wrapper .category-item-image {
    flex-wrap: nowrap;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
}

.category-item-wrapper .category-item-image .image-overlay {
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
}

.category-item-wrapper .category-item-image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
    height: auto;
    border-style: none;
    z-index: 1;
    transition: all .3s ease;
    max-width: unset;
    margin-bottom: unset;
}

.brand-item-wrapper .brand-item-image img {
    object-fit: contain;
    padding: 10px;
}

.category-item-wrapper .category-item-text {
    padding: 16px 0 0 0;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    display: flex;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    width: calc(100% - 40px);
}

.category-item-wrapper .category-item-text p {
    font-family: 'Baloo Thambi', sans-serif;
    color: #ffffff;
    letter-spacing: 0.03rem;
    line-height: 1.2;
    font-weight: 600;
    font-size: 24px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    text-shadow: 0 1px 0 black;
}

.category-list-item a {
    background-color: transparent;
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
    transition-property: all;
}

.category-list-item.no-img .category-item-wrapper .category-item-text {
    position: relative;
    right: unset;
    bottom: unset;
    width: 100%;
    padding: 0;
}

.category-list-item.no-img .category-item-wrapper .category-item-text p {
    color: #000;
    text-shadow: none;
}

.social-share-wrapper {
    margin-top: 15px;
}

.close-filter,
.open-filter {
    display: none;
}

@media (max-width: 767px) {
    .open-filter {
        padding: 5px;
        margin-right: 5px;
        cursor: pointer;
        display: block;
    }
    .close-filter {
        float: right;
        margin-right: 10px;
        margin-top: 10px;
        display: block;
        cursor: pointer;
    }
    .close-filter svg {
        width: 30px;
        height: 30px;
    }
    .close-filter:hover svg path {
        fill: var(--primary-color);
    }
    .product-filter-wrapper {
        position: fixed;
        display: none;
        z-index: 100;
        top: 0;
        border-radius: 0;
        left: 0;
        height: 100%;
        overflow: scroll;
        width: 350px;
        max-width: 100%;
    }

    .product-filter-wrapper-background {
        background-color: rgba(1, 1, 1, 0.3);
        display: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: fixed;
        z-index: 99;
    }
}

@media (min-width: 350px) and (max-width: 768px) {
    .break-supply {
        display: none;
    }
}

@media (min-width: 768px) {
    .product-filter-wrapper-background,
    .product-filter-wrapper {
        display: block !important;
    }
}
