.section-builder {
    padding-top: var(--s-pt);
    padding-bottom: var(--s-pb);
    margin-top: var(--s-mt);
    margin-bottom: var(--s-mb);
    height: var(--s-h);
}
.section-builder.flex {
    display: flex;
    align-items: var(--s-align);
    justify-content: var(--s-justify);
}
.section-builder.is_background {
    background-image: var(--background-image);
    background-position: var(--s-bg-pos-x, 50%) var(--s-bg-pos-y, 50%);
    background-size: var(--s-bg-size);
    background-repeat: no-repeat;
}
.section-builder.is_background.fixed-bg {
    background-attachment: fixed;
}
.section-builder.is_background.parallax {
    background-position: var(--s-bg-pos-x, 50%) var(--parallax-offset, var(--s-bg-pos-y, 50%));
    background-attachment: fixed;
}
.section-builder.is_background.by-pointer {
    background-position: calc(var(--s-bg-pos-x, 50%) + var(--bg-offset-x, 0px)) calc(var(--s-bg-pos-y, 50%) + var(--bg-offset-y, 0px));
}
.section-builder.is_background.color-full {
    background-color: var(--s-bg-clr, var(--global-color-dark));
}
.section-builder.is_background.color-blend {
    background-color: var(--s-bg-clr);
    background-blend-mode: multiply;
}
.section-builder.is_background.color-on-sides {
    background-image:
        var(--background-image),
        linear-gradient(var(--global-color-background)),
        linear-gradient(var(--s-bg-clr, var(--global-color-dark)));
    background-position:
        var(--s-bg-pos-x, 50%) var(--s-bg-pos-y, 50%),
        var(--s-bg-pos-x, 50%) var(--s-bg-pos-y, 50%),
        var(--s-bg-pos-x, 50%) calc(var(--s-bg-pos-y, 50%) + 20px);
    background-size:
        var(--background-image-w, var(--s-bg-size, 100%)) auto,
        var(--background-image-w, var(--s-bg-size, 100%)) 100%,
        100% calc(var(--background-image-h, 100%) - 40px);
}
.section-builder.is_background.color-on-sides.parallax {
    background-position:
        var(--s-bg-pos-x, 50%) var(--parallax-offset, var(--s-bg-pos-y, 50%)),
        var(--s-bg-pos-x, 50%) var(--parallax-offset, var(--s-bg-pos-y, 50%)),
        var(--s-bg-pos-x, 50%) calc(var(--parallax-offset, var(--s-bg-pos-y, 50%)) + 20px);
}

@media (max-width: 768px) {
    .section-builder.is_background,
    .section-builder.is_background.parallax,
    .section-builder.is_background.color-on-sides,
    .section-builder.is_background.color-on-sides.parallax {
        background-position: var(--s-m-bg-pos-x, var(--s-bg-pos-x, 50%)) var(--s-m-bg-pos-y, var(--s-bg-pos-y, 50%));
        background-size: var(--s-m-bg-size, var(--s-bg-size, cover));
    }  
    .section-builder.is_background.parallax {
        background-attachment: local;
    }
}

.section-builder .container {
    justify-content: var(--con-justify);
    width: var(--con-w, 100%);
    max-width: var(--con-mw, 1170px);
    margin: var(--con-m, 0 auto);
    padding: var(--con-p);
    background-color: var(--con-bg-clr);
}

.section-builder .column {
    width: calc(var(--col-w, 100) * 1%);
    max-width: var(--col-mw);
    align-content: var(--col-align-content);
}
@media (max-width: 992px) {
    .section-builder .column {
        width: calc(var(--t-col-w, var(--col-w, 100)) * 1%);
    }
}
@media (max-width: 768px) {
    .section-builder .column {
        width: 100%;
    }
}

.section-builder .wrap {
    align-items: var(--wrap-align-items);
    align-content: var(--wrap-align-items);
}

.wrap.is_background {
    background-image: var(--wrap-background-image);
    background-color: var(--wrap-bg-clr);
    background-position: var(--wrap-bg-pos-x, 50%) var(--wrap-bg-pos-y, 50%);
    background-size: var(--wrap-bg-size);
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .wrap.is_background {
        background-position: var(--wrap-m-bg-pos-x, var(--wrap-bg-pos-x, 50%)) var(--wrap-m-bg-pos-x, var(--wrap-bg-pos-y, 50%));
        background-size: var(--wrap-m-bg-size, var(--wrap-bg-size));
    }
}


