/*-- Catalog Page --*/

body .header_site {
    z-index: 99999;
}

.catalog_sect {
    padding: 21px 0 10px 0;
    position: relative;
}

.h2_wrapp.gradient_h2 h2 {
    background: #4caf50;
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -moz-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

body .woocommerce ul.products li.product .onsale, body.woocommerce ul.products li.product .onsale {
    display: none;
}

.filters_inlines {
    display: flex;
    display: -webkit-flex;
}

.filters_inlines > div:nth-child(1) {
    width: calc(100% - 797px);
    padding: 20px 10px 10px 0;
}

.filters_inlines > div:nth-child(2) {
    width: 797px;
    padding: 10px 0 10px 10px;
}

.search_box_wrapp {
    padding: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
}

.search_box {
    display: flex;
    display: -webkit-flex;
    background-color: #212333;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}


.search_input {
    display: block;
    width: 100%;
    height: 48px;
    border: none;
    background-color: #212333;
    padding: 0 10px;
    font-weight: normal;
    font-size: 14px;
    line-height: 47px;
    text-transform: uppercase;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.search_input::placeholder {
    color: #FFF;
}

.search_btn {
    width: 60px;
    height: 48px;
    cursor: pointer;
    border: none;
    background-color: #212333;
    background-size: auto;
    background-repeat: no-repeat;
    background-image: var(--wpr-bg-31e2545a-63ce-480b-b8c7-97efcf7645e8);
    background-position: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.inlines {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    min-width: 100%;
    width: auto;
    margin: 0 -10px;
}

.inlines > div {
    width: 20%;
    padding: 10px;
}

.dr {
    position: relative;
}

.dr.active {
    z-index: 7;
}

.dropdown_title {
    padding: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
}

.dr_title {
    cursor: pointer;
}

.dropdown_title .inner {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    width: 100%;
    height: 48px;
    position: relative;
    border: none;
    background-color: #212333;
    padding: 0 14px;
    font-weight: normal;
    font-size: 14px;
    line-height: 47px;
    text-transform: uppercase;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.dropdown_title .inner:after {
    display: block;
    width: 14px;
    height: 10px;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-image: var(--wpr-bg-37dc89d6-602c-4ddb-b986-1e4fc6a938f6);
    position: absolute;
    top: 19px;
    right: 13px;
    z-index: 2;
}

.dr.active .dr_title .inner:after {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.dropdown_title p {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #FFF;
}

.dropdown_content {
    min-width: 223px;
    padding: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
}

.dropdown_content .inner {
    background-color: #000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 5px 0;
}

.dr .dr_content {
    position: absolute;
    top: calc(100% + 10px);
    left: -200vw;
    z-index: 2;
    opacity: 0;
    -webkit-transition-property: top, opacity;
    -webkit-transition-duration: .3s;
    -webkit-transition-timing-function: ease;

    -moz-transition-property: top, opacity;
    -moz-transition-duration: .3s;
    -moz-transition-timing-function: ease;

    -ms-transition-property: top, opacity;
    -ms-transition-duration: .3s;
    -ms-transition-timing-function: ease;

    -o-transition-property: top, opacity;
    -o-transition-duration: .3s;
    -o-transition-timing-function: ease;

    transition-property: top, opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.dr.active .dr_content {
    top: calc(100% + 22px);
    left: 0;
    opacity: 1;
}

.dr.active.right .dr_content {
    left: auto;
    right: 0;
}

.dropdown_content ul li {
    display: block;
    position: relative;
    cursor: pointer;
    padding: 10px 20px 10px 20px;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    color: #FFF;
    -webkit-transition-property: background;
    -webkit-transition-duration: .3s;
    -webkit-transition-timing-function: ease;

    -moz-transition-property: background;
    -moz-transition-duration: .3s;
    -moz-transition-timing-function: ease;

    -ms-transition-property: background;
    -ms-transition-duration: .3s;
    -ms-transition-timing-function: ease;

    -o-transition-property: background;
    -o-transition-duration: .3s;
    -o-transition-timing-function: ease;

    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.dropdown_content ul li.active:before {
    display: block;
    content: "";
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    z-index: 2;
    background: linear-gradient(-90deg, #8bc34a 0%, #4caf50 100%);
    background: -webkit- linear-gradient(-90deg, #8bc34a 0%, #4caf50 100%);
}

.dropdown_content ul li:hover {
    background-color: #4caf50;
}

.dropdown_content ul li.active,
.dropdown_content ul li.active:hover {
    background: #4caf50;
}

.dropdown_content ul li span {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}

.catalog_sect .filter_sidebar {
    position: absolute;
    top: 34px;
    left: calc(100% + 40px);
}

.filters_info {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.filters_info > .left_col {
    width: 70%;
    padding: 10px 10px 10px 0;
}

.filters_info > .right_col {
    width: 30%;
    padding: 10px 0 10px 10px;
}

.good_type {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin: 0 -20px;
}

.good_type > div {
    padding: 0 20px;
}

.good_type h4 {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #777;
}

.good_type p {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    align-items: center;
    color: #FFF;
}

.inline_links {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin: 0 -7px;
}

.inline_links > div {
    padding: 0 7px;
}

.gradient_link {
    background: #4caf50;
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -moz-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
}

.sort_dr_title {
    display: flex;
    display: -webkit-flex;
}

.sort_dr_title p {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #FFF;
}

.sort_dr_title svg {
    margin-left: 4px;
    position: relative;
    top: 5px;
}

.sort__dr_content {
    min-width: 116px;
    padding: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: linear-gradient(
            -90deg, #FFCB12 0%, #FF8726 100%);
    background: -webkit-linear-gradient(
            -90deg, #FFCB12 0%, #FF8726 100%);
    top: calc(100% + 12px);
    left: auto;
    right: 200vw;
}

.sort_dr.active .sort__dr_content {
    top: calc(100% + 12px);
    right: 0;
}

.dr.active .dr_content {
    top: calc(100% + 12px);
}

.sort__dr_content .inner {
    background-color: #000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 5px 0;
}

.sort_link {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    padding: 5px 10px 5px 15px;
    position: relative;
    -webkit-transition-property: background;
    -webkit-transition-duration: .3s;
    -webkit-transition-timing-function: ease;

    -moz-transition-property: background;
    -moz-transition-duration: .3s;
    -moz-transition-timing-function: ease;

    -ms-transition-property: background;
    -ms-transition-duration: .3s;
    -ms-transition-timing-function: ease;

    -o-transition-property: background;
    -o-transition-duration: .3s;
    -o-transition-timing-function: ease;

    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.sort_link.active:before {
    display: block;
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    z-index: 2;
    background: linear-gradient(-90deg, #8bc34a 0%, #4caf50 100%);
    background: -webkit- linear-gradient(-90deg, #8bc34a 0%, #4caf50 100%);
}

.sort_link:hover {
    background-color: #4caf50;
}

.sort_link.active,
.sort_link.active:hover {
    background: #4caf50;
}

.sort_link span {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #FFF;
}

.sort_link svg {
    margin-left: 5px;
    position: relative;
    top: 4px;
}

.catalog_thumbs {
    margin: 43px -7px;
}

.woocommerce ul.products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4%;

}

body .woocommerce ul.products::before, body .woocommerce ul.products::after {
    content: " ";
    display: none;
}

body .woocommerce ul.products.columns-4 li.product {
    margin-bottom: 20px;
}

body .woocommerce ul.products.columns-6 li.product, body .woocommerce ul.products li.product, body.woocommerce ul.products li.product {
    position: relative;
    padding: 10px;
    float: none;
    padding: 0;
    width: 205px;
    margin: 0;
    height: 270px;
}

body .woocommerce ul.products.columns-4 li.product, body.woocommerce ul.products.columns-4 li.product {
    width: 225px;
}

.woocommerce ul.products.columns-6 li.product:not(:last-child) {
    margin-right: 5px;
}

.woocommerce ul.products.columns-6 li.product:after, body .woocommerce ul.products li.product:after, body.woocommerce ul.products li.product:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.7);
}

.woocommerce ul.products li.product a {
    text-decoration: none;
}

body .woocommerce ul.products li.product a img, body.woocommerce ul.products li.product a img {
    position: absolute;
    height: 100%;
}

body .woocommerce ul.products li.product .price, body.woocommerce ul.products li.product .price {
    position: relative;
    z-index: 9;
    padding: 0 5px;
}

.wrapbtn_prod > .wpb_wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.product-type-simple .wrp-button {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: 5px;
    z-index: 9;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 7px;
}
.product-type-simple .wrp-button>.buyvicrdcart{flex: 0 1 80%}
li.product span.list {
    position: relative;
    color: #fff;
    display: block;
    z-index: 9;
    font-size: 15px;
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.vc_gitem-col .list:before, li.product span.list:before {
    content: ' ';
    color: gold;
    margin-right: 10px;
    font-size: 20px;
    line-height: 20px;
    width: 16px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='check' class='svg-inline--fa fa-check fa-w-16' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23FFD700FF' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");
}

del .amount bdi {
    color: grey;
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: grey;
}

body .woocommerce ul.products li.product .woocommerce-loop-product__title, body.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: .5em 0 0 5px;
    margin: 0;
    font-size: 1em;
    z-index: 9999;
    position: relative;
}

body .woocommerce ul.products li.product .price ins, body.woocommerce ul.products li.product .price ins {
    position: relative;
}

body .wrapbtn_prod .wpb_wrapper > a,
body .woocommerce a.button, body.woocommerce a.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: 0;
    font-weight: 700;
    border-radius: 3px;
    left: auto;
    border: 1px solid #00ab00;
    color: #00ab00;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    height: 40px;
    line-height: 38px;
    overflow: hidden;
    width: 47%;
}

.wrapbtn_prod a:last-child,
body .wrp-button a:last-child {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
}

body .wrp-button a:last-child:before {
    content: '';
    display: none;
}


.catalog_thumb {
    height: 230px;
    position: relative;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.catalog_thumbs .catalog_thumb {
    width: calc(20% - 14px);
    margin: 7px;
}

.catalog_thumb img {
    display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.catalog_thumb_mask {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(11, 20, 36, 0.9) 0%);
    background: -webkit-linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(11, 20, 36, 0.9) 0%);
    border: 1px solid #ff9f1f;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    text-align: center;
    opacity: 0;
    -webkit-transition-property: opacity;
    -webkit-transition-duration: .3s;
    -webkit-transition-timing-function: ease;

    -moz-transition-property: opacity;
    -moz-transition-duration: .3s;
    -moz-transition-timing-function: ease;

    -ms-transition-property: opacity;
    -ms-transition-duration: .3s;
    -ms-transition-timing-function: ease;

    -o-transition-property: opacity;
    -o-transition-duration: .3s;
    -o-transition-timing-function: ease;

    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.catalog_thumb:hover .catalog_thumb_mask {
    opacity: 1;
}

.catalog_thumb_mask h3 {
    font-weight: bold;
    font-size: 19px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFF;
}

.catalog_thumb_mask p {
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #4caf50;
}

.catalog_thumb_mask p span {
    color: #FF8726;
}

.orange_pill_4 {
    min-width: 143px;
    padding: 8px 10px 8px 10px;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 13px;
}

.catalog_thumb_mask .orange_pill_4 {
    margin-top: 16px;
}

.catalog_thumb_footer {
    width: 100%;
    padding: 10px 10px 10px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.catalog_thumb_footer h3 {
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #FFF;
}

.catalog_thumb_footer p {
    font-weight: normal;
    font-size: 11px;
    line-height: 13px;
    text-transform: uppercase;
    color: #4caf50;
}

.catalog_thumb_footer p span {
    color: #FF8726;
}

.article_2 {
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    position: relative;
    padding: 26px 0 55px 0;
}

.article_2:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
}

.article_2 > .row {
    position: relative;
    z-index: 2;
}

.article_2 .inner {
    padding: 0 3%;
}

.article_2 .h2_wrapp {
    max-width: 650px;
    margin: 0 auto;
    padding: 25px 0;
}

.article_2 p {
    padding: 10px 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFF;
}

.info_thumbs {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin: 0 -8px 29px -8px;
}

.info_thumb {
    display: flex;
    display: -webkit-flex;
    width: calc(50% - 16px);
    margin: 8px;
    padding: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
}

.info_thumb .inner {
    padding: 31px 25px 34px 25px;
    background-color: #212333;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

.info_thumb .inner > div {
    position: relative;
    z-index: 2;
}

.info_thumb .inner:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.info_thumb_title {
    min-height: 96px;
    padding: 20px 0;
    text-align: center;
}

.info_thumb h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #FFF;
}

.info_thumb p {
    padding: 10px 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFF;
}

.info_thumb ul {
    padding: 14px 0;
}

.info_thumb ul li {
    font-weight: normal;
    font-size: 24px;
    line-height: 155%;
    text-transform: uppercase;
    color: #ffa11e;
}

.info_thumb ol li {
    padding: 10px 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFF;
}

.info_thumb ol li span {
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ffa11e;
}

.filter_sidebar {
    width: 223px;
}

.dropdown_title_2 {
    position: relative;
    padding: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
}

.dropdown_title_2 .inner {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    width: 100%;
    height: 48px;
    position: relative;
    border: none;
    background-color: #212333;
    padding: 0 14px;
    font-weight: normal;
    font-size: 14px;
    line-height: 47px;
    text-transform: uppercase;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.dropdown_title_2 input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.dropdown_title_2 p {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFF;
}

.dropdown_content_2 {
    width: 100%;
    top: 100%;
}

.dr.active .dr_content_2 {
    top: 100%;
}

.checked_list li {
    display: block;
    cursor: pointer;
    padding: 13px 10px 13px 23px;
    position: relative;
    background-color: #000;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFF;
}

.checked_list li.active,
.checked_list li:hover {
    background: #4caf50;
}

.checked_list li.active:before {
    display: block;
    content: "";
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    z-index: 2;
    background: linear-gradient(-90deg, #8bc34a 0%, #4caf50 100%);
    background: -webkit- linear-gradient(-90deg, #8bc34a 0%, #4caf50 100%);
}

.filter_sidebar > div {
    padding: 7px 0;
}

.range_box {
    position: relative;
    padding: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
}

.range_box .inner {
    background-color: #4caf50;
    padding: 5px 13px 14px 13px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.range_box_title {
    padding: 10px 0 15px 0;
    text-align: center;
}

.range_box_title h4 {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    align-items: center;
    color: #FFF;
}

.two_cols_2 {
    display: flex;
    display: -webkit-flex;
    padding: 2px 0;
}

.two_cols_2 > div:nth-child(1) {
    width: 45%;
}

.two_cols_2 > div:nth-child(2) {
    width: 55%;
}

.price_range {
    padding-top: 3px;
    text-align: center;
    background: #4caf50;
    background: -webkit-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: -moz-linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    background: linear-gradient(to bottom, #4caf50 0%, #8bc34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
}

.range_inputs {
    display: flex;
    display: -webkit-flex;
}

.range_inputs > div:nth-child(1) {
    padding-right: 5px;
}

.range_inputs > div:nth-child(2) {
    padding-left: 5px;
}

.range_input {
    display: block;
    width: 100%;
    height: 20px;
    padding: 0 10px;
    border: none;
    background-color: #fff;
    font-weight: normal;
    font-size: 11px;
    line-height: 19px;
    color: #000;
}

.range_slider_wrapp {
    padding: 20px 0;
}

.range_slider .noUi-connects {
    background-color: #E0E0E0;
    height: 1px;
}

.range_slider .noUi-connect {
    background: #212333;
}

.range_slider.noUi-horizontal {
    height: 1px;
}

.range_slider.noUi-horizontal .noUi-handle {
    width: 7px;
    height: 7px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: linear-gradient(-90deg, #8bc34a 0%, #4caf50 100%);
    background: -webkit- linear-gradient(-90deg, #8bc34a 0%, #4caf50 100%);
}

.range_slider.noUi-horizontal .noUi-handle {
    top: -3px;
}

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

.range_slider .noUi-touch-area {
    cursor: pointer;
}

.range_slider.noUi-horizontal .noUi-tooltip {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 11px;
    line-height: 13px;
    color: #FFF;
}

.range_slider.noUi-horizontal .noUi-tooltip {
    bottom: -24px;
    left: -1px;
}

.range_slider.noUi-horizontal .noUi-tooltip:before {
    content: "$";
    margin-right: 2px;
}

/*-- /Catalog Page --*/

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

    /*-- Catalog Page --*/
    .catalog_sect .filter_sidebar {
        position: relative;
        top: 0;
        left: 0;
    }

    .filter_sidebar {
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        width: auto;
        width: unset;
        min-width: 100%;
        margin: 0 -10px;
    }

    .filter_sidebar > div {
        width: 25%;
        padding: 10px;
    }

    /*-- /Catalog Page --*/

}

@media only screen and (max-width: 1291px) {
    .woocommerce ul.products.columns-6 li.product {
        margin-bottom: 20px;
    }
}


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

    /*-- Catalog Page --*/
    .filters_inlines {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        margin: 0;
    }

    .filters_inlines > div:nth-child(1) {
        width: 100%;
        padding: 10px 0;
    }

    .filters_inlines > div:nth-child(2) {
        width: 100%;
        padding: 0;
    }

    .catalog_thumbs .catalog_thumb {
        width: calc(25% - 14px);
    }

    /*-- /Catalog Page --*/

}

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

    /*-- Catalog Page --*/
    .filter_sidebar > div {
        width: 50%;
    }

    .catalog_thumbs .catalog_thumb {
        width: calc(33.33% - 14px);
    }

    /*-- /Catalog Page --*/

}

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

    /*-- Catalog Page --*/
    .filters_info > .left_col {
        width: 100%;
        padding: 10px 0;
    }

    .filters_info > .right_col {
        width: 100%;
        padding: 10px 0;
    }

    .good_type {
        margin: 0 -10px;
    }

    .good_type > div {
        padding: 0 10px;
    }

    .good_type h4 {
        font-size: 22px;
    }

    .good_type p {
        font-size: 21px;
    }

    .info_thumbs {
        margin: 0 0 20px 0;
    }

    .info_thumb {
        width: 100%;
    }

    /*-- /Catalog Page --*/

}

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

    /*-- Catalog Page --*/
    .inlines > div {
        width: 33.33%;
    }

    /*-- /Catalog Page --*/

}

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

    /*-- Catalog Page --*/
    .catalog_thumbs .catalog_thumb {
        width: calc(50% - 14px);
    }

    /*-- /Catalog Page --*/

}

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

    /*-- Catalog Page --*/
    .inlines > div {
        width: 100%;
    }

    .dropdown_content {
        min-width: 100%;
    }

    .filter_sidebar > div {
        width: 100%;
    }

    /*-- /Catalog Page --*/

}

@media only screen and (max-width: 700px) {
    .product-type-simple .wrp-button{left: 0}
    .single.single-product .related.products .product{max-width: 100%;width: 100% !important}
    .woocommerce div.product h1.product_title{line-height: 40px;font-size: 30px}
    .quantity span{padding: 7px 14px 8px 14px!important;

    }
    .single.single-product .quantity input.qty{height: 32px}
    .crtcblock_item{flex-direction: column;flex: 0 1 auto;    align-items: center;}
    .woocommerce div.product form.cart .button,#singlprod_pp,#buyvicrdcart{max-width: none;width: auto;    min-width: 78%;
        height: 40px;}
    .sect_2 {
        flex: 1 0 auto;
        background-image: var(--wpr-bg-ab4fa92d-56f7-4aa8-8ffc-13b8dde1bbd5);
    }

    /*-- Catalog Page --*/
    .woocommerce ul.products li.product a img {
        left: 0 !important;
    }

    li.product .wrp-button {
    }

    .catalog_thumbs {
        margin: 0 0 20px 0;
    }

    .woocommerce ul.products {
        justify-content: center;
        flex-direction: column;
    }

    body .woocommerce ul.products.columns-4 li.product {
        width: 100%;
    }

    .catalog_thumbs .catalog_thumb {
        width: 100%;
    }

    .info_thumb .inner {
        padding: 20px 15px 20px 15px;
    }

    .info_thumb h3 {
        font-size: 21px;
    }

    .info_thumb ul li {
        font-size: 20px;
    }

    /*-- /Catalog Page --*/

}