<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------------------------------
// Table of Contents:
// - Common
//   - animations
//   - base
//   - .document
//   - grid
//   - header
//   - .site
// - Components
//   - .btn
//   - .container
//   - .typography
//   - .widget
// - Filters
//   - .filter
// - Blocks
//   - .block-space
//   - .block-split
// - Widgets
//   - .widget-filters
//   - .widget-newsletter
//   - .widget-posts
//   - .widget-products
//   - .widget-search
//   - .widget-tags
// - Shop
//   - .product
//   - .product-gallery
//   - .product-tabs
// ---------------------------------------- */
/* ----------------------------------------
// Common
// ---------------------------------------- */
/*
// animations
*/
@-webkit-keyframes loader-animation {
    from {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }

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

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

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

/*
// base
*/
html {
    height: 100%;
}

body {
    height: 100%;
    background: #fafafa;
    color: #262626;
    font-family: "Roboto", "sans-serif";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    overflow-y: scroll;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

[dir=ltr] body {
    text-align: left;
    direction: ltr;
}

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

a {
    color: #f07d00;
}

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

label {
    margin-bottom: .25rem;
    font-size: 15px;
}

h1 {
    font-size: 40px;
    font-weight: 500;
}

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

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

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

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

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

/*
// .document
*/
.document {
    max-width: 760px;
    margin: 0 auto;
}

.document__header {
    text-align: center;
    padding: 44px 0 52px;
}

.document__title {
    font-weight: 700;
    letter-spacing: .01em;
    margin: 0;
}

.document__subtitle {
    font-size: 15px;
    color: #999;
    margin-top: 8px;
    margin-bottom: -4px;
}

.document__content {
    padding: 50px;
}

.document__signature {
    margin-top: 2.5rem;
}

@media (max-width: 1199.98px) {
    .document__header {
        padding: 44px 0 48px;
    }

    .document__subtitle {
        margin-top: 4px;
    }
}

@media (max-width: 991.98px) {
    .document__content {
        padding: 40px;
    }
}

@media (max-width: 767.98px) {
    .document__header {
        padding: 36px 0 40px;
    }

    .document__title {
        font-size: 36px;
    }

    .document__content {
        padding: 28px;
    }
}

@media (max-width: 575.98px) {
    .document__title {
        font-size: 32px;
    }

    .document__subtitle {
        font-size: 14px;
    }

    .document__content {
        padding: 24px;
    }

        .document__content .typography {
            font-size: 15px;
        }

    .document__signature {
        margin-top: 24px;
    }
}

/*
// grid
*/
.col-1of5 {
    padding: 0 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
}

.col-2of5 {
    padding: 0 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
    width: 100%;
}

.col-3of5 {
    padding: 0 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    position: relative;
    width: 100%;
}

.col-4of5 {
    padding: 0 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
    position: relative;
    width: 100%;
}

.col-5of5 {
    padding: 0 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
}

/*
// header
*/
@media (min-width: 1200px) {
    .mobile-header,
    .mobile-menu {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .header {
        display: none;
    }
}

/*
// .site
*/
.site {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

.site__header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.site__body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.site__footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

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

/*
// .btn
*/
.btn {
    border: none;
    border-radius: 2px;
    fill: currentColor;
    font-weight: 500;
}

    .btn.disabled, .btn:disabled {
        cursor: default;
    }

.btn-icon {
    padding: 0;
}

    .btn-icon svg {
        display: block;
        margin: auto;
    }

.btn-loading {
    position: relative;
}

    .btn-loading:after {
        /* nl size (default) */
        border-style: solid;
        -webkit-animation-name: loader-animation;
        animation-name: loader-animation;
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        position: absolute;
        display: block;
        content: '';
        border-width: 2px;
        left: calc(50% - 12px);
        top: calc(50% - 12px);
        width: 24px;
        height: 24px;
        border-radius: 12px;
    }

    .btn-loading.btn-xl:after {
        /* xl size */
        left: calc(50% - 21px);
        top: calc(50% - 21px);
        width: 42px;
        height: 42px;
        border-radius: 21px;
    }

    .btn-loading.btn-lg:after {
        /* lg size */
        left: calc(50% - 16px);
        top: calc(50% - 16px);
        width: 32px;
        height: 32px;
        border-radius: 16px;
    }

    .btn-loading.btn-sm:after {
        /* sm size */
        left: calc(50% - 10px);
        top: calc(50% - 10px);
        width: 20px;
        height: 20px;
        border-radius: 10px;
    }

    .btn-loading.btn-xs:after {
        /* xs size */
        left: calc(50% - 8px);
        top: calc(50% - 8px);
        width: 16px;
        height: 16px;
        border-radius: 8px;
    }

.btn:not(.btn-icon) {
    font-size: 16px;
    line-height: 19px;
    padding: calc(17px / 2) 16px;
}

.btn.btn-icon {
    height: 36px;
    width: 36px;
}

.btn-sm:not(.btn-icon) {
    font-size: 14px;
    line-height: 17px;
    padding: calc(13px / 2) 12px;
}

.btn-sm.btn-icon {
    height: 30px;
    width: 30px;
}

.btn-xs:not(.btn-icon) {
    font-size: 13px;
    line-height: 15px;
    padding: calc(9px / 2) 9px;
}

.btn-xs.btn-icon {
    height: 24px;
    width: 24px;
}

.btn-lg:not(.btn-icon) {
    font-size: 18px;
    line-height: 22px;
    padding: calc(20px / 2) 24px;
}

.btn-lg.btn-icon {
    height: 42px;
    width: 42px;
}

.btn-xl:not(.btn-icon) {
    font-size: 20px;
    line-height: 26px;
    padding: calc(34px / 2) 40px;
}

.btn-xl.btn-icon {
    height: 60px;
    width: 60px;
}

.btn-default:hover {
	border-color: #333;
	background: #333;
	color: #fff;
}


.btn-default, .btn-default.disabled, .btn-default:disabled {
	border-color: #ff911a;
	background: #ff911a;
	color: #fff;
}

	.btn-default.focus, .btn-default:focus, .btn-default:not(:disabled):not(.disabled).active:focus, .btn-default:not(:disabled):not(.disabled):active:focus {
		border-color: #333;
		background: #333;
		color: #fff;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .btn-default:not(:disabled):not(.disabled).active:focus, .btn-default:not(:disabled):not(.disabled):active:focus {
		border-color: #4d4d4d;
		background: #4d4d4d;
		color: #fff;
	}

	.btn-default.btn-loading:not(:disabled):not(.disabled), .btn-default.btn-loading:not(:disabled):not(.disabled):active, .btn-default.btn-loading:not(:disabled):not(.disabled).active {
		border-color: #ffcc00;
		background: #ffcc00;
		cursor: default;
	}

	.btn-default.btn-loading {
		/* hide button content */
	}

		.btn-default.btn-loading, .btn-default.btn-loading:hover, .btn-default.btn-loading.focus, .btn-default.btn-loading:focus, .btn-default.btn-loading:not(:disabled):not(.disabled).active, .btn-default.btn-loading:not(:disabled):not(.disabled):active, .btn-default.btn-loading.disabled, .btn-default.btn-loading:disabled {
			color: transparent;
			fill: transparent;
		}

			.btn-default.btn-loading:after {
				border-color: rgba(255, 255, 255, 0.1);
				border-top-color: rgba(255, 255, 255, 0.5);
			}


.btn-primary:hover {
    border-color: #333;
    background: #333;
    color: #fff;
}

.btn-primary, .btn-primary.disabled, .btn-primary:disabled {
    border-color: #ff911a;
    background: #ff911a;
    color: #fff;
}

    .btn-primary.focus, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
        border-color: #333;
        background: #333;
        color: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
        border-color: #4d4d4d;
        background: #4d4d4d;
        color: #fff;
    }

    .btn-primary.btn-loading:not(:disabled):not(.disabled), .btn-primary.btn-loading:not(:disabled):not(.disabled):active, .btn-primary.btn-loading:not(:disabled):not(.disabled).active {
        border-color: #ff911a;
        background: #ff911a;
        cursor: default;
    }

    .btn-primary.btn-loading {
        /* hide button content */
    }

        .btn-primary.btn-loading, .btn-primary.btn-loading:hover, .btn-primary.btn-loading.focus, .btn-primary.btn-loading:focus, .btn-primary.btn-loading:not(:disabled):not(.disabled).active, .btn-primary.btn-loading:not(:disabled):not(.disabled):active, .btn-primary.btn-loading.disabled, .btn-primary.btn-loading:disabled {
            color: transparent;
            fill: transparent;
        }

            .btn-primary.btn-loading:after {
                border-color: rgba(255, 255, 255, 0.1);
                border-top-color: rgba(255, 255, 255, 0.5);
            }

.btn-secondary:hover {
    border-color: #e5e5e5;
    background: #e5e5e5;
    color: #333;
}

.btn-secondary, .btn-secondary.disabled, .btn-secondary:disabled {
    border-color: #f0f0f0;
    background: #f0f0f0;
    color: #333;
}

    .btn-secondary.focus, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus {
        border-color: #e5e5e5;
        background: #e5e5e5;
        color: #333;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus {
        border-color: #d6d6d6;
        background: #d6d6d6;
        color: #333;
    }

    .btn-secondary.btn-loading:not(:disabled):not(.disabled), .btn-secondary.btn-loading:not(:disabled):not(.disabled):active, .btn-secondary.btn-loading:not(:disabled):not(.disabled).active {
        border-color: #f0f0f0;
        background: #f0f0f0;
        cursor: default;
    }

    .btn-secondary.btn-loading {
        /* hide button content */
    }

        .btn-secondary.btn-loading, .btn-secondary.btn-loading:hover, .btn-secondary.btn-loading.focus, .btn-secondary.btn-loading:focus, .btn-secondary.btn-loading:not(:disabled):not(.disabled).active, .btn-secondary.btn-loading:not(:disabled):not(.disabled):active, .btn-secondary.btn-loading.disabled, .btn-secondary.btn-loading:disabled {
            color: transparent;
            fill: transparent;
        }

            .btn-secondary.btn-loading:after {
                border-color: rgba(0, 0, 0, 0.1);
                border-top-color: rgba(0, 0, 0, 0.5);
            }

.btn-light:hover {
    border-color: #f0f0f0;
    background: #f0f0f0;
    color: #333;
}

.btn-light, .btn-light.disabled, .btn-light:disabled {
    border-color: transparent;
    background: transparent;
    color: #333;
}

    .btn-light.focus, .btn-light:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus {
        border-color: #f0f0f0;
        background: #f0f0f0;
        color: #333;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus {
        border-color: #e1e1e1;
        background: #e1e1e1;
        color: #333;
    }

    .btn-light.btn-loading:not(:disabled):not(.disabled), .btn-light.btn-loading:not(:disabled):not(.disabled):active, .btn-light.btn-loading:not(:disabled):not(.disabled).active {
        border-color: transparent;
        background: transparent;
        cursor: default;
    }

    .btn-light.btn-loading {
        /* hide button content */
    }

        .btn-light.btn-loading, .btn-light.btn-loading:hover, .btn-light.btn-loading.focus, .btn-light.btn-loading:focus, .btn-light.btn-loading:not(:disabled):not(.disabled).active, .btn-light.btn-loading:not(:disabled):not(.disabled):active, .btn-light.btn-loading.disabled, .btn-light.btn-loading:disabled {
            color: transparent;
            fill: transparent;
        }

            .btn-light.btn-loading:after {
                border-color: rgba(0, 0, 0, 0.1);
                border-top-color: rgba(0, 0, 0, 0.5);
            }

.btn-muted:hover {
    border-color: #f2f2f2;
    background: #f2f2f2;
    color: #4d4d4d;
}

.btn-muted, .btn-muted.disabled, .btn-muted:disabled {
    border-color: #fff;
    background: #fff;
    color: #ccc;
}

    .btn-muted.focus, .btn-muted:focus, .btn-muted:not(:disabled):not(.disabled).active:focus, .btn-muted:not(:disabled):not(.disabled):active:focus {
        border-color: #f2f2f2;
        background: #f2f2f2;
        color: #4d4d4d;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .btn-muted:not(:disabled):not(.disabled):active, .btn-muted:not(:disabled):not(.disabled).active, .btn-muted:not(:disabled):not(.disabled).active:focus, .btn-muted:not(:disabled):not(.disabled):active:focus {
        border-color: #ebebeb;
        background: #ebebeb;
        color: #4d4d4d;
    }

    .btn-muted.btn-loading:not(:disabled):not(.disabled), .btn-muted.btn-loading:not(:disabled):not(.disabled):active, .btn-muted.btn-loading:not(:disabled):not(.disabled).active {
        border-color: #fff;
        background: #fff;
        cursor: default;
    }

    .btn-muted.btn-loading {
        /* hide button content */
    }

        .btn-muted.btn-loading, .btn-muted.btn-loading:hover, .btn-muted.btn-loading.focus, .btn-muted.btn-loading:focus, .btn-muted.btn-loading:not(:disabled):not(.disabled).active, .btn-muted.btn-loading:not(:disabled):not(.disabled):active, .btn-muted.btn-loading.disabled, .btn-muted.btn-loading:disabled {
            color: transparent;
            fill: transparent;
        }

            .btn-muted.btn-loading:after {
                border-color: rgba(0, 0, 0, 0.1);
                border-top-color: rgba(0, 0, 0, 0.5);
            }

/*
// .container
*/
@media (min-width: 576px) {
    .container--max--sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container--max--md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container--max--lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container--max--xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container--max--xxl {
        max-width: 1380px;
    }
}

.container .container {
    padding: 0;
}

/*
// .typography
*/
.typography {
    line-height: 1.625;
    text-align: justify!important;
}

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

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

    .typography h2, .typography h3 {
        padding-bottom: 8px;
        border-bottom: 1px solid #ebebeb;
    }

    .typography h3 {
        padding-bottom: 6px;
    }

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

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

[dir=ltr] .typography ol, [dir=ltr] .typography ul {
    padding-left: 2.5rem;
}

[dir=rtl] .typography ol, [dir=rtl] .typography ul {
    padding-right: 2.5rem;
}

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

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

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

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

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

.typography blockquote {
    margin: 2.25rem 0;
    text-align: center;
    font-size: 18px;
    font-style: italic;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 2.25em 2.25em 2em;
}

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

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

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

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

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

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

.typography img {
    max-width: 100%;
    border-radius: 2px;
}

.typography figure {
    margin: 1.875rem 0 2.25rem;
}

.typography figcaption {
    font-size: 14px;
    text-align: center;
    color: #6c757d;
    padding-top: .875rem;
}

@media (max-width: 575.98px) {
    .typography {
        font-size: 15px;
        line-height: 1.75;
    }

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

        .typography h2 {
            font-size: 28px;
        }

        .typography h3 {
            font-size: 24px;
        }

        .typography h4 {
            font-size: 20px;
        }

        .typography h5 {
            font-size: 18px;
        }

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

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

    [dir=ltr] .typography ol, [dir=ltr] .typography ul {
        padding-left: 2rem;
    }

    [dir=rtl] .typography ol, [dir=rtl] .typography ul {
        padding-right: 2rem;
    }

    .typography hr {
        margin: 1.5em auto;
    }

    .typography blockquote {
        padding: 1em;
        font-size: 16px;
        margin: 1.5rem 0;
    }

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

    .typography figure {
        margin: 1.5rem 0 1.5rem;
    }
}

/*
// .widget
*/
.widget + .widget {
    margin-top: 20px;
}

.widget__header {
    padding: 1.375rem 1.5rem;
}

    .widget__header h4 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 0;
    }

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

[dir=ltr] .filter__title {
    text-align: left;
}

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

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

.filter__title:focus {
    outline: none;
}

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

[dir=ltr] .filter__arrow {
    right: 10px;
}

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

.filter__arrow svg {
    display: block;
}

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

.filter__container {
    padding: 10px 1.5rem 16px;
}

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

.filter--opened .filter__arrow {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}
/* ----------------------------------------
// Blocks
// ---------------------------------------- */
/*
// .block-space
*/
@media (min-width: 1200px) {
    .block-space--layout--after-header {
        height: 20px;
    }

        .block-space--layout--after-header.block-space--header--classic {
            height: 72px;
        }
}

@media (max-width: 1199.98px) {
    .block-space--layout--after-header {
        height: 20px;
    }
}

@media (max-width: 767.98px) {
    .block-space--layout--after-header {
        height: 20px;
    }
}

@media (max-width: 575.98px) {
    .block-space--layout--after-header {
        height: 20px;
    }
}

.block-space--layout--before-footer {
    height: 80px;
}

@media (max-width: 1199.98px) {
    .block-space--layout--before-footer {
        height: 72px;
    }
}

@media (max-width: 575.98px) {
    .block-space--layout--before-footer {
        height: 48px;
    }
}

.block-space--layout--divider-xl {
    height: 72px;
}

.block-space--layout--divider-lg {
    height: 60px;
}

.block-space--layout--divider-nl {
    height: 52px;
}

.block-space--layout--divider-sm {
    height: 40px;
}

.block-space--layout--divider-xs {
    height: 36px;
}

.block-space--layout--spaceship-ledge-height {
    height: 24px;
}

@media (max-width: 1199.98px) {
    .block-space--layout--spaceship-ledge-height {
        display: none;
    }
}

/*
// .block-split
*/
@media (min-width: 1400px) {
    .block-split--has-sidebar .block-split__item-sidebar {
        width: 270px;
    }

    .block-split--has-sidebar .block-split__item-content {
        width: calc(100% - 310px);
    }

    [dir=ltr] .block-split--has-sidebar .block-split__item + .block-split__item {
        margin-left: 40px;
    }

    [dir=rtl] .block-split--has-sidebar .block-split__item + .block-split__item {
        margin-right: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .block-split--has-sidebar .block-split__item-sidebar {
        width: 260px;
    }

    .block-split--has-sidebar .block-split__item-content {
        width: calc(100% - 292px);
    }

    [dir=ltr] .block-split--has-sidebar .block-split__item + .block-split__item {
        margin-left: 32px;
    }

    [dir=rtl] .block-split--has-sidebar .block-split__item + .block-split__item {
        margin-right: 32px;
    }
}

@media (max-width: 991.98px) {
    .block-split__item-sidebar {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-top: 52px;
    }

    .block-split__item-content {
        width: 100%;
    }
}


/* ----------------------------------------
// Widgets
// ---------------------------------------- */

/*
// .widget-filters
*/
.widget-filters__item {
    padding: 8px 0;
    border-bottom: 1px solid #ebebeb;
}

    .widget-filters__item:first-child {
        border-top: 1px solid #ebebeb;
    }

.widget-filters__actions {
    padding: 20px 1.5rem 1.5rem;
}

[dir=ltr] .widget-filters__actions &gt; * + * {
    margin-left: 8px;
}

[dir=rtl] .widget-filters__actions &gt; * + * {
    margin-right: 8px;
}

.widget-filters--offcanvas--none {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
}

@media (min-width: 992px) {
    .widget-filters--offcanvas--mobile {
        background-color: #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    }
}

@media (max-width: 991.98px) {
    .widget-filters--offcanvas--mobile .widget-filters__header {
        display: none;
    }

    .widget-filters--offcanvas--mobile .widget-filters__item {
        padding: 8px 0;
    }

        .widget-filters--offcanvas--mobile .widget-filters__item:first-child {
            border-top: none;
        }
}

.widget-filters--offcanvas--always .widget-filters__header {
    display: none;
}

.widget-filters--offcanvas--always .widget-filters__item {
    padding: 8px 0;
}

    .widget-filters--offcanvas--always .widget-filters__item:first-child {
        border-top: none;
    }

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

/*
// .product
*/
.product__header h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.product__tabs {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
}

.product__subtitle {
    padding-top: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #6c757d;
    font-size: 14px;
    line-height: 1;
}

[dir=ltr] .product__rating-stars {
    margin-right: 8px;
}

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

.product__rating-label a {
    color: inherit;
}

[dir=ltr] .product__fit {
    margin-left: 12px;
}

[dir=rtl] .product__fit {
    margin-right: 12px;
}

.product__info-card {
    position: relative;
}

.product__info-body {
    padding: 28px 28px 24px;
}

.product__prices-stock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 22px;
}


.product__brand {
    padding-top: 4px;
    padding-bottom: 16px;
}

.product__meta {
    margin: -3px 0;
}

    .product__meta table {
        width: 100%;
        font-size: 14px;
    }

    .product__meta th,
    .product__meta td {
        padding: 3px 0;
    }

    .product__meta th {
        font-weight: 500;
    }

[dir=ltr] .product__meta th {
    padding-right: 12px;
}

[dir=rtl] .product__meta th {
    padding-left: 12px;
}

.product__meta tr + tr &gt; * {
    border-top: 1px solid #ebebeb;
}

.product__meta a {
    color: #f07d00;
}

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

.product__shop-features {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    margin-top: 30px;
}

.product__badge {
    top: -7px;
    position: absolute;
}

[dir=ltr] .product__badge {
    left: 22px;
}

[dir=rtl] .product__badge {
    right: 22px;
}

.product__prices {
    padding: 8px 0 7px;
    line-height: 1;
}

.product__price {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.04em;
    color: #262626;
}

.product__price--new {
    color: #262626;
}

.product__price--old {
    font-size: 16px;
    text-decoration: line-through;
    font-weight: 400;
    color: #999;
    margin-bottom: 5px;
}

.product__form {
    background: #f9f9f9;
    margin-bottom: 24px;
    margin-top: -4px;
    padding: 16px 28px 18px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.product__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    white-space: nowrap;
    padding: 0 13px 24px;
}

.product__actions-item--quantity {
    width: 100px;
}

[dir=ltr] .product__actions-item--quantity {
    margin-right: 8px;
}

[dir=rtl] .product__actions-item--quantity {
    margin-left: 8px;
}

.product__actions-item--addtocart {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.product__actions-item--wishlist,
.product__actions-item--compare {
    margin-top: 14px;
    margin-bottom: -8px;
    width: 50%;
    font-size: 13px;
    line-height: 16px;
    background: transparent;
    color: #262626;
    fill: #d9d9d9;
    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;
    border: none;
    padding-top: 7px;
    padding-bottom: 5px;
    border-radius: 2px;
    -webkit-transition: background .15s, fill .15s;
    transition: background .15s, fill .15s;
}

[dir=ltr] .product__actions-item--wishlist, [dir=ltr]
.product__actions-item--compare {
    padding-left: 9px;
    padding-right: 10px;
}

[dir=rtl] .product__actions-item--wishlist, [dir=rtl]
.product__actions-item--compare {
    padding-right: 9px;
    padding-left: 10px;
}

.product__actions-item--wishlist svg,
.product__actions-item--compare svg {
    position: relative;
    top: -1px;
}

[dir=ltr] .product__actions-item--wishlist svg, [dir=ltr]
.product__actions-item--compare svg {
    margin-right: 8px;
}

[dir=rtl] .product__actions-item--wishlist svg, [dir=rtl]
.product__actions-item--compare svg {
    margin-left: 8px;
}

.product__actions-item--wishlist:focus,
.product__actions-item--compare:focus {
    outline: none;
}

.product__actions-item--wishlist:hover,
.product__actions-item--compare:hover {
    background: #f5f5f5;
    fill: #bfbfbf;
}

.product__actions-item--wishlist:active,
.product__actions-item--compare:active {
    background: #f0f0f0;
    fill: #b3b3b3;
}

.product__actions-divider {
    width: 100%;
}

.product__tags-and-share-links {
    border-top: 1px solid #ebebeb;
    padding: 24px 28px;
}

.product__tags + .product__share-links {
    margin-top: 18px;
}

.product--layout--sidebar {
    --product-gutter: 30px;
    --product-gallery-image-max-width: 400px;
}

    .product--layout--sidebar .product__body {
        display: grid;
        grid-template-columns: calc(100% - 370px) 370px;
        grid-template-rows: auto auto 1fr;
    }

    .product--layout--sidebar .product__card--one {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .product--layout--sidebar .product__header {
        grid-column: 1;
        grid-row: 1;
    }

    .product--layout--sidebar .product__gallery {
        grid-column: 1;
        grid-row: 2;
    }

    .product--layout--sidebar .product__tabs {
        grid-column: 1;
        grid-row: 3;
    }

    .product--layout--sidebar .product__info {
        grid-column: 2;
        grid-row: 1 / 4;
    }

    .product--layout--sidebar .product__card {
        background-color: #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    }

    .product--layout--sidebar .product__card--two {
        display: none;
    }

    .product--layout--sidebar .product__gallery {
        padding: 0 40px 40px;
    }

    .product--layout--sidebar .product__header {
        padding: 36px 40px 16px;
    }

[dir=ltr] .product--layout--sidebar .product__info {
    margin-left: var(--product-gutter);
}

[dir=rtl] .product--layout--sidebar .product__info {
    margin-right: var(--product-gutter);
}

.product--layout--sidebar .product__info-card {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
}

.product--layout--sidebar .product__shop-features,
.product--layout--sidebar .product__tabs {
    margin-top: var(--product-gutter);
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    [dir=ltr] .product--layout--sidebar .product__title {
        padding-right: 80px;
    }

    [dir=rtl] .product--layout--sidebar .product__title {
        padding-left: 80px;
    }

    .product--layout--sidebar .product__actions-item--wishlist,
    .product--layout--sidebar .product__actions-item--compare {
        position: absolute;
        top: 19px;
        width: 40px;
        height: 40px;
        border-radius: 20px;
        padding: 0;
        margin: 0;
    }

    [dir=ltr] .product--layout--sidebar .product__actions-item--wishlist, [dir=ltr]
    .product--layout--sidebar .product__actions-item--compare {
        right: 16px;
    }

    [dir=rtl] .product--layout--sidebar .product__actions-item--wishlist, [dir=rtl]
    .product--layout--sidebar .product__actions-item--compare {
        left: 16px;
    }

    .product--layout--sidebar .product__actions-item--wishlist span,
    .product--layout--sidebar .product__actions-item--compare span {
        display: none;
    }

    .product--layout--sidebar .product__actions-item--wishlist svg,
    .product--layout--sidebar .product__actions-item--compare svg {
        top: 0;
        display: block;
        margin: 0;
    }

    [dir=ltr] .product--layout--sidebar .product__actions-item--compare {
        right: 52px;
    }

    [dir=rtl] .product--layout--sidebar .product__actions-item--compare {
        left: 52px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    [dir=ltr] .product--layout--sidebar .product__info-body, [dir=ltr]
    .product--layout--sidebar .product__form, [dir=ltr]
    .product--layout--sidebar .product__actions, [dir=ltr]
    .product--layout--sidebar .product__tags-and-share-links {
        padding-left: 20px;
        padding-right: 20px;
    }

    [dir=rtl] .product--layout--sidebar .product__info-body, [dir=rtl]
    .product--layout--sidebar .product__form, [dir=rtl]
    .product--layout--sidebar .product__actions, [dir=rtl]
    .product--layout--sidebar .product__tags-and-share-links {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .product--layout--sidebar .product__meta table,
    .product--layout--sidebar .product__meta th,
    .product--layout--sidebar .product__meta td {
        display: block;
    }

    .product--layout--sidebar .product__meta tbody {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product--layout--sidebar .product__meta tr,
    .product--layout--sidebar .product__meta th {
        width: calc(50% - 10px);
    }

    .product--layout--sidebar .product__meta tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    [dir=ltr] .product--layout--sidebar .product__meta tr:nth-child(2n) {
        margin-left: 20px;
    }

    [dir=rtl] .product--layout--sidebar .product__meta tr:nth-child(2n) {
        margin-right: 20px;
    }
}

@media (max-width: 1199.98px) {
    .product--layout--sidebar .product__info-card {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    [dir=ltr] .product--layout--sidebar .product__info-card {
        padding-left: 24px;
        padding-right: 24px;
    }

    [dir=rtl] .product--layout--sidebar .product__info-card {
        padding-right: 24px;
        padding-left: 24px;
    }

    .product--layout--sidebar .product__info-body {
        padding-top: 0;
        padding-bottom: 16px;
    }

    [dir=ltr] .product--layout--sidebar .product__info-body {
        padding-left: 0;
        padding-right: 0;
    }

    [dir=rtl] .product--layout--sidebar .product__info-body {
        padding-right: 0;
        padding-left: 0;
    }

    .product--layout--sidebar .product__prices-stock {
        padding-top: 0;
        padding-bottom: 10px;
    }

    [dir=ltr] .product--layout--sidebar .product__prices-stock {
        padding-left: 0;
        padding-right: 0;
    }

    [dir=rtl] .product--layout--sidebar .product__prices-stock {
        padding-right: 0;
        padding-left: 0;
    }

    .product--layout--sidebar .product__price {
        font-size: 26px;
    }

    .product--layout--sidebar .product__price--old {
        font-size: 16px;
    }

    .product--layout--sidebar .product__meta {
        border-top: 1px solid #ebebeb;
        border-bottom: 1px solid #ebebeb;
        padding: 10px 0;
        margin: 8px 0;
    }

        .product--layout--sidebar .product__meta th,
        .product--layout--sidebar .product__meta td {
            padding-top: 1px;
            padding-bottom: 1px;
        }

        .product--layout--sidebar .product__meta tr + tr &gt; * {
            border: none;
        }

    .product--layout--sidebar .product__form {
        background: transparent;
        padding: 0;
        border: none;
        margin-bottom: 16px;
    }

    .product--layout--sidebar .product__actions {
        padding: 0;
    }

    .product--layout--sidebar .product__tags-and-share-links {
        border: none;
        padding: 20px 0 0;
    }
}

@media (max-width: 767.98px) {
    .product--layout--sidebar .product__actions {
        margin-bottom: -6px;
    }

    .product--layout--sidebar .product__actions-divider {
        height: 10px;
    }

    .product--layout--sidebar .product__actions-item--wishlist,
    .product--layout--sidebar .product__actions-item--compare {
        width: auto;
        margin-top: 2px;
        margin-bottom: -2px;
    }
}

@media (max-width: 575.98px) {
    .product--layout--sidebar .product__subtitle {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .product--layout--sidebar .product__fit {
        margin-bottom: 11px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    [dir=ltr] .product--layout--sidebar .product__fit {
        margin-left: -4px;
    }

    [dir=rtl] .product--layout--sidebar .product__fit {
        margin-right: -4px;
    }
}

@media (max-width: 1399.98px) {
    .product--layout--sidebar {
        --product-gutter: 20px;
        --product-gallery-image-max-width: 360px;
    }

        .product--layout--sidebar .product__body {
            grid-template-rows: -webkit-max-content;
            grid-template-rows: max-content;
            grid-template-columns: calc(100% - 332px) 332px;
        }

        .product--layout--sidebar .product__info {
            grid-column: 2;
            grid-row: 1 / 3;
        }

        .product--layout--sidebar .product__gallery {
            padding-top: 0;
            padding-bottom: 28px;
        }

    [dir=ltr] .product--layout--sidebar .product__gallery {
        padding-left: 28px;
        padding-right: 28px;
    }

    [dir=rtl] .product--layout--sidebar .product__gallery {
        padding-right: 28px;
        padding-left: 28px;
    }

    .product--layout--sidebar .product__header {
        padding-top: 24px;
        padding-bottom: 16px;
    }

    [dir=ltr] .product--layout--sidebar .product__header {
        padding-left: 28px;
        padding-right: 28px;
    }

    [dir=rtl] .product--layout--sidebar .product__header {
        padding-right: 28px;
        padding-left: 28px;
    }

    .product--layout--sidebar .product__shop-features {
        display: none;
    }

    .product--layout--sidebar .product__tabs {
        grid-column: 1 / 3;
    }
}

@media (max-width: 1199.98px) {
    .product--layout--sidebar {
        --product-gutter: 16px;
    }

        .product--layout--sidebar .product__body {
            grid-template-columns: 100%;
        }

        .product--layout--sidebar .product__info {
            grid-column: 1;
            grid-row: 3;
        }

        .product--layout--sidebar .product__tabs {
            grid-column: 1;
            grid-row: 4;
        }

        .product--layout--sidebar .product__card--one {
            display: none;
        }

        .product--layout--sidebar .product__header {
            background-color: #fff;
            -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
            padding-bottom: 24px;
        }

        .product--layout--sidebar .product__gallery {
            background-color: #fff;
            -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
            width: 100%;
            margin-top: var(--product-gutter);
            padding-top: 24px;
            padding-bottom: 28px;
        }

    [dir=ltr] .product--layout--sidebar .product__gallery {
        padding-left: 24px;
        padding-right: 24px;
    }

    [dir=rtl] .product--layout--sidebar .product__gallery {
        padding-right: 24px;
        padding-left: 24px;
    }

    .product--layout--sidebar .product__info {
        margin-top: var(--product-gutter);
    }

    [dir=ltr] .product--layout--sidebar .product__info {
        margin-left: 0;
    }

    [dir=rtl] .product--layout--sidebar .product__info {
        margin-right: 0;
    }

    .product--layout--sidebar .product__info-card {
        position: static;
    }

    .product--layout--sidebar .product__actions-item--addtocart .btn {
        width: auto;
    }
}

@media (max-width: 767.98px) {
    .product--layout--sidebar .product__header {
        background-color: #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        padding-top: 24px;
        padding-bottom: 22px;
    }

    [dir=ltr] .product--layout--sidebar .product__header {
        padding-left: 24px;
        padding-right: 24px;
    }

    [dir=rtl] .product--layout--sidebar .product__header {
        padding-right: 24px;
        padding-left: 24px;
    }

    .product--layout--sidebar .product__title {
        font-size: 22px;
        line-height: 28px;
    }
}

.product--layout--full {
    product-gutter: 30px;
}

    .product--layout--full .product__body {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: -webkit-max-content auto auto 1fr;
        grid-template-rows: max-content auto auto 1fr;
    }

    .product--layout--full .product__card--one {
        grid-column: 1 / 3;
        grid-row: 1 / 4;
    }

    .product--layout--full .product__gallery {
        grid-column: 1;
        grid-row: 1 / 4;
    }

    .product--layout--full .product__header {
        grid-column: 2;
        grid-row: 1;
    }

    .product--layout--full .product__main {
        grid-column: 2;
        grid-row: 2;
    }

    .product--layout--full .product__info {
        grid-column: 3;
        grid-row: 1 / 5;
    }

    .product--layout--full .product__tabs {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .product--layout--full .product__card {
        background-color: #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    }

    .product--layout--full .product__card--two {
        display: none;
    }

    .product--layout--full .product__gallery {
        padding-top: 20px;
        padding-bottom: 48px;
        width: 440px;
    }

[dir=ltr] .product--layout--full .product__gallery {
    padding-left: 40px;
    padding-right: 0;
}

[dir=rtl] .product--layout--full .product__gallery {
    padding-right: 40px;
    padding-left: 40px;
}

.product--layout--full .product__header {
    padding-top: 20px;
    padding-bottom: 16px;
}

[dir=ltr] .product--layout--full .product__header {
    padding-left: 36px;
    padding-right: 40px;
}

[dir=rtl] .product--layout--full .product__header {
    padding-right: 36px;
    padding-left: 40px;
}

.product--layout--full .product__main {
    padding-top: 0;
    padding-bottom: 48px;
}

[dir=ltr] .product--layout--full .product__main {
    padding-left: 36px;
    padding-right: 40px;
}

[dir=rtl] .product--layout--full .product__main {
    padding-right: 36px;
    padding-left: 40px;
}

[dir=ltr] .product--layout--full .product__info {
    margin-left: var(--product-gutter);
}

[dir=rtl] .product--layout--full .product__info {
    margin-right: var(--product-gutter);
}

.product--layout--full .product__shop-features,
.product--layout--full .product__tabs {
    margin-top: var(--product-gutter);
}

.product--layout--full .product__subtitle {
    padding-top: 8px;
}

.product--layout--full .product__gallery-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product--layout--full .product__excerpt {
    font-size: 15px;
}

.product--layout--full .product__features {
    margin: 20px 0 0;
    font-size: 14px;
    border-radius: 3px;
}

    .product--layout--full .product__features ul {
        list-style: none;
        padding: 0;
        color: #6c757d;
        margin: -6px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product--layout--full .product__features li {
        padding-top: 3px;
        padding-bottom: 2px;
        position: relative;
        margin: 0 6px;
        width: calc(100% / 1 - 12px);
    }

[dir=ltr] .product--layout--full .product__features li {
    padding-left: 11px;
    padding-right: 0;
}

[dir=rtl] .product--layout--full .product__features li {
    padding-right: 11px;
    padding-left: 0;
}

.product--layout--full .product__features li:before {
    position: absolute;
    display: block;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 1.5px;
    background: currentColor;
    top: 12px;
    opacity: .85;
}

[dir=ltr] .product--layout--full .product__features li:before {
    left: 0;
}

[dir=rtl] .product--layout--full .product__features li:before {
    right: 0;
}

.product--layout--full .product__features-title {
    font-weight: 700;
    padding-bottom: 12px;
}

.product--layout--full .product__features-link {
    margin: 20px -2px 0;
    padding: 20px 2px 0;
    font-size: 14px;
    border-top: 1px solid #ebebeb;
}

    .product--layout--full .product__features-link a:hover {
        text-decoration: underline;
    }

@media (min-width: 1200px) {
    .product--layout--full .product__subtitle {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .product--layout--full .product__fit {
        margin-bottom: 11px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    [dir=ltr] .product--layout--full .product__fit {
        margin-left: -4px;
    }

    [dir=rtl] .product--layout--full .product__fit {
        margin-right: -4px;
    }
}

@media (min-width: 768px) {
    .product--layout--full .product__info-card {
        background-color: #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .product--layout--full .product__gallery {
        background-color: #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    }

    [dir=ltr] .product--layout--full .product__actions-item--addtocart .btn {
        padding-left: 16px;
        padding-right: 16px;
    }

    [dir=rtl] .product--layout--full .product__actions-item--addtocart .btn {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 575.98px) {
    .product--layout--full .product__subtitle {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .product--layout--full .product__fit {
        margin-bottom: 11px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    [dir=ltr] .product--layout--full .product__fit {
        margin-left: -4px;
    }

    [dir=rtl] .product--layout--full .product__fit {
        margin-right: -4px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    [dir=ltr] .product--layout--full .product__title {
        padding-right: 80px;
    }

    [dir=rtl] .product--layout--full .product__title {
        padding-left: 80px;
    }

    .product--layout--full .product__actions-item--wishlist,
    .product--layout--full .product__actions-item--compare {
        position: absolute;
        top: 19px;
        width: 40px;
        height: 40px;
        border-radius: 20px;
        padding: 0;
        margin: 0;
    }

    [dir=ltr] .product--layout--full .product__actions-item--wishlist, [dir=ltr]
    .product--layout--full .product__actions-item--compare {
        right: 16px;
    }

    [dir=rtl] .product--layout--full .product__actions-item--wishlist, [dir=rtl]
    .product--layout--full .product__actions-item--compare {
        left: 16px;
    }

    .product--layout--full .product__actions-item--wishlist span,
    .product--layout--full .product__actions-item--compare span {
        display: none;
    }

    .product--layout--full .product__actions-item--wishlist svg,
    .product--layout--full .product__actions-item--compare svg {
        top: 0;
        display: block;
        margin: 0;
    }

    [dir=ltr] .product--layout--full .product__actions-item--compare {
        right: 52px;
    }

    [dir=rtl] .product--layout--full .product__actions-item--compare {
        left: 52px;
    }
}

@media (max-width: 1399.98px) {
    .product--layout--full {
        --product-gutter: 24px;
    }

        .product--layout--full .product__body {
            grid-template-columns: auto 1fr;
        }

        .product--layout--full .product__gallery {
            padding-top: 24px;
            padding-bottom: 36px;
            width: 348px;
        }

    [dir=ltr] .product--layout--full .product__gallery {
        padding-left: 28px;
        padding-right: 0;
    }

    [dir=rtl] .product--layout--full .product__gallery {
        padding-right: 28px;
        padding-left: 0;
    }

    .product--layout--full .product__header {
        padding-top: 24px;
        padding-bottom: 16px;
    }

    [dir=ltr] .product--layout--full .product__header {
        padding-left: 28px;
        padding-right: 28px;
    }

    [dir=rtl] .product--layout--full .product__header {
        padding-right: 28px;
        padding-left: 28px;
    }

    .product--layout--full .product__main {
        /*padding-top: 0;*/
        padding-bottom: 36px;
    }

    [dir=ltr] .product--layout--full .product__main {
        padding-left: 28px;
        padding-right: 28px;
    }

    [dir=rtl] .product--layout--full .product__main {
        padding-right: 28px;
        padding-left: 28px;
    }

    [dir=ltr] .product--layout--full .product__info-body, [dir=ltr]
    .product--layout--full .product__form, [dir=ltr]
    .product--layout--full .product__actions, [dir=ltr]
    .product--layout--full .product__tags-and-share-links {
        padding-left: 20px;
        padding-right: 20px;
    }

    [dir=rtl] .product--layout--full .product__info-body, [dir=rtl]
    .product--layout--full .product__form, [dir=rtl]
    .product--layout--full .product__actions, [dir=rtl]
    .product--layout--full .product__tags-and-share-links {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 1199.98px) {
    .product--layout--full .product__main {
        padding-bottom: 16px;
    }

    .product--layout--full .product__excerpt {
        border-bottom: 1px solid #ebebeb;
        padding-bottom: 14px;
    }

    .product--layout--full .product__gallery {
        --product-gallery-image-max-width: 380px;
        padding-top: 0;
        width: 100%;
    }

    [dir=ltr] .product--layout--full .product__gallery {
        padding-right: 28px;
    }

    [dir=rtl] .product--layout--full .product__gallery {
        padding-left: 28px;
    }

    .product--layout--full .product__header {
        padding-bottom: 10px;
    }

    .product--layout--full .product__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .product--layout--full .product__shop-features {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .product--layout--full {
        --product-gutter: 16px;
    }

        .product--layout--full .product__body {
            grid-template-columns: auto 1fr;
            grid-template-rows: -webkit-max-content auto auto 1fr;
            grid-template-rows: max-content auto auto 1fr;
        }

        .product--layout--full .product__card {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }

        .product--layout--full .product__header {
            grid-column: 1 / 3;
            grid-row: 1;
        }

        .product--layout--full .product__main {
            grid-column: 1 / 3;
            grid-row: 2;
        }

        .product--layout--full .product__gallery {
            grid-column: 2;
            grid-row: 3;
        }

        .product--layout--full .product__info {
            grid-column: 2;
            grid-row: 3;
        }

        .product--layout--full .product__gallery {
            margin-top: var(--product-gutter);
            width: 100%;
            padding-top: 0;
            padding-bottom: 0;
        }

    [dir=ltr] .product--layout--full .product__gallery {
        padding-left: 24px;
        padding-right: 24px;
    }

    [dir=rtl] .product--layout--full .product__gallery {
        padding-right: 24px;
        padding-left: 24px;
    }

    [dir=ltr] .product--layout--full .product__info {
        margin-left: var(--product-gutter);
    }

    [dir=rtl] .product--layout--full .product__info {
        margin-right: var(--product-gutter);
    }

    .product--layout--full .product__excerpt {
        border: none;
        padding-bottom: 8px;
    }

    .product--layout--full .product__info-card {
        position: static;
        margin-top: var(--product-gutter);
        padding-top: 24px;
        padding-bottom: 28px;
    }

    [dir=ltr] .product--layout--full .product__info-card {
        padding-left: 24px;
        padding-right: 24px;
    }

    [dir=rtl] .product--layout--full .product__info-card {
        padding-right: 24px;
        padding-left: 24px;
    }

    .product--layout--full .product__info-body {
        padding-top: 0;
        padding-bottom: 16px;
    }

    [dir=ltr] .product--layout--full .product__info-body {
        padding-left: 0px;
        padding-right: 0px;
    }

    [dir=rtl] .product--layout--full .product__info-body {
        padding-right: 0px;
        padding-left: 0px;
    }

    .product--layout--full .product__prices-stock {
        padding-top: 0;
        padding-bottom: 10px;
    }

    [dir=ltr] .product--layout--full .product__prices-stock {
        padding-left: 0px;
        padding-right: 0px;
    }

    [dir=rtl] .product--layout--full .product__prices-stock {
        padding-right: 0px;
        padding-left: 0px;
    }

    .product--layout--full .product__price {
        font-size: 26px;
    }

    .product--layout--full .product__price--old {
        font-size: 16px;
    }

    .product--layout--full .product__meta {
        border-top: 1px solid #ebebeb;
        border-bottom: 1px solid #ebebeb;
        padding: 10px 0;
        margin: 8px 0;
    }

    .product--layout--full .product__brand {
        padding: 10px 0;
        margin: 8px 0;
    }

    .product--layout--full .product__meta th,
    .product--layout--full .product__meta td {
        padding-top: 1px;
        padding-bottom: 1px;
    }

    .product--layout--full .product__meta tr + tr &gt; * {
        border: none;
    }

    .product--layout--full .product__form {
        background: transparent;
        border: none;
        margin-bottom: 16px;
        padding-top: 0;
        padding-bottom: 0;
    }

    [dir=ltr] .product--layout--full .product__form {
        padding-left: 0;
        padding-right: 0;
    }

    [dir=rtl] .product--layout--full .product__form {
        padding-right: 0;
        padding-left: 0;
    }

    .product--layout--full .product__actions {
        padding-top: 0;
        padding-bottom: 0;
    }

    [dir=ltr] .product--layout--full .product__actions {
        padding-left: 0;
        padding-right: 0;
    }

    [dir=rtl] .product--layout--full .product__actions {
        padding-right: 0;
        padding-left: 0;
    }

    .product--layout--full .product__tags-and-share-links {
        border: none;
        padding-top: 20px;
        padding-bottom: 0;
    }

    [dir=ltr] .product--layout--full .product__tags-and-share-links {
        padding-left: 0;
        padding-right: 0;
    }

    [dir=rtl] .product--layout--full .product__tags-and-share-links {
        padding-right: 0;
        padding-left: 0;
    }

    .product--layout--full .product-gallery[data-layout="product-full"] .product-gallery__zoom {
        top: -15px;
    }

    [dir=ltr] .product--layout--full .product-gallery[data-layout="product-full"] .product-gallery__zoom {
        right: -15px;
    }

    [dir=rtl] .product--layout--full .product-gallery[data-layout="product-full"] .product-gallery__zoom {
        left: -15px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .product--layout--full .product__meta table,
    .product--layout--full .product__meta th,
    .product--layout--full .product__meta td {
        display: block;
    }

    .product--layout--full .product__meta tbody {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product--layout--full .product__meta tr,
    .product--layout--full .product__meta th {
        width: calc(50% - 10px);
    }

    .product--layout--full .product__meta tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    [dir=ltr] .product--layout--full .product__meta tr:nth-child(2n) {
        margin-left: 20px;
    }

    [dir=rtl] .product--layout--full .product__meta tr:nth-child(2n) {
        margin-right: 20px;
    }
}

@media (max-width: 767.98px) {
    .product--layout--full .product__body {
        grid-template-columns: 100%;
        grid-template-rows: auto;
    }

    .product--layout--full .product__header {
        grid-column: 1;
        grid-row: 1;
    }

    .product--layout--full .product__gallery {
        grid-column: 1;
        grid-row: 2;
    }

    .product--layout--full .product__card--two {
        grid-column: 1;
        grid-row: 3 / 5;
    }

    .product--layout--full .product__main {
        grid-column: 1;
        grid-row: 3;
    }

    .product--layout--full .product__info {
        grid-column: 1;
        grid-row: 4;
    }

    .product--layout--full .product__tabs {
        grid-column: 1;
        grid-row: 5;
    }

    .product--layout--full .product__card--one {
        display: none;
    }

    .product--layout--full .product__card--two {
        display: block;
    }

    .product--layout--full .product__header {
        background-color: #fff;        
        padding-top: 24px;
        padding-bottom: 22px;
    }

    [dir=ltr] .product--layout--full .product__header {
        padding-left: 24px;
        padding-right: 24px;
    }

    [dir=rtl] .product--layout--full .product__header {
        padding-right: 24px;
        padding-left: 24px;
    }

    .product--layout--full .product__title {
        font-size: 22px;
        line-height: 28px;
    }

    .product--layout--full .product__subtitle {
        padding-top: 8px;
    }

    .product--layout--full .product__body {
        width: 100%;
    }

    .product--layout--full .product__gallery {
        background-color: #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        --product-gallery-image-max-width: 360px;
        width: 100%;
    }

    .product--layout--full .product__main,
    .product--layout--full .product__card--two {
        margin-top: var(--product-gutter);
    }

    .product--layout--full .product__main {
        padding-top: 24px;
        padding-bottom: 18px;
    }

    [dir=ltr] .product--layout--full .product__main {
        padding-left: 24px;
        padding-right: 24px;
    }

    [dir=rtl] .product--layout--full .product__main {
        padding-right: 24px;
        padding-left: 24px;
    }

    .product--layout--full .product__excerpt {
        padding-bottom: 0;
    }

    .product--layout--full .product__info {
        width: 100%;
    }

    [dir=ltr] .product--layout--full .product__info {
        margin-left: 0;
    }

    [dir=rtl] .product--layout--full .product__info {
        margin-right: 0;
    }

    .product--layout--full .product__info-card {
        margin-top: 0;
        padding-top: 0;
    }

    .product--layout--full .product__actions {
        margin-bottom: -6px;
    }

    .product--layout--full .product__actions-item--addtocart {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .product--layout--full .product__actions-divider {
        height: 10px;
    }

    .product--layout--full .product__actions-item--wishlist,
    .product--layout--full .product__actions-item--compare {
        width: auto;
        margin-top: 2px;
        margin-bottom: -2px;
    }
}

/*
// .product-gallery
*/
.product-gallery__featured {
    position: relative;
}

    .product-gallery__featured .owl-carousel a {
        display: block;
    }

    .product-gallery__featured .owl-carousel img {
        max-width: 420px;
        margin: 0 auto;
    }

.product-gallery__zoom {
    display: var(--product-gallery-zoom-display, block);
    top: 0;
    position: absolute;
    padding: 9px;
    margin: 0;
    border: none;
    border-radius: 21px;
    fill: currentColor;
    z-index: 2;
    -webkit-transition: background .15s, color .15s;
    transition: background .15s, color .15s;
    background-color: #fff;
    color: #ccc;
}

    .product-gallery__zoom:hover {
        background-color: #f2f2f2;
        color: #999;
    }

    .product-gallery__zoom:active {
        background-color: #ebebeb;
        color: #808080;
    }

[dir=ltr] .product-gallery__zoom {
    right: -21px;
}

[dir=rtl] .product-gallery__zoom {
    left: -21px;
}

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

.product-gallery__zoom svg {
    display: block;
}

.product-gallery__thumbnails .owl-stage {
    margin: 0 auto;
}

.product-gallery__thumbnails-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1.5px;
    padding: 2px;
}

    .product-gallery__thumbnails-item:before {
        position: absolute;
        display: block;
        content: '';
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-box-shadow: 0 0 0 2px #f2f2f2 inset;
        box-shadow: 0 0 0 2px #f2f2f2 inset;
        -webkit-transition: -webkit-box-shadow .12s;
        transition: -webkit-box-shadow .12s;
        transition: box-shadow .12s;
        transition: box-shadow .12s, -webkit-box-shadow .12s;
    }

[dir=ltr] .product-gallery__thumbnails-item:before {
    left: 0;
}

[dir=rtl] .product-gallery__thumbnails-item:before {
    right: 0;
}

.product-gallery__thumbnails-item:hover:before {
    -webkit-box-shadow: 0 0 0 2px #e0e0e0 inset;
    box-shadow: 0 0 0 2px #e0e0e0 inset;
}

.product-gallery__thumbnails-item--active {
    cursor: default;
}

    .product-gallery__thumbnails-item--active:before, .product-gallery__thumbnails-item--active:hover:before {
        -webkit-box-shadow: 0 0 0 2px #ff911a inset;
        box-shadow: 0 0 0 2px #ff911a inset;
    }

.product-gallery--layout--quickview .product-gallery__featured .owl-carousel img {
    width: 320px;
    max-width: 100%;
}

.product-gallery--layout--quickview .product-gallery__zoom {
    display: none;
}

.product-gallery--layout--product-sidebar .product-gallery__featured .owl-carousel img {
    max-width: var(--product-gallery-image-max-width, 100%);
}

.product-gallery--layout--product-full .product-gallery__featured .owl-carousel img {
    max-width: var(--product-gallery-image-max-width, 100%);
}

.product-gallery--layout--product-full .product-gallery__zoom {
    top: 0;
}

[dir=ltr] .product-gallery--layout--product-full .product-gallery__zoom {
    right: 0;
}

[dir=rtl] .product-gallery--layout--product-full .product-gallery__zoom {
    left: 0;
}

/*
// .product-tabs
*/
.product-tabs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0 0 -1px;
    list-style: none;
    overflow-x: auto;
}

.product-tabs__content {
    border-top: 1px solid #ebebeb;
}

.product-tabs__item {
    position: relative;
}

    .product-tabs__item a {
        font-size: 16px;
        font-weight: 500;
        color: inherit;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 14px 18px 13px;
        -webkit-transition: background .12s, -webkit-box-shadow .12s;
        transition: background .12s, -webkit-box-shadow .12s;
        transition: background .12s, box-shadow .12s;
        transition: background .12s, box-shadow .12s, -webkit-box-shadow .12s;
    }

        .product-tabs__item a:hover {
            background: #f7f7f7;
            -webkit-box-shadow: 0 -1px #e5e5e5 inset;
            box-shadow: 0 -1px #e5e5e5 inset;
        }

        .product-tabs__item a:active {
            background: #f2f2f2;
            -webkit-box-shadow: 0 -1px #e0e0e0 inset;
            box-shadow: 0 -1px #e0e0e0 inset;
        }

[dir=ltr] .product-tabs__item:first-child {
    margin-left: auto;
}

[dir=rtl] .product-tabs__item:first-child {
    margin-right: auto;
}

[dir=ltr] .product-tabs__item:last-child {
    margin-right: auto;
}

[dir=rtl] .product-tabs__item:last-child {
    margin-left: auto;
}

.product-tabs__item-counter {
    color: #ff911a;
    font-size: 14px;
    top: -4px;
    position: relative;
}

[dir=ltr] .product-tabs__item-counter {
    margin-left: 3px;
    margin-right: -3px;
}

[dir=rtl] .product-tabs__item-counter {
    margin-right: 3px;
    margin-left: -3px;
}

.product-tabs__item--active a, .product-tabs__item--active a:hover, .product-tabs__item--active a:active {
    background: transparent;
    -webkit-box-shadow: 0 -2px #ff911a inset;
    box-shadow: 0 -2px #ff911a inset;
}

.product-tabs__pane {
    overflow: hidden;
    height: 0;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}

.product-tabs__pane--active {
    padding: 42px 48px 48px;
    overflow: visible;
    height: auto;
    opacity: 1;
    max-width: calc(100% - .001px);
}

.product-tabs--layout--full .product-tabs__pane--active {
    padding: 48px;
}

@media (max-width: 991.98px) {
    .product-tabs--layout--full .product-tabs__pane--active {
        padding: 40px 44px 44px;
    }
}

@media (max-width: 767.98px) {
    .product-tabs--layout--full .product-tabs__pane--active {
        padding: 24px 28px 28px;
    }
}

@media (max-width: 419px) {
    .product-tabs--layout--full .product-tabs__pane--active {
        padding: 20px 24px 24px;
    }
}

@media (min-width: 1400px) {
    .product-tabs--layout--sidebar .product-tabs__pane--active {
        padding: 36px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .product-tabs--layout--sidebar .product-tabs__pane--active {
        padding: 48px;
    }
}

@media (max-width: 1199.98px) {
    .product-tabs--layout--sidebar .product-tabs__pane--active {
        padding: 36px;
    }
}

@media (max-width: 767.98px) {
    .product-tabs--layout--sidebar .product-tabs__pane--active {
        padding: 28px;
    }
}

@media (max-width: 419px) {
    .product-tabs--layout--sidebar .product-tabs__pane--active {
        padding: 24px;
    }
}




@media (max-width: 575.98px) {
    .fitment-chart-table {
        min-width: 320%;
    }
}

@media (min-width: 575.98px) and (max-width: 991.98px) {
    .fitment-chart-table {
        min-width: 150%;
    }
}</pre></body></html>