/* Element */
.element {
    position: relative;
	width: 100%;
    margin-top: var(--e-mt);
    margin-bottom: var(--e-mb);
    max-width: var(--e-mw, 100%);
    text-align: var(--text-align);
    box-sizing: border-box;
    z-index: 1;
}
.element:not(:last-child) {
    margin-bottom: var(--e-mb, 20px);
}
.element:not(.content) > *,
.element.content > *:last-child {
	margin: 0;
}
@media (max-width: 768px) {
    .element {
        text-align: var(--m-text-align, var(--text-align));
    }
}

/* Title */
.title {
    color: var(--color, var(--global-color-text));
}
.title.big > * {
    font-size: 5.8rem;
}
.title.medium > * {
    font-size: 3.2rem;
}
.title.small > * {
    font-size: 2.8rem;
}
@media (max-width: 992px) {
    .title.big > * {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .title.big > * {
        font-size: 2.6rem;
    }
    .title.medium > * {
        font-size: 2.4rem;
    }
    .title.small > * {
        font-size: 1.8rem;
    }
}

/* Content */
.content {
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: var(--line-height);
    color: var(--color, var(--global-color-text));
}

/* Image Absolute */
.image_absolute {
    position: absolute;
    top: var(--e-top);
    bottom: var(--e-bottom);
    left: var(--e-left);
    right: var(--e-right);
    transform: var(--e-transform);
    width: var(--e-w);
    margin: 0;
}

/* Stylized Numbered List */
.stylized-numbered-list {
    letter-spacing: 1.5px;
    color: var(--color, var(--global-color-text));
}
.stylized-numbered-list ol {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}
.stylized-numbered-list li {
    display: flex;
    align-items: center;
    font-size: .93em;
    line-height: 1.75;
    margin-bottom: 15px;
}
.stylized-numbered-list li span {
    position: relative;
    padding: 10px;
    margin-right: 20px;
    font-family: 'BebasNeueBold';
    font-size: 5.55em;
    line-height: .85;
}
.stylized-numbered-list li span::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 24px;
    background: var(--num-style-color);
    z-index: -1;
}
@media (max-width: 768px) {
    .stylized-numbered-list  {
        letter-spacing: initial;
    }
    .stylized-numbered-list li span {
        font-size: 4em;
    }
}

/* Video */
.video > * {
    max-width: 100%;
}

/* Button */
.button-box {
    display: flex;
    justify-content: var(--pos-h);
    padding: 0;
    overflow: hidden;
}
.button-box > a.button {
    position: relative;
    background: var(--btn-color, var(--global-color-accent));
    border-color: var(--btn-color, var(--global-color-accent));
}
.button-box > a.button:hover {
    color: var(--btn-color, var(--global-color-accent));
    background: var(--global-color-white);
}
.button-box > a.button.line-left:before,
.button-box > a.button.line-right:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--line-length, 100vw);
    height: 2px;
    background: #ccc;
}
.button-box > a.button.line-left:before {
    right: calc(100% + 10px);
}
.button-box > a.button.line-right:before {
    left: calc(100% + 10px);
}
.button-box a.button.with-arrow {
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Form */

.form button {
    position: relative;
    display: flex;
    justify-content: center;
    background: var(--btn-color, var(--global-color-accent));
    border-color: var(--btn-color, var(--global-color-accent));
	width: 100%;
    padding: 1.2em 2em;
}
.form button:hover {
    color: var(--btn-color, var(--global-color-accent));
    background: var(--global-color-white);
}
.form > .message-error,
.form > .message-success {
    position: absolute;
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}
.form .message-error .ico,
.form .message-success .ico {
    margin-right: .5rem;
    font-size: 1.5rem;
    color: var(--global-color-error);
}
.form .message-success .ico {
    color: var(--global-color-success);
}

/* Phones */
.phones {
    line-height: 1.4;
}
.phones ul {
    padding: 0;
}
.phones li {
	list-style: none;
	color: var(--global-color-dark);
}
.phones a {
    color: var(--global-color-dark);
    text-decoration: none;
}
.phones a:hover {
    color: var(--global-color-accent);
}
.phones.big {
    font-family: BebasNeueBold;
    font-size: 5.7rem;
    line-height: 1;
}
.phones.medium {
    font-family: BebasNeueBold;
    font-size: 4.4rem;
    line-height: 1;
}
.phones.small {
    font-size: 2rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .phones.big {
        font-size: 4.4rem;
    }
    .phones.medium {
        font-size: 3.5rem;
    }
    .phones.small {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .phones.big {
        font-size: 3.5rem;
    }
    .phones.medium {
        font-size: 2.4rem;
    }
    .phones.small {
        font-size: 1.4rem;
    }
}

/* Address */
.address.big {
    font-size: 1.8rem;
}
.address.medium {
    font-size: 1.5rem;
}
.address.small {
    font-size: 1.3rem;
}
.address ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 0;
}
.address li {
	list-style: none;
	color: var(--global-color-dark);
}
.address a {
    color: var(--global-color-dark);
    text-decoration: none;
}
.address a:hover {
    color: var(--global-color-accent);
}

@media (max-width: 768px) {
    .address.big {
        font-size: 1.25rem;
    }
    .address.medium {
        font-size: 1.1rem;
    }
    .address.small {
        font-size: 1rem;
    }
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-col, 3), 1fr);
    gap: var(--gap, 1.25rem);
}

