/*!
Theme Name: Moksi
Theme URI: https://www.moksi.co.za/
Author: WeDev.Africa
Author URI: https://wedev.acrica
Description: Custom base shop theme for WordPress
Version: 3.1.0
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: web2web-shop
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Spinde and Loom is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
  - Footer
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments
	- Spacing

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic --------------------------------------------------------------*/
/* Popup container styling */
.app-promo {
    position: fixed;
    bottom: -100px; /* Hide below the screen initially */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 320px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: bottom 0.3s ease-in-out;
}

/* Show the popup */
.app-promo.show {
    bottom: 20px; /* Slide up into view */
}

/* Content and download links */
.app-promo-content p {
    margin: 0;
    font-size: 16px;
}

.download-link {
    color: #fff;
    background-color: #4caf50;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    margin-right: 5px;
}

.download-link:hover {
    background-color: #45a049;
}

.dokan-pagination-container {
    padding-top: 25px !important;
}

/* Dokan 4 Button fix */
.dokan-dashboard-wrap button,
.dokan-dashboard-wrap input[type="submit"],
.dokan-dashboard-wrap input[type="button"],
.dokan-dashboard-wrap a.dokan-btn,
.dokan-dashboard-wrap .dokan-btn {
    all: unset !important;
    all: revert !important;
}

.dokan-layout :is(.bg-primary-500) {
    background-color: var(--colors-primary-500) !important;
}

/* Stack custom Dokan delivery fields vertically */
.rw-delivery-group {
    clear: both;
    margin-bottom: 24px;
}

.rw-delivery-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.rw-delivery-group .dokan-form-control {
    width: 100%;
}


/* Hide Brands field in Dokan vendor product form */
.dokan-product-brand, 
.taxonomy-product_brand,
label[for="product_brand"],
#product_brand,
select#product_brand,
.dokan-form-group:has(#product_brand) {
    display: none !important;
}


/* Close button */
.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.pi-edd.pi-edd-cart {
    padding: 0 !important;
}

fieldset#field_3_1 {
    margin-bottom: -20px;
}

a.wp-block-button__link.has-moksi-grey-color.has-moksi-orange-background-color.has-text-color.has-background.no-border-radius.wp-element-button:hover {
    color: #fff;
}

a.wp-block-button__link.has-moksi-grey-color.has-moksi-grey-background-color.has-text-color.has-background.no-border-radius.wp-element-button {
    color: #fff;
}

a.wp-block-button__link.has-moksi-grey-color.has-moksi-grey-background-color.has-text-color.has-background.no-border-radius.wp-element-button:hover,
a.wp-block-button__link.has-white-color.has-moksi-grey-background-color.has-text-color.has-background.no-border-radius.wp-element-button:hover{
    color: #F37321;
}


/* Color Swatches Filter Fix */

span.color-swatch {
    border: 1px solid #434343 !important;
    border-radius: 5px;
}

span.color-swatch:hover {
    border: 0px solid #434343 !important;
    border-radius: 5px;
}

/* Popup Close Button */
button.pum-close.popmake-close {
    padding: 10px !important;
    line-height: 10px !important;
}

/* Popup Box */

div#popmake-145164 {
    padding: 10px !important;
}

/* Popup Submit button */

input#gform_submit_button_3 {
    margin: 0 auto !important;
}

/* Ensure each table row is displayed as a block to stack them vertically */
.woocommerce div.product form.cart .variations tr {
    display: table-row;
    width: 100%;
    margin-bottom: 15px; /* Add space between each variation row */
}

/* Ensure the label and the value within each row are aligned horizontally */
.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
    display: table-cell;
    vertical-align: top;
}

/* Optional: Add space between the label and the selection items */
.woocommerce div.product form.cart .variations th label {
    margin-right: 10px;
}

/* Ensure the UL elements inside the variations are aligned properly */
.woocommerce div.product form.cart .variations .variable-items-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

span.variable-item-span.variable-item-span-button {
    font-size: 0.9rem !important;
    padding: 5px !important;
}

table.variations tr td {
    display: block !important;
}



.gform_heading { display: none !important;}

.newsletter-signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.form-container {
    text-align: left;
}


.row-actions a {
    visibility: visible !important;
}

a.button.tips.wpo_wcpdf.invoice.pdf {
    display: none !important;
}

.cwginstock-subscribe-form .panel-primary>.panel-heading {
    color: #333E4A !important;
    background-color: #ffede1 !important;
    border-color: #ffede1 !important;
}

.cwginstock-panel-heading h4 {
    color: #333E4A !important;
}

.cwginstock-subscribe-form .panel-primary {
    border-color: #ffede1 !important;
}

.wedocs-single-search-input {
    display: none;
}

.dokan-panel.dokan-panel-default.dokan-profile-completeness {
    display: none !important;
}

.dokan-dashboard-wrap .dokan-dashboard-content .dokan-alert:first-child {
    display: none;
}

@media only screen and (max-width: 600px) {
.pi-edd-loop {
    background: #ffffff;
    color: #000000;
    padding: 5px 5px;
    text-align: left;
    display: none;
}
}

.wd-product-cats {
    display: none;
}

#dokan-navigation > ul > li.social, div.dokan-product-inventory.dokan-edit-row > div.dokan-section-content > div:nth-child(6) > label {
	display: none !important;
}
.vendor-customer-registration {
	display: none !important;
}
.d-none{
	display:none !important;
}

.form-field.pisol_edd_disable_estimate_field {
	display: flex;
}
.form-field.pisol_edd_disable_estimate_field label {
	width: 15%;
}
#pisol_edd input,
#pisol_edd select{
	font-size: 14px;
	line-height: 2;
	color: #2c3338;
	border: 1px solid #8c8f94;
	box-shadow: none;
	border-radius: 3px;
	padding: 0 24px 0 8px;
	height: 30px;
	max-width: 25rem;
	-webkit-appearance: none;
	background-size: 16px 16px;
	cursor: pointer;
	vertical-align: middle;
}
#pisol_edd select {
	background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") no-repeat right 5px top 55%;
}
#pisol_edd .form-field label {
	width: 15%;
}
#pisol_edd .form-field {
	display: flex;
	padding: 10px;
}

.dokan-edit-row .dokan-section-heading.js-section-heading .fa-sort-down {
	transform: rotate(0deg);
}
.dokan-edit-row .dokan-section-heading.js-section-heading.active .fa-sort-down {
	transform: rotate(180deg) !important;
}

.wd-search-form .searchform input[type="text"] {
    padding-right: 50px;
    height: 31px  !important;
    font-size: 15px;
    border-color: var( --e-global-color-secondary )  !important;
    border-width: 1px 1px 1px 1px  !important;
    border-radius: 3px  !important;
}

.page-template-default .pswp {
    display: none !important;
}

.searchform.wd-style-with-bg .searchsubmit {
    color: #F37321 !important;
}
/* input.dokan-btn.dokan-btn-theme,
button.dokan-btn.dokan-btn-theme,
a.dokan-btn.dokan-btn-theme,
input#bulk-product-action,
button.dokan-btn,
input.dokan-right.dokan-btn.dokan-btn-theme
 {
	border-radius: 5px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
	background: #F37321 !important;
	color: #fff !important;
	padding: 6px 12px !important
}

.dokan-dashboard-wrap .dokan-form-group #insert-media-button, input[type="submit"].dokan-btn-theme, a.dokan-btn-theme, .dokan-btn-theme {
    border-radius: 5px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    background: #F37321 !important;
    color: #fff !important;
} */

.store-cat-stack-dokan.cat-drop-stack ul {
    padding-left: 0;
    margin-left: 0;
}

.store-cat-stack-dokan.cat-drop-stack ul li {
    line-height: 2em;
    text-decoration: none !important;
}

aside.widget.dokan-store-widget.dokan-store-menu h3 {
    margin-top: 0;
}

.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.active:after {
	display: none !important;
}

input.wpuf-submit-button{
font-size: 16px;
    padding: 5px 15px;
    line-height: inherit;
    height: inherit;
    border: 1px solid #ccc;
    background: #F37321 !important;
    border-color: #F37321 !important;
    -webkit-box-shadow: 0 1px 0 #F37321;
    color: #fff;
    text-decoration: none;
    text-shadow: unset !important;
	border-radius: 5px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
	padding: 14px 25px !important
}

.wp-block-pullquote {
    line-height: 1.6;
    font-size: 3.5em;
    padding: 0;
    margin: 1em 0;
	color: #F37321
}

h4.wp-block-heading.creatorbenefits {
    font-weight: 600;
    letter-spacing: 1px;
	color: #F37321;
	font-size: 1.2em;
}

.wp-block-image.appimage {
    width: 250px !important;
    margin: 0 auto !important;
}

.wp-block-image.is-style-default.moksiaboutimage img {
    margin-bottom: 1em !important;
}

a.wp-block-button__link.has-text-align-center.wp-element-button {
    color: #fff;
}

.wp-block-buttons.is-content-justification-center.is-layout-flex.wp-container-core-buttons-layout-1.wp-block-buttons-is-layout-flex {
    margin-top: 20px;
}

div.dashboard-widget.big-counter > ul > li > div.count {
    position: unset;
}

ul.slick-dots {
	display: none !important
}

button.slick-next.slick-arrow, button.slick-prev.slick-arrow {
	background: transparent !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 0px !important;
}

.wd-carousel-container.banners-carousel-wrapper .owl-dots {
    display: none;
}

.cr-reviews-slider .cr-review-card {
    box-sizing: border-box;
    padding: 0px 10px;
    height: auto;
}

.review-product .product-thumbnail img {
    height: 200px !important;
    width: 200px !important;
}

.cr-reviews-slider .cr-review-card .cr-review-card-inner {
    box-shadow: 0px 0px 8px 1px rgb(243 115 33 / 50%);
    border-radius: 10px;
}
.cr-review-card {
    margin-top: 30px;
    margin-bottom: 30px;
	text-align: center;
}
.product-title a {
    color: #F37321!important;
}
.product-thumbnail img {
    margin: 0 auto!important;
}
.cr-review-card .review-product {
    display: block!important;
	background: transparent!important;
}
.cr-reviews-slider .cr-review-card .middle-row {
    background: transparent!important;
    border: 0px;
	flex: unset !important
}
.cr-reviews-slider .cr-review-card {
    padding: 0px 30px!important;
}
.cr-reviews-slider .cr-review-card .review-product .product-title {
	text-align: center!important;
    margin-top: 10px!important;
}
.cr-review-card .rating-row .crstar-rating {
    margin: 0 auto!important;
}
.cr-review-card  .rating-row .rating-label {
    display: none;
}
.cr-review-card .datetime {
    display: none;
}
.cr-reviews-slider .cr-review-card .rating-row {
    display: block!important;
}
.cr-reviews-slider .cr-review-card .top-row .reviewer {
    text-align: center!important;
}
.cr-reviews-slider .cr-review-card .top-row {
    display: block!important;
}
.cr-reviews-slider .cr-review-card .top-row .reviewer .reviewer-name {
    display: block!important;
}
.cr-reviews-slider .cr-review-card .top-row {
    border: 0px!important;
}
.cr-review-card .review-text {
    height: 60px;
}
.cr-reviews-slider .slick-prev:before, .cr-reviews-slider .slick-next:before {
    color: #F37321!important;
	font-size: 35px!important;
}
.cr-review-card-inner:before {
    content: "";
    background: #FFEDE1;
    border-radius: 10px;
    width: 380px;
    height: 110px;
    padding: 140px;
    display: block;
    z-index: -1;
    position: absolute;
    margin-left: -32px;
    top: 20%;
}

.homepage-faqs .faq-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.homepage-faqs .faq-item {
    flex-basis: 48%; /* Adjust for spacing */
	border: 1px solid #F37321;
	margin: 0;
    padding: 15px 20px;
    line-height: 1.4;
    cursor: pointer;
    outline: none;
}

.faq-answer ul {
    margin: 0;
}

.faq-item h3 {
    text-transform: capitalize !important;
    margin-bottom: 0;
    font-size: 1em !important;
    font-weight: 700 !important;
    line-height: 35px;
    margin-top: 0 !important;
}

.faq-question {
    cursor: pointer;
}

.faq-answer {
    display: none;
}

.homepage-generic-text {
    column-count: 2;
    column-gap: 20px;
    margin-top: 20px;
}

.moksi_hr {
    text-align: center;
    margin-bottom: 15px;
    width: 120px;
    height: 3px;
    background-color: #F37321;
	border: 0
}

.blog-entries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.blog-entry {
    text-align: center;
}

.blog-entry-image {
    width: 100%;
    height: auto;
}

.blog-entry-image img {
    height: 250px !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
	.cr-review-card {
		padding: 0px 5px !important;
	}
	
	.review-product .product-thumbnail img {
		margin: 0 auto;
	}
	
    .blog-entries-grid {
        grid-template-columns: 1fr;
    }

	.homepage-generic-text {
		column-count: 1;
		text-align: center;
	}

	.moksi_hr {
		display: none !important
	}

	.homepage-faqs .faq-row {
        flex-direction: column;
    }

    .homepage-faqs .faq-item {
        flex-basis: 100%; /* Full width on mobile */
        margin-bottom: 20px; /* Even spacing of 20px between FAQ items */
    }

    /* Adjust the margin for the last item */
    .homepage-faqs .faq-item:last-child {
        margin-bottom: 0;
    }

	.wp-block-pullquote {
		line-height: 1;
		font-size: 1.5em;
		padding: 0;
		margin: 1em 0;
	}
	
	.woocommerce nav.woocommerce-pagination {
    display: flex;
    justify-content: end;
    margin-top: 150px !important;
}
	.product-card a .title-price__wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    bottom: 0px;
    left: 0;
    width: 100%;
    max-height: 60px !important;
}
	
	.product-card a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	height: 250px !important;
	position: relative;
}
	
}

.header-top-navigation {
	background-color: #333E4A;
	padding: 0.5em 0;
}

.header-top-navigation .container-fluid .top-menus {
    display: flex;
    justify-content: space-between; /* Align menus horizontally */
}

.header-top-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header-top-navigation li {
    padding: 0.5em 1em; /* Adjust as needed */
}

.header-top-navigation .menu a {
    color: white;
    text-decoration: none;
	font-size: 14px;
}

.header-top-navigation .menu a:hover {
    color: #F37321;
    text-decoration: none;
	font-size: 14px;
}

.top-menus {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}




/* Responsive design for mobile and iPad */
@media (max-width: 768px) {
    .header-top-navigation {
        display: none;
    }

    /* Hide primary menu and display mobile menu */
    #site-navigation .primary-menu {
        display: none;
    }

    #site-navigation .mobile-menu {
        display: block;
    }
}