.grid .item {
    display: flex;
    gap: calc(var(--gap-inner, 1rem) + .25rem);
    color: var(--text-color, var(--global-color-text));
    background-color: var(--bg-color);
    padding: var(--p, 1.875rem);
}

.grid.shadow .item {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
}

.grid.image-top .item {
    flex-direction: column;
}

.grid .item.image_like_bg {
    position: relative;
    overflow: hidden;
    min-height: 12rem;
}

.grid .item .image-inner {
    display: flex;
    align-items: var(--img-pos-v, flex-start);
    justify-content: var(--img-pos-h, center);
}

.grid .item .image-inner img {
    object-fit: contain;
    width: var(--img-w, 2.75rem);
}

.grid.image-top .item .image-inner img {
    width: auto;
    height: var(--img-h, 12.5rem);
}

.grid .item.image_like_bg img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.grid .item .content-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-inner, 1rem);
    flex: 1;
    z-index: 1;
}

.grid .item .content-inner {
    display: flex;
    flex-direction: column;
    gap: var(--gap-inner, 1rem);
    flex: 1;
    text-align: var(--text-align);
    z-index: 1;
}

.grid .title > * {
    font-size: var(--title-size, 1.3rem);
    font-family: 'Montserrat';
    font-weight: 600;
    margin: 0;
}

.grid .title > * a {
    color: inherit;
    text-decoration: none;
}
.grid .title > * a:hover {
    color: var(--global-color-accent);
}

.grid .description {
    font-size: var(--text-size, 1rem);
}
.grid .description > * {
    margin-bottom: 0;
}
.grid .description > *:not(:last-child) {
    margin-bottom: .2rem;
}

@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(var(--t-grid-col, 2), 1fr);
        gap: var(--t-gap, var(--gap, 1.25rem));
    }
    .grid .item {
        gap: calc(var(--t-gap-inner, 1rem) + .25rem);
        padding: var(--t-p, 1.875rem 1.25rem);
    }
    .grid.t-image-top .item {
        flex-direction: column;
    }
    .grid.t-image-top .item .image-inner img {
        width: auto;
        height: var(--img-h, 12.5rem);
    }
    .grid .item .content-inner {
        gap: var(--t-gap-inner, 1rem);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(var(--m-grid-col), 1fr);
        gap: var(--m-gap, var(--t-gap, var(--gap, 1.25rem)));
    }
    .grid .item {
        gap: calc(var(--m-gap-inner, 1rem) + .25rem);
        padding: var(--m-p, 1.875rem 1.25rem);
        order: var(--m-order);
    }
    .grid.m-image-top .item {
        flex-direction: column;
    }
    .grid.m-image-top .item .image-inner img {
        width: auto;
        height: var(--img-h, 12.5rem);
    }
    .grid .item .content-inner {
        gap: var(--m-gap-inner, 1rem);
    }
}

/* Bundle */
.bundle-carousel .bundle-banner {
    cursor: pointer;
}
.bundle-carousel .bundle-price {
    display: flex;
	align-items: flex-end;
    gap: 0.5em;
    float: right;
    background: var(--global-color-green);
    padding: 15px 30px 15px 40px;
    color: var(--global-color-white);
    font-size: 2.2em;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}
.bundle-carousel .bundle-price .old-price {
	font-size: 80%;
    text-decoration: line-through;
}
.bundle-carousel .slide-inner img {
    width: 100%;
    object-fit: contain;
}
.bundle-carousel .slide-inner .bundle-btn {
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
    justify-content: center;
    margin: 10px 0;
}
.bundle-carousel .swiper-pagination {
	position: initial;
}
.bundle-carousel .swiper-pagination-bullet {
	background: var(--global-color-red);
	transition: all .4s;
}
.bundle-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
	scale: 120%;
}
.bundle-carousel .swiper-button-prev,
.bundle-carousel .swiper-button-next {
	position: absolute;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 1000;
    font-size: 2em;
    color: var(--global-color-red);
    opacity: .5;
    transition: all .4s;
	cursor: pointer;
}
.bundle-carousel .swiper-button-next {
    right: 0;
}
.bundle-carousel .swiper-button-prev:hover,
.bundle-carousel .swiper-button-next:hover {
	opacity: 1;
}

@media (max-width: 767.99px) {
	.bundle-carousel .bundle-price {
	    font-size: 1.4em;
    padding: 10px 20px 10px 25px;
	}
	.bundle-carousel .swiper-button-prev,
	.bundle-carousel .swiper-button-next {
		font-size: 1.5em;
	}
}

/* Products Carousel */
.products-carousel  {
    overflow: hidden;
    margin: 20px 0;
}
.product-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--global-color-dark);
    padding: 20px;
    box-sizing: border-box;
}
.product-slide a {
    text-decoration: none;
    text-align: center;
}
.product-slide .product-slide-thumb img {
    max-height: 150px;
    object-fit: contain;
}
.product-slide h3.product-slide-title {
    color: var(--global-color-dark);
    font-size: 1.5rem;
    font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    margin: 0;
}
.product-slide .attribute-sklad {
    text-align: center;
    line-height: 1.4;
}
.product-slide .product-slide-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
}
.product-slide .product-slide-price del {
    margin: 0;
}
.product-slide .add_to_cart_inline {
    display: flex;
    justify-content: center;
    margin: 0;
}
.product-slide .add_to_cart_inline a.add_to_cart_button {
    border-color: var(--global-color-dark);
    background: var(--global-color-white);
    color: var(--global-color-dark);
}
.product-slide .add_to_cart_inline a.add_to_cart_button:hover {
    background: var(--global-color-accent);
    border-color: var(--global-color-accent);
    color: var(--global-color-white);
}
.product-slide .added_to_cart.wc-forward {
    display: none !important;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 1000;
    font-size: 2em;
    color: var(--global-color-dark);
    cursor: pointer;
}
.swiper-button-next {
    right: 0;
}
.swiper-button-prev .ico:before {
    transform: rotate(180deg);
}

/* Way */
.way {
    display: flex;
    justify-content: space-between;
}
.way-item-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px 0;
}
.way-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
    padding: 20px 10px;
    max-width: 190px;
}
.way-item img {
    width: 100%;
    height: var(--img-h, 3.1rem);
}
.way-divider-text {
    display: none;
    color: var(--global-color-dark);
    font-size: 1.8rem;
    text-transform: uppercase;
}
.way-item .text {
    text-align: center;
    color: var(--global-color-dark);
    font-weight: 600;
    line-height: 1.2;
    min-height: 2.4em;
}
.way-arrow {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.way-arrow .ico {
    font-size: 1.8rem;
    color: var(--global-color-dark);
}
.way-arrow .ico:before {
    display: flex;
    justify-content: center;
    width: .6em;
    margin: 0;
}

@media (max-width: 992px) {
    .way-item {
        padding: 20px 5px;
    }
    .way-item .text {
        font-size: .9em;
    }
}

@media (max-width: 768px) {
    .way {
        flex-direction: column;
        align-items: center;
    }
    .way-item-wrap {
        gap: 0;
    }
    .way-item .text {
        min-height: auto;
    }
    .way-arrow .ico:not(:first-child) {
        display: none;
    }
    .way-arrow .ico:before {
        transform: rotate(90deg);
    }
    .way-divider-text {
        display: block;
    }
}

/* Comment List */
.commentlist {
    overflow: hidden;
    margin: 20px 0;
}
.comment-slide {
    display: flex;
    justify-content: center;
    padding: 20px 60px;
    color: var(--global-color-dark);
    box-sizing: border-box;
}
.comment-slide .comment_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 740px;
}
.comment-slide p {
    line-height: 1.4;
    margin: 0;
}
.commentlist .comment-slide .star-rating,
.comment-slide .woocommerce-review__author {
    font-size: 1.4rem;
}
.comment-slide .woocommerce-review__dash {
    display: none;
}
.comment-slide time {
    display: block;
    color: var(--global-color-grey);
    font-weight: 400;
}
.comment-slide .description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
}
.comment-product a {
    text-decoration: none;
    color: var(--global-color-dark);
    font-size: 1.1rem;
    line-height: 1.4;
}
.comment-product a:hover {
    color: var(--global-color-accent-darker);
}


@media (max-width: 440px) {
    .swiper-button-prev, .swiper-button-next {
        font-size: 1.6rem;
    }
    .swiper-button-prev .ico:before,
    .swiper-button-next .ico:before {
        margin: 0;
        width: .8em;
    }
    .comment-slide {
        padding: 20px 25px;
    }
    .comment-product a {
        font-size: 1rem;
        line-height: 1.2;
    }
    .comment-slide .comment_container {
        gap: 10px;
    }
    .commentlist .comment-slide .star-rating,
    .comment-slide .woocommerce-review__author {
        font-size: 1.2rem;
    }
    .comment-slide .description {
        font-size: 1rem;
    }
}