/* Style for desktop */
@media (min-width: 769px) {
    #site-navigation .mobile-menu {
        display: none;
    }
}



/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
html {
	font-size: 62.5%;
}

body,
button,
input,
select,
optgroup,
textarea {
	color: #333E4A;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
}

body {
	background: white;
	font-family: 'Manrope', sans-serif;
	font-weight: 300;
	line-height: 1.4;
	color: #333E4A;
}

p {
	margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
	margin: 3rem 0;
	font-weight: 300;
	line-height: 1.3;
}

h1 {
	margin-top: 0;
	font-size: 4rem;
	font-weight: 300;
}

h2 {
	font-size: 3.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.6rem;
}

h5 {
	font-size: 1.414rem;
}

.text-uppercase {
	text-transform: inherit;
}

small,
.text_small {
	font-size: 0.707rem;
}

@media screen and (max-width: 768px) {
	h2 {
		font-size: 2.5rem;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	letter-spacing: 2px;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

.txt-uppercase {
	text-transform: uppercase;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
	height: 100%;
	display: block;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

.product-section {
	margin: 30px 0 !important;
    padding: 0 !important;
}

.product-card {
    padding: 7px !important;
    height: 350px;
    width: 250px !important;
    margin: 0 auto;
}

.product-card a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	height: 400px;
	position: relative;
}

.product-card a .title-price__wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	bottom: 0px;
	left: 0;
	width: 100%;
}

.product-card a .title-price__wrap .card-price {
	margin-top: 5px;
}

.product-card a .title-price__wrap .card-title {
	flex: 1;
}
.products .product-card a .title-price__wrap .card-title {
	flex: unset;
}
.product-card .woocommerce-loop-product__title {
	text-transform: capitalize;
	color: #333E4A;
    font-weight: 300;
    line-height: 1.4;
	letter-spacing: 1px;
	text-align: center;
	padding: 0 !important;
	margin: 0;
	line-height: 1.2em;
    max-height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .card-body {
	flex: 1;
	padding: 10px 5px;
	text-align: center;
}

.product-card .card-body h3 {
	text-transform: uppercase;
	color: #333E4A;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-align: center;
	padding: 0 !important;
	margin: 0;
	transition: opacity 0.5s ease;
}

.product-card .card-img {
	margin-bottom: 15px;
	position: relative;
}

.product-card .card-price p,
.product-card .price {
	text-decoration: none;
	color: #333E4A !important;
	font-size: 1.4rem !important;
	font-weight: 300 !important;
	letter-spacing: 1.2px;
	text-align: center;
	margin-top: 0 !important;
	display: block;
}
.product-card .price {
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*.product-card .card-price p del,
.product-card .price del {
	display: none !important;
}*/

.product-card .card-price p ins,
.product-card .price ins {
	font-weight: 300 !important;
}

.product-card:hover h3 {
	color: #F37321;
}

.product-card:hover h2 {
	color: #F37321;
}
.woocommerce ul.products li.product .card-price .price {
    display: flex;
    gap: 3px;
    justify-content: center;
}
@media screen and (min-width: 576px) {
	.product-card {
		padding: 8px;
	}
	.product-card .card-body h3 {
		font-size: 1.6rem;
	}
	.product-card .card-price p,
	.product-card .price {
		font-size: 0.9em !important;
	}
}

/* Links
--------------------------------------------- */
a {
	color: #333E4A;
	text-decoration: none;
}

a:visited {
	color: #333E4A;
}

a:hover, a:focus, a:active {
	color: #F37321;
}

a:focus {
	outline: 0;
}

a:hover, a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #F37321;
	border-radius: 3px;
	background: rgba(243, 115, 33, 1) !important;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #F37321;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

.theme-btn__wrap {
	display: flex;
	justify-content: center;
	text-align: center;
}

.theme-btn__wrap .simple-btn {
	text-decoration: none;
	color: #F37321;
	font-size: 1.8rem;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.theme-btn__wrap .simple-btn:hover {
	text-decoration: underline;
}

.theme-btn,
button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
button.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
#respond
input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles))
.woocommerce
#respond
input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles))
.woocommerce
a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles))
.woocommerce
button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles))
.woocommerce
input.button {
	background: rgba(243, 115, 33, 1) !important;
	padding: 10px 40px !important;
	text-transform: uppercase;
	text-decoration: unset !important;
	color: #333E4A !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	line-height: 1;
	border-radius: unset;
	min-height: unset;
	display: inline-block;
	font-family: 'Manrope', sans-serif;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: rgba(243, 115, 33, 1) !important;
    color: #fff !important;
}

.theme-btn:hover,
button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
button.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
#respond
input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
.woocommerce
#respond
input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
.woocommerce
a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
.woocommerce
button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
.woocommerce
input.button:hover {
	background-color: #F37321 !important;
}

.woocommerce div.product form.cart .button {
	width: 100%;
}

.woocommerce-Button.button {
	margin-top: 20px !important;
}

form em {
	font-size: 14px;
	font-weight: 200;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
	color: #666;
	border: 1px solid rgba(196, 185, 139, 0.33);
	border-radius: 0;
	padding: 7px 10px;
	font-family: 'Manrope', sans-serif;
	font-weight: 300;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
	color: #111;
}

select {
	border: 1px solid rgba(196, 185, 139, 0.33);
	max-width: 95%;
	padding: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(assets/images/arrow-down.svg);
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: 98%;
	-ms-word-break: normal;
	word-break: normal;
	font-weight: 300;
}

select:focus-visible {
	outline: 1px solid #F37321;
}

textarea {
	width: 100%;
}

.wl-privacy-col select {
	width: 100%;
}

#wl-wrapper .wl-table.shop_table_responsive td {
	text-align: left;
}

#wl-wrapper .wl-table .check-column,
#wl-wrapper .wl-table .product-remove {
	text-align: left;
}

#wl-wrapper .wl-privacy-col,
#wl-wrapper .wl-table .product-price,
#wl-wrapper .wl-table .product-purchase,
#wl-wrapper .wl-table .wl-date-added {
	text-align: left !important;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */

.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul .sub-menu__container {
	width: 100%;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 85%;
	left: 0;
	z-index: 99999;
	background: #fff;
	padding: 15px;
	display: none;
}

.main-navigation ul .sub-menu__container .sub-menu {
	display: flex;
	flex-direction: column;
	width: 230px;
}

.main-navigation ul .sub-menu__container .sub-menu .menu-all__link {
	margin-top: auto;
	padding-bottom: 30px;
}

.main-navigation ul .sub-menu__container .sub-menu .sub-menu__ttle {
	font-size: 1.4rem;
	font-weight: 400;
	color: rgba(243, 115, 33, 1) !important;
	margin-left: 10px;
}

.main-navigation ul .sub-menu__container li:hover > ul,
.main-navigation ul .sub-menu__container li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul .sub-menu__container a {
	text-transform: capitalize;
	padding: 10px;
}

.main-navigation ul .sub-menu__container :hover > a,
.main-navigation ul .sub-menu__container .focus > a {
	outline: none;
}

.main-navigation ul .sub-menu__container span {
	background: rgba(243, 115, 33, 1) !important;
	padding: 10px 5px;
	font-size: 1.2rem;
	text-transform: uppercase;
	text-decoration: unset;
	text-align: center;
	font-weight: 500;
	color: #333E4A;
	line-height: 1;
	display: block;
	position: relative;
	top: -45px;
	margin-right: 10px;
	margin-left: 10px;
}

.main-navigation ul .sub-menu__container .menu-categories__wrap {
	margin-bottom: -30px !important;
	width: 100%;
}

.main-navigation ul .sub-menu__container .menu-categories__wrap img {
	max-height: 300px;
	width: 100%;
	object-fit: cover;
}

.main-navigation ul .sub-menu__container .menu-categories__wrap a:hover > span {
	background: #F37321;
}

.main-navigation ul li:hover > .sub-menu__container,
.main-navigation ul li.focus > .sub-menu__container {
	left: 0;
	display: flex;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	padding: 1rem;
	color: #333E4A;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 1px;
}

.main-navigation a:hover {
	color: #F37321;
}

.main-navigation.toggled ul {
	background: #fff;
	width: 100vw;
	left: 0;
	position: absolute;
	top: 0;
	height: 100vh;
	text-align: center;
	padding-top: 80px;
	z-index: 9999;
}

.main-navigation.toggled .open-menu {
	display: none;
}

.main-navigation.toggled .close-menu {
	display: block;
	font-size: 30px;
	font-weight: 500;
	color: #F37321;
}

.main-navigation .close-menu {
	display: none;
}

.main-navigation.toggled .menu-toggle {
	position: absolute !important;
	top: 0;
	left: 50%;
	top: 30px;
	transform: translateX(-50%);
}

.main-navigation button.menu-toggle {
	z-index: 9999999999;
	position: relative;
	background: none !important;
	border: aliceblue;
	padding: 0 !important;
	cursor: pointer;
}

.menu-item .sub-menu .sub-menu__container {
    left: 40% !important;
    top: 10% !important;
}

@media screen and (max-width: 768px) {
	.menu-item .sub-menu .sub-menu__container {
		left: 0 !important;
		top: 0 !important;
	}

	.main-navigation ul .sub-menu__container {
		width: 100%;
		box-shadow: 0 !important;
		float: left;
		position: absolute;
		top: 0 !important;
		z-index: 99999;
		background: #fff;
		padding: 15px;
		display: none;
	}
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 768px) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		position: relative;
		display: flex;
		width: 100%;
		justify-content: center;
	}
	#primary-menu > li:hover > a::after {
		opacity: 1;
		transform: translateX(-50%);
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

.header-right {
	display: flex;
	gap: 20px;
	justify-content: end;
}

.header-right .header-right__i {
	padding: 0 5px;
}

body.menu-toggled {
	overflow-y: hidden;
}

#primary-menu > li a {
	position: relative;
}

#primary-menu > li > a::after {
	content: "";
	display: block;
	width: 60%;
	margin: 0 auto;
	height: 3px;
	background: #F37321;
	position: absolute;
	bottom: 0;
	left: 50%;
	opacity: 0;
	transition: 0.3s all ease-in-out;
	transform: translateX(-50%);
}

.header-right {
	position: relative;
}

#primary-menu > li:hover > a {
	color: #F37321;
}

@media only screen and (max-width: 1260px) and (min-width: 768px) {
	.main-navigation ul {
		position: unset;
	}
	.masthead-inner {
		position: relative;
	}
}

.header-right__search {
	display: flex;
	align-items: center;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

section.testimonials-block {
	background-position: center !important;
	background-size: cover !important;
}

.testimonials-block.sctn-wrp {
	padding-left: 15px;
	padding-right: 15px;
}

.testimonial-container {
	background: rgba(255, 255, 255, 0.76);
	padding: 20px;
	max-width: 820px;
	margin: 0 auto;
	width: 100%;
}

.testimonial-copy {
	font-size: 1.8rem;
	font-weight: 300;
	position: relative;
	margin-left: 20px;
	margin-right: 20px;
}

.testimonial-copy:before {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	top: -15px;
	left: -20px;
	background-image: url(assets/images/left-quote.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.testimonial-copy:after {
	content: "";
	width: 25px;
	height: 20px;
	display: block;
	position: absolute;
	bottom: -5px;
	right: -20px;
	background-image: url(assets/images/right-quote.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.testimonial-item__inner {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

p.attestant {
	font-weight: 600;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/* Footer
--------------------------------------------- */

.footer-column.cr__col-lg-2.cr__col-sm-6.cr__col-xs-12 p {
    font-size: 1.2rem;
}

.footer-column h4 {
    margin: 0.5rem 0 !important;
    font-weight: bolder;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* This will space out the columns evenly */
}

.site-footer {
	display: block;
	width: 100%;
	margin-top: auto;
}

.site-footer ul {
	list-style: none;
	padding: 0;
	margin-left: 0;
}

.site-footer ul li:hover > ul,
.site-footer ul li.focus > ul {
	display: block;
}

.site-footer .payment-gateways {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0;
}

ul.payment-gateways li img {
    width: 100% !important;
}

.site-footer .social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	gap: 10px;
}

.site-footer .social-links li:hover > a {
	transform: translateY(3px);
}

.site-footer a {
	display: block;
	text-decoration: none;
	padding: 0.2rem 0;
	color: #333E4A;
	font-weight: 300;
	font-size: 1.2rem;
	transition: all 0.3s;
}

.site-footer a:hover {
	color: #F37321;
}

.site-info img {
	max-width: 280px;
	width: 100%;
	height: auto;
}

.social-links img {
    max-height: 24px;
    object-fit: contain;
    height: 25px !important;
}

@media screen and (max-width: 990px) {
	.site-footer .social-links {
		justify-content: start;
	}
	.site-footer a {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 576px) {
	.site-info img {
		margin: 0 auto;
	}
	.site-footer__wrapper {
		text-align: center;
	}
	.site-footer .payment-gateways,
	.site-footer .social-links {
		margin-left: 0;
		justify-content: center;
	}
	.site-footer ul {
		margin-left: 0;
	}
	.site-footer a {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.social-links {
		max-width: 200px;
	}
	.site-socials {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.payment-gateways {
		padding-bottom: 10px !important;
	}
	.ftr-contacts,
	.social-links {
		position: relative;
	}
	.ftr-contacts::before,
	.social-links::before {
		content: "";
		width: 200px;
		height: 1px;
		background: rgba(196, 185, 139, 0.32);
		position: absolute;
		left: 50%;
		top: -10px;
		transform: translateX(-50%);
	}
}

/* Hero slider
--------------------------------------------- */
.heroSwiper .slider-details {
	width: calc(100% - 40px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-right: 20px;
	padding-left: 20px;
}

.heroSwiper .slider-details .slider-details__wrap {
	background: rgba(255, 255, 255, 0.76);
	margin: 0 auto;
	padding: 20px 10px 30px;
	overflow: hidden;
}

.heroSwiper .slider-details h1 {
	font-size: 2.4rem;
}

.heroSwiper .slider-details h2 {
	text-transform: uppercase;
	font-size: 1.4rem;
	letter-spacing: 3px;
	font-weight: 300;
	margin: 10px 0;
}

.heroSwiper .theme-btn {
	font-size: 1.6rem;
}

.slider-wrap__inner {
	position: relative;
}

.swiper-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	width: 70%;
	max-width: 500px;
	margin: 0 auto;
	padding: 0px 20px;
}

span.swiper-pagination-bullet {
	display: block;
	height: 5px;
	background: #F37321;
	width: 100%;
	position: relative;
	top: -21px;
	z-index: 1;
	transition: ease-in 0.4s;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #333E4A;
}

.slider-image img {
	display: block;
	min-height: 50vh;
	max-height: 600px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

@media only screen and (min-width: 769px) {
	.heroSwiper h2 {
		font-size: 2.4rem;
	}
	.heroSwiper h1 {
		font-size: 3.5rem;
	}
	.heroSwiper .slider-details__wrap {
		max-width: 650px;
		padding: 20px 50px 50px;
	}
	.heroSwiper span.swiper-pagination-bullet {
		height: 8px;
	}
}

/* Categories Blocks
--------------------------------------------- */
.categories-list__wrapper {
	padding: 5px 15px;
}

.category-block__inner {
	position: relative;
	min-height: 200px;
}

.category-block__inner:hover .theme-btn {
	background: #F37321 !important;
}

.category-block__inner .theme-btn__wrap {
	width: 100%;
}

.category-block__inner .theme-btn__wrap .theme-btn {
	transition: all 0.3s;
}

.category-block {
	padding: 5px;
}

.category-block__image {
	overflow: hidden;
}

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

.category-block__image img {
	height: 100%;
	min-height: 200px;
	object-fit: cover;
	object-position: center;
	width: 100%;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

@media only screen and (min-width: 769px) {
	.category-block__image {
		height: 350px;
	}
	.category-block__inner {
		position: relative;
		min-height: 200px;
	}
	.category-block__inner .theme-btn__wrap {
		position: absolute;
		bottom: 20px;
		right: 20px;
		justify-content: flex-end;
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	.categories-list__wrapper .category-block {
		margin-bottom: 10px;
	}
	.categories-list__wrapper .category-block__image {
		margin-bottom: -50px;
	}
	.category-block__inner .theme-btn__wrap {
		width: 100%;
		position: relative;
	}
	.category-block__inner .theme-btn.btn-sm {
		width: 100%;
		margin: 0 10px;
	}
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: rgba(255, 255, 255, 0.76);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.items-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

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

.d-flex {
	display: flex;
}

/* Spacing
--------------------------------------------- */
.m-0 {
	margin: 0px;
}

.p-0 {
	padding: 0px;
}

.m-1 {
	margin: 10px;
}

.p-1 {
	padding: 10px;
}

.m-2 {
	margin: 20px;
}

.p-2 {
	padding: 20px;
}

.m-3 {
	margin: 30px;
}

.p-3 {
	padding: 30px;
}

.m-4 {
	margin: 40px;
}

.p-4 {
	padding: 40px;
}

.m-5 {
	margin: 50px;
}

.p-5 {
	padding: 50px;
}

.m-6 {
	margin: 60px;
}

.p-6 {
	padding: 60px;
}

.m-7 {
	margin: 70px;
}

.p-7 {
	padding: 70px;
}

.m-8 {
	margin: 80px;
}

.p-8 {
	padding: 80px;
}

.m-9 {
	margin: 90px;
}

.p-9 {
	padding: 90px;
}

.m-10 {
	margin: 100px;
}

.p-10 {
	padding: 100px;
}

.mt-0 {
	margin-top: 0px;
}

.pt-0 {
	padding-top: 0px;
}

.mt-1 {
	margin-top: 10px;
}

.pt-1 {
	padding-top: 10px;
}

.mt-2 {
	margin-top: 20px;
}

.pt-2 {
	padding-top: 20px;
}

.mt-3 {
	margin-top: 30px;
}

.pt-3 {
	padding-top: 30px;
}

.mt-4 {
	margin-top: 40px;
}

.pt-4 {
	padding-top: 40px;
}

.mt-5 {
	margin-top: 50px;
}

.pt-5 {
	padding-top: 50px;
}

.mt-6 {
	margin-top: 60px;
}

.pt-6 {
	padding-top: 60px;
}

.mt-7 {
	margin-top: 70px;
}

.pt-7 {
	padding-top: 70px;
}

.mt-8 {
	margin-top: 80px;
}

.pt-8 {
	padding-top: 80px;
}

.mt-9 {
	margin-top: 90px;
}

.pt-9 {
	padding-top: 90px;
}

.mt-10 {
	margin-top: 100px;
}

.pt-10 {
	padding-top: 100px;
}

.mb-0 {
	margin-bottom: 0px;
}

.pb-0 {
	padding-bottom: 0px;
}

.mb-1 {
	margin-bottom: 10px;
}

.pb-1 {
	padding-bottom: 10px;
}

.mb-2 {
	margin-bottom: 20px;
}

.pb-2 {
	padding-bottom: 20px;
}

.mb-3 {
	margin-bottom: 30px;
}

.pb-3 {
	padding-bottom: 30px;
}

.mb-4 {
	margin-bottom: 40px;
}

.pb-4 {
	padding-bottom: 40px;
}

.mb-5 {
	margin-bottom: 50px;
}

.pb-5 {
	padding-bottom: 50px;
}

.mb-6 {
	margin-bottom: 60px;
}

.pb-6 {
	padding-bottom: 60px;
}

.mb-7 {
	margin-bottom: 70px;
}

.pb-7 {
	padding-bottom: 70px;
}

.mb-8 {
	margin-bottom: 80px;
}

.pb-8 {
	padding-bottom: 80px;
}

.mb-9 {
	margin-bottom: 90px;
}

.pb-9 {
	padding-bottom: 90px;
}

.mb-10 {
	margin-bottom: 100px;
}

.pb-10 {
	padding-bottom: 100px;
}

.ml-0 {
	margin-left: 0px;
}

.pl-0 {
	padding-left: 0px;
}

.ml-1 {
	margin-left: 10px;
}

.pl-1 {
	padding-left: 10px;
}

.ml-2 {
	margin-left: 20px;
}

.pl-2 {
	padding-left: 20px;
}

.ml-3 {
	margin-left: 30px;
}

.pl-3 {
	padding-left: 30px;
}

.ml-4 {
	margin-left: 40px;
}

.pl-4 {
	padding-left: 40px;
}

.ml-5 {
	margin-left: 50px;
}

.pl-5 {
	padding-left: 50px;
}

.ml-6 {
	margin-left: 60px;
}

.pl-6 {
	padding-left: 60px;
}

.ml-7 {
	margin-left: 70px;
}

.pl-7 {
	padding-left: 70px;
}

.ml-8 {
	margin-left: 80px;
}

.pl-8 {
	padding-left: 80px;
}

.ml-9 {
	margin-left: 90px;
}

.pl-9 {
	padding-left: 90px;
}

.ml-10 {
	margin-left: 100px;
}

.pl-10 {
	padding-left: 100px;
}

.mr-0 {
	margin-right: 0px;
}

.pr-0 {
	padding-right: 0px;
}

.mr-1 {
	margin-right: 10px;
}

.pr-1 {
	padding-right: 10px;
}

.mr-2 {
	margin-right: 20px;
}

.pr-2 {
	padding-right: 20px;
}

.mr-3 {
	margin-right: 30px;
}

.pr-3 {
	padding-right: 30px;
}

.mr-4 {
	margin-right: 40px;
}

.pr-4 {
	padding-right: 40px;
}

.mr-5 {
	margin-right: 50px;
}

.pr-5 {
	padding-right: 50px;
}

.mr-6 {
	margin-right: 60px;
}

.pr-6 {
	padding-right: 60px;
}

.mr-7 {
	margin-right: 70px;
}

.pr-7 {
	padding-right: 70px;
}

.mr-8 {
	margin-right: 80px;
}

.pr-8 {
	padding-right: 80px;
}

.mr-9 {
	margin-right: 90px;
}

.pr-9 {
	padding-right: 90px;
}

.mr-10 {
	margin-right: 100px;
}

.pr-10 {
	padding-right: 100px;
}

@media (min-width: 320px) {
	.m-xs-0 {
		margin: 0px;
	}
	.p-xs-0 {
		padding: 0px;
	}
}

@media (min-width: 320px) {
	.m-xs-1 {
		margin: 10px;
	}
	.p-xs-1 {
		padding: 10px;
	}
}

@media (min-width: 320px) {
	.m-xs-2 {
		margin: 20px;
	}
	.p-xs-2 {
		padding: 20px;
	}
}

@media (min-width: 320px) {
	.m-xs-3 {
		margin: 30px;
	}
	.p-xs-3 {
		padding: 30px;
	}
}

@media (min-width: 320px) {
	.m-xs-4 {
		margin: 40px;
	}
	.p-xs-4 {
		padding: 40px;
	}
}

@media (min-width: 320px) {
	.m-xs-5 {
		margin: 50px;
	}
	.p-xs-5 {
		padding: 50px;
	}
}

@media (min-width: 320px) {
	.m-xs-6 {
		margin: 60px;
	}
	.p-xs-6 {
		padding: 60px;
	}
}

@media (min-width: 320px) {
	.m-xs-7 {
		margin: 70px;
	}
	.p-xs-7 {
		padding: 70px;
	}
}

@media (min-width: 320px) {
	.m-xs-8 {
		margin: 80px;
	}
	.p-xs-8 {
		padding: 80px;
	}
}

@media (min-width: 320px) {
	.m-xs-9 {
		margin: 90px;
	}
	.p-xs-9 {
		padding: 90px;
	}
}

@media (min-width: 320px) {
	.m-xs-10 {
		margin: 100px;
	}
	.p-xs-10 {
		padding: 100px;
	}
}

@media (min-width: 320px) {
	.mt-xs-0 {
		margin-top: 0px;
	}
	.pt-xs-0 {
		padding-top: 0px;
	}
}

@media (min-width: 320px) {
	.mt-xs-1 {
		margin-top: 10px;
	}
	.pt-xs-1 {
		padding-top: 10px;
	}
}

@media (min-width: 320px) {
	.mt-xs-2 {
		margin-top: 20px;
	}
	.pt-xs-2 {
		padding-top: 20px;
	}
}

@media (min-width: 320px) {
	.mt-xs-3 {
		margin-top: 30px;
	}
	.pt-xs-3 {
		padding-top: 30px;
	}
}

@media (min-width: 320px) {
	.mt-xs-4 {
		margin-top: 40px;
	}
	.pt-xs-4 {
		padding-top: 40px;
	}
}

@media (min-width: 320px) {
	.mt-xs-5 {
		margin-top: 50px;
	}
	.pt-xs-5 {
		padding-top: 50px;
	}
}

@media (min-width: 320px) {
	.mt-xs-6 {
		margin-top: 60px;
	}
	.pt-xs-6 {
		padding-top: 60px;
	}
}

@media (min-width: 320px) {
	.mt-xs-7 {
		margin-top: 70px;
	}
	.pt-xs-7 {
		padding-top: 70px;
	}
}

@media (min-width: 320px) {
	.mt-xs-8 {
		margin-top: 80px;
	}
	.pt-xs-8 {
		padding-top: 80px;
	}
}

@media (min-width: 320px) {
	.mt-xs-9 {
		margin-top: 90px;
	}
	.pt-xs-9 {
		padding-top: 90px;
	}
}

@media (min-width: 320px) {
	.mt-xs-10 {
		margin-top: 100px;
	}
	.pt-xs-10 {
		padding-top: 100px;
	}
}

@media (min-width: 320px) {
	.mb-xs-0 {
		margin-bottom: 0px;
	}
	.pb-xs-0 {
		padding-bottom: 0px;
	}
}

@media (min-width: 320px) {
	.mb-xs-1 {
		margin-bottom: 10px;
	}
	.pb-xs-1 {
		padding-bottom: 10px;
	}
}

@media (min-width: 320px) {
	.mb-xs-2 {
		margin-bottom: 20px;
	}
	.pb-xs-2 {
		padding-bottom: 20px;
	}
}

@media (min-width: 320px) {
	.mb-xs-3 {
		margin-bottom: 30px;
	}
	.pb-xs-3 {
		padding-bottom: 30px;
	}
}

@media (min-width: 320px) {
	.mb-xs-4 {
		margin-bottom: 40px;
	}
	.pb-xs-4 {
		padding-bottom: 40px;
	}
}

@media (min-width: 320px) {
	.mb-xs-5 {
		margin-bottom: 50px;
	}
	.pb-xs-5 {
		padding-bottom: 50px;
	}
}

@media (min-width: 320px) {
	.mb-xs-6 {
		margin-bottom: 60px;
	}
	.pb-xs-6 {
		padding-bottom: 60px;
	}
}

@media (min-width: 320px) {
	.mb-xs-7 {
		margin-bottom: 70px;
	}
	.pb-xs-7 {
		padding-bottom: 70px;
	}
}

@media (min-width: 320px) {
	.mb-xs-8 {
		margin-bottom: 80px;
	}
	.pb-xs-8 {
		padding-bottom: 80px;
	}
}

@media (min-width: 320px) {
	.mb-xs-9 {
		margin-bottom: 90px;
	}
	.pb-xs-9 {
		padding-bottom: 90px;
	}
}

@media (min-width: 320px) {
	.mb-xs-10 {
		margin-bottom: 100px;
	}
	.pb-xs-10 {
		padding-bottom: 100px;
	}
}

@media (min-width: 320px) {
	.ml-xs-0 {
		margin-left: 0px;
	}
	.pl-xs-0 {
		padding-left: 0px;
	}
}

@media (min-width: 320px) {
	.ml-xs-1 {
		margin-left: 10px;
	}
	.pl-xs-1 {
		padding-left: 10px;
	}
}

@media (min-width: 320px) {
	.ml-xs-2 {
		margin-left: 20px;
	}
	.pl-xs-2 {
		padding-left: 20px;
	}
}

@media (min-width: 320px) {
	.ml-xs-3 {
		margin-left: 30px;
	}
	.pl-xs-3 {
		padding-left: 30px;
	}
}

@media (min-width: 320px) {
	.ml-xs-4 {
		margin-left: 40px;
	}
	.pl-xs-4 {
		padding-left: 40px;
	}
}

@media (min-width: 320px) {
	.ml-xs-5 {
		margin-left: 50px;
	}
	.pl-xs-5 {
		padding-left: 50px;
	}
}

@media (min-width: 320px) {
	.ml-xs-6 {
		margin-left: 60px;
	}
	.pl-xs-6 {
		padding-left: 60px;
	}
}

@media (min-width: 320px) {
	.ml-xs-7 {
		margin-left: 70px;
	}
	.pl-xs-7 {
		padding-left: 70px;
	}
}

@media (min-width: 320px) {
	.ml-xs-8 {
		margin-left: 80px;
	}
	.pl-xs-8 {
		padding-left: 80px;
	}
}

@media (min-width: 320px) {
	.ml-xs-9 {
		margin-left: 90px;
	}
	.pl-xs-9 {
		padding-left: 90px;
	}
}

@media (min-width: 320px) {
	.ml-xs-10 {
		margin-left: 100px;
	}
	.pl-xs-10 {
		padding-left: 100px;
	}
}

@media (min-width: 320px) {
	.mr-xs-0 {
		margin-right: 0px;
	}
	.pr-xs-0 {
		padding-right: 0px;
	}
}

@media (min-width: 320px) {
	.mr-xs-1 {
		margin-right: 10px;
	}
	.pr-xs-1 {
		padding-right: 10px;
	}
}

@media (min-width: 320px) {
	.mr-xs-2 {
		margin-right: 20px;
	}
	.pr-xs-2 {
		padding-right: 20px;
	}
}

@media (min-width: 320px) {
	.mr-xs-3 {
		margin-right: 30px;
	}
	.pr-xs-3 {
		padding-right: 30px;
	}
}

@media (min-width: 320px) {
	.mr-xs-4 {
		margin-right: 40px;
	}
	.pr-xs-4 {
		padding-right: 40px;
	}
}

@media (min-width: 320px) {
	.mr-xs-5 {
		margin-right: 50px;
	}
	.pr-xs-5 {
		padding-right: 50px;
	}
}

@media (min-width: 320px) {
	.mr-xs-6 {
		margin-right: 60px;
	}
	.pr-xs-6 {
		padding-right: 60px;
	}
}

@media (min-width: 320px) {
	.mr-xs-7 {
		margin-right: 70px;
	}
	.pr-xs-7 {
		padding-right: 70px;
	}
}

@media (min-width: 320px) {
	.mr-xs-8 {
		margin-right: 80px;
	}
	.pr-xs-8 {
		padding-right: 80px;
	}
}

@media (min-width: 320px) {
	.mr-xs-9 {
		margin-right: 90px;
	}
	.pr-xs-9 {
		padding-right: 90px;
	}
}

@media (min-width: 320px) {
	.mr-xs-10 {
		margin-right: 100px;
	}
	.pr-xs-10 {
		padding-right: 100px;
	}
}

@media (min-width: 576px) {
	.m-sm-0 {
		margin: 0px;
	}
	.p-sm-0 {
		padding: 0px;
	}
}

@media (min-width: 576px) {
	.m-sm-1 {
		margin: 10px;
	}
	.p-sm-1 {
		padding: 10px;
	}
}

@media (min-width: 576px) {
	.m-sm-2 {
		margin: 20px;
	}
	.p-sm-2 {
		padding: 20px;
	}
}

@media (min-width: 576px) {
	.m-sm-3 {
		margin: 30px;
	}
	.p-sm-3 {
		padding: 30px;
	}
}

@media (min-width: 576px) {
	.m-sm-4 {
		margin: 40px;
	}
	.p-sm-4 {
		padding: 40px;
	}
}

@media (min-width: 576px) {
	.m-sm-5 {
		margin: 50px;
	}
	.p-sm-5 {
		padding: 50px;
	}
}

@media (min-width: 576px) {
	.m-sm-6 {
		margin: 60px;
	}
	.p-sm-6 {
		padding: 60px;
	}
}

@media (min-width: 576px) {
	.m-sm-7 {
		margin: 70px;
	}
	.p-sm-7 {
		padding: 70px;
	}
}

@media (min-width: 576px) {
	.m-sm-8 {
		margin: 80px;
	}
	.p-sm-8 {
		padding: 80px;
	}
}

@media (min-width: 576px) {
	.m-sm-9 {
		margin: 90px;
	}
	.p-sm-9 {
		padding: 90px;
	}
}

@media (min-width: 576px) {
	.m-sm-10 {
		margin: 100px;
	}
	.p-sm-10 {
		padding: 100px;
	}
}

@media (min-width: 576px) {
	.mt-sm-0 {
		margin-top: 0px;
	}
	.pt-sm-0 {
		padding-top: 0px;
	}
}

@media (min-width: 576px) {
	.mt-sm-1 {
		margin-top: 10px;
	}
	.pt-sm-1 {
		padding-top: 10px;
	}
}

@media (min-width: 576px) {
	.mt-sm-2 {
		margin-top: 20px;
	}
	.pt-sm-2 {
		padding-top: 20px;
	}
}

@media (min-width: 576px) {
	.mt-sm-3 {
		margin-top: 30px;
	}
	.pt-sm-3 {
		padding-top: 30px;
	}
}

@media (min-width: 576px) {
	.mt-sm-4 {
		margin-top: 40px;
	}
	.pt-sm-4 {
		padding-top: 40px;
	}
}

@media (min-width: 576px) {
	.mt-sm-5 {
		margin-top: 50px;
	}
	.pt-sm-5 {
		padding-top: 50px;
	}
}

@media (min-width: 576px) {
	.mt-sm-6 {
		margin-top: 60px;
	}
	.pt-sm-6 {
		padding-top: 60px;
	}
}

@media (min-width: 576px) {
	.mt-sm-7 {
		margin-top: 70px;
	}
	.pt-sm-7 {
		padding-top: 70px;
	}
}

@media (min-width: 576px) {
	.mt-sm-8 {
		margin-top: 80px;
	}
	.pt-sm-8 {
		padding-top: 80px;
	}
}

@media (min-width: 576px) {
	.mt-sm-9 {
		margin-top: 90px;
	}
	.pt-sm-9 {
		padding-top: 90px;
	}
}

@media (min-width: 576px) {
	.mt-sm-10 {
		margin-top: 100px;
	}
	.pt-sm-10 {
		padding-top: 100px;
	}
}

@media (min-width: 576px) {
	.mb-sm-0 {
		margin-bottom: 0px;
	}
	.pb-sm-0 {
		padding-bottom: 0px;
	}
}

@media (min-width: 576px) {
	.mb-sm-1 {
		margin-bottom: 10px;
	}
	.pb-sm-1 {
		padding-bottom: 10px;
	}
}

@media (min-width: 576px) {
	.mb-sm-2 {
		margin-bottom: 20px;
	}
	.pb-sm-2 {
		padding-bottom: 20px;
	}
}

@media (min-width: 576px) {
	.mb-sm-3 {
		margin-bottom: 30px;
	}
	.pb-sm-3 {
		padding-bottom: 30px;
	}
}

@media (min-width: 576px) {
	.mb-sm-4 {
		margin-bottom: 40px;
	}
	.pb-sm-4 {
		padding-bottom: 40px;
	}
}

@media (min-width: 576px) {
	.mb-sm-5 {
		margin-bottom: 50px;
	}
	.pb-sm-5 {
		padding-bottom: 50px;
	}
}

@media (min-width: 576px) {
	.mb-sm-6 {
		margin-bottom: 60px;
	}
	.pb-sm-6 {
		padding-bottom: 60px;
	}
}

@media (min-width: 576px) {
	.mb-sm-7 {
		margin-bottom: 70px;
	}
	.pb-sm-7 {
		padding-bottom: 70px;
	}
}

@media (min-width: 576px) {
	.mb-sm-8 {
		margin-bottom: 80px;
	}
	.pb-sm-8 {
		padding-bottom: 80px;
	}
}

@media (min-width: 576px) {
	.mb-sm-9 {
		margin-bottom: 90px;
	}
	.pb-sm-9 {
		padding-bottom: 90px;
	}
}

@media (min-width: 576px) {
	.mb-sm-10 {
		margin-bottom: 100px;
	}
	.pb-sm-10 {
		padding-bottom: 100px;
	}
}

@media (min-width: 576px) {
	.ml-sm-0 {
		margin-left: 0px;
	}
	.pl-sm-0 {
		padding-left: 0px;
	}
}

@media (min-width: 576px) {
	.ml-sm-1 {
		margin-left: 10px;
	}
	.pl-sm-1 {
		padding-left: 10px;
	}
}

@media (min-width: 576px) {
	.ml-sm-2 {
		margin-left: 20px;
	}
	.pl-sm-2 {
		padding-left: 20px;
	}
}

@media (min-width: 576px) {
	.ml-sm-3 {
		margin-left: 30px;
	}
	.pl-sm-3 {
		padding-left: 30px;
	}
}

@media (min-width: 576px) {
	.ml-sm-4 {
		margin-left: 40px;
	}
	.pl-sm-4 {
		padding-left: 40px;
	}
}

@media (min-width: 576px) {
	.ml-sm-5 {
		margin-left: 50px;
	}
	.pl-sm-5 {
		padding-left: 50px;
	}
}

@media (min-width: 576px) {
	.ml-sm-6 {
		margin-left: 60px;
	}
	.pl-sm-6 {
		padding-left: 60px;
	}
}

@media (min-width: 576px) {
	.ml-sm-7 {
		margin-left: 70px;
	}
	.pl-sm-7 {
		padding-left: 70px;
	}
}

@media (min-width: 576px) {
	.ml-sm-8 {
		margin-left: 80px;
	}
	.pl-sm-8 {
		padding-left: 80px;
	}
}

@media (min-width: 576px) {
	.ml-sm-9 {
		margin-left: 90px;
	}
	.pl-sm-9 {
		padding-left: 90px;
	}
}

@media (min-width: 576px) {
	.ml-sm-10 {
		margin-left: 100px;
	}
	.pl-sm-10 {
		padding-left: 100px;
	}
}

@media (min-width: 576px) {
	.mr-sm-0 {
		margin-right: 0px;
	}
	.pr-sm-0 {
		padding-right: 0px;
	}
}

@media (min-width: 576px) {
	.mr-sm-1 {
		margin-right: 10px;
	}
	.pr-sm-1 {
		padding-right: 10px;
	}
}

@media (min-width: 576px) {
	.mr-sm-2 {
		margin-right: 20px;
	}
	.pr-sm-2 {
		padding-right: 20px;
	}
}

@media (min-width: 576px) {
	.mr-sm-3 {
		margin-right: 30px;
	}
	.pr-sm-3 {
		padding-right: 30px;
	}
}

@media (min-width: 576px) {
	.mr-sm-4 {
		margin-right: 40px;
	}
	.pr-sm-4 {
		padding-right: 40px;
	}
}

@media (min-width: 576px) {
	.mr-sm-5 {
		margin-right: 50px;
	}
	.pr-sm-5 {
		padding-right: 50px;
	}
}

@media (min-width: 576px) {
	.mr-sm-6 {
		margin-right: 60px;
	}
	.pr-sm-6 {
		padding-right: 60px;
	}
}

@media (min-width: 576px) {
	.mr-sm-7 {
		margin-right: 70px;
	}
	.pr-sm-7 {
		padding-right: 70px;
	}
}

@media (min-width: 576px) {
	.mr-sm-8 {
		margin-right: 80px;
	}
	.pr-sm-8 {
		padding-right: 80px;
	}
}

@media (min-width: 576px) {
	.mr-sm-9 {
		margin-right: 90px;
	}
	.pr-sm-9 {
		padding-right: 90px;
	}
}

@media (min-width: 576px) {
	.mr-sm-10 {
		margin-right: 100px;
	}
	.pr-sm-10 {
		padding-right: 100px;
	}
}

@media (min-width: 768px) {
	.m-md-0 {
		margin: 0px;
	}
	.p-md-0 {
		padding: 0px;
	}
}

@media (min-width: 768px) {
	.m-md-1 {
		margin: 10px;
	}
	.p-md-1 {
		padding: 10px;
	}
}

@media (min-width: 768px) {
	.m-md-2 {
		margin: 20px;
	}
	.p-md-2 {
		padding: 20px;
	}
}

@media (min-width: 768px) {
	.m-md-3 {
		margin: 30px;
	}
	.p-md-3 {
		padding: 30px;
	}
}

@media (min-width: 768px) {
	.m-md-4 {
		margin: 40px;
	}
	.p-md-4 {
		padding: 40px;
	}
}

@media (min-width: 768px) {
	.m-md-5 {
		margin: 50px;
	}
	.p-md-5 {
		padding: 50px;
	}
}

@media (min-width: 768px) {
	.m-md-6 {
		margin: 60px;
	}
	.p-md-6 {
		padding: 60px;
	}
}

@media (min-width: 768px) {
	.m-md-7 {
		margin: 70px;
	}
	.p-md-7 {
		padding: 70px;
	}
}

@media (min-width: 768px) {
	.m-md-8 {
		margin: 80px;
	}
	.p-md-8 {
		padding: 80px;
	}
}

@media (min-width: 768px) {
	.m-md-9 {
		margin: 90px;
	}
	.p-md-9 {
		padding: 90px;
	}
}

@media (min-width: 768px) {
	.m-md-10 {
		margin: 100px;
	}
	.p-md-10 {
		padding: 100px;
	}
}

@media (min-width: 768px) {
	.mt-md-0 {
		margin-top: 0px;
	}
	.pt-md-0 {
		padding-top: 0px;
	}
}

@media (min-width: 768px) {
	.mt-md-1 {
		margin-top: 10px;
	}
	.pt-md-1 {
		padding-top: 10px;
	}
}

@media (min-width: 768px) {
	.mt-md-2 {
		margin-top: 20px;
	}
	.pt-md-2 {
		padding-top: 20px;
	}
}

@media (min-width: 768px) {
	.mt-md-3 {
		margin-top: 30px;
	}
	.pt-md-3 {
		padding-top: 30px;
	}
}

@media (min-width: 768px) {
	.mt-md-4 {
		margin-top: 40px;
	}
	.pt-md-4 {
		padding-top: 40px;
	}
}

@media (min-width: 768px) {
	.mt-md-5 {
		margin-top: 50px;
	}
	.pt-md-5 {
		padding-top: 50px;
	}
}

@media (min-width: 768px) {
	.mt-md-6 {
		margin-top: 60px;
	}
	.pt-md-6 {
		padding-top: 60px;
	}
}

@media (min-width: 768px) {
	.mt-md-7 {
		margin-top: 70px;
	}
	.pt-md-7 {
		padding-top: 70px;
	}
}

@media (min-width: 768px) {
	.mt-md-8 {
		margin-top: 80px;
	}
	.pt-md-8 {
		padding-top: 80px;
	}
}

@media (min-width: 768px) {
	.mt-md-9 {
		margin-top: 90px;
	}
	.pt-md-9 {
		padding-top: 90px;
	}
}

@media (min-width: 768px) {
	.mt-md-10 {
		margin-top: 100px;
	}
	.pt-md-10 {
		padding-top: 100px;
	}
}

@media (min-width: 768px) {
	.mb-md-0 {
		margin-bottom: 0px;
	}
	.pb-md-0 {
		padding-bottom: 0px;
	}
}

@media (min-width: 768px) {
	.mb-md-1 {
		margin-bottom: 10px;
	}
	.pb-md-1 {
		padding-bottom: 10px;
	}
}

@media (min-width: 768px) {
	.mb-md-2 {
		margin-bottom: 20px;
	}
	.pb-md-2 {
		padding-bottom: 20px;
	}
}

@media (min-width: 768px) {
	.mb-md-3 {
		margin-bottom: 30px;
	}
	.pb-md-3 {
		padding-bottom: 30px;
	}
}

@media (min-width: 768px) {
	.mb-md-4 {
		margin-bottom: 40px;
	}
	.pb-md-4 {
		padding-bottom: 40px;
	}
}

@media (min-width: 768px) {
	.mb-md-5 {
		margin-bottom: 50px;
	}
	.pb-md-5 {
		padding-bottom: 50px;
	}
}

@media (min-width: 768px) {
	.mb-md-6 {
		margin-bottom: 60px;
	}
	.pb-md-6 {
		padding-bottom: 60px;
	}
}

@media (min-width: 768px) {
	.mb-md-7 {
		margin-bottom: 70px;
	}
	.pb-md-7 {
		padding-bottom: 70px;
	}
}

@media (min-width: 768px) {
	.mb-md-8 {
		margin-bottom: 80px;
	}
	.pb-md-8 {
		padding-bottom: 80px;
	}
}

@media (min-width: 768px) {
	.mb-md-9 {
		margin-bottom: 90px;
	}
	.pb-md-9 {
		padding-bottom: 90px;
	}
}

@media (min-width: 768px) {
	.mb-md-10 {
		margin-bottom: 100px;
	}
	.pb-md-10 {
		padding-bottom: 100px;
	}
}

@media (min-width: 768px) {
	.ml-md-0 {
		margin-left: 0px;
	}
	.pl-md-0 {
		padding-left: 0px;
	}
}

@media (min-width: 768px) {
	.ml-md-1 {
		margin-left: 10px;
	}
	.pl-md-1 {
		padding-left: 10px;
	}
}

@media (min-width: 768px) {
	.ml-md-2 {
		margin-left: 20px;
	}
	.pl-md-2 {
		padding-left: 20px;
	}
}

@media (min-width: 768px) {
	.ml-md-3 {
		margin-left: 30px;
	}
	.pl-md-3 {
		padding-left: 30px;
	}
}

@media (min-width: 768px) {
	.ml-md-4 {
		margin-left: 40px;
	}
	.pl-md-4 {
		padding-left: 40px;
	}
}

@media (min-width: 768px) {
	.ml-md-5 {
		margin-left: 50px;
	}
	.pl-md-5 {
		padding-left: 50px;
	}
}

@media (min-width: 768px) {
	.ml-md-6 {
		margin-left: 60px;
	}
	.pl-md-6 {
		padding-left: 60px;
	}
}

@media (min-width: 768px) {
	.ml-md-7 {
		margin-left: 70px;
	}
	.pl-md-7 {
		padding-left: 70px;
	}
}

@media (min-width: 768px) {
	.ml-md-8 {
		margin-left: 80px;
	}
	.pl-md-8 {
		padding-left: 80px;
	}
}

@media (min-width: 768px) {
	.ml-md-9 {
		margin-left: 90px;
	}
	.pl-md-9 {
		padding-left: 90px;
	}
}

@media (min-width: 768px) {
	.ml-md-10 {
		margin-left: 100px;
	}
	.pl-md-10 {
		padding-left: 100px;
	}
}

@media (min-width: 768px) {
	.mr-md-0 {
		margin-right: 0px;
	}
	.pr-md-0 {
		padding-right: 0px;
	}
}

@media (min-width: 768px) {
	.mr-md-1 {
		margin-right: 10px;
	}
	.pr-md-1 {
		padding-right: 10px;
	}
}

@media (min-width: 768px) {
	.mr-md-2 {
		margin-right: 20px;
	}
	.pr-md-2 {
		padding-right: 20px;
	}
}

@media (min-width: 768px) {
	.mr-md-3 {
		margin-right: 30px;
	}
	.pr-md-3 {
		padding-right: 30px;
	}
}

@media (min-width: 768px) {
	.mr-md-4 {
		margin-right: 40px;
	}
	.pr-md-4 {
		padding-right: 40px;
	}
}

@media (min-width: 768px) {
	.mr-md-5 {
		margin-right: 50px;
	}
	.pr-md-5 {
		padding-right: 50px;
	}
}

@media (min-width: 768px) {
	.mr-md-6 {
		margin-right: 60px;
	}
	.pr-md-6 {
		padding-right: 60px;
	}
}

@media (min-width: 768px) {
	.mr-md-7 {
		margin-right: 70px;
	}
	.pr-md-7 {
		padding-right: 70px;
	}
}

@media (min-width: 768px) {
	.mr-md-8 {
		margin-right: 80px;
	}
	.pr-md-8 {
		padding-right: 80px;
	}
}

@media (min-width: 768px) {
	.mr-md-9 {
		margin-right: 90px;
	}
	.pr-md-9 {
		padding-right: 90px;
	}
}

@media (min-width: 768px) {
	.mr-md-10 {
		margin-right: 100px;
	}
	.pr-md-10 {
		padding-right: 100px;
	}
}

@media (min-width: 992px) {
	.m-lg-0 {
		margin: 0px;
	}
	.p-lg-0 {
		padding: 0px;
	}
}

@media (min-width: 992px) {
	.m-lg-1 {
		margin: 10px;
	}
	.p-lg-1 {
		padding: 10px;
	}
}

@media (min-width: 992px) {
	.m-lg-2 {
		margin: 20px;
	}
	.p-lg-2 {
		padding: 20px;
	}
}

@media (min-width: 992px) {
	.m-lg-3 {
		margin: 30px;
	}
	.p-lg-3 {
		padding: 30px;
	}
}

@media (min-width: 992px) {
	.m-lg-4 {
		margin: 40px;
	}
	.p-lg-4 {
		padding: 40px;
	}
}

@media (min-width: 992px) {
	.m-lg-5 {
		margin: 50px;
	}
	.p-lg-5 {
		padding: 50px;
	}
}

@media (min-width: 992px) {
	.m-lg-6 {
		margin: 60px;
	}
	.p-lg-6 {
		padding: 60px;
	}
}

@media (min-width: 992px) {
	.m-lg-7 {
		margin: 70px;
	}
	.p-lg-7 {
		padding: 70px;
	}
}

@media (min-width: 992px) {
	.m-lg-8 {
		margin: 80px;
	}
	.p-lg-8 {
		padding: 80px;
	}
}

@media (min-width: 992px) {
	.m-lg-9 {
		margin: 90px;
	}
	.p-lg-9 {
		padding: 90px;
	}
}

@media (min-width: 992px) {
	.m-lg-10 {
		margin: 100px;
	}
	.p-lg-10 {
		padding: 100px;
	}
}

@media (min-width: 992px) {
	.mt-lg-0 {
		margin-top: 0px;
	}
	.pt-lg-0 {
		padding-top: 0px;
	}
}

@media (min-width: 992px) {
	.mt-lg-1 {
		margin-top: 10px;
	}
	.pt-lg-1 {
		padding-top: 10px;
	}
}

@media (min-width: 992px) {
	.mt-lg-2 {
		margin-top: 20px;
	}
	.pt-lg-2 {
		padding-top: 20px;
	}
}

@media (min-width: 992px) {
	.mt-lg-3 {
		margin-top: 30px;
	}
	.pt-lg-3 {
		padding-top: 30px;
	}
}

@media (min-width: 992px) {
	.mt-lg-4 {
		margin-top: 40px;
	}
	.pt-lg-4 {
		padding-top: 40px;
	}
}

@media (min-width: 992px) {
	.mt-lg-5 {
		margin-top: 50px;
	}
	.pt-lg-5 {
		padding-top: 50px;
	}
}

@media (min-width: 992px) {
	.mt-lg-6 {
		margin-top: 60px;
	}
	.pt-lg-6 {
		padding-top: 60px;
	}
}

@media (min-width: 992px) {
	.mt-lg-7 {
		margin-top: 70px;
	}
	.pt-lg-7 {
		padding-top: 70px;
	}
}

@media (min-width: 992px) {
	.mt-lg-8 {
		margin-top: 80px;
	}
	.pt-lg-8 {
		padding-top: 80px;
	}
}

@media (min-width: 992px) {
	.mt-lg-9 {
		margin-top: 90px;
	}
	.pt-lg-9 {
		padding-top: 90px;
	}
}

@media (min-width: 992px) {
	.mt-lg-10 {
		margin-top: 100px;
	}
	.pt-lg-10 {
		padding-top: 100px;
	}
}

@media (min-width: 992px) {
	.mb-lg-0 {
		margin-bottom: 0px;
	}
	.pb-lg-0 {
		padding-bottom: 0px;
	}
}

@media (min-width: 992px) {
	.mb-lg-1 {
		margin-bottom: 10px;
	}
	.pb-lg-1 {
		padding-bottom: 10px;
	}
}

@media (min-width: 992px) {
	.mb-lg-2 {
		margin-bottom: 20px;
	}
	.pb-lg-2 {
		padding-bottom: 20px;
	}
}

@media (min-width: 992px) {
	.mb-lg-3 {
		margin-bottom: 30px;
	}
	.pb-lg-3 {
		padding-bottom: 30px;
	}
}

@media (min-width: 992px) {
	.mb-lg-4 {
		margin-bottom: 40px;
	}
	.pb-lg-4 {
		padding-bottom: 40px;
	}
}

@media (min-width: 992px) {
	.mb-lg-5 {
		margin-bottom: 50px;
	}
	.pb-lg-5 {
		padding-bottom: 50px;
	}
}

@media (min-width: 992px) {
	.mb-lg-6 {
		margin-bottom: 60px;
	}
	.pb-lg-6 {
		padding-bottom: 60px;
	}
}

@media (min-width: 992px) {
	.mb-lg-7 {
		margin-bottom: 70px;
	}
	.pb-lg-7 {
		padding-bottom: 70px;
	}
}

@media (min-width: 992px) {
	.mb-lg-8 {
		margin-bottom: 80px;
	}
	.pb-lg-8 {
		padding-bottom: 80px;
	}
}

@media (min-width: 992px) {
	.mb-lg-9 {
		margin-bottom: 90px;
	}
	.pb-lg-9 {
		padding-bottom: 90px;
	}
}

@media (min-width: 992px) {
	.mb-lg-10 {
		margin-bottom: 100px;
	}
	.pb-lg-10 {
		padding-bottom: 100px;
	}
}

@media (min-width: 992px) {
	.ml-lg-0 {
		margin-left: 0px;
	}
	.pl-lg-0 {
		padding-left: 0px;
	}
}

@media (min-width: 992px) {
	.ml-lg-1 {
		margin-left: 10px;
	}
	.pl-lg-1 {
		padding-left: 10px;
	}
}

@media (min-width: 992px) {
	.ml-lg-2 {
		margin-left: 20px;
	}
	.pl-lg-2 {
		padding-left: 20px;
	}
}

@media (min-width: 992px) {
	.ml-lg-3 {
		margin-left: 30px;
	}
	.pl-lg-3 {
		padding-left: 30px;
	}
}

@media (min-width: 992px) {
	.ml-lg-4 {
		margin-left: 40px;
	}
	.pl-lg-4 {
		padding-left: 40px;
	}
}

@media (min-width: 992px) {
	.ml-lg-5 {
		margin-left: 50px;
	}
	.pl-lg-5 {
		padding-left: 50px;
	}
}

@media (min-width: 992px) {
	.ml-lg-6 {
		margin-left: 60px;
	}
	.pl-lg-6 {
		padding-left: 60px;
	}
}

@media (min-width: 992px) {
	.ml-lg-7 {
		margin-left: 70px;
	}
	.pl-lg-7 {
		padding-left: 70px;
	}
}

@media (min-width: 992px) {
	.ml-lg-8 {
		margin-left: 80px;
	}
	.pl-lg-8 {
		padding-left: 80px;
	}
}

@media (min-width: 992px) {
	.ml-lg-9 {
		margin-left: 90px;
	}
	.pl-lg-9 {
		padding-left: 90px;
	}
}

@media (min-width: 992px) {
	.ml-lg-10 {
		margin-left: 100px;
	}
	.pl-lg-10 {
		padding-left: 100px;
	}
}

@media (min-width: 992px) {
	.mr-lg-0 {
		margin-right: 0px;
	}
	.pr-lg-0 {
		padding-right: 0px;
	}
}

@media (min-width: 992px) {
	.mr-lg-1 {
		margin-right: 10px;
	}
	.pr-lg-1 {
		padding-right: 10px;
	}
}

@media (min-width: 992px) {
	.mr-lg-2 {
		margin-right: 20px;
	}
	.pr-lg-2 {
		padding-right: 20px;
	}
}

@media (min-width: 992px) {
	.mr-lg-3 {
		margin-right: 30px;
	}
	.pr-lg-3 {
		padding-right: 30px;
	}
}

@media (min-width: 992px) {
	.mr-lg-4 {
		margin-right: 40px;
	}
	.pr-lg-4 {
		padding-right: 40px;
	}
}

@media (min-width: 992px) {
	.mr-lg-5 {
		margin-right: 50px;
	}
	.pr-lg-5 {
		padding-right: 50px;
	}
}

@media (min-width: 992px) {
	.mr-lg-6 {
		margin-right: 60px;
	}
	.pr-lg-6 {
		padding-right: 60px;
	}
}

@media (min-width: 992px) {
	.mr-lg-7 {
		margin-right: 70px;
	}
	.pr-lg-7 {
		padding-right: 70px;
	}
}

@media (min-width: 992px) {
	.mr-lg-8 {
		margin-right: 80px;
	}
	.pr-lg-8 {
		padding-right: 80px;
	}
}

@media (min-width: 992px) {
	.mr-lg-9 {
		margin-right: 90px;
	}
	.pr-lg-9 {
		padding-right: 90px;
	}
}

@media (min-width: 992px) {
	.mr-lg-10 {
		margin-right: 100px;
	}
	.pr-lg-10 {
		padding-right: 100px;
	}
}

/* Grid
--------------------------------------------- */
@media screen and (max-width: -1px) {
	.hidden-xs-down {
		display: none !important;
	}
}

.hidden-xs-up {
	display: none !important;
}

@media screen and (max-width: 319px) {
	.hidden-xs-down {
		display: none !important;
	}
}

@media screen and (min-width: 320px) {
	.hidden-xs-up {
		display: none !important;
	}
}

@media screen and (max-width: 575px) {
	.hidden-sm-down {
		display: none !important;
	}
}

@media screen and (min-width: 576px) {
	.hidden-sm-up {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hidden-md-down {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.hidden-md-up {
		display: none !important;
	}
}

@media screen and (max-width: 991px) {
	.hidden-lg-down {
		display: none !important;
	}
}

@media screen and (min-width: 992px) {
	.hidden-lg-up {
		display: none !important;
	}
}

@media screen and (max-width: 1199px) {
	.hidden-xl-down {
		display: none !important;
	}
}

@media screen and (min-width: 1200px) {
	.hidden-xl-up {
		display: none !important;
	}
}

@media screen and (max-width: 1399px) {
	.hidden-xxl-down {
		display: none !important;
	}
}

@media screen and (min-width: 1400px) {
	.hidden-xxl-up {
		display: none !important;
	}
}

.cr {
	max-width: 768px;
	margin: 0 auto;
}

.cr--fluid {
	margin: 0;
	max-width: 100%;
}

.cr__row {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.cr__col-offset-0 {
	margin-left: 0;
}

.cr__col-1 {
	flex-basis: 8.33333%;
	width: 8.33333% !important;
}

.cr__col-offset-1 {
	margin-left: 8.33333%;
}

.cr__col-2 {
	flex-basis: 16.66667%;
	width: 16.66667% !important;
}

.cr__col-offset-2 {
	margin-left: 16.66667%;
}

.cr__col-3 {
	flex-basis: 25%;
	width: 25% !important;
}

.cr__col-offset-3 {
	margin-left: 25%;
}

.cr__col-4 {
	flex-basis: 33.33333%;
	width: 33.33333% !important;
}

.cr__col-offset-4 {
	margin-left: 33.33333%;
}

.cr__col-5 {
	flex-basis: 41.66667%;
	width: 41.66667% !important;
}

.cr__col-offset-5 {
	margin-left: 41.66667%;
}

.cr__col-6 {
	flex-basis: 50%;
	width: 50% !important;
}

.cr__col-offset-6 {
	margin-left: 50%;
}

.cr__col-7 {
	flex-basis: 58.33333%;
	width: 58.33333% !important;
}

.cr__col-offset-7 {
	margin-left: 58.33333%;
}

.cr__col-8 {
	flex-basis: 66.66667%;
	width: 66.66667% !important;
}

.cr__col-offset-8 {
	margin-left: 66.66667%;
}

.cr__col-9 {
	flex-basis: 75%;
	width: 75% !important;
}

.cr__col-offset-9 {
	margin-left: 75%;
}

.cr__col-10 {
	flex-basis: 83.33333%;
	width: 83.33333% !important;
}

.cr__col-offset-10 {
	margin-left: 83.33333%;
}

.cr__col-11 {
	flex-basis: 91.66667%;
	width: 91.66667% !important;
}

.cr__col-offset-11 {
	margin-left: 91.66667%;
}

.cr__col-12 {
	flex-basis: 100%;
	width: 100% !important;
}

.cr__col-offset-12 {
	margin-left: 100%;
}

@media screen and (min-width: 320px) {
	.cr__col-xs-offset-0 {
		margin-left: 0;
	}
	.cr__col-xs-1 {
		flex-basis: 8.33333%;
		width: 8.33333% !important;
	}
	.cr__col-xs-offset-1 {
		margin-left: 8.33333%;
	}
	.cr__col-xs-2 {
		flex-basis: 16.66667%;
		width: 16.66667% !important;
	}
	.cr__col-xs-offset-2 {
		margin-left: 16.66667%;
	}
	.cr__col-xs-3 {
		flex-basis: 25%;
		width: 25% !important;
	}
	.cr__col-xs-offset-3 {
		margin-left: 25%;
	}
	.cr__col-xs-4 {
		flex-basis: 33.33333%;
		width: 33.33333% !important;
	}
	.cr__col-xs-offset-4 {
		margin-left: 33.33333%;
	}
	.cr__col-xs-5 {
		flex-basis: 41.66667%;
		width: 41.66667% !important;
	}
	.cr__col-xs-offset-5 {
		margin-left: 41.66667%;
	}
	.cr__col-xs-6 {
		flex-basis: 50%;
		width: 50% !important;
	}
	.cr__col-xs-offset-6 {
		margin-left: 50%;
	}
	.cr__col-xs-7 {
		flex-basis: 58.33333%;
		width: 58.33333% !important;
	}
	.cr__col-xs-offset-7 {
		margin-left: 58.33333%;
	}
	.cr__col-xs-8 {
		flex-basis: 66.66667%;
		width: 66.66667% !important;
	}
	.cr__col-xs-offset-8 {
		margin-left: 66.66667%;
	}
	.cr__col-xs-9 {
		flex-basis: 75%;
		width: 75% !important;
	}
	.cr__col-xs-offset-9 {
		margin-left: 75%;
	}
	.cr__col-xs-10 {
		flex-basis: 83.33333%;
		width: 83.33333% !important;
	}
	.cr__col-xs-offset-10 {
		margin-left: 83.33333%;
	}
	.cr__col-xs-11 {
		flex-basis: 91.66667%;
		width: 91.66667% !important;
	}
	.cr__col-xs-offset-11 {
		margin-left: 91.66667%;
	}
	.cr__col-xs-12 {
		flex-basis: 100%;
		width: 100% !important;
	}
	.cr__col-xs-offset-12 {
		margin-left: 100%;
	}
}

@media screen and (min-width: 576px) {
	.cr__col-sm-offset-0 {
		margin-left: 0;
	}
	.cr__col-sm-1 {
		flex-basis: 8.33333%;
		width: 8.33333% !important;
	}
	.cr__col-sm-offset-1 {
		margin-left: 8.33333%;
	}
	.cr__col-sm-2 {
		flex-basis: 16.66667%;
		width: 16.66667% !important;
	}
	.cr__col-sm-offset-2 {
		margin-left: 16.66667%;
	}
	.cr__col-sm-3 {
		flex-basis: 25%;
		width: 25% !important;
	}
	.cr__col-sm-offset-3 {
		margin-left: 25%;
	}
	.cr__col-sm-4 {
		flex-basis: 33.33333%;
		width: 33.33333% !important;
	}
	.cr__col-sm-offset-4 {
		margin-left: 33.33333%;
	}
	.cr__col-sm-5 {
		flex-basis: 41.66667%;
		width: 41.66667% !important;
	}
	.cr__col-sm-offset-5 {
		margin-left: 41.66667%;
	}
	.cr__col-sm-6 {
		flex-basis: 50%;
		width: 50% !important;
	}
	.cr__col-sm-offset-6 {
		margin-left: 50%;
	}
	.cr__col-sm-7 {
		flex-basis: 58.33333%;
		width: 58.33333% !important;
	}
	.cr__col-sm-offset-7 {
		margin-left: 58.33333%;
	}
	.cr__col-sm-8 {
		flex-basis: 66.66667%;
		width: 66.66667% !important;
	}
	.cr__col-sm-offset-8 {
		margin-left: 66.66667%;
	}
	.cr__col-sm-9 {
		flex-basis: 75%;
		width: 75% !important;
	}
	.cr__col-sm-offset-9 {
		margin-left: 75%;
	}
	.cr__col-sm-10 {
		flex-basis: 83.33333%;
		width: 83.33333% !important;
	}
	.cr__col-sm-offset-10 {
		margin-left: 83.33333%;
	}
	.cr__col-sm-11 {
		flex-basis: 91.66667%;
		width: 91.66667% !important;
	}
	.cr__col-sm-offset-11 {
		margin-left: 91.66667%;
	}
	.cr__col-sm-12 {
		flex-basis: 100%;
		width: 100% !important;
	}
	.cr__col-sm-offset-12 {
		margin-left: 100%;
	}
}

@media screen and (min-width: 768px) {
	.cr__col-md-offset-0 {
		margin-left: 0;
	}
	.cr__col-md-1 {
		flex-basis: 8.33333%;
		width: 8.33333% !important;
	}
	.cr__col-md-offset-1 {
		margin-left: 8.33333%;
	}
	.cr__col-md-2 {
		flex-basis: 16.66667%;
		width: 16.66667% !important;
	}
	.cr__col-md-offset-2 {
		margin-left: 16.66667%;
	}
	.cr__col-md-3 {
		flex-basis: 25%;
		width: 25% !important;
	}
	.cr__col-md-offset-3 {
		margin-left: 25%;
	}
	.cr__col-md-4 {
		flex-basis: 33.33333%;
		width: 33.33333% !important;
	}
	.cr__col-md-offset-4 {
		margin-left: 33.33333%;
	}
	.cr__col-md-5 {
		flex-basis: 41.66667%;
		width: 41.66667% !important;
	}
	.cr__col-md-offset-5 {
		margin-left: 41.66667%;
	}
	.cr__col-md-6 {
		flex-basis: 50%;
		width: 50% !important;
	}
	.cr__col-md-offset-6 {
		margin-left: 50%;
	}
	.cr__col-md-7 {
		flex-basis: 58.33333%;
		width: 58.33333% !important;
	}
	.cr__col-md-offset-7 {
		margin-left: 58.33333%;
	}
	.cr__col-md-8 {
		flex-basis: 66.66667%;
		width: 66.66667% !important;
	}
	.cr__col-md-offset-8 {
		margin-left: 66.66667%;
	}
	.cr__col-md-9 {
		flex-basis: 75%;
		width: 75% !important;
	}
	.cr__col-md-offset-9 {
		margin-left: 75%;
	}
	.cr__col-md-10 {
		flex-basis: 83.33333%;
		width: 83.33333% !important;
	}
	.cr__col-md-offset-10 {
		margin-left: 83.33333%;
	}
	.cr__col-md-11 {
		flex-basis: 91.66667%;
		width: 91.66667% !important;
	}
	.cr__col-md-offset-11 {
		margin-left: 91.66667%;
	}
	.cr__col-md-12 {
		flex-basis: 100%;
		width: 100% !important;
	}
	.cr__col-md-offset-12 {
		margin-left: 100%;
	}
}

@media screen and (min-width: 992px) {
	.cr__col-lg-offset-0 {
		margin-left: 0;
	}
	.cr__col-lg-1 {
		flex-basis: 8.33333%;
		width: 8.33333% !important;
	}
	.cr__col-lg-offset-1 {
		margin-left: 8.33333%;
	}
	.cr__col-lg-2 {
		flex-basis: 16.66667%;
		width: 16.66667% !important;
	}
	.cr__col-lg-offset-2 {
		margin-left: 16.66667%;
	}
	.cr__col-lg-3 {
		flex-basis: 25%;
		width: 25% !important;
	}
	.cr__col-lg-offset-3 {
		margin-left: 25%;
	}
	.cr__col-lg-4 {
		flex-basis: 25%;
		width: 25% !important;
	}
	.cr__col-lg-offset-4 {
		margin-left: 33.33333%;
	}
	.cr__col-lg-5 {
		flex-basis: 41.66667%;
		width: 41.66667% !important;
	}
	.cr__col-lg-offset-5 {
		margin-left: 41.66667%;
	}
	.cr__col-lg-6 {
		flex-basis: 50%;
		width: 50% !important;
	}
	.cr__col-lg-offset-6 {
		margin-left: 50%;
	}
	.cr__col-lg-7 {
		flex-basis: 58.33333%;
		width: 58.33333% !important;
	}
	.cr__col-lg-offset-7 {
		margin-left: 58.33333%;
	}
	.cr__col-lg-8 {
		flex-basis: 66.66667%;
		width: 66.66667% !important;
	}
	.cr__col-lg-offset-8 {
		margin-left: 66.66667%;
	}
	.cr__col-lg-9 {
		flex-basis: 75%;
		width: 75% !important;
	}
	.cr__col-lg-offset-9 {
		margin-left: 75%;
	}
	.cr__col-lg-10 {
		flex-basis: 83.33333%;
		width: 83.33333% !important;
	}
	.cr__col-lg-offset-10 {
		margin-left: 83.33333%;
	}
	.cr__col-lg-11 {
		flex-basis: 91.66667%;
		width: 91.66667% !important;
	}
	.cr__col-lg-offset-11 {
		margin-left: 91.66667%;
	}
	.cr__col-lg-12 {
		flex-basis: 100%;
		width: 100% !important;
	}
	.cr__col-lg-offset-12 {
		margin-left: 100%;
	}
}

@media screen and (min-width: 1200px) {
	.cr__col-xl-offset-0 {
		margin-left: 0;
	}
	.cr__col-xl-1 {
		flex-basis: 8.33333%;
		width: 8.33333% !important;
	}
	.cr__col-xl-offset-1 {
		margin-left: 8.33333%;
	}
	.cr__col-xl-2 {
		flex-basis: 16.66667%;
		width: 16.66667% !important;
	}
	.cr__col-xl-offset-2 {
		margin-left: 16.66667%;
	}
	.cr__col-xl-3 {
		flex-basis: 25%;
		width: 25% !important;
	}
	.cr__col-xl-offset-3 {
		margin-left: 25%;
	}
	.cr__col-xl-4 {
		flex-basis: 33.33333%;
		width: 33.33333% !important;
	}
	.cr__col-xl-offset-4 {
		margin-left: 33.33333%;
	}
	.cr__col-xl-5 {
		flex-basis: 41.66667%;
		width: 41.66667% !important;
	}
	.cr__col-xl-offset-5 {
		margin-left: 41.66667%;
	}
	.cr__col-xl-6 {
		flex-basis: 50%;
		width: 50% !important;
	}
	.cr__col-xl-offset-6 {
		margin-left: 50%;
	}
	.cr__col-xl-7 {
		flex-basis: 58.33333%;
		width: 58.33333% !important;
	}
	.cr__col-xl-offset-7 {
		margin-left: 58.33333%;
	}
	.cr__col-xl-8 {
		flex-basis: 66.66667%;
		width: 66.66667% !important;
	}
	.cr__col-xl-offset-8 {
		margin-left: 66.66667%;
	}
	.cr__col-xl-9 {
		flex-basis: 75%;
		width: 75% !important;
	}
	.cr__col-xl-offset-9 {
		margin-left: 75%;
	}
	.cr__col-xl-10 {
		flex-basis: 83.33333%;
		width: 83.33333% !important;
	}
	.cr__col-xl-offset-10 {
		margin-left: 83.33333%;
	}
	.cr__col-xl-11 {
		flex-basis: 91.66667%;
		width: 91.66667% !important;
	}
	.cr__col-xl-offset-11 {
		margin-left: 91.66667%;
	}
	.cr__col-xl-12 {
		flex-basis: 100%;
		width: 100% !important;
	}
	.cr__col-xl-offset-12 {
		margin-left: 100%;
	}
}

@media screen and (min-width: 1400px) {
	.cr__col-xxl-offset-0 {
		margin-left: 0;
	}
	.cr__col-xxl-1 {
		flex-basis: 8.33333%;
		width: 8.33333% !important;
	}
	.cr__col-xxl-offset-1 {
		margin-left: 8.33333%;
	}
	.cr__col-xxl-2 {
		flex-basis: 16.66667%;
		width: 16.66667% !important;
	}
	.cr__col-xxl-offset-2 {
		margin-left: 16.66667%;
	}
	.cr__col-xxl-3 {
		flex-basis: 25%;
		width: 25% !important;
	}
	.cr__col-xxl-offset-3 {
		margin-left: 25%;
	}
	.cr__col-xxl-4 {
		flex-basis: 33.33333%;
		width: 33.33333% !important;
	}
	.cr__col-xxl-offset-4 {
		margin-left: 33.33333%;
	}
	.cr__col-xxl-5 {
		flex-basis: 41.66667%;
		width: 41.66667% !important;
	}
	.cr__col-xxl-offset-5 {
		margin-left: 41.66667%;
	}
	.cr__col-xxl-6 {
		flex-basis: 50%;
		width: 50% !important;
	}
	.cr__col-xxl-offset-6 {
		margin-left: 50%;
	}
	.cr__col-xxl-7 {
		flex-basis: 58.33333%;
		width: 58.33333% !important;
	}
	.cr__col-xxl-offset-7 {
		margin-left: 58.33333%;
	}
	.cr__col-xxl-8 {
		flex-basis: 66.66667%;
		width: 66.66667% !important;
	}
	.cr__col-xxl-offset-8 {
		margin-left: 66.66667%;
	}
	.cr__col-xxl-9 {
		flex-basis: 75%;
		width: 75% !important;
	}
	.cr__col-xxl-offset-9 {
		margin-left: 75%;
	}
	.cr__col-xxl-10 {
		flex-basis: 83.33333%;
		width: 83.33333% !important;
	}
	.cr__col-xxl-offset-10 {
		margin-left: 83.33333%;
	}
	.cr__col-xxl-11 {
		flex-basis: 91.66667%;
		width: 91.66667% !important;
	}
	.cr__col-xxl-offset-11 {
		margin-left: 91.66667%;
	}
	.cr__col-xxl-12 {
		flex-basis: 100%;
		width: 100% !important;
	}
	.cr__col-xxl-offset-12 {
		margin-left: 100%;
	}
}

/* Gutenberg Editor Colors */

.has-moksi-orange-color {
    color: #F37321;
}

.has-moksi-orange-background-color {
    background-color: #F37321;
}

.has-moksi-grey-color {
    color: #333E4A;
}

.has-moksi-grey-background-color {
    background-color: #333E4A;
}

.has-moksi-eggshell-color {
    color: #FFEDE1;
}

.has-moksi-eggshell-background-color {
    background-color: #FFEDE1;
}

.has-moksi-white-color {
    color: #FFFFFF;
}

.has-moksi-white-background-color {
    background-color: #FFFFFF;
}


/* Manrope-ExtraLight - latin */
@font-face {
    font-display: swap;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 200; /* Closest match for Montserrat-200 */
    src: url("assets/fonts/Manrope-ExtraLight.ttf") format("truetype");
}

/* Manrope-Light - latin */
@font-face {
    font-display: swap;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300; /* Closest match for Montserrat-300 */
    src: url("assets/fonts/Manrope-Light.ttf") format("truetype");
}

/* Manrope-Regular - latin */
@font-face {
    font-display: swap;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400; /* Montserrat-Regular */
    src: url("assets/fonts/Manrope-Regular.ttf") format("truetype");
}

/* Manrope-Medium - latin */
@font-face {
    font-display: swap;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500; /* Closest match for Montserrat-500 */
    src: url("assets/fonts/Manrope-Medium.ttf") format("truetype");
}

/* Manrope-SemiBold - latin */
@font-face {
    font-display: swap;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600; /* Closest match for Montserrat-600 */
    src: url("assets/fonts/Manrope-SemiBold.ttf") format("truetype");
}

/* Manrope-Bold - latin */
@font-face {
    font-display: swap;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700; /* Montserrat-700 */
    src: url("assets/fonts/Manrope-Bold.ttf") format("truetype");
}

/* Manrope-ExtraBold - latin */
@font-face {
    font-display: swap;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 800; /* Closest match for Montserrat-800 */
    src: url("assets/fonts/Manrope-ExtraBold.ttf") format("truetype");
}


.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.no__wrap {
	flex-wrap: nowrap;
}

.m-0 {
	margin: 0;
}

img.custom-logo {
	max-width: 330px !important;
	width: 100%;
}

.masthead-inner {
	flex-wrap: nowrap;
	padding: 10px 0 0;
}

.rugs-sizes__wrapper {
	flex-wrap: unset;
}

.rugs-sizes__wrapper .rugs-sizes__item {
	display: flex;
	flex-direction: column;
}

.rugs-sizes__wrapper .rugs-sizes__item .rugs-sizes__item-image {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 130px;
}

.sizeShapeSwiper__container {
	padding: 40px;
	position: relative;
}

.sizeShapeSwiper__container .swiper-button-next {
	position: absolute;
	top: 30%;
	right: 0;
}

.sizeShapeSwiper__container .swiper-button-prev {
	position: absolute;
	top: 30%;
	left: 0;
}

.sl-btn svg {
	max-width: 28px;
}

.sl-btn.swiper-button-disabled svg {
	opacity: 0.3;
}

.size-ttle__wrap .text-center {
	min-height: 50px;
	margin: 0;
}

section.best-sellers {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

section.best-sellers .best-sellers-heading {
	background: rgba(255, 255, 255, 0.76);
	max-width: 720px;
	margin: 0 auto;
	padding: 50px 30px 50px;
}

ul.tabs-list {
	list-style: none;
	width: 100%;
	max-width: 720px;
	justify-content: space-between;
	margin: 0 auto;
	padding-left: 0;
}

li.tabs-list__item a {
	text-transform: uppercase;
	text-decoration: unset;
	color: inherit;
}

li.tabs-list__item.active a {
	color: #F37321;
}

.home .tabs.tabs--horizontal:before {
	content: "";
	background: #fbfbfb;
	width: 100%;
	height: 50%;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	z-index: -1;
}

section.shop-slider {
	position: relative;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: #050505;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-top: 30px;
}

.woocommerce div.product .product_title {
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.variations tbody {
	display: flex;
	gap: 10px;
}

.variations tr {
	width: 100%;
	display: flex;
}

.variations th.label {
	display: none;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations select {
	width: 100%;
}

.woocommerce-product-details__short-description {
	max-width: 500px;
}

.wws-social {
	padding-left: 26px;
	padding-top: 5px;
}

.wws-social p {
	margin-top: 0;
}

.wws-social__icons {
	display: flex;
	gap: 20px;
}

.wws-social__icons img {
	max-height: 20px;
}

.safe-secure p {
	margin: 0;
}

.safe-secure {
	display: flex;
	align-items: center;
	gap: 10px;
}

.woocommerce div.product div.summary {
	margin-top: 0;
	padding-right: 10%;
}

.product_meta {
	display: none;
}

.quantity-wrap {
	border: 0px solid rgba(196, 185, 139, 0.33);
	display: flex;
	align-items: center;
	height: 100%;
}

tr.woocommerce-cart-form__cart-item .quantity-wrap {
	width: max-content !important;
}

span.input-number-decrement,
span.input-number-increment {
	padding: 10px;
	cursor: pointer;
}

span.input-number-decrement:hover,
span.input-number-increment:hover {
	background: #FFEDE1 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.faq-item h3 {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 16px;
	margin-bottom: 0;
}

section.related.products h2 {
	text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs .panel {
	padding: 0 20px;
}

.woocommerce-tabs.wc-tabs-wrapper {
	padding: 60px 0 30px 0;
	border-bottom: 1px solid rgba(196, 185, 139, 0.33);
	margin-bottom: 60px;
}

aside#secondary {
	display: none;
}

.cat-products li {
	margin: 0 !important;
}

section#prdctfltr-2 {
	padding-right: 80px;
	max-width: 350px;
}

.flv-has-gallery .flv_second_img {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.woocommerce img,
.woocommerce-page img {
	height: auto;
	max-width: 100%;
}

img.swap-image {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	height: 100% !important;
	object-fit: cover;
}
picture.swap-image:hover {
	opacity: 1 !important;
	object-fit: cover !important;
	width: 100% !important;
}
picture.swap-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100% !important;
    object-fit: cover;
	opacity: 0;
}

.fade-image,
.attachment-woocommerce_thumbnail {
	transition: opacity 0.5s ease;
	width: 100%;
}

/* .product-card a:hover .fade-image,
.product-card a:hover .attachment-woocommerce_thumbnail,
picture.fade-image:hover {
	opacity: 0;
} */

.category-wrp {
	margin-bottom: 20px;
}

.tabs-list__item h3 {
	cursor: pointer;
	margin: 0;
}

.showcase-left__row,
.showcase-right__row {
	padding: 20px;
}

.showcase-left.cr__row {
	gap: 20px;
}

.col-txt {
	text-transform: uppercase;
}

.showcase-row h2 {
	font-size: 3.4rem !important;
	text-transform: uppercase;
	font-weight: 600;
}

.showcase-row {
	min-height: 300px;
}

.showcase-bottom__col {
	flex-direction: column;
	align-content: baseline;
	justify-content: end;
	padding: 20px;
	min-height: 300px;
}

.showcase-cta {
	display: flex;
	width: 100%;
	justify-content: end;
}

.showcase-bottom__col .content-wrp {
	padding: 40px;
}

.showcase-bottom.cr__row.no__wrap {
	gap: 20px;
}

.showcase-bottom__col.sbl-2 {
	justify-content: space-between;
}

.sctn-wrp {
	padding-top: 40px;
	padding-bottom: 40px;
}

.tabs-container {
	margin-left: -10px;
	margin-right: -10px;
}

div#page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.search-results__wrap {
	min-height: 60vh;
	display: flex;
	flex-direction: column;
}

.MagicScroll > .mcs-button-arrow {
	background: unset !important;
	width: unset !important;
	padding: 0 !important;
}

.mcs-wrapper {
	top: 0 !important;
	bottom: 0 !important;
}

.MagicScroll .mcs-item img {
	height: 100% !important;
	object-fit: cover !important;
}

.MagicScroll .mcs-item a {
	height: 100% !important;
}

.magic-slide {
	padding-left: 30px;
}

.MagicScroll-vertical .mcs-button-arrow-prev {
	top: -10px;
}

.MagicScroll-vertical .mcs-button-arrow-next {
	bottom: -10px;
}

.MagicScroll > .mcs-button-arrow {
	opacity: 1 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	font-size: 1.6rem !important;
	color: #333E4A !important;
}

.MagicScroll-horizontal .mcs-button-arrow-prev::before,
.MagicScroll-horizontal .mcs-button-arrow-next::before,
.MagicScroll-vertical .mcs-button-arrow-prev::before,
.MagicScroll-vertical .mcs-button-arrow-next::before {
	content: "";
	border-color: rgba(243, 115, 33, 1) !important;
	border-right-color: rgba(243, 115, 33, 1) !important;
	border-bottom-color: rgba(243, 115, 33, 1) !important;
}

.MagicScroll-vertical .mcs-button-arrow-prev {
	top: -10px !important;
}

.MagicScroll-vertical .mcs-button-arrow-next {
	bottom: -10px !important;
}

@media only screen and (min-width: 768px) {
	.sctn-wrp {
		padding-top: 10px;
		padding-bottom: 70px;
	}
	.sl-1 {
		min-height: 450px;
		padding-left: 40px;
		display: flex;
		align-items: end !important;
		justify-content: start !important;
	}
	.showcase-left.cr__row {
		flex-direction: column;
	}
	.showcase-right,
	.showcase-row {
		display: flex;
		align-items: end;
		justify-content: end;
	}
}

@media only screen and (max-width: 768px) {
	h3 {
		font-size: 1.5rem;
	}
	td.product-quantity {
		display: flex !important;
		align-content: center;
		justify-content: space-between;
	}
	.showcase .no__wrap {
		flex-wrap: wrap;
	}
	.showcase-left {
		width: 100% !important;
		flex-basis: 100%;
	}
	.showcase-left__row,
	.showcase-right__row {
		width: 100%;
	}
	.showcase-right {
		min-height: 300px;
		margin: 20px 0;
	}
}

@media only screen and (max-width: 576px) {
	.product-card__wrapper:nth-child(3),
	.product-card__wrapper:nth-child(4) {
		display: none;
		padding: 40px;
	}
	.masthead-inner {
		flex-wrap: wrap;
		padding-bottom: 5px;
	}
	.woocommerce ul.products li.product .woocommerce-loop-category__title,
	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.woocommerce ul.products li.product h3 {
		font-size: 1rem;
	}
	.variations tbody,
	.woocommerce-variation-add-to-cart.variations_button,
	.woocommerce .product.product-type-simple form.cart {
		flex-direction: column;
	}
	.variations tr {
		width: 100%;
	}
	.woocommerce-variation-add-to-cart.variations_button,
	.woocommerce .product.product-type-simple form.cart {
		height: unset !important;
	}
	.quantity-wrap {
		justify-content: space-between;
	}
	.woocommerce .quantity .qty {
		width: 50%;
	}
	span.input-number-decrement,
	span.input-number-increment {
		width: 25%;
		text-align: center;
	}
	.magic-slide {
		padding-left: 0;
	}
}

@media only screen and (max-width: 768px) {
	.masthead-inner {
		flex-wrap: wrap;
		padding-bottom: 5px;
	}
	.site-branding {
		border-bottom: 1px solid rgba(196, 185, 139, 0.32);
		margin-bottom: 10px;
	}
	.safe-secure__img {
		width: 25px;
	}
	.woocommerce div.product div.summary {
		padding-right: 0;
	}
}

@media only screen and (min-width: 1200px) {
	.rugs-sizes__item {
		width: 16.667%;
	}
	.rugs-sizes__item img {
		max-width: 150px;
	}
	#rugs-sizes .sl-btn {
		display: none;
	}
}

.searchbox-wrapper {
	position: fixed;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: -9999999px;
	right: 0;
	background: rgba(255, 255, 255, 0.86);
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
}

.searchbox-wrapper.searchbox-open {
	left: 0;
	opacity: 1;
}

.searchbox-wrapper .aws-container {
	width: 100%;
	min-width: 500px;
}

.close-search {
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
}

.search-btn {
	cursor: pointer;
}

.count {
	position: absolute;
	top: -16px;
	right: 0;
	border-radius: 50px;
	min-width: 20px;
	min-height: 20px;
	font-size: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	width: auto;
	color: #333E4A;
	font-weight: 500;
}

h1.category-ttle span {
	color: #F37321;
	font-size: 2.2rem;
}

@media only screen and (max-width: 768px) {
    h1.entry-title {
        font-size: 2em !important; /* Adjust the font size as needed */
        padding: 0 50px;
        font-weight: bolder;
        line-height: 1;
    }
}


.category-ttle {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: bolder;
    font-size: 4em;
}

h1.category-ttle.text-uppercase {
    margin: 0px !important;
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: bolder;
    font-size: 4em;
}

@media only screen and (max-width: 768px) {
	h1.category-ttle.text-uppercase {
		margin: 0px !important;
		font-weight: 900;
		font-size: 2em !important;
		text-align: center;
	}
}

.term-description a {
    text-decoration: underline;
}

.lity-container {
	width: 100%;
	max-width: 500px;
	padding-top: 80px;
	vertical-align: top;
}

.lity {
	background: rgba(0, 0, 0, 0.6);
}

a.aws_result_item.aws_search_more {
	font-weight: 500;
	text-transform: uppercase;
	color: #F37321;
}

.search-results div#filter-shop-sidebar {
	display: none;
}

.aws-container .aws-search-form .aws-search-btn svg {
	fill: #F37321;
}

.aws_result_price span.from-txt {
	display: none;
}

.aws_result_title {
	text-transform: uppercase;
}

.aws-search-result .aws_result_term {
	color: #F37321;
	text-transform: uppercase;
}

.aws-container .aws-search-field {
	color: #333E4A;
	border: 1px solid rgba(196, 185, 139, 0.33);
	text-transform: uppercase;
	font-weight: 500;
}

.lity-close {
	background: unset !important;
	color: #F37321 !important;
}

.lity-close:hover {
	background: unset !important;
}

.aws-search-result .aws_onsale {
	background: #F37321;
	color: #333E4A;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 10px;
}

.header-top {
	background: #333E4A;
	padding: 6px;
}

.header-top p {
	margin: 0;
	color: #fff;
	font-size: 1.3rem;
	letter-spacing: 2px;
}

.header-top p strong {
	font-weight: 600;
}

section.best-sellers-items.sctn-wrp.shop-slider {
	padding-top: 0;
}

.aws-search-result .aws_result_excerpt {
	display: none;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
	width: 100%;
}

input.wpcf7-form-control.wpcf7-submit {
	width: 100%;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	border-radius: unset;
	border: unset;
	padding: 10px !important;
}

textarea.wpcf7-form-control.wpcf7-textarea {
	outline: none !important;
}

textarea.wpcf7-form-control.wpcf7-textarea:focus {
	outline: inherit !important;
}

.header-inner {
	background: rgba(255, 255, 255, 0.76);
	margin: 0 auto;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 500px;
	min-height: 160px;
	min-width: 30vw;
	max-width: 500px;
}

.contact-image img {
	object-fit: cover;
	object-position: center;
}

.woocommerce-ResetPassword.lost_reset_password .form-row {
	width: 100%;
}

.error404 main {
	margin-top: auto;
}

.product .images a[target="_blank"] {
	display: none !important;
}

del .amount:nth-child(even),
ins .amount:nth-child(even) {
    display: none;
}
span.price del,
span.price ins {
    color: transparent !important;
}
span.price del .amount,
span.price ins .amount {
	color: #333E4A;
}
del span.woocommerce-Price-amount.amount {
    text-decoration: line-through;
}
.woocommerce div.product p.price del,
.woocommerce div.product p.price ins {
    color: transparent;
}
.woocommerce div.product p.price span.woocommerce-Price-amount.amount {
    color: #333E4A;
}
.entry-summary p.price {
    display: flex;
}
@media only screen and (min-width: 769px) {
	.MagicScroll > .mcs-button-arrow {
		right: -140px !important;
	}
}

@media screen and (min-width: 992px) {
	.best-sellers-items .cr__col-lg-4 {
		flex-basis: 25%;
		width: 25% !important;
	}
}

/*# sourceMappingURL=style.css.map */

.heroSwiper .theme-btn {
	cursor: pointer;
}

.archive section.shop-slider {
    padding-top: 0;
}
.archive section#rugs-sizes {
    padding-bottom: 0;
}
@media only screen and (min-width: 680px) {
	form.woocommerce-form {
			flex: 1;
			margin-top: 0 !important;
			margin-bottom: 0 !important;
	}
	div#customer_login {
			display: flex;
			gap: 20px;
	}
	.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
			display: flex;
			flex-direction: column;
	}
	.heroSwiper .slider-details h1 {
    font-size: 3.4rem;
	}
}

.prdctfltr_checkboxes {
    overflow-y: scroll;
    max-height: 200px;
}

ul.products li.product {
    margin-bottom: 20px !important;
    display: flex;
    flex-direction: column;
}


.cat-products img {
    height: 100% !important;
    object-fit: cover;
}
/* .woocommerce h2.woocommerce-loop-product__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */
.woocommerce-page table.cart td.actions .input-text {
    height: 34px;
}
.category-wrp {
    align-items: flex-start;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    width: 100%;
}
.single-product .woocommerce-variation-price .from-txt {
    display: none;
}
mark,
ins {
  background: unset;
}
.wws-whatsapp { display: none; }
@media only screen and (max-width: 768px) {
.showcase-right, .showcase-row {
    display: flex;
    align-items: end;
}
	.showcase-left.cr__row,
	.showcase-bottom.cr__row.no__wrap {
    margin: 0;
}
	.showcase-cta {
    justify-content: start;
}
	.showcase-bottom__col.sbl-2 {
    justify-content: end;
}
	.showcase-bottom__col .content-wrp {
    padding: 0 0 15px;
}
	.contact-image {
    padding-right: 0;
}
	.wws-whatsapp { display: block; }
	textarea.wpcf7-form-control.wpcf7-textarea {
    	height: 150px;
	}
	}

.tabs-container__inner .cr__col-lg-3 {
    position: relative;
}
.tabs-container__inner .product-card .card-img {
    border: 1px solid rgb(0 0 0 / 5%);
}
.entry-header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
dl.variation {
    flex-direction: column;
}
.woocommerce ul.cart_list li.woocommerce-mini-cart-item.mini_cart_item dl dt, .woocommerce ul.product_list_widget li.woocommerce-mini-cart-item.mini_cart_item dl dt {
    font-size: 12px;
}
.woocommerce ul.cart_list li.woocommerce-mini-cart-item.mini_cart_item dl dd, .woocommerce ul.cart_list li dl dt, .woocommerce ul.product_list_widget li.woocommerce-mini-cart-item.mini_cart_item dl dd, .woocommerce ul.product_list_widget li.woocommerce-mini-cart-item.mini_cart_item dl dt {
    display: inline-block;
    float: left;
    margin-bottom: 5px;
}
.widget_shopping_cart dl.variation dd {
    font-size: 12px;
    text-align: left !important;
	margin-left: 0 !important;
}
.widget_shopping_cart .woocommerce-mini-cart-item .variation {
    align-items: flex-start;
}
.widget_shopping_cart p {
    margin: 0;
}
.woocommerce ul.product_list_widget li.woocommerce-mini-cart-item.mini_cart_item dl dt dt {
    font-weight: 600 !important;
}
.woocommerce ul.cart_list li dl, .woocommerce ul.product_list_widget li dl {
    border-left: 1px solid #F37321;
}
label[for="payment_method_payfast"] img {
    display: none;
}
.select2-container--default .select2-selection--single {
    color: #666;
    border: 1px solid rgba(196, 185, 139, 0.33);
    border-radius: 0;
    font-weight: 300;
}

a.add_to_wishlist.single_add_to_wishlist.button.alt {
    padding: 0;
    background: transparent !important;
}

a.add_to_wishlist.single_add_to_wishlist.button.alt span {
    display: none !important;
}

.yith-wcwl-wishlistaddedbrowse {
    background: #dbdbdb;
}
tr.cart_item .product-name dl.variation,
tr.order_item .product-name dl.variation {
    display: flex;
    flex-direction: column;
}
tr.cart_item .product-name p,
tr.order_item .product-name p {
    margin: 0;
}
tr.cart_item .product-name dt,
tr.order_item .product-name dt,
tr.cart_item .product-name p,
tr.order_item .product-name p {
    font-size: 12px;
}
.coupon button.button.wp-element-button {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
ul.wc-item-meta {
    margin-left: 0;
    padding-left: 0;
    font-size: 14px;
}
span.from-txt { margin-right: 10px; }
body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button {
    animation-name: customize-partial-edit-shortcut-bounce-appear;
    width: unset;
    border-radius: unset;
    min-width: unset !important;
    padding: 3px;
}
.woocommerce div.product p.price del {
    margin-right: 10px;
}
.designed-by a {
    font-size: 12px !important;
}

.filter-trigger span {
	font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
}
.filter-trigger {
    display: none;
}
.filter-trigger svg {
    width: 20px;
}
.custom-copy {
    margin-bottom: -50px;
}
@media only screen and (max-width: 992px) {
	.category-wrp #filter-shop-sidebar {
		display: block !important;
		width: 100%;
		padding: 0;
		flex-basis: 100%;
	}
	.filter-trigger {
		display: flex;
		align-items: center;
		gap: 5px;
	}
	.filter-wrap {
    	display: none;
	}
	.woocommerce nav.woocommerce-pagination {
    	justify-content: center;
	}
	.woocommerce nav.woocommerce-pagination ul {
	    flex-wrap: wrap;
	    justify-content: center;
	}
	.woocommerce nav.woocommerce-pagination ul .page-numbers {
	    width: 30px !important;
	    height: 30px !important;
	    font-size: 12px;
	}
	section.related.products.pb-5 {
    	padding-bottom: 0;
	}
	.single-product .woocommerce-message {
	    display: flex;
	    flex-direction: column-reverse;
	}
	.single-product .woocommerce-message a.button.wc-forward {
	    margin-top: 10px;
	    max-width: 170px;
	}
}

//**
 * Moksi Unified Button Styles
 *
 * Append to the END of style.css.
 * Only targets actual action buttons (submit, save, add to cart, etc.)
 * Does NOT affect UI chrome (close buttons, toggles, arrows, tabs, dropdowns).
 *
 * Primary: #F37321 (Moksi Orange)
 * Hover:   #e0650e (darker orange)
 * Text:    #333E4A (Dark Grey)
 * Shape:   5px border-radius
 */


/* ══════════════════════════════════════════════════════════
   1. Dokan v5 CSS variable overrides
   ══════════════════════════════════════════════════════════ */
:root,
.dokan-layout,
.dokan-dashboard-wrap,
.dokan-dashboard {
    --dokan-button-background-color: #F37321 !important;
    --dokan-button-border-color: #F37321 !important;
    --dokan-button-text-color: #333E4A !important;
    --dokan-button-hover-background-color: #e0650e !important;
    --dokan-button-hover-border-color: #e0650e !important;
    --dokan-button-hover-text-color: #333E4A !important;
    --colors-primary-500: #F37321 !important;
    --colors-primary-600: #e0650e !important;
}


/* ══════════════════════════════════════════════════════════
   2. Moksi action button base
      Only targets elements with explicit action classes or
      submit type - never bare <button> elements.
   ══════════════════════════════════════════════════════════ */
input[type="submit"],
.dokan-btn,
a.dokan-btn,
.dokan-btn-theme,
a.dokan-btn-theme,
.dokan-btn-default,
.dokan-btn-success,
.theme-btn,
input.wpuf-submit-button,
a.wp-block-button__link.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.woocommerce button.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled {
    background: #F37321 !important;
    color: #333E4A !important;
    border: 1px solid #F37321 !important;
    border-radius: 5px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Manrope', sans-serif !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    min-height: unset !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}

input[type="submit"]:hover,
.dokan-btn:hover,
a.dokan-btn:hover,
.dokan-btn-theme:hover,
a.dokan-btn-theme:hover,
.dokan-btn-default:hover,
.dokan-btn-success:hover,
.theme-btn:hover,
input.wpuf-submit-button:hover,
a.wp-block-button__link.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover {
    background: #e0650e !important;
    border-color: #e0650e !important;
    color: #333E4A !important;
}

input[type="submit"]:active,
input[type="submit"]:focus,
.dokan-btn:active,
.dokan-btn:focus,
.dokan-btn-theme:active,
.dokan-btn-theme:focus {
    background: #e0650e !important;
    border-color: #e0650e !important;
    color: #333E4A !important;
    outline: none !important;
}


/* ══════════════════════════════════════════════════════════
   3. Dokan v5 React editor primary buttons only
   ══════════════════════════════════════════════════════════ */
.dokan-layout .bg-primary-500,
.dokan-layout :is(.bg-primary-500) {
    background-color: #F37321 !important;
}

.dokan-layout button.components-button.is-primary,
.dokan-layout .components-button.is-primary {
    background: #F37321 !important;
    color: #333E4A !important;
    border-color: #F37321 !important;
    border-radius: 5px !important;
    font-family: 'Manrope', sans-serif !important;
}

.dokan-layout button.components-button.is-primary:hover,
.dokan-layout .components-button.is-primary:hover {
    background: #e0650e !important;
    border-color: #e0650e !important;
    color: #333E4A !important;
}


/* ══════════════════════════════════════════════════════════
   4. WooCommerce specific overrides
   ══════════════════════════════════════════════════════════ */

/* Product page add-to-cart full width */
.woocommerce div.product form.cart .button {
    width: 100%;
    padding: 10px 40px !important;
}

/* Checkout button */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    font-size: 16px !important;
    color: #333E4A !important;
    border-radius: 5px !important;
}

/* Account button spacing */
.woocommerce-Button.button {
    margin-top: 20px !important;
}

/* Coupon button */
.coupon button.button.wp-element-button {
    padding-left: 15px !important;
    padding-right: 15px !important;
}


/* ══════════════════════════════════════════════════════════
   5. Remove the old nuclear Dokan button reset
      Override it with scoped styles instead.
   ══════════════════════════════════════════════════════════ */
.dokan-dashboard-wrap button,
.dokan-dashboard-wrap input[type="button"] {
    all: revert !important;
}

.dokan-dashboard-wrap input[type="submit"],
.dokan-dashboard-wrap a.dokan-btn,
.dokan-dashboard-wrap .dokan-btn {
    all: revert !important;
    background: #F37321 !important;
    color: #333E4A !important;
    border: 1px solid #F37321 !important;
    border-radius: 5px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Manrope', sans-serif !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

.dokan-dashboard-wrap input[type="submit"]:hover,
.dokan-dashboard-wrap a.dokan-btn:hover,
.dokan-dashboard-wrap .dokan-btn:hover {
    background: #e0650e !important;
    border-color: #e0650e !important;
    color: #333E4A !important;
}