@charset "UTF-8";
/*!
Theme Name: Shopwell
Author: Peregrine Themes
Author URI: https://peregrine-themes.com
Theme URI: https://peregrine-themes.com/shopwell
Description: ShopWell is a versatile and feature-rich WooCommerce theme designed to help you build a successful online store or marketplace. With seamless multi-vendor integration, customizable layouts, and a mobile-first design, ShopWell offers a user-friendly shopping experience across all devices. Its advanced features, including customizable headers, sticky navigation, and a powerful theme options panel, provide complete flexibility to tailor your store’s design. Whether for a single store or a marketplace, ShopWell ensures your business thrives and scales with ease. Live preview: https://peregrine-themes.com/shopwell/#demos
Version: 1.0.4
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.0
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shopwell
Domain Path: /lang/
Tags: e-commerce, blog, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, sticky-post, post-formats, theme-options, one-column, two-columns, left-sidebar, right-sidebar, rtl-language-support, threaded-comments, translation-ready

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

Do not add your CSS to this file, use a child theme instead: https://codex.wordpress.org/Child_Themes
The main CSS file is loaded from "assets/css folder".
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
:root {
  --shopwell-font__main: "Outfit", Arial, sans-serif;
  --shopwell-border__radius: 2px;
  --shopwell-color__primary: #0068c8;
  --shopwell-color__primary--dark: #0158a7;
  --shopwell-color__primary--darker: #004380;
  --shopwell-color__primary--light: #fff;
  --shopwell-color__primary--gray: #e5eff9;
  --shopwell-color__primary--grayer: #c7dcef;
  --shopwell-color__primary--grayest: #9cc1e3;
  --shopwell-color__primary--box-shadow: rgba(0, 103, 199, 0);
  --shopwell-hot-label-bg: #dd2831;
  --shopwell-color__heading: #1d2128;
  --shopwell-size__medium: 44px;
  --shopwell-input__box-shadow: rgba(0, 0, 0, 0);
  --shopwell-input__background-color: #fff;
  --shopwell-input__border-width: 2px;
  --shopwell-input__height: 60px;
  --shopwell-input__font-size: 14px;
  --shopwell-input__font-size-pd: 14px;
}

@keyframes shopwellFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes shopwellLoading {
  0% {
    opacity: 0.24;
  }
  50% {
    opacity: 0.48;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shopwellSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shopwellCheckmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 6px;
    opacity: 1;
  }
  40% {
    height: 12px;
    width: 6px;
    opacity: 1;
  }
  90% {
    height: 12px;
    width: 6px;
    opacity: 1;
  }
  100% {
    height: 12px;
    width: 6px;
    opacity: 0;
  }
}
@keyframes shopwellButtonCheckAdded {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 6px;
    opacity: 1;
  }
  40% {
    height: 12px;
    width: 6px;
    opacity: 1;
  }
  60% {
    height: 12px;
    width: 6px;
    opacity: 0;
  }
  100% {
    height: 12px;
    width: 6px;
    opacity: 0;
  }
}
@keyframes shopwellButtonCheckSuccess {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shopwellSlideOut {
  100% {
    width: 0;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes anim-topbottom {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)";
  }
}
@keyframes shine {
  100% {
    left: -200%;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* 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: 700;
}

/**
 * 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: 83%;
  line-height: 1.3;
}

/**
 * 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: inherit;
  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: border-box;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
/**
 * Font Weight Classes
 * ------------------
 * Map of font weights with their semantic meanings
 */
.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.25;
  color: #1d2128;
}

h1 {
  font-size: 72px;
  font-size: 4.5rem;
}

h2 {
  font-size: 54px;
  font-size: 3.375rem;
}

h3 {
  font-size: 36px;
  font-size: 2.25rem;
}

h4 {
  font-size: 28px;
  font-size: 1.75rem;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
}

body {
  color: #030712;
  font-family: var(--shopwell-font__main);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

p {
  margin-bottom: 1.5em;
}

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

blockquote {
  margin: 0;
  font-size: 22px;
  font-size: 1.375rem;
  font-style: italic;
  padding-left: 50px;
  position: relative;
  border-left: none;
  box-shadow: none;
  line-height: 1.4;
}
blockquote:after {
  content: "";
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="20" viewBox="0 0 25 20"><path fill="%23DADFE3" d="M0 14.495c-.003-2.842.784-5.618 2.146-8.093a16.278 16.278 0 0 1 5.7-6.01A1.74 1.74 0 0 1 9.979.334c.209.151.383.346.512.572a1.863 1.863 0 0 1-.238 2.173c-.174.191-.386.341-.622.441A12.692 12.692 0 0 0 4.76 9.007h.589c1.058 0 2.092.322 2.972.925a5.46 5.46 0 0 1 1.97 2.463 5.618 5.618 0 0 1 .305 3.17 5.532 5.532 0 0 1-1.464 2.81 5.31 5.31 0 0 1-2.74 1.501 5.226 5.226 0 0 1-3.09-.312 5.381 5.381 0 0 1-2.401-2.021A5.588 5.588 0 0 1 0 14.495Zm14.266.018c.001-2.839.789-5.63 2.15-8.1A16.278 16.278 0 0 1 22.114.41a1.74 1.74 0 0 1 2.132-.058c.208.15.382.345.511.571a1.861 1.861 0 0 1 .15 1.508 1.84 1.84 0 0 1-.388.666c-.174.19-.386.34-.622.44a12.692 12.692 0 0 0-4.868 5.488h.588c1.058 0 2.093.321 2.973.924a5.46 5.46 0 0 1 1.97 2.463 5.618 5.618 0 0 1 .304 3.17 5.532 5.532 0 0 1-1.464 2.81 5.31 5.31 0 0 1-2.739 1.502 5.226 5.226 0 0 1-3.091-.313 5.381 5.381 0 0 1-2.4-2.02 5.587 5.587 0 0 1-.903-3.05Z"/></svg>');
  width: 25px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 0;
}
blockquote p {
  margin: 0.5em 0;
}
blockquote footer {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

address {
  margin: 0 0 1.5em;
}

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

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

code {
  padding: 2px 4px;
  color: #c7254e;
  background-color: #f9f2f4;
  font-size: inherit;
}

abbr,
acronym {
  border-bottom: 1px dotted rgba(185, 185, 185, 0.4);
  cursor: help;
}

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

big {
  font-size: 122.2222222222%;
  line-height: 1.4;
  font-weight: 500;
}

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

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

ul,
ol {
  padding: 0 0 1.5em 1.3em;
  margin-left: 0;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  padding-bottom: 0;
  padding-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%;
  vertical-align: middle;
}

figure {
  margin: 1em 0 2em;
}

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

th,
td {
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
}

th {
  text-align: left;
}
th a {
  text-decoration: none;
}

.wp-block-table td,
.wp-block-table th {
  border: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
}

.shopwell-svg-icon {
  display: inline-block;
  line-height: 1;
}
.shopwell-svg-icon svg {
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
}

/* Links
--------------------------------------------- */
a {
  color: #1d2128;
  text-decoration: none;
  transition: 0.4s;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button[type=submit],
input[type=button],
input[type=reset],
input[type=submit],
.button {
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: var(--shopwell-border__radius);
  background-color: var(--shopwell-color__primary);
  color: var(--shopwell-color__primary--light);
  box-shadow: 0px 2px 6px 0px var(--shopwell-color__primary--box-shadow);
  padding: 0 2em;
  min-width: 160px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  border: none;
  cursor: pointer;
  line-height: 60px;
}
button[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
.button:hover {
  background-color: var(--shopwell-color__primary--dark);
  box-shadow: 0px 4px 8px 0px var(--shopwell-color__primary--box-shadow);
}
button[type=submit]:active, button[type=submit]: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,
.button:active,
.button:focus {
  background-color: var(--shopwell-color__primary--darker);
}
button[type=submit]:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
.button:focus {
  outline: 1px dotted;
  outline-offset: -3px;
}
button[type=submit].shopwell-button--color-white:active, button[type=submit].shopwell-button--color-white:focus,
input[type=button].shopwell-button--color-white:active,
input[type=button].shopwell-button--color-white:focus,
input[type=reset].shopwell-button--color-white:active,
input[type=reset].shopwell-button--color-white:focus,
input[type=submit].shopwell-button--color-white:active,
input[type=submit].shopwell-button--color-white:focus,
.button.shopwell-button--color-white:active,
.button.shopwell-button--color-white:focus {
  box-shadow: 0px 4px 8px 0px var(--shopwell-color__primary--box-shadow);
}
button[type=submit].disabled, button[type=submit]:disabled, button[type=submit]:disabled[disabled],
input[type=button].disabled,
input[type=button]:disabled,
input[type=button]:disabled[disabled],
input[type=reset].disabled,
input[type=reset]:disabled,
input[type=reset]:disabled[disabled],
input[type=submit].disabled,
input[type=submit]:disabled,
input[type=submit]:disabled[disabled],
.button.disabled,
.button:disabled,
.button:disabled[disabled] {
  background-color: #ebeff3;
  color: #fff;
  border: none;
  box-shadow: none;
  cursor: not-allowed;
}
button[type=submit].disabled:hover, button[type=submit].disabled:active, button[type=submit].disabled:focus, button[type=submit]:disabled:hover, button[type=submit]:disabled:active, button[type=submit]:disabled:focus, button[type=submit]:disabled[disabled]:hover, button[type=submit]:disabled[disabled]:active, button[type=submit]:disabled[disabled]:focus,
input[type=button].disabled:hover,
input[type=button].disabled:active,
input[type=button].disabled:focus,
input[type=button]:disabled:hover,
input[type=button]:disabled:active,
input[type=button]:disabled:focus,
input[type=button]:disabled[disabled]:hover,
input[type=button]:disabled[disabled]:active,
input[type=button]:disabled[disabled]:focus,
input[type=reset].disabled:hover,
input[type=reset].disabled:active,
input[type=reset].disabled:focus,
input[type=reset]:disabled:hover,
input[type=reset]:disabled:active,
input[type=reset]:disabled:focus,
input[type=reset]:disabled[disabled]:hover,
input[type=reset]:disabled[disabled]:active,
input[type=reset]:disabled[disabled]:focus,
input[type=submit].disabled:hover,
input[type=submit].disabled:active,
input[type=submit].disabled:focus,
input[type=submit]:disabled:hover,
input[type=submit]:disabled:active,
input[type=submit]:disabled:focus,
input[type=submit]:disabled[disabled]:hover,
input[type=submit]:disabled[disabled]:active,
input[type=submit]:disabled[disabled]:focus,
.button.disabled:hover,
.button.disabled:active,
.button.disabled:focus,
.button:disabled:hover,
.button:disabled:active,
.button:disabled:focus,
.button:disabled[disabled]:hover,
.button:disabled[disabled]:active,
.button:disabled[disabled]:focus {
  background-color: #ebeff3;
}
button[type=submit].pswp__button,
input[type=button].pswp__button,
input[type=reset].pswp__button,
input[type=submit].pswp__button,
.button.pswp__button {
  min-width: auto;
}

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,
span.select2 .select2-selection--single,
.shopwell-input--default,
.shopwell-type--input-text {
  color: #1d2128;
  border-width: var(--shopwell-input__border-width);
  border-style: solid;
  border-color: #ebeff3;
  border-radius: var(--shopwell-border__radius);
  outline: none;
  transition: 0.4s;
  font-weight: 500;
  font-size: var(--shopwell-input__font-size);
  padding: 12px 22px;
  height: var(--shopwell-input__height);
  box-shadow: 0px 2px 6px 0px var(--shopwell-input__box-shadow);
  background-color: var(--shopwell-input__background-color);
  -webkit-appearance: none;
}
input[type=text]:hover, input[type=text]:active, input[type=text]:focus-within,
input[type=email]:hover,
input[type=email]:active,
input[type=email]:focus-within,
input[type=url]:hover,
input[type=url]:active,
input[type=url]:focus-within,
input[type=password]:hover,
input[type=password]:active,
input[type=password]:focus-within,
input[type=search]:hover,
input[type=search]:active,
input[type=search]:focus-within,
input[type=number]:hover,
input[type=number]:active,
input[type=number]:focus-within,
input[type=tel]:hover,
input[type=tel]:active,
input[type=tel]:focus-within,
input[type=range]:hover,
input[type=range]:active,
input[type=range]:focus-within,
input[type=date]:hover,
input[type=date]:active,
input[type=date]:focus-within,
input[type=month]:hover,
input[type=month]:active,
input[type=month]:focus-within,
input[type=week]:hover,
input[type=week]:active,
input[type=week]:focus-within,
input[type=time]:hover,
input[type=time]:active,
input[type=time]:focus-within,
input[type=datetime]:hover,
input[type=datetime]:active,
input[type=datetime]:focus-within,
input[type=datetime-local]:hover,
input[type=datetime-local]:active,
input[type=datetime-local]:focus-within,
input[type=color]:hover,
input[type=color]:active,
input[type=color]:focus-within,
textarea:hover,
textarea:active,
textarea:focus-within,
select:hover,
select:active,
select:focus-within,
span.select2 .select2-selection--single:hover,
span.select2 .select2-selection--single:active,
span.select2 .select2-selection--single:focus-within,
.shopwell-input--default:hover,
.shopwell-input--default:active,
.shopwell-input--default:focus-within,
.shopwell-type--input-text:hover,
.shopwell-type--input-text:active,
.shopwell-type--input-text:focus-within {
  border-color: #1d2128;
  box-shadow: 0px 4px 8px 0px var(--shopwell-input__box-shadow);
}
input[type=text]:disabled, input[type=text].disabled, input[type=text]:disabled[disabled],
input[type=email]:disabled,
input[type=email].disabled,
input[type=email]:disabled[disabled],
input[type=url]:disabled,
input[type=url].disabled,
input[type=url]:disabled[disabled],
input[type=password]:disabled,
input[type=password].disabled,
input[type=password]:disabled[disabled],
input[type=search]:disabled,
input[type=search].disabled,
input[type=search]:disabled[disabled],
input[type=number]:disabled,
input[type=number].disabled,
input[type=number]:disabled[disabled],
input[type=tel]:disabled,
input[type=tel].disabled,
input[type=tel]:disabled[disabled],
input[type=range]:disabled,
input[type=range].disabled,
input[type=range]:disabled[disabled],
input[type=date]:disabled,
input[type=date].disabled,
input[type=date]:disabled[disabled],
input[type=month]:disabled,
input[type=month].disabled,
input[type=month]:disabled[disabled],
input[type=week]:disabled,
input[type=week].disabled,
input[type=week]:disabled[disabled],
input[type=time]:disabled,
input[type=time].disabled,
input[type=time]:disabled[disabled],
input[type=datetime]:disabled,
input[type=datetime].disabled,
input[type=datetime]:disabled[disabled],
input[type=datetime-local]:disabled,
input[type=datetime-local].disabled,
input[type=datetime-local]:disabled[disabled],
input[type=color]:disabled,
input[type=color].disabled,
input[type=color]:disabled[disabled],
textarea:disabled,
textarea.disabled,
textarea:disabled[disabled],
select:disabled,
select.disabled,
select:disabled[disabled],
span.select2 .select2-selection--single:disabled,
span.select2 .select2-selection--single.disabled,
span.select2 .select2-selection--single:disabled[disabled],
.shopwell-input--default:disabled,
.shopwell-input--default.disabled,
.shopwell-input--default:disabled[disabled],
.shopwell-type--input-text:disabled,
.shopwell-type--input-text.disabled,
.shopwell-type--input-text:disabled[disabled] {
  background-color: #ebeff3;
  cursor: not-allowed;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder,
select::placeholder,
span.select2 .select2-selection--single::placeholder,
.shopwell-input--default::placeholder,
.shopwell-type--input-text::placeholder {
  color: #7d828a;
  font-size: var(--shopwell-input__font-size-pd);
}

textarea {
  padding: 17px 22px;
}

select {
  appearance: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAAxrNxjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjM3QjIwQkNDMjVBRDExRUM5QkFEQjNEQ0I3NjBBM0UwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjM3QjIwQkNEMjVBRDExRUM5QkFEQjNEQ0I3NjBBM0UwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MzdCMjBCQ0EyNUFEMTFFQzlCQURCM0RDQjc2MEEzRTAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MzdCMjBCQ0IyNUFEMTFFQzlCQURCM0RDQjc2MEEzRTAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6sw4h6AAAAb0lEQVR42mKsaexmZGBgqAPiuUD8hAEVyABxBBD3sACJEiBuAOJYIHZAUgxSdACIlYGYiwlILAfiu1CBA1AFyIpAcvNYoCY4IEkcgJoIUwS2hQUqiK6YAVkRiMOC5HBkxQxo7kVRiKyYAT0EAAIMALwKGx4801sSAAAAAElFTkSuQmCC");
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 45px;
  cursor: pointer;
}
select:focus {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAAxrNxjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZEN0U3QjkxMjVBQjExRUNBNzc5QThEOTcxM0VDQzM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZEN0U3QjkyMjVBQjExRUNBNzc5QThEOTcxM0VDQzM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NkQ3RTdCOEYyNUFCMTFFQ0E3NzlBOEQ5NzEzRUNDMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NkQ3RTdCOTAyNUFCMTFFQ0E3NzlBOEQ5NzEzRUNDMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6QL/ztAAAAb0lEQVR42mKUVdRgZGBgqAPiuUD8hAEVyABxBBD3sACJEiBuAOJYIHZAUgxSdACIlYGYiwlILAfiu1CBA1AFyIpAcvNYoCY4IEkcgJoIUwS2hQUqiK6YAVkRiMOC5HBkxQxo7kVRiKyYAT0EAAIMAHklGfyiLfqeAAAAAElFTkSuQmCC");
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
}
select.decorated option:hover {
  box-shadow: 0 0 10px 100px #1882A8 inset;
}
select > option {
  font-weight: 500;
}
select:disabled, select.disabled, select:disabled[disabled] {
  background-color: #ebeff3;
  cursor: not-allowed;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAAxrNxjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZEN0U3QjkxMjVBQjExRUNBNzc5QThEOTcxM0VDQzM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZEN0U3QjkyMjVBQjExRUNBNzc5QThEOTcxM0VDQzM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NkQ3RTdCOEYyNUFCMTFFQ0E3NzlBOEQ5NzEzRUNDMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NkQ3RTdCOTAyNUFCMTFFQ0E3NzlBOEQ5NzEzRUNDMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6QL/ztAAAAb0lEQVR42mKUVdRgZGBgqAPiuUD8hAEVyABxBBD3sACJEiBuAOJYIHZAUgxSdACIlYGYiwlILAfiu1CBA1AFyIpAcvNYoCY4IEkcgJoIUwS2hQUqiK6YAVkRiMOC5HBkxQxo7kVRiKyYAT0EAAIMAHklGfyiLfqeAAAAAElFTkSuQmCC");
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
}

textarea {
  width: 100%;
}

input[type=checkbox] {
  position: relative;
  margin-right: 14px;
  transition: 0.3s;
}
input[type=checkbox]::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -2px;
  left: 0;
  border: 2px solid rgba(185, 185, 185, 0.4);
  border-radius: 2px;
  background-color: #fff;
  transition: 0.3s;
}
input[type=checkbox] + span {
  color: #7d828a;
}
input[type=checkbox]:hover {
  cursor: pointer;
}
input[type=checkbox]:hover::before {
  border-color: #1d2128;
}
input[type=checkbox]:hover + span {
  cursor: pointer;
  color: #1d2128;
}
input[type=checkbox]:checked::before {
  border-color: #1d2128;
  background-color: #1d2128;
}
input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 8px;
  /*rtl:raw:
      width: 11px;
   			height: 6px;
  	top: 3px;
   			right: 5px;
  */
}
input[type=checkbox]:checked + span {
  color: #1d2128;
}

input[type=radio] {
  position: relative;
  margin-right: 17px;
  transition: 0.3s;
}
input[type=radio]::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -1px;
  left: -1px;
  border: 2px solid rgba(185, 185, 185, 0.4);
  background-color: #fff;
  transition: 0.3s;
}
input[type=radio]:hover {
  cursor: pointer;
}
input[type=radio]:hover::before {
  border-color: #1d2128;
}
input[type=radio]:hover + label {
  color: #1d2128;
}
input[type=radio] + label {
  color: #7d828a;
}
input[type=radio]:checked::before {
  border-color: #1d2128;
  background-color: #1d2128;
}
input[type=radio]:checked::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: 1px;
  left: 1px;
}
input[type=radio]:checked + label {
  color: #1d2128;
}

.dokan-dashboard input[type=text], .dokan-dashboard input[type=password], .dokan-dashboard input[type=color], .dokan-dashboard input[type=date], .dokan-dashboard input[type=datetime], .dokan-dashboard input[type=datetime-local], .dokan-dashboard input[type=email], .dokan-dashboard input[type=month], .dokan-dashboard input[type=number], .dokan-dashboard input[type=search], .dokan-dashboard input[type=tel], .dokan-dashboard input[type=time], .dokan-dashboard input[type=url], .dokan-dashboard input[type=week], .dokan-dashboard textarea, .dokan-dashboard select {
  height: auto;
}

/* Blocks
--------------------------------------------- */
.pt-0 {
  padding-top: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.wp-block-quote {
  margin: 1.75em 0;
}
.wp-block-quote, .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  border-left: 0;
  padding-left: 50px;
}
.wp-block-quote cite,
.wp-block-quote footer, .wp-block-quote.is-large cite,
.wp-block-quote.is-large footer, .wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
  font-size: 0.7em;
  font-weight: 500;
  text-align: left;
}
.wp-block-quote cite br,
.wp-block-quote footer br, .wp-block-quote.is-large cite br,
.wp-block-quote.is-large footer br, .wp-block-quote.is-style-large cite br,
.wp-block-quote.is-style-large footer br {
  display: none;
}
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  margin-bottom: 2em;
}
.wp-block-quote.has-text-align-right {
  border-right: 0;
  padding-right: 0;
}
.wp-block-quote.has-text-align-right cite,
.wp-block-quote.has-text-align-right footer {
  text-align: right;
}
.wp-block-quote cite,
.wp-block-quote footer {
  font-size: 0.5em;
  font-weight: 500;
}

.wp-block-pullquote.has-cyan-bluish-gray-background-color {
  background-color: #fcfcfc !important;
}
.wp-block-pullquote blockquote p, .wp-block-pullquote.is-style-solid-color blockquote p {
  margin: 0.5em 0;
  line-height: 1.5;
  font-size: 72px;
  font-size: 4.5rem;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer,
.wp-block-pullquote .wp-block-pullquote__citation {
  font-size: 0.5em;
  font-weight: 500;
}

.wp-block-separator {
  border-bottom-width: 1px;
}

.wp-block-button,
.wp-block-cover {
  margin-bottom: 25px;
}

.wp-block-gallery {
  margin-bottom: 2em;
}

.blocks-gallery-caption {
  margin-bottom: 0.5em;
}

.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button__link.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.wp-block-cover.has-background-dim:not([class*=-background-color]),
:root .has-pale-pink-background-color {
  color: #fff;
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
section.wp-block-cover-image > h2 {
  font-size: 2.25em;
  margin: 0;
  padding: 0;
}

.wp-block-columns.alignfull .wp-block-column p:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h1:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h2:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h3:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h4:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h5:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h6:not(.has-background) {
  padding-left: 15px;
  padding-right: 15px;
}

.wp-block-code {
  font-family: "Courier 10 Pitch", courier, monospace;
  padding: 1.6em;
}
.wp-block-code code {
  background-color: transparent;
}

pre.wp-block-verse {
  font-family: "Courier 10 Pitch", courier, monospace;
}

.wp-block-table.is-style-stripes table td,
.wp-block-table.is-style-stripes table th {
  padding: 10px;
}

.wp-block-image {
  margin-top: 0;
  margin-bottom: 1em;
}

@media only screen and (min-width: 1200px) {
  .no-sidebar .site-content .entry-content > *.alignwide {
    max-width: 1140px;
    width: 1140px;
    margin-left: calc(-570px + 50%);
    margin-right: calc(-570px + 50%);
  }
  .no-sidebar:not(.elementor-page) .site-content .page-content > *.alignwide {
    max-width: 1200px;
    width: 1200px;
    margin-left: calc(-600px + 50%);
    margin-right: calc(-600px + 50%);
  }
}
@media only screen and (min-width: 768px) {
  .no-sidebar .site-content .entry-content > *.alignfull,
  .no-sidebar .site-content .entry-content > *.alignwide {
    width: -webkit-fill-available;
    max-width: 1000%;
  }
  .no-sidebar .site-content .entry-content > *.alignfull {
    margin-right: calc(50% - 50vw + 9px);
    margin-left: calc(50% - 50vw + 8px);
  }
  .no-sidebar:not(.elementor-page) .site-content .page-content > *.alignfull {
    width: -webkit-fill-available;
    max-width: 1000%;
    margin-right: calc(50% - 50vw + 9px);
    margin-left: calc(50% - 50vw + 8px);
  }
}
.media-router .media-menu-item {
  color: #1d2128;
}

.dokan-dashboard button {
  min-width: auto;
  line-height: inherit;
}
.dokan-dashboard button.media-modal-close {
  background-color: transparent;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
body {
  overflow-x: hidden;
}

.site {
  overflow: hidden;
  min-height: 100vh;
}

.site-content {
  padding-top: 63px;
  padding-bottom: 63px;
}
.site-content .hentry::after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}
.site-content .hentry .entry-content p a,
.site-content .hentry > p a {
  color: var(--shopwell-color__primary);
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-content .hentry .entry-content p a:focus, .site-content .hentry .entry-content p a:hover,
.site-content .hentry > p a:focus,
.site-content .hentry > p a:hover {
  background-size: 100% 1px;
}

body.page .site-content {
  padding-top: 50px;
  padding-bottom: 63px;
}

.site-content-no-top-spacing #site-content {
  padding-top: 0;
}

.site-content-no-bottom-spacing #site-content {
  padding-bottom: 0;
}

.shopwell-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.shopwell-container:before {
  content: "";
  display: table;
  table-layout: fixed;
}
.shopwell-container:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

.shopwell-container-fluid {
  margin-left: 25px;
  margin-right: 25px;
  padding-left: 16px;
  padding-right: 16px;
  width: auto;
}
.shopwell-container-fluid:before {
  content: "";
  display: table;
  table-layout: fixed;
}
.shopwell-container-fluid:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.clearfix::after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

@media (min-width: 1200px) {
  .container {
    width: 1172px;
  }
}
.product-archive-elementor .site-content,
.single-product-elementor .site-content {
  padding-top: 0;
  padding-bottom: 0;
}
.product-archive-elementor .site-breadcrumb,
.single-product-elementor .site-breadcrumb {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .content-sidebar .site-content .site-content-container,
  .sidebar-content .site-content .site-content-container {
    display: flex;
    flex-wrap: wrap;
  }
  .content-sidebar .content-area,
  .sidebar-content .content-area {
    flex: 0 0 68%;
    width: 68%;
  }
  .content-sidebar .widget-area,
  .sidebar-content .widget-area {
    flex: 0 0 32%;
    width: 32%;
  }
  .content-sidebar.shopwell-catalog-page .content-area,
  .sidebar-content.shopwell-catalog-page .content-area {
    flex: 0 0 75.5%;
    width: 75.5%;
  }
  .content-sidebar.shopwell-catalog-page .widget-area,
  .sidebar-content.shopwell-catalog-page .widget-area {
    flex: 0 0 24.5%;
    width: 24.5%;
    align-self: flex-start;
  }
  .content-sidebar .content-area {
    padding-right: 24px;
  }
  .content-sidebar .widget-area {
    padding-left: 24px;
  }
  .sidebar-content .widget-area {
    order: 1;
    padding-right: 24px;
  }
  .sidebar-content .widget-area::before {
    left: auto;
    right: 0;
  }
  .sidebar-content .content-area {
    order: 2;
    padding-left: 24px;
  }
  .sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 25px;
    align-self: flex-start;
  }
  .admin-bar .sticky-sidebar {
    top: 57px;
  }
  .single-sidebar {
    margin-top: 44px;
  }
  .content-sidebar .site-content-container,
  .sidebar-content .site-content-container {
    position: relative;
  }
  .content-sidebar .site-content-container::before,
  .sidebar-content .site-content-container::before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(185, 185, 185, 0.4);
  }
  .content-sidebar.shopwell-catalog-page .site-content-container::before,
  .sidebar-content.shopwell-catalog-page .site-content-container::before {
    display: none;
  }
  .content-sidebar .site-content-container::before {
    right: 32%;
  }
  .sidebar-content .site-content-container::before {
    left: 32%;
  }
  .single-post .site-content-container::before {
    top: 44px;
  }
  .shopwell-catalog-page.content-sidebar .content-area {
    padding-right: 12px;
  }
  .shopwell-catalog-page.content-sidebar .widget-area {
    padding-left: 12px;
  }
  .shopwell-catalog-page.sidebar-content .widget-area {
    padding-right: 12px;
  }
  .shopwell-catalog-page.sidebar-content .content-area {
    padding-left: 12px;
  }
}
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/*  Default elements */
.add_to_cart_button,
.shopwell-button-shine .elementor-button {
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.add_to_cart_button:after,
.shopwell-button-shine .elementor-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 150%;
  bottom: 0;
  width: 200%;
  transform: skew(-20deg);
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}
.add_to_cart_button:focus::after, .add_to_cart_button:hover::after,
.shopwell-button-shine .elementor-button:focus::after,
.shopwell-button-shine .elementor-button:hover::after {
  animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}

.shopwell-button {
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: var(--shopwell-border__radius);
  background-color: var(--shopwell-color__primary);
  color: var(--shopwell-color__primary--light);
  box-shadow: 0px 2px 6px 0px var(--shopwell-color__primary--box-shadow);
  padding: 0 2em;
  min-width: 160px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  border: none;
  cursor: pointer;
  line-height: 60px;
}
.shopwell-button:hover {
  background-color: var(--shopwell-color__primary--dark);
  box-shadow: 0px 4px 8px 0px var(--shopwell-color__primary--box-shadow);
}
.shopwell-button:active, .shopwell-button:focus {
  background-color: var(--shopwell-color__primary--darker);
}
.shopwell-button:focus {
  outline: 1px dotted;
  outline-offset: -3px;
}
.shopwell-button.shopwell-button--color-white:active, .shopwell-button.shopwell-button--color-white:focus {
  box-shadow: 0px 4px 8px 0px var(--shopwell-color__primary--box-shadow);
}
.shopwell-button:not(.shopwell-button--ghost, .shopwell-button--text, .shopwell-button--bg-color-white, .header-search__button, .shopwell-button--subtle) {
  position: relative;
  overflow: hidden;
}
.shopwell-button:not(.shopwell-button--ghost, .shopwell-button--text, .shopwell-button--bg-color-white, .header-search__button, .shopwell-button--subtle):after {
  content: "";
  position: absolute;
  top: 0;
  left: 150%;
  bottom: 0;
  width: 200%;
  transform: skew(-20deg);
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}
.shopwell-button:not(.shopwell-button--ghost, .shopwell-button--text, .shopwell-button--bg-color-white, .header-search__button, .shopwell-button--subtle):focus::after, .shopwell-button:not(.shopwell-button--ghost, .shopwell-button--text, .shopwell-button--bg-color-white, .header-search__button, .shopwell-button--subtle):hover::after {
  animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}
.shopwell-button .shopwell-button__icon {
  font-size: 20px;
  font-size: 1.25rem;
  order: 1;
  line-height: inherit;
}
.shopwell-button .shopwell-button__icon + .shopwell-button__text {
  padding-left: 4px;
  order: 2;
}
.shopwell-button .shopwell-button__icon.shopwell-align-icon-right {
  order: 3;
}
.shopwell-button .shopwell-button__icon.shopwell-align-icon-right + .shopwell-button__text {
  padding-right: 4px;
  padding-left: 0;
}
.shopwell-button.shopwell-button--icon-top {
  display: flex;
  flex-direction: column;
  padding: 6px 0 5px;
}
.shopwell-button.shopwell-button--icon-top .shopwell-button__icon,
.shopwell-button.shopwell-button--icon-top .shopwell-button__text {
  line-height: 1;
}
.shopwell-button.shopwell-button--icon-top .shopwell-button__icon + .shopwell-button__text {
  padding-top: 5px;
  padding-left: 0;
}
.shopwell-button.shopwell-button--icon-top .shopwell-button__text {
  font-size: 12px;
  font-size: 0.75rem;
}
.shopwell-button .shopwell-button__text_mobile {
  display: none;
}

button .shopwell-button__icon {
  font-size: 20px;
  font-size: 1.25rem;
}
button .shopwell-button__icon + .shopwell-button__text {
  padding-left: 6px;
  transform: translateY(1px);
}

button.shopwell-button--large,
.shopwell-button--large {
  font-size: 15px;
  font-size: 0.9375rem;
  min-width: 160px;
}

button.shopwell-button--medium,
.shopwell-button--medium {
  font-size: 14px;
  font-size: 0.875rem;
  min-width: 120px;
  padding: 0 1.5em;
  line-height: var(--shopwell-size__medium);
}
button.shopwell-button--medium .shopwell-svg-icon--close,
button.shopwell-button--medium .shopwell-button__icon,
.shopwell-button--medium .shopwell-svg-icon--close,
.shopwell-button--medium .shopwell-button__icon {
  font-size: 16px;
  font-size: 1rem;
}

button.shopwell-button--small,
.shopwell-button--small {
  font-size: 12px;
  font-size: 0.75rem;
  min-width: 88px;
  line-height: 32px;
  padding: 0 1em;
}
button.shopwell-button--small .shopwell-button__icon,
.shopwell-button--small .shopwell-button__icon {
  font-size: 14px;
  font-size: 0.875rem;
}

button.shopwell-button--icon,
.shopwell-button--icon {
  padding: 0;
  outline: none;
  min-width: 60px;
}
button.shopwell-button--icon.shopwell-button--subtle,
.shopwell-button--icon.shopwell-button--subtle {
  border: none;
  padding: 0 1em;
  min-width: 60px;
  line-height: 60px;
}
button.shopwell-button--icon.shopwell-button--medium,
.shopwell-button--icon.shopwell-button--medium {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0 0.8em;
  min-width: var(--shopwell-size__medium);
  line-height: var(--shopwell-size__medium);
}
button.shopwell-button--icon.shopwell-button--small,
.shopwell-button--icon.shopwell-button--small {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 0.5em;
  min-width: 32px;
  line-height: 32px;
}
button.shopwell-button--icon.shopwell-button--text,
.shopwell-button--icon.shopwell-button--text {
  min-width: auto;
  padding: 0;
}
button.shopwell-button--icon.shopwell-button--text:after,
.shopwell-button--icon.shopwell-button--text:after {
  display: none;
}
button.shopwell-button--icon:focus,
.shopwell-button--icon:focus {
  outline: 1px dotted;
  outline-offset: -3px;
}
button.shopwell-button--icon:hover,
.shopwell-button--icon:hover {
  opacity: 0.8;
}

button.shopwell-button--raised,
button.shopwell-skin--raised,
.shopwell-button--raised,
.shopwell-skin--raised {
  --shopwell-color__primary--box-shadow: rgba(0, 104, 200, 0.4);
}

button.shopwell-button--base,
button.shopwell-skin--base,
.shopwell-button--base,
.shopwell-skin--base {
  --shopwell-color__primary--box-shadow: rgba(0, 104, 200, 0);
}

.shopwell-button--smooth,
button.shopwell-button--smooth,
.shopwell-skin--smooth .shopwell-custom-button--skin input[type=submit],
.shopwell-skin--smooth .shopwell-custom-button--skin button.shopwell-button {
  --shopwell-color__primary--box-shadow: rgba(0, 0, 0, 0);
  background-color: var(--shopwell-color__primary--gray);
  color: var(--shopwell-color__primary);
}
.shopwell-button--smooth:hover,
button.shopwell-button--smooth:hover,
.shopwell-skin--smooth .shopwell-custom-button--skin input[type=submit]:hover,
.shopwell-skin--smooth .shopwell-custom-button--skin button.shopwell-button:hover {
  background-color: var(--shopwell-color__primary--grayer);
}
.shopwell-button--smooth:active, .shopwell-button--smooth:focus,
button.shopwell-button--smooth:active,
button.shopwell-button--smooth:focus,
.shopwell-skin--smooth .shopwell-custom-button--skin input[type=submit]:active,
.shopwell-skin--smooth .shopwell-custom-button--skin input[type=submit]:focus,
.shopwell-skin--smooth .shopwell-custom-button--skin button.shopwell-button:active,
.shopwell-skin--smooth .shopwell-custom-button--skin button.shopwell-button:focus {
  background-color: var(--shopwell-color__primary--grayest);
}

.shopwell-button--ghost,
button.shopwell-button--ghost,
.shopwell-skin--ghost .shopwell-custom-button--skin input[type=submit],
.shopwell-skin--ghost .shopwell-custom-button--skin button.shopwell-button {
  --shopwell-color__primary--box-shadow: rgba(0, 0, 0, 0);
  color: var(--shopwell-color__primary);
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid;
  line-height: 56px;
}
.shopwell-button--ghost:hover,
button.shopwell-button--ghost:hover,
.shopwell-skin--ghost .shopwell-custom-button--skin input[type=submit]:hover,
.shopwell-skin--ghost .shopwell-custom-button--skin button.shopwell-button:hover {
  background-color: var(--shopwell-color__primary--gray);
}
.shopwell-button--ghost:active, .shopwell-button--ghost:focus,
button.shopwell-button--ghost:active,
button.shopwell-button--ghost:focus,
.shopwell-skin--ghost .shopwell-custom-button--skin input[type=submit]:active,
.shopwell-skin--ghost .shopwell-custom-button--skin input[type=submit]:focus,
.shopwell-skin--ghost .shopwell-custom-button--skin button.shopwell-button:active,
.shopwell-skin--ghost .shopwell-custom-button--skin button.shopwell-button:focus {
  background-color: var(--shopwell-color__primary--grayer);
}
.shopwell-button--ghost.shopwell-button--medium,
button.shopwell-button--ghost.shopwell-button--medium,
.shopwell-skin--ghost .shopwell-custom-button--skin input[type=submit].shopwell-button--medium,
.shopwell-skin--ghost .shopwell-custom-button--skin button.shopwell-button.shopwell-button--medium {
  line-height: 40px;
  height: 40px;
}
.shopwell-button--ghost.shopwell-button--small,
button.shopwell-button--ghost.shopwell-button--small,
.shopwell-skin--ghost .shopwell-custom-button--skin input[type=submit].shopwell-button--small,
.shopwell-skin--ghost .shopwell-custom-button--skin button.shopwell-button.shopwell-button--small {
  line-height: 32px;
  height: 32px;
  padding: 0 1.5em;
}
.shopwell-button--ghost.shopwell-button--color-black,
button.shopwell-button--ghost.shopwell-button--color-black,
.shopwell-skin--ghost .shopwell-custom-button--skin input[type=submit].shopwell-button--color-black,
.shopwell-skin--ghost .shopwell-custom-button--skin button.shopwell-button.shopwell-button--color-black {
  background-color: rgba(0, 0, 0, 0);
}

.shopwell-button--subtle,
button.shopwell-button--subtle,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit],
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button {
  --shopwell-color__primary--box-shadow: rgba(0, 0, 0, 0);
  color: var(--shopwell-color__primary);
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid;
  padding: 0;
  min-width: auto;
  line-height: 1.3;
}
.shopwell-button--subtle:hover,
button.shopwell-button--subtle:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit]:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button:hover {
  background-color: transparent;
}
.shopwell-button--subtle:active, .shopwell-button--subtle:focus,
button.shopwell-button--subtle:active,
button.shopwell-button--subtle:focus,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit]:active,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit]:focus,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button:active,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button:focus {
  color: var(--shopwell-color__primary);
  background-color: transparent;
}
.shopwell-button--subtle.disabled, .shopwell-button--subtle:disabled, .shopwell-button--subtle:disabled[disabled],
button.shopwell-button--subtle.disabled,
button.shopwell-button--subtle:disabled,
button.shopwell-button--subtle:disabled[disabled],
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit].disabled,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit]:disabled,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit]:disabled[disabled],
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button.disabled,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button:disabled,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button:disabled[disabled] {
  background-color: transparent;
  color: #ebeff3;
  border-bottom: 1px solid;
}
.shopwell-button--subtle.disabled:hover, .shopwell-button--subtle:disabled:hover, .shopwell-button--subtle:disabled[disabled]:hover,
button.shopwell-button--subtle.disabled:hover,
button.shopwell-button--subtle:disabled:hover,
button.shopwell-button--subtle:disabled[disabled]:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit].disabled:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit]:disabled:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit]:disabled[disabled]:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button.disabled:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button:disabled:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button:disabled[disabled]:hover {
  background-color: transparent;
}

.shopwell-button--text,
button.shopwell-button--text,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit],
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button {
  --shopwell-color__primary--box-shadow: rgba(0, 0, 0, 0);
  color: var(--shopwell-color__primary);
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  min-width: auto;
  position: relative;
  line-height: 1;
}
.shopwell-button--text:after,
button.shopwell-button--text:after,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit]:after,
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.shopwell-button--text:focus, .shopwell-button--text:hover,
button.shopwell-button--text:focus,
button.shopwell-button--text:hover,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit]:focus,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit]:hover,
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button:focus,
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button:hover {
  background-color: transparent;
}
.shopwell-button--text:focus:after, .shopwell-button--text:hover:after,
button.shopwell-button--text:focus:after,
button.shopwell-button--text:hover:after,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit]:focus:after,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit]:hover:after,
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button:focus:after,
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button:hover:after {
  width: 100%;
  left: 0;
}
.shopwell-button--text:active, .shopwell-button--text:focus,
button.shopwell-button--text:active,
button.shopwell-button--text:focus,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit]:active,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit]:focus,
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button:active,
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button:focus {
  background-color: transparent;
}

.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit],
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit],
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button {
  color: #1d2128;
  border-color: #ebeff3;
}
.shopwell-skin--subtle .shopwell-custom-button--skin input[type=submit]:hover,
.shopwell-skin--subtle .shopwell-custom-button--skin button.shopwell-button:hover,
.shopwell-skin--text .shopwell-custom-button--skin input[type=submit]:hover,
.shopwell-skin--text .shopwell-custom-button--skin button.shopwell-button:hover {
  border-color: #1d2128;
}

button.shopwell-button--bg-color-black,
.shopwell-button--bg-color-black {
  --shopwell-color__primary--box-shadow: rgba(29, 33, 40, 0.4);
  background-color: #1d2128;
  color: #fff;
}
button.shopwell-button--bg-color-black:hover,
.shopwell-button--bg-color-black:hover {
  background-color: #1d2128;
}
button.shopwell-button--bg-color-black:active, button.shopwell-button--bg-color-black:focus,
.shopwell-button--bg-color-black:active,
.shopwell-button--bg-color-black:focus {
  background-color: #1d2128 !important;
  color: #fff !important;
}

.shopwell-button--bg-color-white {
  --shopwell-color__primary--box-shadow: rgba(0, 0, 0, 0.16);
  background-color: #fff;
  color: #1d2128;
}
.shopwell-button--bg-color-white:hover {
  background-color: transparent;
}
.shopwell-button--bg-color-white:active, .shopwell-button--bg-color-white:focus {
  background-color: transparent;
}

button.shopwell-button--color-black,
.shopwell-button--color-black {
  color: #1d2128;
}

.mejs-button > button {
  min-width: auto;
}

.entry-content a.wp-block-button__link {
  text-decoration: none;
}

.wp-block-button__link {
  text-decoration: none;
  transition: 0.25s;
}
.wp-block-button__link:focus {
  outline: 1px dotted;
  outline-offset: -3px;
}
.wp-block-button__link:focus, .wp-block-button__link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.shopwell-input--medium {
  line-height: var(--shopwell-size__medium);
  padding: 0 18px;
  height: 48px;
}

.shopwell-input--base,
.shopwell-skin--base {
  --shopwell-input__border-width: 2px;
  --shopwell-input__background-color: #fff;
  --shopwell-input__box-shadow: rgba(0, 0, 0, 0);
}

.shopwell-skin--raised,
.shopwell-input--raised {
  --shopwell-input__border-width: 0;
  --shopwell-input__box-shadow: rgba(0, 0, 0, 0.16);
  --shopwell-input__background-color: #fff;
}

.shopwell-input--ghost,
.shopwell-skin--ghost {
  --shopwell-input__border-width: 2px;
  --shopwell-input__background-color: #fff;
  --shopwell-input__box-shadow: rgba(0, 0, 0, 0);
}

.shopwell-skin--smooth,
.shopwell-input--smooth {
  --shopwell-input__border-width: 0;
  --shopwell-input__background-color: #ebeff3;
  --shopwell-input__box-shadow: rgba(0, 0, 0, 0);
}

.shopwell-skin--subtle,
.shopwell-skin--text,
.shopwell-input--subtle,
.shopwell-input--text {
  --shopwell-input__border-width: 0 0 1px 0;
  --shopwell-input__background-color: #fff;
  --shopwell-input__box-shadow: rgba(0, 0, 0, 0);
}

.shopwell-shape--sharp {
  --shopwell-border__radius: 0;
}

.shopwell-shape--circle {
  --shopwell-border__radius: 30px;
}

.shopwell-shape--smooth {
  --shopwell-border__radius: 5px;
}

.shopwell-shape--round {
  --shopwell-border__radius: 8px;
}

/* Header
--------------------------------------------- */
.site-header {
  position: relative;
}
.site-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #ebeff3;
}
.site-header .site-header__container {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-header .has-menu.header-items {
  position: static;
}
.site-header .has-menu .primary-navigation {
  position: static;
}
.site-header .has-menu .secondary-navigation {
  position: static;
}

.site-header__section {
  --shopwell-header-bc: #fff;
  --shopwell-header-main-bc: transparent;
  --shopwell-header-bottom-bc: transparent;
  --shopwell-header-color: #1d2128;
  --shopwell-header-border-color: #ebeff3;
  --shopwell-header-counter-bc: #f9554d;
  --shopwell-header-counter-text: #fff;
  --shopwell-header-sub-text-color: rgba(255, 255, 255, 0.48);
  background-color: var(--shopwell-header-bc);
  color: var(--shopwell-header-color);
}

.header-hide-border .site-header:after {
  display: none;
}

.header-main {
  --shopwell-header-main-background-color: transparent;
  --shopwell-header-main-text-color: inherit;
  background-color: var(--shopwell-header-main-background-color);
  color: var(--shopwell-header-main-text-color);
  height: 100px;
}

.header-bottom {
  background-color: var(--shopwell-header-bottom-background-color);
  height: 52px;
  z-index: 100;
}
.header-bottom:before {
  margin-top: -1px;
}
.header-bottom .header-left-items > * {
  margin-right: 26px;
}
.header-bottom .header-left-items > *:last-child {
  margin-right: 0;
}

.header-contents {
  position: relative;
}
.header-contents.has-search-item .header-items {
  flex: 0 0 auto;
}
.header-contents.has-search-item .header-items.has-search {
  flex: 1 0 auto;
}
.header-v4 .header-contents.has-search-item .header-items {
  flex: 1;
}
.header-v4 .header-contents.has-search-item .header-items.has-search {
  flex: 1 0 auto;
}

.header-items {
  --shopwell-size__header-item: 48px;
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  position: relative;
}
.header-items > * {
  position: relative;
}
.header-items .shopwell-button {
  white-space: nowrap;
  line-height: var(--shopwell-size__header-item);
}
.header-items .shopwell-button:after {
  display: none;
}
.header-items button.header-search__button {
  min-width: var(--shopwell-size__header-item);
}
.header-items button.shopwell-button--text {
  --shopwell-size__header-item: 48px;
  min-width: auto;
}
.shopwell-skin--raised .header-items {
  --shopwell-size__header-item: 60px;
}
.header-items .shopwell-button--smooth {
  --shopwell-color__primary--gray: #ebeff3;
  --shopwell-color__primary--grayer: #ebeff3;
  --shopwell-color__primary--grayest: #ebeff3;
  --shopwell-color__primary: #7d828a;
}
.header-items .shopwell-button--ghost {
  --shopwell-color__primary--gray: transparent;
  --shopwell-color__primary--grayer: transparent;
  --shopwell-color__primary--grayest: transparent;
  --shopwell-color__primary: var(--shopwell-header-color);
  border-color: var(--shopwell-header-border-color);
  min-width: var(--shopwell-size__header-item);
  line-height: calc(var(--shopwell-size__header-item) - 4px);
}
.header-items .shopwell-button--ghost.shopwell-button--icon-top {
  padding-left: 10px;
  padding-right: 10px;
}
.header-items .shopwell-button--subtle,
.header-items .shopwell-button--text,
.header-items button.shopwell-button--subtle,
.header-items button.shopwell-button--text {
  color: inherit;
  border-color: rgba(185, 185, 185, 0.4);
}
.header-items .shopwell-type--input-text,
.header-items .shopwell-input--default {
  height: var(--shopwell-size__header-item);
  --shopwell-search__height: var(--shopwell-size__header-item);
}
.header-items .primary-navigation--dividers .nav-menu > li > a:before {
  background-color: var(--shopwell-header-border-color);
}

.header-left-items {
  text-align: left;
  justify-content: flex-start;
  padding-right: 10px;
}
.header-left-items > * {
  margin-right: 20px;
}
.header-left-items > *:last-child {
  margin-right: 0;
}
.header-left-items .header-search--adaptive .header-search__form {
  justify-content: flex-start;
}
.header-left-items .header-search {
  margin-left: 8px;
}

.header-center-items {
  text-align: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}
.header-center-items > * {
  margin-right: 30px;
}
.header-center-items > *:last-child {
  margin-right: 0;
}

.header-right-items {
  text-align: right;
  justify-content: flex-end;
  padding-left: 10px;
}
.header-right-items > * {
  margin-left: 23px;
}
.header-right-items > *:first-child {
  margin-left: 0;
}
.header-right-items .header-search {
  margin-right: 20px;
}
.header-right-items .header-search:first-child {
  margin-left: 0;
}

.header-empty-space {
  min-width: 274px;
}

.header-counter {
  position: absolute;
  top: 1px;
  left: 9px;
  text-align: center;
  font-size: 11px;
  font-size: 0.6875rem;
  color: var(--shopwell-header-counter-text);
  background-color: var(--shopwell-header-counter-bc);
  border-radius: 100%;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
  z-index: 1;
}

.header-v2 {
  --shopwell-header-bc: #0d2777;
  --shopwell-header-color: #fff;
  --shopwell-input__border-width: 0;
  --shopwell-header-counter-bc: #e57c41;
  --shopwell-header-counter-text: #fff;
}
.header-v2 .header-items .shopwell-button--text,
.header-v2 .header-category-menu .header-category__title,
.header-v2 .main-navigation .nav-menu > li > a {
  color: inherit;
}
.header-v2 .header-sticky {
  box-shadow: none;
}
.header-v2 .header-main {
  height: 100px;
}
.header-v2 .header-bottom {
  height: 67px;
  background-color: rgba(0, 0, 0, 0.18);
}
.header-v2 .header-bottom:before {
  display: none;
}
.header-v2 .header-bottom .header-category-menu.shopwell-open > .shopwell-button--ghost {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.header-v2 .header-bottom .header-category-menu .header-category__title.shopwell-button--ghost {
  height: 46px;
  border-radius: var(--shopwell-border__radius);
  background-color: var(--e-global-color-primary);
  border-color: transparent;
}
.header-v2 .header-bottom .header-category-menu .header-category__title.shopwell-button--ghost::after {
  display: none;
}
.header-v2 .header-bottom .header-category--both .header-category__content {
  box-shadow: none;
  top: calc(100% + 9px);
  border: 1px solid rgba(185, 185, 185, 0.4);
}
.header-v2 .header-bottom .header-category--both .header-category__content::before {
  top: -6px;
  left: 30px;
  width: 10px;
  height: 10px;
  border-radius: 4px 0 0 0;
  transform: rotate(45deg);
  border: 1px solid rgba(185, 185, 185, 0.4);
  border-bottom: 0;
  border-right: 0;
}
.header-v2 .header-bottom .header-category--both .header-category__content .header-category__menu .mega-menu {
  border: 1px solid rgba(185, 185, 185, 0.2);
  box-shadow: none;
  min-height: 100%;
  top: 0;
}
.header-v2 .header-bottom .header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li > a {
  padding-top: 7px;
  padding-bottom: 7px;
}
.header-v2 .header-bottom .header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li > a::before {
  background-color: var(--shopwell-color__primary);
}
.header-v2 .header-bottom .header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background-color: rgba(185, 185, 185, 0.4);
}
.header-v2 .header-bottom .header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li:last-child > a {
  padding-bottom: 0;
}
.header-v2 .header-bottom .header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li:last-child > a::after {
  display: none;
}
.header-v2 .header-left-items .header-search {
  margin-left: 20px;
}
.header-v2 .main-navigation .nav-menu > li > a:after {
  display: none;
}
.header-v2 .primary-navigation .nav-menu > li > a {
  font-size: 12px;
  font-size: 0.75rem;
  padding-left: 4px;
  padding-right: 5px;
}
.header-v2 .secondary-navigation .nav-menu > li > a {
  font-size: 12px;
  font-size: 0.75rem;
}
.header-v2 .shopwell-skin--base .shopwell-input--default {
  border: none;
}

.header-v3 {
  --shopwell-header-bc: #063f70;
  --shopwell-header-color: #fff;
  --shopwell-input__border-width: 0;
  --shopwell-header-counter-bc: #43a6ff;
  --shopwell-header-counter-text: #fff;
}
.site-header .header-v3:after {
  display: none;
}
.header-v3 .header-sticky {
  box-shadow: none;
}
.header-v3 .header-main .header-left-items {
  padding-right: 0;
}
.header-v3 .header-main .header-right-items {
  padding-left: 20px;
}
.header-v3 .header-main .header-right-items > *:last-child {
  margin-right: 8px;
}
.header-v3 .header-main .header-center-items > * {
  margin-right: 26px;
}
.header-v3 .header-main .header-center-items > *:last-child {
  margin-right: 0;
}
.header-v3 .header-search__button {
  --shopwell-color__primary: #43a6ff;
  --shopwell-color__primary--dark: rgba(67, 166, 255, 0.7);
  --shopwell-color__primary--darker: rgba(67, 166, 255, 0.5);
}
.header-v3 .header-account .shopwell-button--text,
.header-v3 .header-wishlist .shopwell-button--text,
.header-v3 .header-cart .shopwell-button--text,
.header-v3 .header-category--text .header-category__title,
.header-v3 .main-navigation .nav-menu > li > a {
  color: inherit;
}
.header-v3 .main-navigation .nav-menu > li > a:after {
  display: none;
}
.header-v3 .secondary-navigation .nav-menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 5px;
  padding-right: 5px;
}
.header-v3 .header-hamburger {
  margin-right: 16px;
}
.header-v3 .topbar-primary-menu > ul > li:not(:first-child) {
  padding-left: 16px;
}
.header-v3 .topbar-primary-menu > ul > li:not(:last-child) {
  padding-right: 16px;
}
.header-v3 .topbar-navigation {
  margin-right: 0;
}
.header-v3 .header-preferences a {
  position: relative;
  top: -2px;
  color: #1d2128;
}

.header-v4 {
  --shopwell-header-border-color: #ebeff3;
}
.header-v4 .header-main {
  height: 96px;
}
.header-v4 .header-main .header-right-items > * {
  margin-left: 12px;
}
.header-v4 .header-main .header-right-items > *:first-child {
  margin-left: 0;
}
.header-v4 .header-bottom {
  height: 51px;
}
.header-v4 .header-bottom .header-center-items {
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid var(--shopwell-header-border-color);
}
.header-v4 .primary-navigation .nav-menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
}
.header-v4 .primary-navigation--dividers .nav-menu > li {
  padding: 0 23px;
}
.header-v4 .primary-navigation--dividers .nav-menu > li > a:before {
  right: -23px;
}
.header-v4 .primary-navigation--dividers .nav-menu > li:first-child {
  padding-left: 0;
}
.header-v4 .primary-navigation--dividers .nav-menu > li:last-child {
  padding-right: 0;
}
.header-v4 .topbar-right-items .topbar-navigation {
  margin-right: 0;
}
.header-v4 .topbar-right-items .header-preferences {
  margin-left: 26px;
}

.header-v5 .header-main {
  height: 96px;
}
.header-v5 .header-bottom {
  height: 46px;
}
.header-v5 .secondary-navigation .nav-menu > li {
  padding: 0 22px 0 21px;
}
.header-v5 .secondary-navigation .nav-menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
}

.header-v6 {
  --shopwell-header-bc: #3e0f9e;
  padding: 15px 0 0;
  --shopwell-input__border-width: 0;
  --shopwell-header-counter-bc: #ffee61;
  --shopwell-header-counter-text: #1d2128;
  --shopwell-header-color: #fff;
}
.header-v6 .header-sticky,
.header-v6 .header-mobile-sticky {
  box-shadow: none;
}
.header-v6 .header-main {
  height: 68px;
}
.header-v6 .header-bottom {
  height: 45px;
}
.header-v6 .header-bottom:before {
  display: none;
}
.header-v6 .header-account .shopwell-button--text,
.header-v6 .header-cart .shopwell-button--text,
.header-v6 .header-wishlist .shopwell-button--text,
.header-v6 .header-compare .shopwell-button--text,
.header-v6 .header-category--text .header-category__title,
.header-v6 .main-navigation .nav-menu > li > a {
  color: inherit;
}
.header-v6 .header-counter {
  top: 4px;
}
.header-v6 .shopwell-button .shopwell-button__icon + .shopwell-button__text {
  padding-left: 6px;
}
.header-v6 .primary-navigation .nav-menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 5px;
}
.header-v6 .secondary-navigation .nav-menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
}
.header-v6 .header-category-menu.header-category--text > .shopwell-button--text + .header-category__content {
  margin-top: 0;
}
.header-v6 .header-category-menu.header-category--text > .shopwell-button--text + .header-category__content:before {
  display: none;
}
.header-v6 .mega-menu ul.mega-menu__column .menu-item--widget-image img {
  border: none;
}

.header-v7 {
  --shopwell-header-bc: #11248f;
  --shopwell-input__border-width: 0;
  --shopwell-header-color: #fff;
  --shopwell-header-sub-text-color: #c4d5ff;
  --shopwell-header-counter-bc: #d8125d;
  --shopwell-header-counter-text: #fff;
}
.header-v7 .header-sticky,
.header-v7 .header-mobile-sticky {
  box-shadow: none;
}
.header-v7 .header-main {
  height: 86px;
}
.header-v7 .header-account .shopwell-button--text,
.header-v7 .header-wishlist .shopwell-button--text,
.header-v7 .header-cart .shopwell-button--text,
.header-v7 .header-category--both .header-category__title,
.header-v7 .main-navigation .nav-menu > li > a {
  color: inherit;
}
.header-v7 .header-preferences .shopwell-button__subtext,
.header-v7 .header-account .shopwell-button__subtext {
  font-size: 11px;
  font-size: 0.6875rem;
  color: var(--shopwell-header-sub-text-color);
}
.header-v7 .header-preferences--header {
  color: #fff;
}
.header-v7 .header-category-menu.header-category--both .header-category__content, .header-v7 .header-category-menu.header-category--both > .shopwell-button--subtle + .header-category__content {
  margin-top: 20px;
}
.header-v7 .header-category-menu.header-category--both .header-category__content:before, .header-v7 .header-category-menu.header-category--both > .shopwell-button--subtle + .header-category__content:before {
  display: none;
}
.header-v7 .header-category-menu.shopwell-open > .shopwell-button--subtle {
  border-color: rgb(255, 255, 255);
}
.header-v7 .header-category-menu > .shopwell-button--subtle {
  border-color: rgba(255, 255, 255, 0.24);
}
.header-v7 .header-category-menu ul.menu {
  padding-top: 10px;
}
.header-v7 .header-category-menu ul.menu > li > a {
  display: flex;
  align-items: center;
  line-height: 3;
  position: relative;
  top: -2px;
}
.header-v7 .header-category-menu ul.menu > li > a > .menu-item-icon {
  font-size: 28px;
  font-size: 1.75rem;
  top: 0;
}
.header-v7 .header-category-menu ul.menu .mega-menu {
  padding-top: 5px;
}
.header-v7 .shopwell-button__text.language-code .shopwell-button__text--preferences {
  text-transform: capitalize;
}
.header-v7 .shopwell-button__text.language-code .shopwell-button__text--preferences .divider {
  margin: 0 3px;
}
.header-v7 .topbar-primary-menu > ul > li:not(:first-child) {
  padding-left: 15px;
}
.header-v7 .topbar-primary-menu > ul > li:not(:last-child) {
  padding-right: 15px;
}
.header-v7 .topbar-navigation .nav-menu a .menu-icon-item--svg {
  font-size: 11px;
  font-size: 0.6875rem;
}

.header-v8 {
  --shopwell-header-counter-bc: #000;
  --shopwell-header-counter-text: #fff;
  --shopwell-header-border-color: #ebeff3;
}
.header-v8 .header-main {
  height: 96px;
  position: relative;
}
.header-v8 .header-main::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.header-v8 .header-main:before {
  background-color: var(--shopwell-header-border-color);
}
.header-v8 .header-bottom {
  height: 39px;
}
.header-v8 .header-mobile-bottom {
  height: 110px;
}
.header-v8 .header-search__divider:before {
  background-color: var(--shopwell-header-border-color);
}
.header-v8 .header-search__container,
.header-v8 .header-search__field {
  background-color: inherit;
}
.header-v8 .header-search__button.shopwell-button--smooth {
  color: #1d2128;
}
.header-v8 .primary-navigation .nav-menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0;
}
.header-v8 .secondary-navigation .nav-menu > li > a {
  font-size: 12px;
  font-size: 0.75rem;
}
.header-v8 .header-preferences--header .shopwell-button__text {
  text-transform: uppercase;
}
.header-v8 .hamburger-panel .main-navigation .nav-menu {
  flex-direction: column;
  align-items: flex-start;
}
.header-v8 .hamburger-panel .main-navigation .nav-menu li {
  width: 100%;
}
.header-v8 .hamburger-panel .main-navigation .nav-menu > li > a {
  padding: 7px 32px 5px;
}
.header-v8 .hamburger-panel .main-navigation .nav-menu > li > a .menu-item-icon {
  font-size: 20px;
  font-size: 1.25rem;
  position: relative;
  top: -1px;
  margin-right: 24px;
}

.header-v9 {
  --shopwell-header-sub-text-color: rgba(255, 255, 255, 0.48);
  --shopwell-header-counter-bc: #b7ff1d;
  --shopwell-header-counter-text: #08091b;
}
.header-v9 .header-main {
  --shopwell-header-main-background-color: #08091b;
  --shopwell-header-main-text-color: #fff;
  --shopwell-input__border-width: 0;
}
.header-v9 .header-sticky:not(.header-bottom) {
  --shopwell-header-bc: #08091b;
  --shopwell-header-color: #fff;
  --shopwell-input__border-width: 0;
  color: var(--shopwell-header-color);
  box-shadow: none;
}
.header-v9 .header-bottom {
  height: 40px;
}
.header-v9 .header-items .shopwell-input--base {
  border: none;
}
.header-v9 .header-account .shopwell-button--text,
.header-v9 .header-cart .shopwell-button--text,
.header-v9 .header-category--both .header-category__title,
.header-v9 .main-navigation .nav-menu > li > a {
  color: inherit;
}
.header-v9 .header-account .shopwell-button__subtext,
.header-v9 .header-preferences--header .shopwell-button__subtext {
  color: var(--shopwell-header-sub-text-color);
}
.header-v9 .header-preferences--header {
  color: #fff;
}
.header-v9 .primary-navigation .nav-menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0;
}
.header-v9 .secondary-navigation .nav-menu > li > a {
  font-size: 12px;
  font-size: 0.75rem;
}
.header-v9 .header-category-menu.header-category--both {
  height: 100%;
}
.header-v9 .header-category-menu.header-category--both .header-category__content {
  margin-top: 3px;
}
.header-v9 .header-category-menu.header-category--both > .shopwell-button--text:before {
  bottom: 0;
}
.header-v9 .header-category-menu ul.menu {
  padding-top: 10px;
}
.header-v9 .header-category-menu ul.menu > li > a {
  display: flex;
  align-items: center;
  line-height: 3;
  position: relative;
  top: -2px;
}
.header-v9 .header-category-menu ul.menu > li > a > .menu-item-icon {
  font-size: 28px;
  font-size: 1.75rem;
  top: 0;
}
.header-v9 .header-category-menu ul.menu .mega-menu {
  padding-top: 5px;
}

.header-v10 {
  --shopwell-header-counter-bc: #ff2929;
  --shopwell-header-counter-text: #fff;
  --shopwell-header-sub-text-color: #7d828a;
}
.header-v10 .header-main {
  height: 80px;
}
.header-v10 .header-bottom {
  height: 42px;
}
.header-v10 .header-bottom .header-left-items > * {
  margin-right: 50px;
}
.header-v10 .header-search__divider:before {
  background-color: var(--shopwell-header-border-color);
}
.header-v10 .header-search__button.shopwell-button--text {
  color: #1d2128;
}
.header-v10 .header-preferences--header .shopwell-button__subtext,
.header-v10 .header-account .shopwell-button__subtext {
  font-size: 11px;
  font-size: 0.6875rem;
  color: var(--shopwell-header-sub-text-color);
}
.header-v10 .shopwell-button__text.language-code .shopwell-button__text--preferences {
  text-transform: capitalize;
}
.header-v10 .shopwell-button__text.language-code .shopwell-button__text--preferences .divider {
  margin: 0 3px;
}
.header-v10 .header-view-history .header-view-history__arrow {
  top: 49%;
  color: #7d828a;
}
.header-v10 .primary-navigation .nav-menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0;
}
.header-v10 .secondary-navigation .nav-menu > li > a {
  font-size: 12px;
  font-size: 0.75rem;
}
.header-v10 .header-category-menu {
  position: relative;
}
.header-v10 .header-category-menu:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -23%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--shopwell-header-border-color);
}
.header-v10 .header-category-menu.header-category--both .header-category__content {
  margin-top: 11px;
}
.header-v10 .header-category-menu.header-category--both .header-category__content .mega-menu {
  min-height: 100%;
  top: 0;
}
.header-v10 .header-category-menu.header-category--both .header-category__content:before {
  display: none;
}
.header-v10 .header-category-menu .header-category__title:before {
  width: 100%;
  height: 2px;
  background-color: #1d2128;
  position: absolute;
  left: 0;
  bottom: -10px;
  border: none;
  margin: 0;
  transform: none;
}
.header-v10 .header-category-menu ul.menu {
  padding-top: 10px;
}
.header-v10 .header-category-menu ul.menu > li > a {
  display: flex;
  align-items: center;
  line-height: 3;
  position: relative;
  top: -2px;
}
.header-v10 .header-category-menu ul.menu > li > a > .menu-item-icon {
  font-size: 28px;
  font-size: 1.75rem;
  top: 0;
}
.header-v10 .header-category-menu ul.menu .mega-menu {
  padding-top: 5px;
}

.header-v11 .header-main {
  height: 40px;
}
.header-v11 .header-main .site-header__container {
  position: relative;
}
.header-v11 .header-main .site-header__container::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.header-v11 .header-main .site-header__container:before {
  width: calc(100% - 32px);
  left: 16px;
  background-color: var(--shopwell-header-border-color);
}
.header-v11 .header-sticky,
.header-v11 .header-bottom {
  height: 80px;
}
.header-v11 .header-bottom:before,
.header-v11 .header-sticky:before {
  display: none;
}
.header-v11 .header-bottom .header-left-items,
.header-v11 .header-sticky .header-left-items {
  flex: 0 0 auto;
}
.header-v11 .header-bottom .header-right-items .header-search,
.header-v11 .header-sticky .header-right-items .header-search {
  margin-right: 0;
}
.header-v11 .header-search--icon {
  position: absolute;
}

.site-header .header-v12:after {
  display: none;
}

.header-v13 {
  --shopwell-header-bc: #131921;
  --shopwell-header-color: #fff;
  --shopwell-input__border-width: 0;
  --shopwell-header-counter-bc: #26A69A;
  --shopwell-header-counter-text: #fff;
}
.header-v13 .header-items .shopwell-button--text,
.header-v13 .header-category-menu .header-category__title,
.header-v13 .main-navigation .nav-menu > li > a {
  color: inherit;
}
.header-v13 .header-sticky {
  box-shadow: none;
}
.header-v13 .header-main {
  height: 96px;
}
.header-v13 .header-bottom {
  height: 48px;
}
.header-v13 .header-bottom:before {
  display: none;
}
.header-v13 .header-left-items .header-search {
  margin-left: 0;
}
.header-v13 .header-category--icon.shopwell-open div.header-category__title {
  border-color: rgba(255, 255, 255, 0.12);
}
.header-v13 .main-navigation .nav-menu > li > a:after {
  display: none;
}
.header-v13 .primary-navigation .nav-menu > li > a {
  font-size: 12px;
  font-size: 0.75rem;
  padding-left: 4px;
  padding-right: 5px;
}
.header-v13 .secondary-navigation .nav-menu > li > a {
  font-size: 12px;
  font-size: 0.75rem;
}
.header-v13 .shopwell-skin--base .shopwell-input--default {
  border: none;
}

.topbar {
  border-width: 0;
  min-height: 40px;
  line-height: 38px;
  position: relative;
}
.topbar::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-container:before, .topbar-container:after {
  display: none;
}

.topbar-items {
  display: flex;
  align-items: center;
}

.topbar-left-items {
  text-align: left;
  justify-content: flex-start;
}
.topbar-left-items > * {
  margin-right: 30px;
}
.topbar-left-items > *:last-child {
  margin-right: 0;
}
.topbar-left-items .topbar-navigation {
  margin-left: 20px;
}
.topbar-left-items .topbar-navigation:first-child {
  margin-left: 0;
}

.topbar-center-items {
  text-align: center;
  justify-content: center;
  flex: 1;
}
.topbar-center-items > * {
  margin: 0 17px;
}
.topbar-center-items .topbar-navigation ul {
  justify-content: center;
}

.topbar-right-items {
  text-align: right;
  justify-content: flex-end;
}
.topbar-right-items > * {
  margin-left: 30px;
}
.topbar-right-items > *:first-child {
  margin-left: 0;
}
.topbar-right-items .topbar-navigation {
  margin-right: 20px;
}
.topbar-right-items .topbar-navigation:last-child {
  margin-right: 0;
}
.topbar-right-items .topbar-navigation ul {
  justify-content: flex-end;
}
.topbar-right-items .topbar-navigation .nav-menu li {
  padding: 0 13px;
}

.topbar-navigation ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
  margin: 0 -12px;
}
.topbar-navigation .nav-menu ul.sub-menu {
  z-index: 999;
}
.topbar-navigation .nav-menu > li > a {
  display: flex;
  align-items: center;
  line-height: 40px;
}
.topbar-navigation .nav-menu > li > a:after {
  display: none;
}
.topbar-navigation .nav-menu li {
  padding: 0 12px;
}
.topbar-navigation .nav-menu a {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  color: #7d828a;
  display: inline-block;
}
.topbar-navigation .nav-menu a:hover {
  color: #1d2128;
}
.topbar-navigation .nav-menu a .menu-icon-item--svg {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 6px;
}

.topbar .socials-navigation .nav-menu a {
  display: inline-flex;
  align-items: center;
}

.header-logo {
  flex: 0 1 auto;
  position: relative;
  z-index: 100;
}
.header-logo:not(.no-logo) > a {
  position: relative;
  display: block;
  line-height: 1;
  font-weight: 600;
  color: inherit;
}
.header-logo:not(.no-logo) > a:hover {
  text-decoration: none;
}
.header-logo:not(.no-logo) > a:focus {
  outline: 1px dotted;
  outline-offset: 3px;
}
.header-logo:not(.no-logo) > a img {
  display: inline-block;
  vertical-align: middle;
}
.header-logo:not(.no-logo) > a svg {
  fill: currentColor;
  vertical-align: middle;
  width: auto;
  height: auto;
}
.header-logo:not(.no-logo) .site-title a {
  display: none;
}
.header-logo.no-logo .site-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
  font-weight: inherit;
}
.header-logo.no-logo .site-title a:hover {
  text-decoration: none;
}
.header-logo.no-logo .site-title a:focus {
  outline: 1px dotted;
  outline-offset: 3px;
}
.header-logo .site-description.show-tagline {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 4px;
  margin-bottom: 0;
}

.header-search {
  width: 100%;
  z-index: 1000;
}

.header-search--form {
  max-width: 655px;
  --shopwell-search__height: 60px;
}

.header-search__form {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.header-search__form .header-search__field,
.header-search__form .header-search__icon,
.header-search__form .header-search__categories-label,
.header-search__form .header-search__divider {
  opacity: 1;
}
.header-search__form.categories--open .header-search__container {
  box-shadow: none;
}
.header-search__form.categories--open .header-search__field,
.header-search__form.categories--open .header-search__icon,
.header-search__form.categories--open .header-search__categories-label,
.header-search__form.categories--open .header-search__divider {
  opacity: 0;
}
.header-search__form.header-search__form--focused .shopwell-type--input-text {
  border-color: #1d2128;
  box-shadow: 0px 4px 8px 0px var(--shopwell-input__box-shadow);
}
.header-search__form.searching .close-search-results::before {
  position: absolute;
  top: 11px;
  right: 5px;
  opacity: 1;
  width: 15px;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: transparent;
  animation: shopwellSpin infinite 1s linear;
  transition: none;
}
.header-search__form.searching .close-search-results svg {
  display: none;
}
.header-search__form.searched .header-search__results {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.header-search__form.searching .close-search-results, .header-search__form.actived .close-search-results {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.header-search__container {
  display: flex;
  width: 100%;
  position: relative;
  padding-right: 24px;
  padding-left: 0;
}
.header-search__container .header-search__field {
  width: 100%;
  height: auto;
  box-shadow: none;
  outline: none;
  border: none;
  padding: 0;
  transition: 0s;
  background-color: transparent;
}
.header-search__container .header-search__field:hover {
  box-shadow: none;
}
.header-search__container .header-search__field:focus {
  box-shadow: none;
}

.header-search__field {
  margin-left: 22px;
}

.header-search__icon {
  display: flex;
  align-items: center;
  outline: none;
  margin-left: 22px;
}
.header-search__icon span {
  color: #7d828a;
}
.header-search__icon .shopwell-svg-icon {
  font-size: 20px;
  font-size: 1.25rem;
}
.header-search__icon + .header-search__field {
  margin-left: 10px;
}
.header-search__icon:focus {
  outline: 1px dotted;
  outline-offset: -3px;
}

button.header-search__button {
  margin-left: 12px;
}

.header-search__divider {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.header-search__divider::before {
  display: block;
  content: "";
  width: 1px;
  height: 50%;
  background-color: rgba(185, 185, 185, 0.4);
}

.header-search--large .header-search__divider {
  margin-left: 24px;
  margin-right: 4px;
}

.header-search--small .header-search__divider {
  margin-left: 16px;
  margin-right: 9px;
}

.header-search--inside {
  padding: 0;
}
.header-search--inside .header-search__form {
  position: relative;
}
.header-search--inside .header-search__container {
  position: static;
  box-shadow: none;
}
.header-search--inside .header-search__icon {
  margin-left: 14px;
}
.header-search--inside button.header-search__button {
  margin: 6px 6px 6px 0;
  padding-left: 17px;
  padding-right: 17px;
  min-width: auto;
}
.header-search--inside button.header-search__button.shopwell-button--subtle {
  border: none;
}
.header-search--inside button.header-search__button.shopwell-button--text {
  min-width: auto;
  margin-right: 0;
  color: #7d828a;
}
.header-search--inside .header-search__trending--outside {
  border-top: none;
}
.header-search--inside .shopwell-type--input-text {
  padding: 0;
}
.shopwell-shape--circle .header-search--inside .header-search__container {
  border-radius: 30px;
}
.header-search--inside .shopwell-button--smooth {
  margin-top: 0;
  margin-bottom: 0;
}
.header-search--inside .shopwell-button--subtle {
  border: none;
}

.header-search__trending--outside {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  padding: 21px 23px 10px;
  background-color: #ffffff;
  pointer-events: none;
  box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.16);
  border-radius: 0 0 2px 2px;
  border-top: 1px solid rgba(185, 185, 185, 0.4);
  color: #1d2128;
}
.header-search__trending--outside .header-search__trending-label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  display: block;
  margin: 0 0 12px;
}
.header-search__trending--outside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-search__trending--outside li {
  padding: 4px 0;
}
.header-search__trending--outside li a {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: inherit;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}

.shopwell-shape--circle .header-search__trending--outside {
  border-radius: 2px;
}

.shopwell-shape--round .header-search__trending--outside {
  border-radius: 2px;
}

.header-search__trending--open {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  z-index: 101;
}

.header-search__trending--inside {
  margin-left: 16px;
  margin-right: -15px;
  overflow: hidden;
}
.header-search__trending--inside .header-search__trending-label {
  display: none;
}
.header-search__trending--inside ul {
  display: flex;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.header-search__trending--inside ul::-webkit-scrollbar {
  display: none;
}
.header-search__trending--inside li {
  display: flex;
  height: 100%;
  margin-left: 8px;
}
.header-search__trending--inside li a {
  display: flex;
  align-self: center;
  align-items: center;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #08091b;
  white-space: nowrap;
  background-color: rgba(185, 185, 185, 0.4);
  border-radius: var(--shopwell-border__radius);
  height: 100%;
  min-height: 20px;
  line-height: 20px;
  padding-left: 11px;
  padding-right: 11px;
}
.header-search__trending--inside li a:focus {
  outline: 1px dotted;
  outline-offset: -3px;
}

.header-search__field--trending-inside {
  flex: 1;
  min-width: 240px;
}

.shopwell-search--button-no-spacing .header-search__container {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.shopwell-search--button-no-spacing .header-search__button {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.header-search__categories-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 27px;
  margin-left: 24px;
  border-radius: var(--shopwell-border__radius);
}
.header-search__categories-label:focus {
  outline: 1px dotted;
  outline-offset: -1px;
}
.header-search__categories-label span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #7d828a;
  white-space: nowrap;
}
.header-search__categories-label span.shopwell-svg-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-size: 0.6875rem;
}
.header-search__categories-label span.shopwell-svg-icon svg {
  vertical-align: 0;
}

.header-search__categories {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  pointer-events: none;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
  transform: translateY(35px);
  border-radius: 0 0 2px 2px;
}
.header-search__categories.header-search__categories--open {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: initial;
  z-index: 9999;
}

.header-search__categories-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  line-height: calc(var(--shopwell-search__height) - 1px);
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
  font-size: 16px;
  font-size: 1rem;
  color: #1d2128;
  font-weight: 500;
}
.header-search__categories-title span {
  margin: 0;
}
.header-search__categories-title span.shopwell-svg-icon {
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
}

.header-search__categories-container {
  --shopwell-header-search-cats-rows: 5;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto auto auto;
  grid-template-rows: repeat(var(--shopwell-header-search-cats-rows), auto);
  width: 100%;
  max-height: 270px;
  padding: 17px 23px 5px;
  margin: 0;
  list-style: none;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-color: #1d2128 rgba(125, 130, 138, 0.3);
  scrollbar-width: thin;
}
.header-search__categories-container::-webkit-scrollbar {
  width: 2px;
}
.header-search__categories-container::-webkit-scrollbar-track {
  background-color: rgba(125, 130, 138, 0.3);
}
.header-search__categories-container::-webkit-scrollbar-thumb {
  background-color: #1d2128;
}
.header-search__categories-container li {
  margin-bottom: 13px;
}
.header-search__categories-container li a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  transition: 0s;
}
.header-search__categories-container li a::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: #1d2128;
  transition: 0s;
}
.header-search__categories-container li a.active::after, .header-search__categories-container li a:hover::after {
  width: 100%;
}

.header-search__form.searching .close-search-results::before,
.search-modal__form.searching .close-search-results::before {
  position: absolute;
  top: 11px;
  right: 5px;
  opacity: 1;
  width: 15px;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: transparent;
  animation: shopwellSpin infinite 1s linear;
  transition: none;
}
.header-search__form.searching .close-search-results svg,
.search-modal__form.searching .close-search-results svg {
  display: none;
}
.header-search__form.searched .header-search__results,
.search-modal__form.searched .header-search__results {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.header-search__form.searching .close-search-results, .header-search__form.actived .close-search-results,
.search-modal__form.searching .close-search-results,
.search-modal__form.actived .close-search-results {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.search-modal__form.searching .modal__button-close, .search-modal__form.searched .modal__button-close, .search-modal__form.actived .modal__button-close {
  display: none;
}
.search-modal__form.searching .close-search-results::before {
  top: -8px;
}
.search-modal__form .header-search__results {
  top: 70px;
}

.header-search__results {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  pointer-events: none;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
  transform: translateY(var(--shopwell-search__height));
  transition: transform 0.7s, opacity 0.3s;
  border-radius: 0 0 2px 2px;
  z-index: 200;
}
.header-search__results .search-list {
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-color: #1d2128 rgba(125, 130, 138, 0.3);
  scrollbar-width: thin;
  max-height: 420px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-search__results .search-list::-webkit-scrollbar {
  width: 2px;
}
.header-search__results .search-list::-webkit-scrollbar-track {
  background-color: rgba(125, 130, 138, 0.3);
}
.header-search__results .search-list::-webkit-scrollbar-thumb {
  background-color: #1d2128;
}
.header-search__results .search-list .list-item {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 0 22px;
}
.header-search__results .search-list .list-item:first-child {
  margin-top: 0;
}
.header-search__results .search-list .list-item.view-more {
  justify-content: center;
}
.header-search__results .search-list .list-item.view-more a {
  border-color: #1d2128;
  line-height: 1.2;
}
.header-search__results .search-list .list-item img {
  max-width: 80px;
  margin-right: 30px;
}
.header-search__results .search-list .list-item .title-item {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 7px;
}
.header-search__results .search-list .list-item .title-item:hover {
  box-shadow: inset 0 -1px #1d2128;
}
.header-search__results .search-list .list-item .star-rating {
  float: none;
  margin-top: 3px;
}
.header-search__results .search-list .list-item .price-item {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  display: flex;
  margin-top: 10px;
}
.header-search__results .search-list .list-item .price-item .woocs_price_code {
  display: flex;
  align-items: center;
}
.header-search__results .search-list .list-item .price-item .sale {
  display: none;
}
.header-search__results .search-list .list-item del {
  order: 2;
  font-size: 13.48px;
  font-size: 0.8425rem;
  font-weight: 500;
  color: #7d828a;
  margin-top: 3px;
}
.header-search__results .search-list .list-item ins {
  order: 1;
  background-color: transparent;
  color: #dd2831;
  margin-right: 6px;
}
.header-search__results .search-list .search-item {
  display: flex;
  align-items: center;
}
.header-search__results .result-list-not-found {
  padding: 20px;
}
.header-search__results .result-list-not-found .list-item {
  justify-content: center;
}

.header-search .close-search-results,
.search-modal .close-search-results {
  font-size: 18px;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: relative;
}
.header-search .close-search-results::before,
.search-modal .close-search-results::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 15px;
  opacity: 0;
  transition: width 0.2s;
}
.header-search .header-search__categories + .close-search-results,
.search-modal .header-search__categories + .close-search-results {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header-search .header-search__categories + .close-search-results::before,
.search-modal .header-search__categories + .close-search-results::before {
  top: -8px;
  right: 2px;
}

.search-modal .close-search-results {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.search-modal .modal__content {
  position: relative;
  padding: 0;
  margin-left: 16px;
  margin-right: 16px;
}
.search-modal .header-search--form {
  --shopwell-size__header-item: 60px ;
}

.header-search--icon {
  --shopwell-size__medium: 44px;
  max-width: 284px;
}
.header-search--icon .header-search__form {
  position: relative;
  width: 100%;
  padding: 0;
  justify-content: flex-end;
  cursor: pointer;
}
.header-search--icon .header-search__form.header-search__form--focused .header-search__container {
  box-shadow: none;
  padding: 0;
}
.header-search--icon .header-search__form .header-search__container {
  position: relative;
  z-index: 2;
  width: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  box-shadow: none;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--shopwell-border__radius);
  background-color: #fff;
  transition: width 0.3s, opacity 0.3s;
}
.header-search--icon .header-search__field {
  width: 100%;
  padding-left: 14px;
  padding-right: 2px;
  transition: 0.5s linear;
  margin: 0;
}
.header-search--icon .header-search__button {
  margin: 0;
}
.header-search--icon .header-search__icon {
  position: absolute;
  height: 100%;
  opacity: 1;
  padding-left: 14px;
  padding-right: 14px;
  transition: opacity 0.3s;
  z-index: 9;
}
.header-search--icon .header-search__icon span {
  color: inherit;
}
.header-search--icon.header-search--icon-open {
  width: 100%;
  min-width: 284px;
}
.header-search--icon.header-search--icon-open .header-search__form {
  width: 100%;
}
.header-search--icon.header-search--icon-open .header-search__form.header-search__form--focused .header-search__container {
  border-color: #1d2128;
}
.header-search--icon.header-search--icon-open .header-search__form .header-search__container {
  overflow: visible;
  opacity: 1;
  visibility: visible;
  width: 100%;
  border-color: #ebeff3;
}
.header-search--icon.header-search--icon-open .header-search__icon {
  opacity: 0;
  z-index: 1;
}
.header-search--icon.header-search--icon-open .header-search__trending--outside {
  top: calc(100% + 2px);
}

.header-mobile-contents .header-search--form,
.header-mobile-contents .shopwell-skin--raised.header-search--form {
  --shopwell-search__height: 48px;
  --shopwell-size__header-item: 48px;
  max-width: 100%;
}
.header-mobile-contents .header-search__form {
  height: var(--shopwell-search__height);
  padding-left: 0;
}
.header-mobile-contents div.shopwell-type--input-text {
  padding-top: 0;
  padding-bottom: 0;
}
.header-mobile-contents .shopwell-button--display-text {
  min-width: auto;
}
.header-mobile-contents .shopwell-search--button-no-spacing {
  margin-left: 0;
}
.header-mobile-contents .header-search:not(.shopwell-search--button-no-spacing) .header-search__button {
  margin-left: 8px;
}
.header-mobile-contents .header-search--inside .header-search__field {
  margin-left: 10px;
}
.header-mobile-contents .header-search--inside .header-search__field:first-child {
  margin-left: 16px;
}
.header-mobile-contents .header-search--inside .header-search__container {
  padding-right: 0;
}
.header-mobile-contents .header-search__form.searching .close-search-results:before {
  top: 17px;
}
.header-mobile-contents .header-search__results .search-list .list-item {
  padding: 0 10px;
}
.header-mobile-contents .header-search__results .search-list .list-item:first-child {
  margin-top: 20px;
}
.header-mobile-contents .header-search__results .search-list .list-item img {
  max-width: 60px;
  margin-right: 20px;
}
.header-mobile-contents .header-search .close-search-results {
  right: 0 !important;
}

.header-mobile-search {
  color: inherit;
}
.header-mobile-search a {
  font-size: 20px;
  font-size: 1.25rem;
  color: inherit;
}
.header-mobile-search .shopwell-button--icon {
  display: inline-block;
  text-align: center;
}
.header-mobile-search .shopwell-button--icon span {
  color: inherit;
}
.header-mobile-search .shopwell-button--icon.shopwell-button--medium {
  padding: 0;
  font-size: 24px;
  font-size: 1.5rem;
}
.header-mobile-search .shopwell-button--icon.shopwell-button--base, .header-mobile-search .shopwell-button--icon.shopwell-button--raised {
  min-width: var(--shopwell-size__header-item);
}
.header-mobile-search .shopwell-button--icon.shopwell-button--base span, .header-mobile-search .shopwell-button--icon.shopwell-button--raised span {
  color: inherit;
}

.shopwell-skin--base.header-search--form:not(.header-search--custom) {
  --shopwell-input__border-width: 0;
}

.header-contents .shopwell-skin--raised.header-search--form {
  --shopwell-size__header-item: 60px;
}

.shopwell-skin--smooth .header-search--inside .header-search__button {
  margin-top: 0;
  margin-bottom: 0;
}

.shopwell-skin--subtle.header-search--outside .header-search__button,
.shopwell-skin--text.header-search--outside .header-search__button {
  border-width: var(--shopwell-input__border-width);
  border-style: solid;
  border-color: #ebeff3;
}
.shopwell-skin--subtle.header-search--outside .header-search__button .shopwell-button__icon,
.shopwell-skin--text.header-search--outside .header-search__button .shopwell-button__icon {
  line-height: 47px;
}

.header-search--form:not(.header-search--custom).header-search--simple .shopwell-type--input-text {
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}

.campaign-bar {
  border-width: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.campaign-bar__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  min-height: 44px;
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.campaign-bar__container::-webkit-scrollbar {
  display: none;
}

.campaign-bar__item {
  --shopwell-campaign-bar-size: 14px;
  font-size: var(--shopwell-campaign-bar-size);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #4d3f2f;
  white-space: nowrap;
}
.campaign-bar__item.text-light {
  color: #ffffff;
}

.campaign-bar__icon {
  display: inline-block;
  line-height: 1;
  margin-right: 11px;
  color: var(--shopwell-color__primary);
}
.campaign-bar__icon svg {
  fill: currentColor;
}

.campaign-bar__text {
  font-weight: inherit;
}

.campaign-bar__button {
  margin-left: 31px;
  font-size: inherit;
}

.header-category__title {
  display: flex;
  align-items: center;
  color: inherit;
  position: relative;
  cursor: pointer;
}
.header-category__title:focus {
  outline: 1px dotted;
  outline-offset: -1px;
}
.header-category__title:focus .header-category__icon.icon-bar .icon-2,
.header-category__title:focus .header-category__icon.icon-bar .icon-3, .header-category__title:hover .header-category__icon.icon-bar .icon-2,
.header-category__title:hover .header-category__icon.icon-bar .icon-3 {
  width: 16px;
}

.header-category__icon {
  font-size: 20px;
  font-size: 1.25rem;
  margin-right: 15px;
}
.header-category__icon.icon-bar {
  display: flex;
  flex-direction: column;
}
.header-category__icon.icon-bar > span {
  display: inline-block;
  height: 2px;
  width: 16px;
  margin-bottom: 3px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: currentColor;
}
.header-category__icon.icon-bar > span:last-child {
  margin-bottom: 0;
}
.header-category__icon.icon-bar .icon-2 {
  width: 12px;
}
.header-category__icon.icon-bar .icon-3 {
  width: 8px;
}

.header-category__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.header-category__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-size: 0.6875rem;
  transition: 0.2s;
}

.header-category-menu.shopwell-open > .shopwell-button--ghost {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-color: transparent;
}
.header-category-menu.shopwell-open > .shopwell-button--ghost .header-category__arrow {
  color: #ebeff3;
}
.header-category-menu.shopwell-open > .shopwell-button--subtle {
  border-color: #1d2128;
}
.header-category-menu.header-category--icon.shopwell-open > .shopwell-button--ghost {
  border-color: rgba(29, 33, 40, 0.12);
  box-shadow: none;
}
.header-category-menu.header-category--icon > .shopwell-button--ghost {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border: 2px solid;
  border-color: inherit;
  border-radius: 50%;
  min-width: auto;
  padding: 0;
  position: relative;
  transition: 0.25s;
}
.header-category-menu.header-category--icon > .shopwell-button--ghost .header-category__icon {
  margin: 0 auto;
}
.header-category-menu.header-category--text.shopwell-open {
  opacity: 1;
}
.header-category-menu.header-category--text > .shopwell-button--text + .header-category__content,
.header-category-menu.header-category--text > .shopwell-button--subtle + .header-category__content {
  margin-top: 3px;
}
.header-category-menu.header-category--text .header-category__arrow {
  opacity: 0.48;
}
.header-category-menu.header-category--both > .shopwell-button--subtle + .header-category__content {
  margin-top: 3px;
}
.header-category-menu.header-category--both > .shopwell-button--subtle {
  line-height: 45px;
}
.header-category-menu.header-category--both > .shopwell-button--subtle:after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 8px;
  margin-left: -8px;
}
.header-category-menu.header-category--both > .shopwell-button--text:before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 8px;
  margin-left: -8px;
}
.header-category-menu.header-category--both > .shopwell-button--ghost {
  height: 50px;
}
.header-category-menu.header-category--both > .shopwell-button--ghost:after {
  bottom: -1px;
}
.header-category-menu:not(.header-category--icon) > .shopwell-button--ghost {
  border-bottom: none;
  position: relative;
  min-width: 267px;
}
.header-category-menu:not(.header-category--icon) > .shopwell-button--ghost:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--shopwell-header-border-color);
}
.header-category-menu:not(.header-category--icon).header-category--both > .shopwell-button--ghost:after {
  bottom: -1px;
}
.header-category-menu > .shopwell-button--ghost {
  height: 100%;
  border: 1px solid;
  padding: 0 21px;
}
.header-category-menu > .shopwell-button--ghost .header-category__icon {
  margin-right: 15px;
}
.header-category-menu > .shopwell-button--ghost .header-category__arrow {
  right: 23px;
}
.header-category-menu > .shopwell-button--subtle {
  height: 100%;
  padding: 0 18px 0 0;
  line-height: 1;
  border-color: rgba(29, 33, 40, 0.24);
}
.header-category-menu > .shopwell-button--subtle .header-category__name {
  font-size: 14px;
  font-size: 0.875rem;
}
.header-category-menu > .shopwell-button--text {
  height: 100%;
  padding: 0 18px 0 0;
  line-height: 1;
}
.header-category-menu > .shopwell-button--text:after {
  display: none;
}
.header-category-menu > .shopwell-button--text .header-category__name {
  font-size: 14px;
  font-size: 0.875rem;
}

.header-category__menu ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.header-category__menu ul.menu > li > a {
  transition: 0.2s;
}
.header-category__menu ul.menu > li > a > .menu-item-icon {
  font-size: 20px;
  font-size: 1.25rem;
  color: #7d828a;
  margin-right: 15px;
}
.header-category__menu ul.menu > li > a .menu-icon-item--has-background {
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  font-size: 1.5rem;
  margin-right: 16px;
}
.header-category__menu a {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  text-decoration: none;
  padding: 6px 22px;
}
.header-category__menu > ul {
  flex-direction: column;
  padding-bottom: 12px;
}
.header-category__menu > ul > li:first-child {
  padding-top: 0;
}
.header-category__menu > ul > li.hovered > a, .header-category__menu > ul > li:hover > a {
  color: #1d2128;
}
.header-category__menu > ul > li.hovered > a .shopwell-svg-icon, .header-category__menu > ul > li:hover > a .shopwell-svg-icon {
  color: inherit;
}
.header-category__menu > ul > li > a {
  font-weight: 500;
  position: relative;
  line-height: 2.5;
}
.header-category__menu .menu-item-mega.hovered > ul, .header-category__menu .menu-item-mega:hover > ul {
  left: 100%;
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.header-category__menu .mega-menu-main {
  display: flex;
}
.header-category__menu .mega-menu-main li {
  padding: 3px 0;
}
.header-category__menu .mega-menu-main > li {
  padding: 0 24px;
}
.header-category__menu .mega-menu-main > li > a,
.header-category__menu .mega-menu-main > li > span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.header-category__menu .mega-menu-main > li > span {
  display: inline-block;
}
.header-category__menu .mega-menu-main .font-weight--medium > a {
  font-weight: 500;
}
.header-category__menu .mega-menu-main .font-weight--large > a {
  font-weight: 700;
}
.header-category__menu .mega-menu-container {
  padding: 23px 8px 20px;
}
.header-category__menu .mega-menu {
  min-height: 100%;
  background-color: var(--category-menu-bg);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  transform: scaleX(0);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: left 0.2s;
}
.header-category__menu .mega-menu:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: var(--category-menu-bg);
}

.header-contents .header-category-menu.header-category--text > .shopwell-button--text + .header-category__content .mega-menu-container.full-width,
.header-contents .header-category-menu.header-category--text > .shopwell-button--subtle + .header-category__content .mega-menu-container.full-width {
  width: 882px;
}
.header-contents .header-category-menu.header-category--both .header-category__content .mega-menu-container.full-width {
  width: 887px;
}
.header-contents .header-category-menu .shopwell-hover > li.hovered .mega-menu-container.full-width .shopwell-container-full-width-hover,
.header-contents .header-category-menu .shopwell-hover > li:hover .mega-menu-container.full-width .shopwell-container-full-width-hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header-contents .header-category__menu li {
  position: static;
}
.header-contents .header-category__menu li.menu-item-has-children:not(.menu-item-mega) > ul.sub-menu:not(.sub-mega-menu) {
  width: 100%;
  min-height: 100%;
  background-color: var(--category-menu-bg);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  padding: 19px 20px;
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: 0.2s;
}
.header-contents .header-category__menu li.menu-item-has-children:not(.menu-item-mega) > ul.sub-menu:not(.sub-mega-menu):before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: var(--category-menu-bg);
}
.header-contents .header-category__menu li.menu-item-has-children:not(.menu-item-mega) > ul.sub-menu:not(.sub-mega-menu) ul {
  min-height: 100%;
  top: 0;
}
.header-contents .header-category__menu li.menu-item-has-children:not(.menu-item-mega).hovered > ul.sub-menu:not(.sub-mega-menu), .header-contents .header-category__menu li.menu-item-has-children:not(.menu-item-mega):hover > ul.sub-menu:not(.sub-mega-menu) {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header-contents .header-category__menu li .mega-menu__column li {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 2px 0;
}
.header-contents .header-category__menu li .mega-menu__column li:first-child {
  padding-top: 0;
}
.header-contents .header-category__menu li .mega-menu__column li:last-child {
  padding-bottom: 0;
}
.header-contents .header-category__menu li .mega-menu__column .menu-taxonomy-grid-widget {
  margin: 0 -25px;
}
.header-contents .header-category__menu li .mega-menu__column .menu-taxonomy-grid-widget.taxonomy-grid-hide-title {
  margin: 0 -12px -12px -12px;
}
.header-contents .header-category__menu li .mega-menu__column .menu-taxonomy-grid-widget.taxonomy-grid-hide-title .menu-taxonomy-grid-widget__item {
  padding: 0 12px;
}
.header-contents .header-category__menu li .mega-menu__column .menu-taxonomy-grid-widget__item {
  padding: 0 25px;
}
.header-contents .header-category__menu li .mega-menu__column .menu-item--type-label {
  padding-top: 0;
}
.header-contents .header-category__menu li .mega-menu__column .menu-item--type-hidden {
  padding: 0;
}
.header-contents .header-category__menu ul ul li > * {
  line-height: 1.875;
  padding: 0;
  position: relative;
}
.header-contents .header-category__menu > ul:after {
  z-index: 1000;
}
.header-contents .header-category__menu > ul > li > a {
  z-index: 1000;
}
.header-contents .header-category__menu .mega-menu-container.full-width .shopwell-container-full-width-hover {
  content: "";
  width: 100vw;
  height: calc(100% + 6px);
  position: absolute;
  left: 0;
  top: -3px;
  background-color: var(--category-menu-bg);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}
.header-contents .header-category__menu .mega-menu-container.full-width .mega-menu__column {
  z-index: 1;
}

.header-category--both.shopwell-open .header-category__content,
.header-category--both.shopwell-open > .shopwell-button--subtle:after,
.header-category--both.shopwell-open > .shopwell-button--text:before {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: translateY(0);
  z-index: 200;
}
.header-category--both.shopwell-open .header-category__content:before {
  opacity: 1;
}
.header-category--both .shopwell-button--ghost > * {
  z-index: 1000;
}
.header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li.hovered > a, .header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li:hover > a {
  color: #1d2128;
}
.header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li.hovered > a:before, .header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li:hover > a:before {
  opacity: 1;
}
.header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li:first-child > a {
  padding-top: 0;
}
.header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li:first-child > a:before {
  top: calc(50% - 4px);
}
.header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li > a {
  line-height: 2.14;
}
.header-category--both .shopwell-button--ghost + .header-category__content .header-category__menu > ul > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 2px;
  background-color: #1d2128;
  opacity: 0;
  transition: 0.3s;
}
.header-category--both .shopwell-button--subtle + .header-category__content .header-category__menu > ul:after,
.header-category--both .shopwell-button--text + .header-category__content .header-category__menu > ul:after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 1px;
  height: calc(100% - 36px);
  background-color: rgba(185, 185, 185, 0.4);
  opacity: 0;
  pointer-events: none;
}
.header-category--both .shopwell-button--subtle + .header-category__content .header-category__menu > ul.shopwell-hover:after,
.header-category--both .shopwell-button--text + .header-category__content .header-category__menu > ul.shopwell-hover:after {
  opacity: 1;
  pointer-events: inherit;
}
.header-category--both .shopwell-button--subtle + .header-category__content .header-category__menu > ul > li.hovered > a, .header-category--both .shopwell-button--subtle + .header-category__content .header-category__menu > ul > li:hover > a,
.header-category--both .shopwell-button--text + .header-category__content .header-category__menu > ul > li.hovered > a,
.header-category--both .shopwell-button--text + .header-category__content .header-category__menu > ul > li:hover > a {
  background-color: rgba(185, 185, 185, 0.4);
  color: #1d2128;
}
.header-category--both .shopwell-button--subtle + .header-category__content .header-category__menu > ul > li.hovered > a > .menu-item-icon, .header-category--both .shopwell-button--subtle + .header-category__content .header-category__menu > ul > li:hover > a > .menu-item-icon,
.header-category--both .shopwell-button--text + .header-category__content .header-category__menu > ul > li.hovered > a > .menu-item-icon,
.header-category--both .shopwell-button--text + .header-category__content .header-category__menu > ul > li:hover > a > .menu-item-icon {
  color: inherit;
}
.header-category--both .shopwell-button--subtle + .header-category__content .header-category__menu > ul > li.menu-item-has-children,
.header-category--both .shopwell-button--text + .header-category__content .header-category__menu > ul > li.menu-item-has-children {
  padding-right: 15px;
}
.header-category--both .shopwell-button--subtle + .header-category__content .header-category__menu > ul > li > a .icon-arrow,
.header-category--both .shopwell-button--text + .header-category__content .header-category__menu > ul > li > a .icon-arrow {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #7d828a;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.header-category--both .header-category__content {
  --category-menu-bg: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 267px;
  background-color: var(--category-menu-bg);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  transform: translateY(10px);
  text-align: left;
  z-index: 1;
  transition: 0.25s;
}
.header-category--both .header-category__content:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 1px;
  width: calc(100% - 1px);
  height: 3px;
  background-color: var(--category-menu-bg);
  opacity: 0;
}
.header-category--both .header-category__menu:focus-within > ul > li > a, .header-category--both .header-category__menu:hover > ul > li > a {
  color: #7d828a;
}
.header-category--both .header-category__menu ul ul li a {
  line-height: 2;
  padding: 0;
  display: inline-block;
  position: relative;
}
.header-category--both .header-category__menu ul ul li a:focus:after, .header-category--both .header-category__menu ul ul li a:hover:after {
  width: 100%;
  left: 0;
}
.header-category--both .header-category__menu ul ul li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.header-category--both .header-category__menu ul.menu > li > a > .menu-item-icon {
  position: relative;
  top: 3px;
}
.header-category--both .header-category__menu ul.menu > li > a > i.menu-item-icon {
  width: 22px;
  text-align: center;
}
.header-category--both .header-category__menu li {
  position: static;
}
.header-category--both .header-category__menu li.menu-item-has-children:not(.menu-item-mega) > ul.sub-menu:not(.sub-mega-menu) {
  min-height: calc(100% + 50px);
  top: -50px;
}
.header-category--both .header-category__menu li.menu-item-has-children:not(.menu-item-mega) > ul.sub-menu:not(.sub-mega-menu) ul {
  min-height: 100%;
  top: 0;
}
.header-category--both .header-category__menu .mega-menu-container {
  padding: 18px 23px;
}

.header-category--icon {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-category--icon.shopwell-open .header-category__content {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: translateY(0);
}
.header-category--icon:first-child .header-category__content {
  right: auto;
  left: 0;
}
.header-category--icon:first-child > .shopwell-button--ghost + .header-category__content {
  left: 24px;
}
.header-category--icon .header-category__icon {
  margin-right: 0;
}
.header-category--icon .shopwell-button--subtle {
  padding: 0;
}
.header-category--icon .header-category__content {
  --category-menu-bg: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 24px;
  width: 267px;
  background-color: var(--category-menu-bg);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  transform: translateY(10px);
  text-align: left;
  transition: 0.25s;
  z-index: 101;
}
.header-category--icon .header-category__content:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border: solid transparent;
  pointer-events: none;
  border-color: transparent;
  border-right-color: #fff;
  border-width: 12px;
  margin-top: -12px;
  transition: 0.25s;
}
.header-category--icon .header-category__menu > ul {
  padding: 18px 0 17px;
  position: relative;
}
.header-category--icon .header-category__menu > ul:after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 1px;
  height: calc(100% - 36px);
  background-color: rgba(185, 185, 185, 0.4);
  opacity: 0;
  pointer-events: none;
}
.header-category--icon .header-category__menu > ul.shopwell-hover:after {
  opacity: 1;
  pointer-events: inherit;
}
.header-category--icon .header-category__menu > ul > li.hovered > a, .header-category--icon .header-category__menu > ul > li:hover > a {
  background-color: rgba(185, 185, 185, 0.4);
}
.header-category--icon .header-category__menu > ul > li.hovered > a:before, .header-category--icon .header-category__menu > ul > li:hover > a:before {
  display: none;
}
.header-category--icon .header-category__menu > ul > li:last-child > a:before {
  display: none;
}
.header-category--icon .header-category__menu > ul > li > a {
  display: flex;
  align-items: center;
  line-height: 3;
  font-weight: 400;
  padding: 5px 24px;
  position: relative;
}
.header-category--icon .header-category__menu > ul > li > a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.header-category--icon .header-category__menu > ul > li > a:before {
  width: calc(100% - 103px);
  left: 79px;
}
.header-category--icon .header-category__menu > ul > li > a > img {
  max-width: 40px;
  margin-right: 15px;
}
.header-category--icon .header-category__menu > ul > li > a > .shopwell-svg-icon {
  margin-right: 14.5px;
  top: 0;
}
.header-category--icon .header-category__menu > ul > li > a .icon-arrow {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #7d828a;
  position: absolute;
  right: 24px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  margin: 0;
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.header-category--icon .header-category__menu ul ul li a {
  line-height: 2;
  padding: 0;
  display: inline-block;
  position: relative;
}
.header-category--icon .header-category__menu ul ul li a:focus:after, .header-category--icon .header-category__menu ul ul li a:hover:after {
  width: 100%;
  left: 0;
}
.header-category--icon .header-category__menu ul ul li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.header-category--icon .mega-menu-container {
  padding: 23px 27px 13px;
}

.header-category--text {
  height: 100%;
}
.header-category--text.shopwell-open .header-category__content,
.header-category--text.shopwell-open .shopwell-button--text:before {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: translateY(0);
  z-index: 100;
}
.header-category--text.shopwell-open .shopwell-button--text:before {
  transform: translate(-50%, 0);
}
.header-category--text.shopwell-open .header-category__arrow {
  opacity: 1;
}
.header-category--text .header-category__icon {
  display: none;
}
.header-category--text .shopwell-button--text:before {
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  float: left;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 8px;
  height: 8px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.header-category--text .header-category__content {
  --category-menu-bg: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 278px;
  background-color: var(--category-menu-bg);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  transform: translateY(10px);
  margin-top: -8px;
  text-align: left;
  transition: 0.25s;
}
.header-category--text .header-category__content:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--category-menu-bg);
}
.header-category--text .header-category__menu > ul {
  position: relative;
  padding-top: 11px;
  padding-bottom: 15px;
}
.header-category--text .header-category__menu > ul:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 18px;
  width: 1px;
  height: calc(100% - 36px);
  background-color: rgba(185, 185, 185, 0.4);
  opacity: 0;
  pointer-events: none;
}
.header-category--text .header-category__menu > ul > li.hovered > a, .header-category--text .header-category__menu > ul > li:hover > a {
  background-color: rgba(185, 185, 185, 0.4);
  color: #1d2128;
}
.header-category--text .header-category__menu > ul > li.hovered > a > .menu-item-icon, .header-category--text .header-category__menu > ul > li:hover > a > .menu-item-icon {
  color: inherit;
}
.header-category--text .header-category__menu > ul > li.menu-item-has-children {
  padding-right: 23px;
}
.header-category--text .header-category__menu > ul > li > a {
  color: #878b94;
  padding-left: 14px;
  padding-right: 14px;
}
.header-category--text .header-category__menu ul ul li a {
  line-height: 2;
  padding: 0;
  display: inline-block;
  position: relative;
}
.header-category--text .header-category__menu ul ul li a:focus:after, .header-category--text .header-category__menu ul ul li a:hover:after {
  width: 100%;
  left: 0;
}
.header-category--text .header-category__menu ul ul li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.header-category--text .header-category__menu .mega-menu-container {
  padding: 22px 23px;
}

.header-bottom .header-category--both .header-category__menu .mega-menu {
  min-height: calc(100% + 50px);
  top: -50px;
}

.menu-item-content .menu-banner-list {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.menu-item-content .menu-banner-list .menu-banner {
  flex: 0 1 50%;
  padding: 12px;
}
.menu-item-content .menu-banner-list .menu-banner:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.menu-item-content .menu-banner-list .menu-banner__content {
  padding: 36px;
}
.menu-item-content .menu-banner {
  position: relative;
  color: #fff;
  border-radius: 2px;
}
.menu-item-content .menu-banner:after {
  display: none;
}
.menu-item-content .menu-banner img {
  border-radius: 2px;
}
.menu-item-content .menu-banner__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 9;
  padding: 24px;
}
.menu-item-content .menu-banner__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}
.menu-item-content .menu-banner__button {
  color: inherit;
  margin-right: auto;
  line-height: 1.375;
  font-weight: 500;
}

.header-items .header-category-menu.shopwell-open > .shopwell-button--ghost {
  border-color: transparent;
}
.header-items .header-category-menu > .shopwell-button--ghost {
  background-color: transparent;
  border-color: var(--shopwell-header-border-color);
}

.menu-taxonomy-list-widget .menu-taxonomy-list-widget__item {
  padding-left: 0;
  padding-right: 0;
}
.menu-taxonomy-list-widget .menu-taxonomy-list-widget__item:first-child {
  padding-top: 0;
}
.menu-taxonomy-list-widget .menu-taxonomy-list-widget__subitem {
  margin-left: 15px;
}

.menu-taxonomy-grid-widget__heading {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 16px;
}

.menu-taxonomy-grid-widget {
  display: flex;
  flex-wrap: wrap;
}
.menu-taxonomy-grid-widget.taxonomy-grid-hide-title .menu-taxonomy-grid-widget__item {
  width: 124px;
  margin-bottom: 12px;
}

.menu-taxonomy-grid-widget__item {
  width: 150px;
  text-align: center;
  margin-bottom: 14px;
}
.menu-taxonomy-grid-widget__item a:after {
  display: none;
}

.menu-taxonomy-grid-widget__image {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto;
  background-color: rgba(185, 185, 185, 0.4);
}
.menu-taxonomy-grid-widget__image img {
  border-radius: 50%;
}

.menu-taxonomy-grid-widget__name {
  display: block;
  margin-top: 10px;
}

li.menu-taxonomy-grid-widget__item--all-cats a {
  width: 100px;
  height: 100px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  border: 2px solid rgba(185, 185, 185, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
li.menu-taxonomy-grid-widget__item--all-cats a span {
  line-height: 6.5;
  position: relative;
}
li.menu-taxonomy-grid-widget__item--all-cats a span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(50% - 10px);
  width: 100%;
  height: 1px;
  background-color: #1d2128;
}

.header-account {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-account .shopwell-button__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.header-account .shopwell-button__text .shopwell-button__subtext {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}
.header-account .shopwell-button__text .shopwell-button__subtext + .shopwell-button__text--account {
  margin-top: 3px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  max-width: 100px;
  overflow: hidden;
}
.header-account .shopwell-button__icon > img {
  max-width: 20px;
  border-radius: 100%;
  padding-right: 3px;
}
.header-account .account-dropdown {
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  box-sizing: border-box;
  min-width: 267px;
  padding: 24px 0 15px 0;
  float: left;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  z-index: 99999;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  color: #1d2128;
}
.header-account .account-dropdown::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
}
.header-account .account-dropdown ul {
  list-style-type: none;
  margin: 0;
  padding: 12px 0 0 0;
}
.header-account .account-dropdown li {
  text-align: left;
}
.header-account .account-dropdown li:last-child {
  margin-bottom: 0;
}
.header-account .account-dropdown li a:hover {
  background-color: #ebeff3;
}
.header-account .account-dropdown li .shopwell-svg-icon {
  min-width: 42px;
}
.header-account .shopwell-open.account-dropdown {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: initial;
}
.header-account .account-dropdown__header {
  display: flex;
  align-items: center;
  padding: 0 26px 16px 26px;
  border-bottom: 1px solid #ebeff3;
}
.header-account .shopwell-button--text {
  line-height: var(--shopwell-size__medium);
}
.header-account .account-dropdown__avatar {
  width: 32px;
  height: 32px;
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1d2128;
  border-radius: 50%;
}
.header-account .account-dropdown__avatar img {
  border-radius: 50%;
}
.header-account .account-dropdown__avatar span {
  font-size: inherit;
  color: #ebeff3;
}
.header-account .account-dropdown__name {
  text-transform: capitalize;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}
.header-account .account-panel__link a {
  padding: 11px 33px;
  line-height: 1;
}
.header-account .shopwell-button--ghost:hover {
  background-color: transparent;
}

.header-cart {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-cart .shopwell-button__icon {
  position: relative;
}
.header-cart .shopwell-button--subtle,
.header-cart .shopwell-button--text {
  line-height: var(--shopwell-size__medium);
  position: relative;
}
.header-cart .shopwell-button--icon.shopwell-button--subtle {
  min-width: auto;
  padding: 0;
}
.header-cart .shopwell-button--subtle {
  position: relative;
  min-width: auto;
  padding: 0;
}
.header-cart .shopwell-button--base {
  --shopwell-color__primary--light: #fff;
  --shopwell-color__primary: #dd2831;
  --shopwell-color__primary--dark: hsl(3, 88%, 44%);
  --shopwell-color__primary--darker: hsl(3, 97%, 42%);
  padding: 0 14px;
  text-align: left;
  min-width: auto;
}
.header-cart .shopwell-button--base .header-counter {
  color: var(--shopwell-color__primary);
  background-color: var(--shopwell-color__primary--light);
}
.header-cart .shopwell-button--base.shopwell-button--icon-top {
  padding-top: 6px;
  padding-bottom: 6px;
}
.header-cart .shopwell-button--raised.shopwell-button--icon-top {
  padding: 10px 14px;
}
.header-cart .shopwell-button--smooth.shopwell-button--icon-top {
  padding: 10px 14px;
}
.header-cart .shopwell-button--base:not(.shopwell-button--icon-top) .header-counter,
.header-cart .shopwell-button--raised:not(.shopwell-button--icon-top) .header-counter,
.header-cart .shopwell-button--smooth:not(.shopwell-button--icon-top) .header-counter,
.header-cart .shopwell-button--ghost:not(.shopwell-button--icon-top) .header-counter {
  position: static;
  order: 2;
}
.header-cart .shopwell-button--base:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-cart .shopwell-button--raised:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-cart .shopwell-button--smooth:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-cart .shopwell-button--ghost:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text) {
  margin-right: 10px;
}
.header-cart .shopwell-button--base:not(.shopwell-button--icon-top) .shopwell-button__icon,
.header-cart .shopwell-button--raised:not(.shopwell-button--icon-top) .shopwell-button__icon,
.header-cart .shopwell-button--smooth:not(.shopwell-button--icon-top) .shopwell-button__icon,
.header-cart .shopwell-button--ghost:not(.shopwell-button--icon-top) .shopwell-button__icon {
  padding-right: 0;
}
.header-cart .shopwell-button--base:not(.shopwell-button--icon-top).shopwell-button--icon,
.header-cart .shopwell-button--raised:not(.shopwell-button--icon-top).shopwell-button--icon,
.header-cart .shopwell-button--smooth:not(.shopwell-button--icon-top).shopwell-button--icon,
.header-cart .shopwell-button--ghost:not(.shopwell-button--icon-top).shopwell-button--icon {
  padding: 0 8px;
}
.header-cart .shopwell-button--base.shopwell-button--icon-top .header-counter,
.header-cart .shopwell-button--raised.shopwell-button--icon-top .header-counter,
.header-cart .shopwell-button--smooth.shopwell-button--icon-top .header-counter,
.header-cart .shopwell-button--ghost.shopwell-button--icon-top .header-counter {
  top: 30px;
  left: calc(50% + 17px);
  border: none;
}
.header-cart .shopwell-button--ghost:hover {
  background-color: transparent;
}
.header-cart .shopwell-button--icon-top .header-counter {
  top: -6px;
  left: calc(50% + 8px);
  height: 20px;
  transform: translateX(-50%);
}
.header-cart .cart-dropdown {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  box-sizing: border-box;
  text-align: left;
  min-width: 364px;
  padding: 20px 0 25px;
  float: left;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translate(0%, 10px);
  z-index: 99999;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
}
.header-cart .cart-dropdown .dropdown-after {
  content: "";
  position: absolute;
  top: -10px;
  transform: translate(0%, 0px);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.header-cart .cart-dropdown ul {
  padding: 0 24px;
  max-height: 220px;
}
.header-cart .cart-dropdown li {
  min-height: 101px;
  margin-bottom: 17px;
  padding-bottom: 16px;
}
.header-cart .cart-dropdown li:last-child {
  margin-bottom: 0;
}
.header-cart .shopwell-open.cart-dropdown {
  opacity: 1;
  transform: translate(0%, 0);
  pointer-events: initial;
}
.header-cart .cart-dropdown__header {
  padding: 0 20px 15px 20px;
  font-weight: 500;
}
.header-cart .cart-dropdown__content .woocommerce-mini-cart-item__thumbnail img {
  max-width: 80px;
}
.header-cart .cart-dropdown__content .woocommerce-mini-cart-item__summary {
  padding-bottom: 12px;
  padding-left: 19px;
}
.header-cart .cart-dropdown__content .woocommerce-mini-cart-item__summary .woocommerce-mini-cart-item__qty {
  display: none;
}
.header-cart .cart-dropdown__content .woocommerce-mini-cart-item__summary .woocommerce-mini-cart-item__box {
  flex-direction: row;
}
.header-cart .cart-dropdown__content .widget_shopping_cart_footer {
  padding: 11px 24px 0;
}
.header-cart .cart-dropdown__content .widget_shopping_cart_footer .checkout {
  line-height: var(--shopwell-size__medium);
}
.header-cart .cart-dropdown__content .woocommerce-mini-cart__total {
  font-weight: 500;
}
.header-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .view-cart {
  line-height: 1.3;
  border-color: #1d2128;
}

.widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  justify-content: space-between;
}
.widget_shopping_cart_content .woocommerce-mini-cart {
  flex: 1;
  padding: 0 32px;
  margin: 0;
  list-style: none;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-color: #1d2128 rgba(125, 130, 138, 0.3);
  scrollbar-width: thin;
}
.widget_shopping_cart_content .woocommerce-mini-cart::-webkit-scrollbar {
  width: 2px;
}
.widget_shopping_cart_content .woocommerce-mini-cart::-webkit-scrollbar-track {
  background-color: rgba(125, 130, 138, 0.3);
}
.widget_shopping_cart_content .woocommerce-mini-cart::-webkit-scrollbar-thumb {
  background-color: #1d2128;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__thumbnail {
  flex-basis: 105px;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__thumbnail img {
  max-width: 100px;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__summary {
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding-left: 23px;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
  line-height: 20px;
  margin-top: 8px;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .woocommerce-Price-amount {
  line-height: 22px;
  font-weight: 500;
  margin-top: 5px;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .variation {
  font-size: 11px;
  font-size: 0.6875rem;
  text-transform: capitalize;
  margin: 5px 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .variation dt {
  font-weight: 500;
  color: #7d828a;
  display: inline-block;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .variation dt:before {
  content: "|";
  display: inline-block;
  margin: 0 4px 0 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .variation dt:first-child:before {
  display: none;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .variation dd {
  display: inline-block;
  margin: 0;
  color: #1d2128;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .variation dd:first-child {
  margin-top: 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .variation dd:last-child {
  margin-bottom: 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__data .variation dd p {
  margin: 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__qty {
  margin-top: 11px;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__remove {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  color: #7d828a;
  margin-bottom: 4px;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__remove a {
  color: inherit;
}
.widget_shopping_cart_content .woocommerce-mini-cart-item__remove .shopwell-svg-icon {
  font-size: 20px;
  font-size: 1.25rem;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 10px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total strong {
  font-weight: inherit;
}
.widget_shopping_cart_content .widget_shopping_cart_footer {
  padding: 30px 32px 32px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  text-align: center;
  margin: 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .shopwell-button {
  display: block;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .view-cart {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d2128;
  margin-top: 20px;
  text-transform: capitalize;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
  text-align: center;
  justify-self: center;
  margin: auto 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty-message img {
  opacity: 0.25;
  width: 40%;
  display: block;
  margin: 0 auto 60px auto;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty--dropdown {
  color: #1d2128;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty--dropdown .shopwell-svg-icon {
  font-size: 32px;
  font-size: 2rem;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty--dropdown h4 {
  font-weight: 500;
  margin: 20px 0 14px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty--dropdown p {
  margin-bottom: 24px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty--dropdown .shopwell-button {
  margin: 14px auto 0;
  min-width: 180px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty--dropdown .shopwell-button:focus, .widget_shopping_cart_content .woocommerce-mini-cart__empty--dropdown .shopwell-button:hover {
  background-color: #1d2128;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty--panel {
  color: #7d828a;
  position: relative;
  top: -70px;
}

.header-mobile-contents .header-cart .shopwell-button--base,
.header-mobile-contents .header-cart .shopwell-button--raised {
  min-width: auto;
  padding: 0 10px;
}
.header-mobile-contents .header-cart .shopwell-button--base:not(.shopwell-button--icon-top) .header-counter,
.header-mobile-contents .header-cart .shopwell-button--raised:not(.shopwell-button--icon-top) .header-counter,
.header-mobile-contents .header-cart .shopwell-button--smooth:not(.shopwell-button--icon-top) .header-counter,
.header-mobile-contents .header-cart .shopwell-button--ghost:not(.shopwell-button--icon-top) .header-counter {
  margin-left: 8px;
}
.header-mobile-contents .header-cart .shopwell-button--icon-top .header-counter {
  top: 2px;
}

.header-wishlist,
.header-compare {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-wishlist .shopwell-button__icon,
.header-compare .shopwell-button__icon {
  position: relative;
}
.header-wishlist .shopwell-button--subtle,
.header-wishlist .shopwell-button--text,
.header-compare .shopwell-button--subtle,
.header-compare .shopwell-button--text {
  line-height: var(--shopwell-size__medium);
  position: relative;
}
.header-wishlist .shopwell-button--icon.shopwell-button--subtle,
.header-compare .shopwell-button--icon.shopwell-button--subtle {
  min-width: auto;
  padding: 0;
}
.header-wishlist .shopwell-button--subtle,
.header-compare .shopwell-button--subtle {
  position: relative;
  min-width: auto;
  padding: 0;
}
.header-wishlist .shopwell-button--base,
.header-compare .shopwell-button--base {
  --shopwell-color__primary--light: #fff;
  --shopwell-color__primary: #dd2831;
  --shopwell-color__primary--dark: hsl(3, 88%, 44%);
  --shopwell-color__primary--darker: hsl(3, 97%, 42%);
  padding: 0 14px;
  text-align: left;
}
.header-wishlist .shopwell-button--base .header-counter,
.header-compare .shopwell-button--base .header-counter {
  color: var(--shopwell-color__primary);
  background-color: var(--shopwell-color__primary--light);
}
.header-wishlist .shopwell-button--base:not(.shopwell-button--icon-top) .header-counter,
.header-wishlist .shopwell-button--raised:not(.shopwell-button--icon-top) .header-counter,
.header-wishlist .shopwell-button--smooth:not(.shopwell-button--icon-top) .header-counter,
.header-wishlist .shopwell-button--ghost:not(.shopwell-button--icon-top) .header-counter,
.header-compare .shopwell-button--base:not(.shopwell-button--icon-top) .header-counter,
.header-compare .shopwell-button--raised:not(.shopwell-button--icon-top) .header-counter,
.header-compare .shopwell-button--smooth:not(.shopwell-button--icon-top) .header-counter,
.header-compare .shopwell-button--ghost:not(.shopwell-button--icon-top) .header-counter {
  position: static;
}
.header-wishlist .shopwell-button--base:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-wishlist .shopwell-button--raised:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-wishlist .shopwell-button--smooth:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-wishlist .shopwell-button--ghost:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-compare .shopwell-button--base:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-compare .shopwell-button--raised:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-compare .shopwell-button--smooth:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text),
.header-compare .shopwell-button--ghost:not(.shopwell-button--icon-top) .shopwell-button__text:not(.screen-reader-text) {
  margin-right: 10px;
}
.header-wishlist .shopwell-button--base.shopwell-button--icon-top .header-counter,
.header-wishlist .shopwell-button--raised.shopwell-button--icon-top .header-counter,
.header-wishlist .shopwell-button--smooth.shopwell-button--icon-top .header-counter,
.header-wishlist .shopwell-button--ghost.shopwell-button--icon-top .header-counter,
.header-compare .shopwell-button--base.shopwell-button--icon-top .header-counter,
.header-compare .shopwell-button--raised.shopwell-button--icon-top .header-counter,
.header-compare .shopwell-button--smooth.shopwell-button--icon-top .header-counter,
.header-compare .shopwell-button--ghost.shopwell-button--icon-top .header-counter {
  display: none;
}
.header-wishlist .shopwell-button--icon-top .header-counter,
.header-compare .shopwell-button--icon-top .header-counter {
  top: -6px;
  left: calc(50% + 8px);
  border: 1px solid #fff;
  height: 22px;
  transform: translateX(-50%);
}

.badge {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 1;
  padding: 3px 5px;
  background: var(--shopwell-hot-label-bg);
  color: #fff;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.badge:before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4px 6px 4px 0;
  border-color: transparent var(--shopwell-hot-label-bg) transparent transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
}

.header-custom-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}
.header-custom-text a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-custom-text {
    position: relative;
  }
  .header-custom-text a .badge {
    position: absolute;
    font-size: 0.66rem;
    top: -11px;
    left: 105%;
    transform: translateX(-100%);
  }
  .header-custom-text a .badge:before {
    border-width: 4px 3px 0 0;
    border-color: var(--shopwell-hot-label-bg) transparent transparent transparent;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.main-navigation {
  height: 100%;
}
.main-navigation .nav-menu {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
}
.main-navigation .nav-menu > li:not(.menu-item-mega) {
  position: relative;
}
.main-navigation .nav-menu ul > li.menu-item-has-children:not(.menu-item-mega)::after {
  content: "";
  position: absolute;
  top: 65%;
  right: 22px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(-48%) rotate(135deg);
}
.main-navigation .nav-menu ul > li.menu-item-has-children:not(.menu-item-mega):only-child::after {
  top: 50%;
}
.main-navigation .nav-menu > li {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 7px;
}
.main-navigation .nav-menu > li:first-child {
  padding-left: 0;
}
.main-navigation .nav-menu > li:last-child {
  padding-right: 0;
}
.main-navigation .nav-menu > li.hovered > a .shopwell-svg-icon.caret,
.main-navigation .nav-menu > li.hovered > a .menu-item-icon.caret, .main-navigation .nav-menu > li:hover > a .shopwell-svg-icon.caret,
.main-navigation .nav-menu > li:hover > a .menu-item-icon.caret {
  opacity: 1;
}
.main-navigation .nav-menu > li > a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px;
}
.main-navigation .nav-menu > li > a:before {
  border-bottom-width: 2px;
}
.main-navigation .nav-menu > li > a .shopwell-svg-icon,
.main-navigation .nav-menu > li > a .menu-item-icon {
  margin-right: 5px;
}
.main-navigation .nav-menu > li > a .shopwell-svg-icon.caret,
.main-navigation .nav-menu > li > a .menu-item-icon.caret {
  font-size: 12px;
  font-size: 0.75rem;
  margin: -3px 0 0 7px;
  opacity: 0.48;
  transition: 0.25s;
}
.main-navigation .nav-menu > li.page_item_has_children:not(.menu-item-custom-more) > a {
  padding-right: 27px;
}
.main-navigation .nav-menu > li.page_item_has_children:not(.menu-item-custom-more) > a:after {
  content: "";
  position: absolute;
  top: 46%;
  right: 10px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(-48%) rotate(225deg);
  opacity: 0.48;
}
.main-navigation .nav-menu > li.page_item_has_children:not(.menu-item-custom-more).hovered > a:after, .main-navigation .nav-menu > li.page_item_has_children:not(.menu-item-custom-more):hover > a:after {
  opacity: 1;
}
.main-navigation .nav-menu > li.menu-item-custom-more > a > .shopwell-svg-icon {
  margin-right: 0;
  margin-left: 5px;
}
.main-navigation .menu-item-mega {
  position: relative;
}
.main-navigation .menu-item-mega.hovered > ul, .main-navigation .menu-item-mega:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  top: 100%;
}
.main-navigation .menu-item-mega > ul {
  z-index: 200;
}
.main-navigation .menu-item-static {
  position: static;
}
.main-navigation .menu-item-static .mega-menu {
  left: 0;
  width: 100%;
}
.main-navigation .menu-item-static .mega-menu--grid .mega-menu__column:first-child > li {
  padding-left: 0;
}
.main-navigation .menu-item-static .mega-menu--grid .mega-menu__column:last-child > li {
  padding-right: 0;
}
.main-navigation .mega-menu-main {
  display: flex;
  flex-wrap: wrap;
}
.main-navigation .mega-menu-main ul {
  display: flex;
  flex-direction: column;
}
.main-navigation .mega-menu-main li {
  padding: 4px 0;
}
.main-navigation .mega-menu-main > li {
  padding: 0 12px;
}
.main-navigation .mega-menu-main > li > a,
.main-navigation .mega-menu-main > li > span {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.main-navigation .mega-menu-container {
  padding: 3px 20px;
}
.main-navigation .mega-menu-container.container-fluid {
  width: 100%;
}
.main-navigation .mega-menu-container.container {
  padding: 3px 15px 12px;
}
.main-navigation .mega-menu-container.container .mega-menu-main {
  margin-left: -12px;
  margin-right: -12px;
}
.main-navigation .mega-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  min-width: 140px;
  top: 110%;
  left: -20px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  border-top: 7px solid #fff;
  padding: 13px 0;
  transition: 0.25s;
}
.main-navigation a {
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.main-navigation a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.main-navigation a:hover {
  text-decoration: none;
}
.main-navigation a:focus {
  outline: 1px dotted;
  outline-offset: 3px;
  text-decoration: underline;
}
.main-navigation a:focus:before,
.main-navigation a:hover:before {
  width: 100%;
  left: 0;
}

.header-contents .nav-menu > li:not(.menu-item-mega):not(.mega-sub-menu) {
  position: relative;
}
.header-contents .nav-menu > li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children,
.header-contents .nav-menu > li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu {
  background-color: transparent;
  box-shadow: none;
  border-top: 9px solid transparent;
}
.header-contents .nav-menu > li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children:before,
.header-contents .nav-menu > li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 0;
  left: 0;
}

.secondary-navigation .nav-menu > li > a {
  padding: 0;
}
.secondary-navigation .nav-menu > li > a .menu-icon-item--svg {
  font-size: 14px;
  font-size: 0.875rem;
}
.secondary-navigation .nav-menu li {
  padding: 0 12px;
}
.secondary-navigation .menu-taxonomy-list-widget .menu-taxonomy-list-widget__item {
  padding: 4px 0;
}
.secondary-navigation .menu-taxonomy-list-widget .menu-taxonomy-list-widget__item:first-child {
  padding-top: 0;
}

.header-mobile-contents .main-navigation {
  max-width: 100%;
}
.header-mobile-contents .main-navigation > ul {
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.header-mobile-contents .main-navigation > ul::-webkit-scrollbar {
  display: none;
}

.primary-navigation--dividers .nav-menu > li:last-child > a:before {
  display: none;
}
.primary-navigation--dividers .nav-menu > li > a {
  padding: 0;
}
.primary-navigation--dividers .nav-menu > li > a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #ebeff3;
}

ul.menu .hide-title {
  text-indent: -9999em;
  display: block;
}
ul.menu .hide-link {
  display: none !important;
}
ul.menu .hide-link + ul {
  margin-top: -2px;
}
ul.menu .link-disabled {
  pointer-events: none;
}
ul.menu .font-weight--medium > a,
ul.menu .font-weight--medium > span {
  font-weight: 500;
}
ul.menu .font-weight--large > a,
ul.menu .font-weight--large > span {
  font-weight: 700;
}
ul.menu .menu-item-has-icon-image > a,
ul.menu .menu-item-has-icon-image > span {
  font-size: 14px;
  font-size: 0.875rem;
}
ul.menu .menu-item-has-icon-image > a:after,
ul.menu .menu-item-has-icon-image > span:after {
  display: none;
}
ul.menu .menu-item-icon-position-top > a,
ul.menu .menu-item-icon-position-top > span {
  display: flex !important;
  flex-direction: column;
  text-align: center;
}
ul.menu .menu-item-icon-position-top > a .menu-item-icon,
ul.menu .menu-item-icon-position-top > span .menu-item-icon {
  display: block;
}
ul.menu .menu-item-icon-position-top > a img,
ul.menu .menu-item-icon-position-top > span img {
  margin: 0 auto 5px;
}
ul.menu .menu-item-image-shape-square > a img,
ul.menu .menu-item-image-shape-square > span img {
  border-radius: 2px;
}
ul.menu .menu-item-image-shape-circle > a .menu-item-icon,
ul.menu .menu-item-image-shape-circle > a img,
ul.menu .menu-item-image-shape-circle > span .menu-item-icon,
ul.menu .menu-item-image-shape-circle > span img {
  border-radius: 50%;
}
ul.menu .menu-item-icon-border > a img,
ul.menu .menu-item-icon-border > a .menu-item-icon svg,
ul.menu .menu-item-icon-border > span img,
ul.menu .menu-item-icon-border > span .menu-item-icon svg {
  border: 1px solid rgba(185, 185, 185, 0.4);
}
ul.menu .menu-item-icon-hide-text > a,
ul.menu .menu-item-icon-hide-text > span {
  font-size: 0 !important;
}
ul.menu .menu-item-icon-hide-text > a .menu-item-icon,
ul.menu .menu-item-icon-hide-text > span .menu-item-icon {
  font-size: 14px;
  font-size: 0.875rem;
}
ul.menu .menu-item-has-icon-svg .icon-has-background {
  padding: 10px;
}
ul.menu .menu-item-icon {
  display: inline-block;
  line-height: 1;
}
ul.menu .menu-item-icon svg {
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
}
ul.menu > li > a .menu-item-icon {
  margin-right: 5px;
}
ul.menu .col-1_8 {
  width: 12.5%;
}
ul.menu .col-1_5 {
  width: 20%;
}
ul.menu .col-1_4 {
  width: 25%;
}
ul.menu .col-1_3 {
  width: 33.33%;
}
ul.menu .col-3_8 {
  width: 37.5%;
}
ul.menu .col-2_5 {
  width: 40%;
}
ul.menu .col-1_2 {
  width: 50%;
}
ul.menu .col-3_5 {
  width: 60%;
}
ul.menu .col-5_8 {
  width: 62.5%;
}
ul.menu .col-2_3 {
  width: 66.6666%;
}
ul.menu .col-3_4 {
  width: 75%;
}
ul.menu .col-4_5 {
  width: 80%;
}
ul.menu .col-7_8 {
  width: 87.5%;
}
ul.menu .col-1_1 {
  width: 100%;
}

.hamburger-panel {
  --shopwell-header-counter-bc: #f9554d;
  --shopwell-header-counter-text: #fff;
}

.hamburger__icon {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.header-category__top {
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.header-category__back {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}
.header-category__back:focus {
  outline: 1px dotted;
  outline-offset: 3px;
}
.header-category__back .shopwell-svg-icon {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 10px;
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}

.header-category__box-close {
  font-size: 20.76px;
  font-size: 1.2975rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
}

.header-category__sub-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  padding-left: 8px;
  z-index: 1;
}

.header-category__box-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.header-category__box-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 35%);
}
.header-category__box-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 35%);
}

.header-category--hamburger .header-category__menu:focus-within > ul > li > a, .header-category--hamburger .header-category__menu:hover > ul > li > a {
  color: #1d2128;
}
.header-category--hamburger .header-category__menu > ul > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-category--hamburger .header-category__menu > ul > li.shopwell-open > ul.children,
.header-category--hamburger .header-category__menu > ul > li.shopwell-open > ul.sub-menu {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.header-category--hamburger .header-category__menu > ul > li > a {
  padding: 4px 32px 6px;
  display: inline-block;
  flex: auto;
}
.header-category--hamburger .header-category__menu > ul > li > a:before {
  display: none;
}
.header-category--hamburger .header-category__menu > ul > li > a:focus {
  background-color: rgba(185, 185, 185, 0.4);
}
.header-category--hamburger .header-category__menu > ul > li > a .icon-arrow {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.header-category--hamburger .header-category__menu > ul > li > a .menu-item-icon {
  color: inherit;
}
.header-category--hamburger .header-category__menu > ul > li .toggle-submenu {
  width: 32px;
  height: 32px;
  background-color: transparent;
  box-shadow: none;
  margin-right: 22px;
  color: #1d2128;
}
.header-category--hamburger .header-category__menu > ul > li .toggle-submenu:focus, .header-category--hamburger .header-category__menu > ul > li .toggle-submenu:hover {
  box-shadow: none;
}
.header-category--hamburger .header-category__menu > ul > li .toggle-submenu:after {
  display: none;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu {
  position: absolute;
  top: 160px;
  left: 0;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  width: 320px;
  background-color: #fff;
  height: 100%;
  overflow-y: auto;
  padding: 18px 0 175px;
  z-index: 9;
  transition: 0.3s;
  scroll-behavior: smooth;
  scrollbar-color: #7d828a rgba(185, 185, 185, 0.3);
  scrollbar-width: thin;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children::-webkit-scrollbar,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu::-webkit-scrollbar {
  width: 2px;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children::-webkit-scrollbar-track,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu::-webkit-scrollbar-track {
  background-color: rgba(185, 185, 185, 0.3);
}
.header-category--hamburger .header-category__menu > ul > li > ul.children::-webkit-scrollbar-thumb,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu::-webkit-scrollbar-thumb {
  background-color: #7d828a;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li li,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li li {
  padding: 2px 32px;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li a,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li a {
  line-height: 2;
  padding: 0;
  display: inline-block;
  position: relative;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li a:after,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li a:hover:after, .header-category--hamburger .header-category__menu > ul > li > ul.children > li a:focus:after,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li a:hover:after,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li a:focus:after {
  width: 100%;
  left: 0;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li.menu-item-has-children,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li.menu-item-has-children {
  padding: 2px 0;
  position: relative;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li.menu-item-has-children::before,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li.menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li.menu-item-has-children:before,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li.menu-item-has-children:before {
  width: calc(100% - 56px);
  left: 32px;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li > a,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li > a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding: 11px 32px 8px;
  display: block;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li > a .shopwell-svg-icon,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li > a .shopwell-svg-icon {
  font-size: 11px;
  font-size: 0.6875rem;
  color: inherit;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li > a:after,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li > a:after {
  display: none;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children > li ul ul li,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu > li ul ul li {
  padding: 3px 0;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label {
  padding-top: 0;
  padding-bottom: 0;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label > a,
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label > h6,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label > a,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label > h6 {
  display: block;
  padding-top: 11px;
  padding-bottom: 8px;
  cursor: pointer;
  position: relative;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label > a::before,
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label > h6::before,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label > a::before,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label > h6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label > a .shopwell-svg-icon,
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label > h6 .shopwell-svg-icon,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label > a .shopwell-svg-icon,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label > h6 .shopwell-svg-icon {
  font-size: 11px;
  font-size: 0.6875rem;
  color: inherit;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label > a:after,
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label > h6:after,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label > a:after,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label > h6:after {
  display: none;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children li.menu-item--type-label.active .icon-plus,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu li.menu-item--type-label.active .icon-plus {
  display: none;
}
.header-category--hamburger .header-category__menu > ul > li > ul.children.mega-menu,
.header-category--hamburger .header-category__menu > ul > li > ul.sub-menu.mega-menu {
  background-image: none !important;
}
.header-category--hamburger .header-category__menu .mega-menu-container,
.header-category--hamburger .header-category__menu .mega-menu__column {
  width: 100% !important;
}
.header-category--hamburger .header-category__menu .mega-menu-container {
  padding: 0;
}
.header-category--hamburger .header-category__menu .mega-menu__row {
  flex-direction: column;
  margin: 0;
}
.header-category--hamburger .header-category__menu .mega-menu__column {
  padding: 0;
}
.header-category--hamburger .header-category__menu .mega-menu__column > .menu-sub-item {
  display: none;
  padding-top: 0;
  padding-bottom: 0;
}
.header-category--hamburger .header-category__menu .mega-menu__column > .menu-sub-item:last-child:not(.menu-item--type-label) {
  padding-bottom: 8px;
}
.header-category--hamburger .header-category__menu .mega-menu__column > .menu-item--type-label {
  display: block;
}
.header-category--hamburger .header-category__menu .mega-menu__column:first-child .menu-item--type-label:first-child > a:before,
.header-category--hamburger .header-category__menu .mega-menu__column:first-child .menu-item--type-label:first-child > h6:before {
  display: none;
}

.header-mobile-contents .header-left-items .header-hamburger {
  margin: 0;
}
.header-mobile-contents .header-left-items .header-hamburger .hamburger__icon {
  padding: 15px 15px 15px 0;
}

.mega-menu ul.mega-menu__column li.menu-item--type-label {
  padding-bottom: 12px;
}
.mega-menu ul.mega-menu__column li.menu-item--type-label h6 {
  font-weight: 500;
  line-height: 2;
  margin: 0;
}
.mega-menu ul.mega-menu__column li.menu-item--type-label:after {
  display: none;
}
.mega-menu ul.mega-menu__column .menu-item--type-bold strong {
  font-weight: 500;
}
.mega-menu ul.mega-menu__column .menu-item--type-hidden > span,
.mega-menu ul.mega-menu__column .menu-item--type-hidden > a {
  display: none !important;
}
.mega-menu ul.mega-menu__column .menu-item--type-empty {
  padding-bottom: 20px;
}
.mega-menu ul.mega-menu__column .menu-item--type-empty > span,
.mega-menu ul.mega-menu__column .menu-item--type-empty > a {
  text-indent: -9999em;
  display: block;
}
.mega-menu ul.mega-menu__column .menu-item + .menu-item--type-empty {
  padding-bottom: 4px;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image {
  text-align: center;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image:last-child {
  padding-bottom: 0;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--align-left {
  text-align: left;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--align-right {
  text-align: right;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-left {
  display: flex;
  align-items: center;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-left .menu-widget-image__content {
  margin-top: 0;
  margin-left: 13px;
  text-align: left;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-right {
  display: flex;
  align-items: center;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-right > *:first-child {
  order: 2;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-right .menu-widget-image__content {
  order: 1;
  text-align: right;
  margin-top: 0;
  margin-right: 13px;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-left.menu-item--align-left, .mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-right.menu-item--align-left {
  align-items: flex-start;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-left.menu-item--align-right, .mega-menu ul.mega-menu__column .menu-item--widget-image.menu-item--vertical-right.menu-item--align-right {
  align-items: flex-end;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image img {
  border: 1px solid rgba(185, 185, 185, 0.4);
  border-radius: 2px;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image a:after {
  display: none;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image .menu-widget-image__button {
  font-weight: 500;
}
.mega-menu ul.mega-menu__column .menu-item--widget-image .menu-widget-image__button:after {
  display: block;
}
.mega-menu ul.mega-menu__column .menu-widget-image__content {
  margin-top: 13px;
}
.mega-menu ul.mega-menu__column .menu-widget-image__desc {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
}
.mega-menu ul.mega-menu__column li.menu-item--widget-banner {
  float: left;
  max-width: 235px;
  margin: 12px;
  padding: 0;
}
.mega-menu ul.mega-menu__column li.menu-item--widget-banner .menu-widget-banner {
  position: relative;
  color: #fff;
}
.mega-menu ul.mega-menu__column .menu-widget-banner__content {
  position: absolute;
  left: 24px;
  bottom: 23px;
  z-index: 1;
}
.mega-menu ul.mega-menu__column .menu-widget-banner__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 24px;
}
.mega-menu ul.mega-menu__column .menu-widget-banner__button {
  color: inherit;
  margin-top: 16px;
}
.mega-menu ul.mega-menu__column .menu-widget-banner__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mega-menu__row {
  display: flex;
  margin: 0 -12px;
}

.mega-menu--grid ul.mega-menu__column {
  padding: 0 12px;
}
.mega-menu--grid ul.mega-menu__column .menu-item--widget-image {
  padding: 0 0 26px 0;
}

.mega-menu--tabs .mega-menu__tablist,
.mega-menu--tabs .mega-menu__panellist {
  float: left;
  width: 50%;
}
.mega-menu--tabs .mega-menu__tablist li {
  padding: 4px 12px;
}
.mega-menu--tabs .mega-menu__tablist li.active a:after {
  width: 100%;
  left: 0;
}
.mega-menu--tabs .mega-menu__tabpanel {
  display: none;
}
.mega-menu--tabs .mega-menu__tabpanel.active {
  display: block;
}
.mega-menu--tabs .mega-menu__tabpanel ul li a:hover:after {
  display: none;
}
.mega-menu--tabs .mega-menu__panellist {
  padding-bottom: 7px;
}

.header-return-button {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.header-return-button a {
  --shopwell-color__primary--box-shadow: transparent;
}
.header-return-button .shopwell-svg-icon {
  margin-right: 5px;
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}

.shopwell-return-button--default a {
  color: inherit;
}

.shopwell-return-button--base {
  --shopwell-size__header-item: 44px;
  --shopwell-color__primary: #1d2128;
  --shopwell-color__primary--dark: #1d2128;
  --shopwell-color__primary--darker: #1d2128;
  --shopwell-color__primary--light: #fff;
}

.header-history-button {
  --shopwell-color__primary--box-shadow: rgba(0, 0, 0, 0.16);
  --shopwell-color__primary: #fff;
  pointer-events: auto;
}
.header-history-button a {
  font-size: 17px;
  font-size: 1.0625rem;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  color: #7d828a;
}
.header-history-button a:hover, .header-history-button a:focus {
  background-color: transparent;
  box-shadow: 0px 4px 8px 0px var(--shopwell-color__primary--box-shadow);
}

.socials-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.socials-navigation .nav-menu {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  margin: 0 -11px;
}
.socials-navigation .nav-menu li {
  padding: 0 11px;
}
.socials-navigation .nav-menu a {
  font-size: 0;
  color: #7d828a;
}
.socials-navigation ul.menu > li > a .menu-item-icon {
  margin: 0;
}
.socials-navigation .menu-item-icon {
  font-size: 16px;
  font-size: 1rem;
}

.header-preferences {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-weight: 500;
}
.header-preferences .shopwell-button__icon {
  font-size: 14px;
  font-size: 0.875rem;
}
.header-preferences .shopwell-button__icon.shopwell-icon__flag {
  font-size: 16px;
  font-size: 1rem;
}
.header-preferences .shopwell-button__icon.shopwell-icon__flag + .shopwell-button__text {
  padding-left: 10px;
}
.header-preferences .shopwell-button__icon + .shopwell-button__text {
  padding-left: 6px;
  font-size: 12px;
  font-size: 0.75rem;
}
.header-preferences .shopwell-button__icon img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -3px;
  object-fit: cover;
  border-radius: 100%;
}
.header-preferences .shopwell-button__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.header-preferences .shopwell-button__text .shopwell-button__subtext {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}
.header-preferences .shopwell-button__text .shopwell-button__subtext + .shopwell-button__text--preferences {
  margin-top: 3px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  max-width: 100px;
  overflow: hidden;
}
.header-preferences .shopwell-button__text.language-code .shopwell-button__text--preferences {
  text-transform: uppercase;
}
.header-preferences .shopwell-button__text.language-code .shopwell-button__text--preferences .divider {
  margin-left: 0;
}
.header-preferences .shopwell-button--currency .shopwell-button__icon {
  font-size: 15px;
  font-size: 0.9375rem;
}
.header-preferences a {
  color: inherit;
}
.header-preferences a::after {
  display: none;
}

.header-preferences--header .shopwell-button__icon {
  font-size: 20px;
  font-size: 1.25rem;
}

.shopwell-button__text--preferences {
  transition: 0.3s;
}
.shopwell-button__text--preferences .divider {
  margin-left: 3px;
}

.header-items .header-preferences .shopwell-button {
  line-height: 1;
}

.topbar .header-preferences {
  display: inline;
  color: #7d828a;
}

.header-items .header-view-history {
  position: static;
  height: 100%;
}

.header-view-history {
  cursor: pointer;
}
.header-view-history .header-view-history__title {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 0 18px 0 0;
  display: flex;
  align-items: center;
  height: inherit;
}
.header-view-history .header-view-history__title:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #1d2128;
  position: absolute;
  left: 0;
  bottom: 0px;
  border: none;
  margin: 0;
  opacity: 0;
}
.header-view-history .header-view-history__title::after {
  display: none;
}
.header-view-history .header-view-history__name {
  font-weight: 500;
}
.header-view-history .header-view-history__arrow {
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  font-size: 11px;
  font-size: 0.6875rem;
  transition: 0.2s;
}
.header-view-history .header-view-history__button.shopwell-button {
  border-color: #1d2128;
  line-height: 1.3;
}
.header-view-history.shopwell-open .header-view-history__content {
  opacity: 1;
  pointer-events: initial;
  transform: translateY(0);
  visibility: visible;
  z-index: 100;
}
.header-view-history.shopwell-open > .shopwell-button--text:before {
  opacity: 1;
}

.header-view-history__content-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: initial;
  padding: 20px 0;
}

.header-view-history__content-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 32px;
}

.header-view-history__content {
  background-color: #fff;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  padding-bottom: 32px;
  min-width: 500px;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  visibility: hidden;
  transition: 0.25s;
}
.header-view-history__content .shopwell-pagination--loading {
  padding: 30px 0;
}
.header-view-history__content ul.products {
  text-align: left;
}

.header-view-history__wrapper {
  pointer-events: none;
  position: relative;
}
.header-view-history__wrapper > .swiper-container-initialized,
.header-view-history__wrapper > .swiper-initialized {
  position: relative;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.header-view-history__wrapper > .swiper-container-initialized:hover,
.header-view-history__wrapper > .swiper-initialized:hover {
  z-index: 3;
}
.header-view-history__wrapper ul.products {
  flex-wrap: nowrap;
  z-index: 1;
}
.header-view-history__wrapper ul.products li.product {
  flex-shrink: 0;
  margin-bottom: 0;
}
.header-view-history__wrapper ul.products li.product div.product-inner {
  pointer-events: auto;
  padding-bottom: 0;
}
.header-view-history__wrapper ul.products li.product div.product-inner .product-actions .button {
  padding: 0;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 1px;
  height: 100%;
  background-color: #ebeff3;
  transition: 0.3s;
  z-index: 10;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-inner:hover {
  box-shadow: none;
  border-color: rgba(185, 185, 185, 0.4);
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-featured-icons {
  display: none;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary .meta-wrapper {
  display: none;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary .price {
  display: inline-flex;
  flex-wrap: nowrap;
  margin-bottom: 0px;
  order: 2;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary .price .woocs_price_code {
  display: inline-flex;
  flex-wrap: nowrap;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary .price ins {
  margin-right: 6px;
  color: #dd2831;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary .price del {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #7d828a;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary .price del,
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary .price ins {
  width: auto;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-summary .woocommerce-loop-product__title {
  font-size: 12px;
  font-size: 0.75rem;
  order: 1;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .shopwell-rating {
  display: none;
}
.header-view-history__wrapper ul.products.product-card-layout-recently li.product .product-actions {
  display: none;
}
.header-view-history__wrapper .shopwell-swiper-button {
  position: absolute;
  pointer-events: initial;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.header-view-history__wrapper .shopwell-swiper-button-prev {
  left: 0;
}
.header-view-history__wrapper .shopwell-swiper-button-next {
  right: 0;
}
.header-view-history__wrapper .no-products {
  text-align: center;
  width: 100%;
}
.header-view-history__wrapper .no-products p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
.header-view-history__wrapper .swiper-slide-active::before {
  opacity: 0;
}

.header-transparent .site-header__section {
  --shopwell-header-bc: transparent;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
  padding-top: 0;
  padding-bottom: 0;
}

.header-transparent-text-light .site-header__section:not(.minimized) {
  color: #fff;
}
.header-transparent-text-light .header-logo .logo-light + .logo-dark {
  display: none;
}
.header-transparent-text-light .site-header__section.minimized .logo-dark {
  display: block;
}
.header-transparent-text-light .site-header__section.minimized .logo-light {
  display: none;
}

.header-transparent.site-header .header-sticky,
.header-transparent.site-header .header-mobile-sticky {
  position: fixed;
  background-color: #fff;
}

.site-header__section.minimized .header-sticky,
.site-header__section.minimized .header-mobile-sticky {
  animation-name: fadeInDown;
  animation-duration: 0.15s;
  opacity: 1;
  pointer-events: initial;
  visibility: visible;
}
.site-header__section.minimized .header-sticky.header-contents .shopwell-skin--raised.header-search--form {
  --shopwell-size__header-item: 48px;
}
.site-header__section.minimized .header-sticky .header-search--form {
  --shopwell-search__height: 48px;
}
.site-header__section .header-sticky,
.site-header__section .header-mobile-sticky {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1001;
  border-bottom: none;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background-color: var(--shopwell-header-bc);
}
.site-header__section .header-sticky.headroom--not-top,
.site-header__section .header-mobile-sticky.headroom--not-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1400;
  opacity: 1;
  visibility: inherit;
  pointer-events: auto;
}
.site-header__section .headroom--pinned {
  transform: translateY(0%);
}
.site-header__section .headroom--unpinned {
  transform: translateY(-100%);
}
.site-header__section .headroom {
  will-change: transform;
  transition: transform 250ms linear;
}

.admin-bar .site-header .header-sticky {
  top: 32px;
}

.header-sticky {
  height: 80px;
  box-shadow: 0 1px 1px 0 var(--shopwell-header-border-color);
}
.header-sticky .header-category-menu.header-category--both > .shopwell-button--ghost {
  height: 48px;
}

.header-mobile-sticky {
  height: 64px;
  box-shadow: 0 1px 1px 0 var(--shopwell-header-border-color);
}

.site-header__mobile {
  display: none;
}
.site-header__mobile .header-right-items > * {
  margin-left: 20px;
}

.header-mobile-main {
  background-color: var(--shopwell-header-main-background-color);
  height: 62px;
}
.header-mobile-main .header-left-items > * {
  margin-right: 15px;
}
.header-mobile-main .header-left-items > *:last-child {
  margin-right: 0;
}

.header-mobile-bottom {
  height: 48px;
}
.header-mobile-bottom .header-left-items,
.header-mobile-bottom .header-right-items {
  padding: 0;
}
.header-mobile-bottom .header-left-items > *,
.header-mobile-bottom .header-right-items > * {
  margin: 0 0 20px 0;
}
.header-mobile-bottom .header-left-items > *:last-child,
.header-mobile-bottom .header-right-items > *:last-child {
  margin: 0;
}
.header-mobile-bottom .header-items {
  flex-direction: column;
}

.header-mobile-contents .header-items {
  max-width: 100%;
}
.shopwell-skin--raised .header-mobile-contents .header-items {
  --shopwell-size__header-item: 48px;
}
.header-mobile-contents .header-items .shopwell-button--subtle,
.header-mobile-contents .header-items .shopwell-button--text {
  --shopwell-color__primary: #1d2128;
}
.header-mobile-contents .header-left-items > *:first-child {
  margin-left: 0;
}
.header-mobile-contents .header-logo {
  flex: 1 0 100%;
}

.header-mobile-v4.shopwell-skin--raised .header-mobile-contents .header-items {
  --shopwell-size__header-item: 40px;
}

.header-v2 .header-mobile-sticky {
  box-shadow: none;
}
.header-v2 .header-mobile-main {
  height: 64px;
}
.header-v2 .header-mobile-bottom {
  height: 64px;
}
.header-v2 .header-mobile-search {
  color: inherit;
}
.header-v2 .header-mobile-search .shopwell-button--text {
  color: inherit;
}
.header-v2 .header-mobile-search .shopwell-button--icon span {
  color: inherit;
}

.header-v3 .header-mobile-sticky {
  box-shadow: none;
}
.header-v3 .header-mobile-main {
  height: 64px;
}
.header-v3 .header-mobile-bottom {
  height: 64px;
}
.header-v3 .header-mobile-search {
  color: inherit;
}
.header-v3 .header-mobile-search .shopwell-button--text {
  color: inherit;
}
.header-v3 .header-mobile-search .shopwell-button--icon span {
  color: inherit;
}

.header-v4 .header-mobile-contents .header-right-items > * {
  margin-left: 10px;
}
.header-v4 .header-mobile-contents .header-right-items > *:first-child {
  margin-left: 0;
}
.header-v4 .header-mobile-main {
  height: 64px;
  border-bottom: 1px solid var(--shopwell-header-border-color);
}
.header-v4 .header-mobile-main .header-items {
  --shopwell-size__medium: 40px;
  --shopwell-size__header-item: 40px;
}
.header-v4 .header-mobile-sticky .header-items {
  --shopwell-size__medium: 40px;
  --shopwell-size__header-item: 40px;
}

.header-v6 .header-mobile-sticky {
  box-shadow: none;
}
.header-v6 .header-mobile-main {
  height: 64px;
}
.header-v6 .header-mobile-bottom {
  height: 64px;
}
.header-v6 .header-mobile-search {
  color: inherit;
}
.header-v6 .header-mobile-search .shopwell-button--text {
  color: inherit;
}
.header-v6 .header-mobile-search .shopwell-button--icon span {
  color: inherit;
}

.header-v7 .header-mobile-sticky {
  box-shadow: none;
}
.header-v7 .header-mobile-bottom {
  height: 64px;
}
.header-v7 .header-mobile-contents .header-right-items > * {
  margin-left: 25px;
}
.header-v7 .header-mobile-contents .header-right-items > *:first-child {
  margin-left: 0;
}
.header-v7 .header-mobile-search {
  color: inherit;
}
.header-v7 .header-mobile-search .shopwell-button--text {
  color: inherit;
}
.header-v7 .header-mobile-search .shopwell-button--icon span {
  color: inherit;
}

.header-v8 .header-mobile-bottom {
  height: 110px;
}
.header-v8 .header-mobile-bottom .primary-navigation {
  position: relative;
  padding: 10px 0;
  width: 100%;
}
.header-v8 .header-mobile-bottom .primary-navigation:before, .header-v8 .header-mobile-bottom .primary-navigation:after {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  height: 1px;
  width: calc(100% + 30px);
  background-color: var(--shopwell-header-border-color);
}
.header-v8 .header-mobile-bottom .primary-navigation:before {
  top: 0;
}
.header-v8 .header-mobile-bottom .primary-navigation:after {
  bottom: 0;
}

.header-v9.site-header__mobile {
  --shopwell-header-bc: #08091b;
  --shopwell-header-color: #fff;
}
.header-v9 .header-mobile-main {
  background-color: inherit;
}
.header-v9 .header-mobile-sticky:not(.header-bottom) {
  --shopwell-header-background-color: #08091b;
  --shopwell-header-main-text-color: #fff;
  --shopwell-input__border-width: 0;
  box-shadow: none;
}
.header-v9 .header-mobile-bottom {
  height: 105px;
  background-color: inherit;
  --shopwell-header-mobile-bottom-bc: #fff;
  --shopwell-header-mobile-bottom-tc: #1d2128;
}
.header-v9 .header-mobile-bottom .header-left-items > * {
  margin-bottom: 15px;
}
.header-v9 .header-mobile-bottom .primary-navigation {
  position: relative;
  padding: 10px 0;
  margin: 0;
  background-color: var(--shopwell-header-mobile-bottom-bc);
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
  max-width: initial;
  padding-left: 16px;
  color: var(--shopwell-header-mobile-bottom-tc);
}
.header-v9 .header-mobile-bottom .primary-navigation:before, .header-v9 .header-mobile-bottom .primary-navigation:after {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  height: 1px;
  width: calc(100% + 30px);
  background-color: var(--shopwell-header-border-color);
}
.header-v9 .header-mobile-bottom .primary-navigation:before {
  top: 0;
}
.header-v9 .header-mobile-bottom .primary-navigation:after {
  bottom: 0;
}
.header-v9 .header-mobile-search {
  color: inherit;
}
.header-v9 .header-mobile-search .shopwell-button--text {
  color: inherit;
}
.header-v9 .header-mobile-search .shopwell-button--icon span {
  color: inherit;
}

.header-v10 .header-mobile-bottom {
  height: 100px;
}
.header-v10 .header-mobile-bottom .header-left-items > * {
  margin-bottom: 15px;
}
.header-v10 .header-mobile-bottom .primary-navigation {
  position: relative;
  padding: 10px 0 7px;
  width: 100%;
}
.header-v10 .header-mobile-bottom .primary-navigation:before, .header-v10 .header-mobile-bottom .primary-navigation:after {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  height: 1px;
  width: calc(100% + 30px);
  background-color: var(--shopwell-header-border-color);
}
.header-v10 .header-mobile-bottom .primary-navigation:before {
  top: 0;
}
.header-v10 .header-mobile-bottom .primary-navigation:after {
  display: none;
  bottom: 0;
}

.header-v12 .header-mobile-contents .header-left-items {
  flex: 0 0 auto;
}

.header-v13 .header-mobile-sticky {
  box-shadow: none;
}
.header-v13 .header-mobile-main {
  height: 64px;
}
.header-v13 .header-mobile-bottom {
  height: 64px;
}
.header-v13 .header-mobile-search {
  color: inherit;
}
.header-v13 .header-mobile-search .shopwell-button--text {
  color: inherit;
}
.header-v13 .header-mobile-search .shopwell-button--icon span {
  color: inherit;
}

/* page-Header
--------------------------------------------- */
.site-breadcrumb {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1d2128;
  padding-top: 17px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.site-breadcrumb > p {
  margin: 0;
}
.site-breadcrumb a,
.site-breadcrumb span {
  color: #7d828a;
}
.site-breadcrumb a:focus {
  text-decoration: underline;
}
.site-breadcrumb .separator {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.site-breadcrumb .shopwell-svg-icon {
  font-size: 8px;
  font-size: 0.5rem;
  margin-left: 8px;
  margin-right: 9px;
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}

.page-header .page-header__title {
  font-size: 54px;
  font-size: 3.375rem;
  margin-top: 54px;
  margin-bottom: 0;
}
.page-header .page-header__content {
  text-align: center;
}
.page-header .page-header__description {
  color: #1d2128;
  line-height: 1.75;
  width: 65%;
  margin: 10px auto 0;
}
.page-header .page-header__description p {
  margin: 0;
}
.page-header .site-breadcrumb + .page-header__content {
  margin-top: 10px;
}

.shopwell-blog-page .site-header:after {
  display: none;
}
.shopwell-blog-page .page-header__title {
  margin-top: 35px;
}
.shopwell-blog-page .page-header {
  border-top: 1px solid #ebeff3;
  margin-top: -1px;
}
.shopwell-blog-page:not(.shopwell-catalog-page) .page-header__content {
  padding-bottom: 35px;
}

.page-header--archive-post .page-header__content {
  padding-bottom: 44px;
  margin-bottom: 25px;
  position: relative;
}
.page-header--archive-post .page-header__content::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}

.search-no-results .no-results .page-title {
  margin-top: 0;
}

.shopwell-search__heading {
  margin-top: 0;
}

/* Footer
--------------------------------------------- */
.site-footer {
  clear: both;
}

.site-footer-widget {
  background-color: #f5f5f5;
}
.site-footer-widget .footer-main {
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-gap: 1.6rem;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.site-footer-widget .footer-main .shopwell-no-widget {
  text-align: center;
}
.site-footer-widget .footer-main .shopwell-no-widget .no-widget-text {
  margin-bottom: 0;
  margin-top: 5px;
}
.site-footer-widget ol li a,
.site-footer-widget ul:not(.wp-block-categories, .wp-block-archives) li a {
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-footer-widget ol li a:focus, .site-footer-widget ol li a:hover,
.site-footer-widget ul:not(.wp-block-categories, .wp-block-archives) li a:focus,
.site-footer-widget ul:not(.wp-block-categories, .wp-block-archives) li a:hover {
  background-size: 100% 1px;
}
.site-footer-widget p a {
  color: var(--shopwell-color__primary);
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-footer-widget p a:focus, .site-footer-widget p a:hover {
  background-size: 100% 1px;
}
.site-footer-widget .footer-copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(185, 185, 185, 0.4);
}
.site-footer-widget .footer-copyright .copyright a {
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-footer-widget .footer-copyright .copyright a:focus, .site-footer-widget .footer-copyright .copyright a:hover {
  background-size: 100% 1px;
}

#gotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  width: 38px;
  height: 38px;
  background-color: #1d2128;
  color: #fff;
  box-shadow: 0px 2px 6px 0px var(--shopwell-input__box-shadow);
  justify-content: center;
  align-items: center;
  opacity: 0;
  border-radius: 50%;
  transform: translateY(100%);
  transition: all 0.25s ease;
}
#gotop.show-scroll {
  opacity: 1;
  transform: translateY(0);
}

/*rtl:raw:
#gotop.show-scroll {
    transform: translateX(0);
}
*/
.footer-mobile {
  display: none;
}

.account-panel .panel__header {
  display: flex;
  align-items: center;
  padding: 32px 32px 0;
}

.account-panel__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #1d2128;
  border-radius: 100%;
  margin-right: 16px;
}
.account-panel__avatar img {
  border-radius: 100%;
}
.account-panel__avatar span {
  font-size: inherit;
  color: #ebeff3;
}
.account-panel__avatar.logged {
  background-color: transparent;
}

.account-panel__name {
  text-transform: capitalize;
}

.account-panel__links {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.account-panel__link a {
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  color: #1d2128;
  padding: 15px 33px;
  position: relative;
  justify-content: left;
  line-height: 1;
  display: inline-flex;
  font-weight: 500;
}
.account-panel__link a:after {
  display: none;
}
.account-panel__link a:hover {
  background-color: #ebeff3;
}
.account-panel__link a .shopwell-button__icon,
.account-panel__link a .menu-item-icon {
  font-size: 20px;
  font-size: 1.25rem;
  min-width: 49px;
}
.account-panel__link a .header-counter {
  top: 3px;
  left: 44px;
  background-color: #1d2128;
  color: #fff;
}
.account-panel__link .account-panel__icon {
  min-width: 49px;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
}
.account-panel__link .account-panel__icon .counter {
  position: absolute;
  top: -7px;
  left: 17px;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #ffffff;
  background-color: #1d2128;
  border-radius: 100%;
  text-align: center;
  min-width: 20px;
  height: 20px;
  line-height: 24px;
}
.account-panel__link .account-panel__label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 2px;
}
.account-panel__link ul.menu {
  padding: 0;
  margin: 0;
}

.cart-panel .panel__content {
  flex: 1;
  overflow-y: auto;
}

.header-hamburger {
  line-height: 1;
  outline: none;
  cursor: pointer;
}
.header-hamburger:focus svg {
  outline: 1px dotted;
  outline-offset: 3px;
}

.hamburger-panel__name {
  justify-content: left;
  padding: 0;
  background-color: transparent;
  color: #1d2128;
  line-height: 40px;
}
.hamburger-panel__name .shopwell-button__icon {
  margin-right: 10px;
}
.hamburger-panel__name .shopwell-button__icon img {
  border-radius: 50%;
}
.hamburger-panel__name:hover, .hamburger-panel__name:focus {
  background-color: transparent;
}

.hamburger-panel .panel__button-close {
  top: 21px;
  right: 24px;
}
.hamburger-panel .panel__header {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  background-color: rgba(185, 185, 185, 0.4);
  min-height: 60px;
}
.hamburger-panel .panel__container {
  width: 320px;
  overflow: hidden;
}
.hamburger-panel .panel__container.shopwell-open .header-category__box {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.hamburger-panel .panel__content {
  padding: 15px 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-color: #7d828a rgba(185, 185, 185, 0.3);
  scrollbar-width: thin;
}
.hamburger-panel .panel__content::-webkit-scrollbar {
  width: 2px;
}
.hamburger-panel .panel__content::-webkit-scrollbar-track {
  background-color: rgba(185, 185, 185, 0.3);
}
.hamburger-panel .panel__content::-webkit-scrollbar-thumb {
  background-color: #7d828a;
}
.hamburger-panel .hamburger-panel__item .shopwell-button__icon {
  margin-right: 24px;
}
.hamburger-panel .hamburger-panel__item .shopwell-button {
  width: 100%;
  color: #1d2128;
  padding: 15px 33px;
  position: relative;
  justify-content: left;
  /*rtl:raw:
      justify-content: right;
  */
}
.hamburger-panel .hamburger-panel__item .shopwell-button:after {
  display: none;
}
.hamburger-panel .hamburger-panel__item .shopwell-button:focus, .hamburger-panel .hamburger-panel__item .shopwell-button:hover {
  background-color: #ebeff3;
}
.hamburger-panel .hamburger-panel__item .header-counter {
  right: 33px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-panel .account-panel__link a {
  padding: 10px 32px;
}
.hamburger-panel .account-panel__link a .header-counter {
  top: 10px;
  right: 32px;
  left: auto;
}
.hamburger-panel .custom-menu-navigation ul.menu > li > a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 15px 33px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.hamburger-panel .custom-menu-navigation ul.menu > li > a .menu-item-icon {
  margin-right: 24px;
  font-size: 20px;
}
.hamburger-panel .custom-menu-navigation ul.menu > li > a:hover {
  background-color: #ebeff3;
}
.hamburger-panel .account-panel__icon {
  margin-right: 24px;
  min-width: auto;
}
.hamburger-panel .header-category-menu {
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 15px;
}
.hamburger-panel .header-category__menu > ul {
  padding-bottom: 0;
}
.hamburger-panel .header-category__name {
  font-size: inherit;
}
.hamburger-panel .header-category__icon,
.hamburger-panel .header-category__arrow {
  display: none;
}
.hamburger-panel .header-category__title {
  height: auto;
  border: none;
  padding: 0 32px 15px;
  justify-content: space-between;
}
.hamburger-panel .header-category__content {
  position: static;
  opacity: 1;
  transform: none;
  margin: 12px 0;
  box-shadow: none;
  pointer-events: inherit;
}
.hamburger-panel .header-category__content .header-category__menu ul.menu > li > a > .menu-item-icon {
  margin-right: 24px;
  transform: translateY(2px);
}
.hamburger-panel .header-category__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 160px;
  width: 320px;
  background-color: #1d2128;
  color: #fff;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 24px;
  z-index: 10;
  transition: 0.3s;
}
.hamburger-panel .header-category__box.has-image .header-category__box-image {
  display: block;
}
.hamburger-panel .account-panel__links {
  padding: 5px 0;
}
.hamburger-panel .main-navigation {
  display: block;
  height: auto;
  margin-bottom: 18px;
}
.hamburger-panel .main-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.hamburger-panel .main-navigation > ul > li {
  position: static;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.hamburger-panel .main-navigation > ul > li.shopwell-open > ul.children,
.hamburger-panel .main-navigation > ul > li.shopwell-open > ul.sub-menu {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.hamburger-panel .main-navigation > ul > li > a {
  padding: 7px 32px 5px;
  width: 100%;
  line-height: 2;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
}
.hamburger-panel .main-navigation > ul > li > a:after {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > a .icon-arrow {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-panel .main-navigation > ul > li > a .icon-arrow svg {
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}
.hamburger-panel .main-navigation > ul > li .toggle-submenu {
  width: 32px;
  height: 32px;
  background-color: transparent;
  box-shadow: none;
  margin-right: 22px;
  color: #1d2128;
}
.hamburger-panel .main-navigation > ul > li .toggle-submenu:hover {
  box-shadow: none;
}
.hamburger-panel .main-navigation > ul > li .toggle-submenu:focus {
  outline: 1px dotted;
}
.hamburger-panel .main-navigation > ul > li .toggle-submenu:after {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu {
  position: absolute;
  left: 0;
  top: 160px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 320px;
  background-color: #fff;
  height: calc(100% - 160px);
  overflow-y: auto;
  border-top: 0;
  padding: 18px 0;
  z-index: 9;
  transition: 0.3s;
  scroll-behavior: smooth;
  scrollbar-color: #7d828a rgba(185, 185, 185, 0.3);
  scrollbar-width: thin;
}
.hamburger-panel .main-navigation > ul > li > ul.children::-webkit-scrollbar,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu::-webkit-scrollbar {
  width: 2px;
}
.hamburger-panel .main-navigation > ul > li > ul.children::-webkit-scrollbar-track,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu::-webkit-scrollbar-track {
  background-color: rgba(185, 185, 185, 0.3);
}
.hamburger-panel .main-navigation > ul > li > ul.children::-webkit-scrollbar-thumb,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu::-webkit-scrollbar-thumb {
  background-color: #7d828a;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu {
  background-image: none !important;
}
.hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) li {
  padding: 7px 32px;
}
.hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) li li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) li li {
  padding: 2px 15px;
}
.hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) li > a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) li > a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  transition: 0.4s;
}
.hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) li > a:focus,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) li > a:focus {
  outline: 1px dotted;
  outline-offset: 1px;
}
.hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) li > a:focus, .hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) li > a:hover,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) li > a:focus,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) li > a:hover {
  color: var(--shopwell-color__primary);
}
.hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) > li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) > li {
  position: relative;
}
.hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) > li::before,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) > li::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.hamburger-panel .main-navigation > ul > li > ul.children:not(.mega-menu) > li:before,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu:not(.mega-menu) > li:before {
  width: calc(100% - 56px);
  left: 32px;
  display: block;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li li > a,
.hamburger-panel .main-navigation > ul > li > ul.children > li > h6,
.hamburger-panel .main-navigation > ul > li > ul.children > li > a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li li > a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > h6,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  display: block;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li li > a .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.children > li > h6 .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.children > li > a .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li li > a .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > h6 .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > a .shopwell-svg-icon {
  font-size: 11px;
  font-size: 0.6875rem;
  color: inherit;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li li > a:after,
.hamburger-panel .main-navigation > ul > li > ul.children > li > h6:after,
.hamburger-panel .main-navigation > ul > li > ul.children > li > a:after,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li li > a:after,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > h6:after,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > a:after {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li li > a.has-title + ul,
.hamburger-panel .main-navigation > ul > li > ul.children > li > h6.has-title + ul,
.hamburger-panel .main-navigation > ul > li > ul.children > li > a.has-title + ul,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li li > a.has-title + ul,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > h6.has-title + ul,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > a.has-title + ul {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li li > a.has-title + ul > li,
.hamburger-panel .main-navigation > ul > li > ul.children > li > h6.has-title + ul > li,
.hamburger-panel .main-navigation > ul > li > ul.children > li > a.has-title + ul > li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li li > a.has-title + ul > li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > h6.has-title + ul > li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > a.has-title + ul > li {
  padding: 3px 32px;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li li > a.has-title + ul li:last-child,
.hamburger-panel .main-navigation > ul > li > ul.children > li > h6.has-title + ul li:last-child,
.hamburger-panel .main-navigation > ul > li > ul.children > li > a.has-title + ul li:last-child,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li li > a.has-title + ul li:last-child,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > h6.has-title + ul li:last-child,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li > a.has-title + ul li:last-child {
  padding-bottom: 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li li {
  padding: 2px 32px;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li li > a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li li > a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li a {
  line-height: 2;
  padding: 0;
  display: inline-block;
  position: relative;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li a:after,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li a:hover:after, .hamburger-panel .main-navigation > ul > li > ul.children > li a:focus:after,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li a:hover:after,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li a:focus:after {
  width: 100%;
  left: 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li.page_item_has_children, .hamburger-panel .main-navigation > ul > li > ul.children > li.menu-item-has-children,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li.page_item_has_children,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li.menu-item-has-children {
  padding-right: 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li.page_item_has_children > a, .hamburger-panel .main-navigation > ul > li > ul.children > li.menu-item-has-children > a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li.page_item_has_children > a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li.menu-item-has-children > a {
  width: 82%;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li.page_item_has_children > a + .shopwell-svg-icon, .hamburger-panel .main-navigation > ul > li > ul.children > li.menu-item-has-children > a + .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li.page_item_has_children > a + .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li.menu-item-has-children > a + .shopwell-svg-icon {
  font-size: 11px;
  font-size: 0.6875rem;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  outline: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li.page_item_has_children > a + .shopwell-svg-icon:focus, .hamburger-panel .main-navigation > ul > li > ul.children > li.menu-item-has-children > a + .shopwell-svg-icon:focus,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li.page_item_has_children > a + .shopwell-svg-icon:focus,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li.menu-item-has-children > a + .shopwell-svg-icon:focus {
  outline: 1px dotted;
  outline-offset: 3px;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li ul,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li ul {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li ul ul,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li ul ul {
  padding-left: 10px;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li ul ul li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li ul ul li {
  padding: 3px 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li ul.mega-menu__column,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li ul.mega-menu__column {
  display: block;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li ul.mega-menu-main,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li ul.mega-menu-main {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children > li .menu-item--widget > ul,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu > li .menu-item--widget > ul {
  display: block;
}
.hamburger-panel .main-navigation > ul > li > ul.children li.active > a + .shopwell-svg-icon .icon-plus,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.active > a + .shopwell-svg-icon .icon-plus {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label {
  padding-top: 0;
  padding-bottom: 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label > a,
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label > h6,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label > a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label > h6 {
  display: block;
  padding-top: 11px;
  padding-bottom: 8px;
  cursor: pointer;
  position: relative;
}
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label > a::before,
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label > h6::before,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label > a::before,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label > h6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label > a .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label > h6 .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label > a .shopwell-svg-icon,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label > h6 .shopwell-svg-icon {
  font-size: 11px;
  font-size: 0.6875rem;
  color: inherit;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label > a:after,
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label > h6:after,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label > a:after,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label > h6:after {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children li.menu-item--type-label.active .icon-plus,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu li.menu-item--type-label.active .icon-plus {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--tabs .mega-menu__tablist,
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--tabs .mega-menu__panellist,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--tabs .mega-menu__tablist,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--tabs .mega-menu__panellist {
  width: 100%;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--tabs ul.mega-menu__tablist,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--tabs ul.mega-menu__tablist {
  display: block;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--tabs .mega-menu__panellist,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--tabs .mega-menu__panellist {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--tabs .mega-menu__panellist ul ul,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--tabs .mega-menu__panellist ul ul {
  padding: 0;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--behavior-click ul.mega-menu__tablist,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--behavior-click ul.mega-menu__tablist {
  display: flex;
  overflow-x: auto;
  padding-left: 20px;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--behavior-click ul.mega-menu__tablist::-webkit-scrollbar,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--behavior-click ul.mega-menu__tablist::-webkit-scrollbar {
  display: none;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--behavior-click ul.mega-menu__tablist li,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--behavior-click ul.mega-menu__tablist li {
  padding: 4px 12px;
}
.hamburger-panel .main-navigation > ul > li > ul.children.mega-menu--behavior-click ul.mega-menu__tablist li a,
.hamburger-panel .main-navigation > ul > li > ul.sub-menu.mega-menu--behavior-click ul.mega-menu__tablist li a {
  font-weight: 500;
}
.hamburger-panel .main-navigation > ul > li .mega-menu-container,
.hamburger-panel .main-navigation > ul > li .mega-menu__column {
  width: 100% !important;
}
.hamburger-panel .main-navigation > ul > li .mega-menu-container {
  padding: 0;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__row {
  flex-direction: column;
  margin: 0;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__row .mega-menu__column:first-child > li {
  padding-left: 32px;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__row .mega-menu__column:last-child > li {
  padding-right: 32px;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__column > .menu-sub-item {
  display: none;
  padding-top: 0;
  padding-bottom: 0;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__column > .menu-sub-item:last-child:not(.menu-item--type-label) {
  padding-bottom: 8px;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__column > .menu-item--type-label {
  display: block;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__column:first-child .menu-item--type-label:first-child > a:before,
.hamburger-panel .main-navigation > ul > li .mega-menu__column:first-child .menu-item--type-label:first-child > h6:before {
  display: none;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__column .menu-item--widget-image {
  text-align: left;
  line-height: 2;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__column .menu-item--widget-image img {
  display: none;
}
.hamburger-panel .main-navigation > ul > li .mega-menu__column .menu-item--widget-image .menu-widget-image__content {
  margin-top: 0;
}
.hamburger-panel .main-navigation > ul > li .mega-menu-main .menu-item {
  width: 100%;
}
.hamburger-panel .main-navigation > ul > li .mega-menu-main > li > a {
  margin-bottom: 0;
}
.hamburger-panel ul.menu .link-disabled {
  pointer-events: inherit;
}
.hamburger-panel .menu-taxonomy-grid-widget__heading {
  display: none;
}
.hamburger-panel .menu-item--type-empty {
  display: none;
}
.hamburger-panel .preferences-menu {
  margin-top: 30px;
}

.hamburger-header-v11-panel {
  --shopwell-input__height: 44px;
}
.hamburger-header-v11-panel .panel__header {
  background-color: transparent;
}
.hamburger-header-v11-panel .header-search {
  padding: 0 32px;
  margin-bottom: 40px;
}
.hamburger-header-v11-panel .header-search__icon {
  margin-left: 14px;
}
.hamburger-header-v11-panel .socials-navigation {
  padding: 8px 32px;
}
.hamburger-header-v11-panel .socials-navigation .nav-menu {
  margin: 0 -15px;
}
.hamburger-header-v11-panel .socials-navigation .nav-menu li {
  padding: 0 15px;
}
.hamburger-header-v11-panel .socials-navigation .menu-item-icon {
  font-size: 20px;
  font-size: 1.25rem;
}

.hamburger-header-v12-panel .panel__header {
  background-color: transparent;
  padding: 15px 24px;
}
.hamburger-header-v12-panel .header-logo {
  z-index: 1;
}

.preferences-menu {
  padding: 0 32px;
}
.preferences-menu .preferences-menu__heading {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d2128;
}
.preferences-menu ul {
  list-style: none;
  padding: 0;
}
.preferences-menu li {
  padding: 7px 0;
}
.preferences-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
}
.preferences-menu li a span {
  color: #1d2128;
}
.preferences-menu li a span::after {
  display: none;
}
.preferences-menu li a .shopwell-button__icon {
  font-size: 14px;
  font-size: 0.875rem;
}
.preferences-menu li a .shopwell-button__icon + .shopwell-button__text {
  padding-left: 22px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
.preferences-menu li a > .shopwell-svg-icon {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
}
.preferences-menu li a > .shopwell-svg-icon.shopwell-svg-icon--right {
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}
.preferences-menu li.preferences-menu__item > a {
  padding: 7px 0 5px;
  width: 100%;
  line-height: 2;
}
.preferences-menu li.shopwell-open .preferences-menu__item-child {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.preferences-menu .preferences-menu__item-child {
  position: absolute;
  left: 0;
  top: 160px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 320px;
  height: calc(100% - 160px);
  background-color: #fff;
  overflow-y: auto;
  padding: 18px 0;
  transition: 0.5s;
  z-index: 100;
}
.preferences-menu .preferences-menu__item-child li a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 2px 32px;
  margin: 0;
  line-height: 3;
  width: 100%;
  color: #1d2128;
}
.preferences-menu .preferences-menu__item-child li .shopwell-svg-icon {
  opacity: 0;
  font-size: 18px;
  font-size: 1.125rem;
  color: #1d2128;
}
.preferences-menu .preferences-menu__item-child li:hover {
  background-color: rgba(185, 185, 185, 0.4);
}
.preferences-menu .preferences-menu__item-child li.active {
  background-color: rgba(185, 185, 185, 0.4);
}
.preferences-menu .preferences-menu__item-child li.active .shopwell-svg-icon {
  opacity: 1;
}
.preferences-menu .preferences-menu__item-child .currency_button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 2px 32px;
  margin: 0;
  line-height: 3;
  width: 100%;
  color: #1d2128;
}
.preferences-menu .preferences-menu__item-child .currency_button:after {
  display: none;
}
.preferences-menu .preferences-menu__item-child .currency_button .shopwell-svg-icon {
  opacity: 0;
  font-size: 18px;
  font-size: 1.125rem;
  color: #1d2128;
}
.preferences-menu .preferences-menu__item-child .currency_button:hover {
  background-color: rgba(185, 185, 185, 0.4);
}
.preferences-menu .preferences-menu__item-child .currency_button.active {
  background-color: rgba(185, 185, 185, 0.4);
}
.preferences-menu .preferences-menu__item-child .currency_button.active .shopwell-svg-icon {
  opacity: 1;
}

.quick-view-panel .panel__button-close {
  z-index: 99;
}
.quick-view-panel .panel__loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.quick-view-panel.loading .product-quickview {
  opacity: 0;
}
.quick-view-panel.loading .panel__loader {
  display: block;
}
.quick-view-panel .panel__content {
  padding: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-color: #1d2128 rgba(125, 130, 138, 0.3);
  scrollbar-width: thin;
}
.quick-view-panel .panel__content::-webkit-scrollbar {
  width: 2px;
}
.quick-view-panel .panel__content::-webkit-scrollbar-track {
  background-color: rgba(125, 130, 138, 0.3);
}
.quick-view-panel .panel__content::-webkit-scrollbar-thumb {
  background-color: #1d2128;
}
.quick-view-panel .woocommerce-product-gallery {
  position: relative;
}
.quick-view-panel .woocommerce-product-gallery .product-image__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.quick-view-panel .woocommerce-product-gallery figure {
  margin: 0;
}
.quick-view-panel .woocommerce-product-gallery ul, .quick-view-panel .woocommerce-product-gallery ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-view-panel .woocommerce-product-gallery .flex-nav-prev {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  z-index: 1;
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.quick-view-panel .woocommerce-product-gallery .flex-nav-prev .shopwell-svg-icon {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #7d828a;
  transition: 0.4s;
}
.quick-view-panel .woocommerce-product-gallery .flex-nav-prev .shopwell-svg-icon:hover {
  color: #1d2128;
}
.quick-view-panel .woocommerce-product-gallery .flex-nav-next {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 1;
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.quick-view-panel .woocommerce-product-gallery .flex-nav-next .shopwell-svg-icon {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #7d828a;
  transition: 0.4s;
}
.quick-view-panel .woocommerce-product-gallery .flex-nav-next .shopwell-svg-icon:hover {
  color: #1d2128;
}
.quick-view-panel .woocommerce-product-gallery .flex-control-nav {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 1;
}
.quick-view-panel .woocommerce-product-gallery .flex-control-nav li a {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ebeff3;
  margin: 0 6px;
  transition: 0.3s;
  text-indent: -9999px;
}
.quick-view-panel .woocommerce-product-gallery .flex-control-nav li a.flex-active {
  background-color: #1d2128;
}
.quick-view-panel .woocommerce-product-gallery .flex-control-nav li::marker {
  display: none;
  font-size: 0;
}
.quick-view-panel.single-product div.product .entry-summary {
  width: 100%;
  padding-left: 24px;
}
.quick-view-panel.single-product div.product .entry-summary .entry-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 7px;
}
.quick-view-panel .entry-summary {
  padding: 24px;
}
.quick-view-panel .entry-summary .woocommerce-badges {
  position: static;
  margin-bottom: 14px;
}
.quick-view-panel .entry-summary .star-rating {
  font-size: 12px;
  font-size: 0.75rem;
  width: 65px;
  white-space: nowrap;
  height: 12px;
  line-height: 1;
  margin-top: 1px;
}
.quick-view-panel .entry-summary .star-rating::before {
  display: none;
}
.quick-view-panel .entry-summary .star-rating span {
  position: static;
  padding: 0;
  float: none;
}
.quick-view-panel .entry-summary .star-rating span::before {
  display: none;
}
.quick-view-panel .entry-summary .star-rating span.shopwell-svg-icon {
  margin-right: 1px;
}
.quick-view-panel .entry-summary .star-rating .max-rating {
  position: absolute;
  color: #ebeff3;
}
.quick-view-panel .entry-summary .star-rating .max-rating.shopwell-svg-icon:last-child {
  margin-right: 0;
}
.quick-view-panel .entry-summary .star-rating .user-rating {
  position: absolute;
  color: #ffa132;
}
.quick-view-panel .entry-summary .star-rating .user-rating.shopwell-svg-icon:last-child {
  margin-right: 0;
}
.quick-view-panel .entry-summary .product-meta-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.quick-view-panel .entry-summary .product-meta-wrapper .meta {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7d828a;
  font-weight: 500;
}
.quick-view-panel .entry-summary .product-meta-wrapper .meta a,
.quick-view-panel .entry-summary .product-meta-wrapper .meta span {
  color: #1d2128;
}
.quick-view-panel .entry-summary .product-meta-wrapper .meta::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #ebeff3;
  margin-left: 20px;
  margin-right: 20px;
}
.quick-view-panel .entry-summary .product-meta-wrapper .meta:last-child::after {
  display: none;
}
.quick-view-panel .entry-summary .product-meta-wrapper .meta,
.quick-view-panel .entry-summary .product-meta-wrapper .woocommerce-product-rating {
  padding-bottom: 5px;
  margin: 0;
}
.quick-view-panel .entry-summary .price {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  color: #1d2128;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 20px;
}
.quick-view-panel .entry-summary .price ins {
  margin-right: 6px;
  background-color: transparent;
  width: 100%;
  float: left;
}
.quick-view-panel .entry-summary .price del {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
  font-weight: 400;
  margin-top: 9px;
  margin-right: 9px;
  float: left;
}
.quick-view-panel .entry-summary .price .price__save {
  font-size: 14px;
  font-size: 0.875rem;
  color: #dd2831;
  margin-top: 9px;
  font-weight: 400;
  float: left;
}
.quick-view-panel .entry-summary .price .text {
  margin-right: 3px;
}
.quick-view-panel .entry-summary .price .percentage {
  margin-left: 3px;
}
.quick-view-panel .entry-summary .price > .woocommerce-Price-amount {
  margin-left: 4px;
  margin-right: 4px;
}
.quick-view-panel .entry-summary .price > .woocommerce-Price-amount:first-child {
  margin-left: 0;
}
.quick-view-panel .entry-summary .price > .woocommerce-Price-amount:last-child {
  margin-right: 0;
}
.quick-view-panel .entry-summary .shopwell-price-stock {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
  padding-bottom: 19px;
  margin-bottom: 28px;
}
.quick-view-panel .entry-summary .shopwell-price-stock .stock {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}
.quick-view-panel .entry-summary .shopwell-price-stock p {
  margin: 0;
}
.quick-view-panel .entry-summary .shopwell-product-deal {
  margin-top: 0;
  margin-bottom: 32px;
}
.quick-view-panel .entry-summary .shopwell-product-deal .deal-expire-text,
.quick-view-panel .entry-summary .shopwell-product-deal .deal-sold-text {
  font-size: 16px;
  font-size: 1rem;
  width: 30%;
  padding-right: 1em;
}
.quick-view-panel .entry-summary .shopwell-product-deal .text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7d828a;
}
.quick-view-panel .entry-summary .shopwell-product-deal .deal-expire-countdown,
.quick-view-panel .entry-summary .shopwell-product-deal .deal-progress {
  width: 70%;
}
.quick-view-panel .entry-summary .shopwell-product-deal .deal-progress .progress-bar {
  margin-bottom: 15px;
  height: 10px;
  border-radius: 2px;
}
.quick-view-panel .entry-summary .shopwell-product-deal .deal-progress .progress-value {
  height: 10px;
  background-color: #1d2128;
  border-radius: 2px;
}
.quick-view-panel .entry-summary .shopwell-product-deal .deal-progress .deal-text {
  font-weight: 500;
  color: #7d828a;
}
.quick-view-panel .entry-summary form.cart:not(.variations_form):not(.grouped_form) {
  display: flex;
  margin-bottom: 24px;
}
.quick-view-panel .entry-summary form.cart .woocommerce-variation-add-to-cart {
  display: flex;
}
.quick-view-panel .entry-summary table.variations {
  position: relative;
  margin: 0;
}
.quick-view-panel .entry-summary table.variations tr {
  display: block;
}
.quick-view-panel .entry-summary table.variations tr .wcboost-variation-swatches--button .wcboost-variation-swatches__item:last-child {
  margin: 0 25px 0 5px;
}
.quick-view-panel .entry-summary table.variations tr:last-child .value {
  padding-bottom: 39px;
}
.quick-view-panel .entry-summary table.variations td, .quick-view-panel .entry-summary table.variations th {
  display: block;
  border: none;
  padding: 0;
}
.quick-view-panel .entry-summary table.variations .label {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7d828a;
  text-transform: capitalize;
  margin-bottom: 6px;
}
.quick-view-panel .entry-summary table.variations .label .wcboost-variation-swatches__selected-label {
  color: #1d2128;
}
.quick-view-panel .entry-summary table.variations .value {
  padding: 0 0 15px 0;
  display: flex;
  flex-wrap: wrap;
}
.quick-view-panel .entry-summary table.variations .value .wcboost-variation-swatches--color {
  display: flex;
  overflow: hidden;
}
.quick-view-panel .entry-summary table.variations .value .reset_variations {
  position: absolute;
  top: 0;
  right: 0;
}
.quick-view-panel .entry-summary table.variations select {
  width: 100%;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches__wrapper {
  margin: 0 -5px;
  display: inline-flex;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches__item {
  display: inline-block;
  text-align: center;
  margin: 0 5px;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #7d828a;
  font-weight: 500;
  border: 2px solid #ebeff3;
  box-shadow: none;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches__item.selected {
  border-color: #1d2128;
  background-color: #1d2128;
  color: #fff;
  box-shadow: none;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--color .wcboost-variation-swatches__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  line-height: 20px;
  box-shadow: none;
  border-color: transparent;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--color .wcboost-variation-swatches__item span {
  width: 20px;
  height: 20px;
  line-height: 1;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--color .wcboost-variation-swatches__item:hover {
  background-color: transparent;
  border-color: #1d2128;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--color .wcboost-variation-swatches__item.selected {
  background-color: transparent;
  border-color: #1d2128;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--color .wcboost-variation-swatches__item.disabled {
  position: relative;
  opacity: 1;
  transform: rotate(-45deg);
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--color .wcboost-variation-swatches__item.disabled:hover {
  background-color: transparent;
  border-color: transparent;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--color .wcboost-variation-swatches__item.disabled::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 31px;
  height: 2px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #1d2128;
  opacity: 1;
  margin: 0;
  padding: 0;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  visibility: visible;
  transform: translate(-50%, -50%);
  border-radius: 20px;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--image {
  display: inline-flex;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--image .wcboost-variation-swatches__item {
  height: auto;
  box-shadow: none;
  border: 2px solid transparent;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--image .wcboost-variation-swatches__item:hover {
  border-color: #1d2128;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--image .wcboost-variation-swatches__item.disabled {
  opacity: 0.12;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--image .wcboost-variation-swatches__item.disabled:hover {
  border-color: transparent;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--button .wcboost-variation-swatches__item:hover,
.quick-view-panel .entry-summary .wcboost-variation-swatches--label .wcboost-variation-swatches__item:hover {
  border-color: #1d2128;
  color: #1d2128;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--button .wcboost-variation-swatches__item:hover.selected,
.quick-view-panel .entry-summary .wcboost-variation-swatches--label .wcboost-variation-swatches__item:hover.selected {
  color: #fff;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--button .wcboost-variation-swatches__item.disabled,
.quick-view-panel .entry-summary .wcboost-variation-swatches--label .wcboost-variation-swatches__item.disabled {
  background-color: #ebeff3;
  border-color: #ebeff3;
  color: #fff;
  opacity: 1;
}
.quick-view-panel .entry-summary .wcboost-variation-swatches--button .wcboost-variation-swatches__item {
  padding: 0 1em;
}
.quick-view-panel .entry-summary .reset_variations {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7d828a;
  text-decoration: underline;
}
.quick-view-panel .entry-summary .single_variation_wrap .woocommerce-variation-description p:first-child {
  margin-top: 0;
}
.quick-view-panel .entry-summary .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 21px;
  display: none;
}
.quick-view-panel .entry-summary .single_variation_wrap .woocommerce-variation-availability {
  display: none;
}
.quick-view-panel .entry-summary .quantity {
  margin-right: 20px;
}
.quick-view-panel .entry-summary .single_add_to_cart_button {
  position: relative;
  flex: 1;
}
.quick-view-panel .entry-summary .single_add_to_cart_button .single_add_to_cart_button--icon {
  display: none;
  font-size: 20px;
  font-size: 1.25rem;
  margin-right: 11px;
}
.quick-view-panel .entry-summary .single_add_to_cart_button .single_add_to_cart_button--icon svg {
  vertical-align: 0;
}
.quick-view-panel .has-buy-now form.cart {
  display: block;
  margin-bottom: 0;
}
.quick-view-panel .has-buy-now form.cart .woocommerce-variation-add-to-cart {
  display: block;
}
.quick-view-panel .has-buy-now .quantity {
  margin-bottom: 24px;
}
.quick-view-panel .has-buy-now .single_add_to_cart_button {
  width: 100%;
}
.quick-view-panel .has-buy-now .shopwell-buy-now-button {
  width: 100%;
}
.quick-view-panel .product-type-grouped .woocommerce-grouped-product-list tr:last-child td {
  border: none;
}
.quick-view-panel .product-type-grouped .woocommerce-grouped-product-list td {
  padding: 10px;
}
.quick-view-panel .product-type-grouped .woocommerce-grouped-product-list .quantity__label {
  display: none;
}
.quick-view-panel .product-type-grouped .woocommerce-grouped-product-list .quantity {
  margin-bottom: 0;
}
.quick-view-panel .product-type-grouped .woocommerce-grouped-product-list-item__label {
  font-size: 16px;
  font-size: 1rem;
  color: #1d2128;
}
.quick-view-panel .product-type-grouped .woocommerce-grouped-product-list-item__price {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
}
.quick-view-panel .product-type-grouped .woocommerce-grouped-product-list-item__price ins {
  color: #dd2831;
  background-color: transparent;
}
.quick-view-panel .product-type-grouped .outofstock a.button {
  background-color: #ebeff3;
}
.quick-view-panel .product-type-grouped .single_add_to_cart_button {
  width: 100%;
  margin-bottom: 24px;
}
.quick-view-panel .product-type-external .single_add_to_cart_button {
  width: 100%;
}
.quick-view-panel .view-product-link {
  display: block;
  margin-top: 24px;
}
.quick-view-panel .view-product-link a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .quick-view-panel .panel__container {
    width: 100%;
  }
  .quick-view-panel .entry-summary {
    padding-left: 15px;
    padding-right: 15px;
  }
  .quick-view-panel .entry-summary .price {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .quick-view-panel .entry-summary form.cart:not(.variations_form):not(.grouped_form) {
    display: block;
  }
  .quick-view-panel .entry-summary form.cart .woocommerce-variation-add-to-cart {
    display: block;
    margin-bottom: 0;
  }
  .quick-view-panel .entry-summary form.cart .quantity {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .quick-view-panel .entry-summary form.cart .single_add_to_cart_button {
    float: right;
  }
  .quick-view-panel .product-type-grouped .woocommerce-grouped-product-list td {
    padding: 10px 5px;
  }
  .quick-view-panel .product-type-grouped .woocommerce-grouped-product-list-item__label {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .quick-view-panel .product-type-grouped .outofstock a.button {
    min-width: auto;
    width: 100%;
    line-height: 44px;
  }
  .quick-view-panel .product-type-grouped .add_to_cart_button {
    min-width: auto;
    width: 100%;
    line-height: 44px;
  }
}
.filter-sidebar-panel .panel__button-close {
  right: 29px;
}
.filter-sidebar-panel .panel__container {
  width: 400px;
}
.filter-sidebar-panel .panel__header,
.filter-sidebar-panel .panel__content {
  padding-left: 28px;
  padding-right: 29px;
}
.filter-sidebar-panel .panel__content {
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.filter-sidebar-panel .panel__content::-webkit-scrollbar {
  display: none;
}
.filter-sidebar-panel .panel__content {
  overflow-y: auto;
  overflow-x: hidden;
}
.filter-sidebar-panel .panel__content > * {
  border-top: 1px solid rgba(185, 185, 185, 0.4);
}
.filter-sidebar-panel .panel__content .products-filter__activated {
  display: none;
}
.filter-sidebar-panel .panel__content .products-filter__button {
  display: flex;
  gap: 15px;
}
.filter-sidebar-panel .panel__content .products-filter__button button {
  line-height: 44px;
}
.filter-sidebar-panel .panel__content .products-filter__button .reset-button {
  order: 1;
  display: block;
  background-color: #ffffff;
  border: 2px solid #1d2128;
  color: #1d2128;
}
.filter-sidebar-panel .panel__content .products-filter__button .filter-button {
  order: 2;
  background-color: #1d2128;
  box-shadow: none;
}

@media (min-width: 991px) {
  .sidebar__header,
  .catalog-sidebar .sidebar__container > .panel__button-close {
    display: none;
  }
}
@media (max-width: 990px) {
  .offscreen-panel--side-left .sidebar__container {
    left: 0;
    right: auto;
    transform: translateX(-100%);
  }
  .offscreen-panel--open .sidebar__container {
    transform: none;
  }
  .offscreen-panel .sidebar__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .sidebar__header {
    padding: 18px 16px 27px;
    font-size: 18px;
    font-size: 1.125rem;
    color: #1d2128;
    font-weight: 500;
    position: relative;
  }
  .sidebar__header:after {
    content: "";
    width: calc(100% - 32px);
    height: 1px;
    background-color: rgba(185, 185, 185, 0.4);
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
  }
  .sidebar__container {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 375px;
    max-width: 100%;
    margin: 0;
    background-color: #fff;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
    transform: translateX(100%);
    transition: transform 0.5s;
    display: flex;
    flex-direction: column;
  }
  .sidebar__container .panel__button-close {
    right: 18px;
    z-index: 9;
  }
  .sidebar__content {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .sidebar__content::-webkit-scrollbar {
    display: none;
  }
  .sidebar__content {
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }
  .catalog-sidebar .products-filter-widget .widget-title {
    display: none;
  }
  .catalog-sidebar .products-filter-widget .reset-button {
    display: block;
  }
  .catalog-sidebar .products-filter-widget .products-filter__button {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 375px;
    background-color: #fff;
    display: flex;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  }
  .catalog-sidebar .products-filter-widget .products-filter__button .filter-button {
    order: 2;
  }
  .catalog-sidebar .products-filter-widget .products-filter__button .button {
    line-height: 44px;
    height: 44px;
    margin: 8px;
  }
}
body .blockUI.blockOverlay {
  position: relative;
  background-color: rgba(255, 255, 255, 0.6) !important;
  background-image: none !important;
}

.offscreen-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1600;
  display: none;
}

.offscreen-panel--side-left .panel__container {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

.offscreen-panel--open .panel__container {
  transform: none;
}

.panel__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
}

.hamburger-header__back {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 15px;
}
.hamburger-header__back:focus {
  outline: 1px dotted;
  outline-offset: 3px;
}
.hamburger-header__back .shopwell-svg-icon {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 5px;
}

.panel__button-close {
  position: absolute;
  right: 20px;
  top: 20px;
  outline: none;
  cursor: pointer;
  font-size: 20.76px;
  font-size: 1.2975rem;
}
.panel__button-close:focus svg {
  outline: 1px dotted;
  outline-offset: 3px;
}

.panel__container {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 480px;
  max-width: 100%;
  margin: 0;
  background-color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.panel__header {
  padding: 18px 22px 27px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #1d2128;
  font-weight: 500;
}

.admin-bar .offscreen-panel {
  top: 32px;
}
.admin-bar .offscreen-panel .panel__container {
  height: calc(100% - 32px);
}

.mobile-menu__divider {
  background-color: rgba(185, 185, 185, 0.4);
  margin: 15px auto;
  width: calc(100% - 64px);
}

@media (max-width: 780px) {
  .admin-bar .offscreen-panel {
    top: 0;
    z-index: 99999;
  }
  .admin-bar .offscreen-panel .panel__container {
    height: 100%;
  }
}
.search-modal__form {
  position: relative;
  color: #1d2128;
}
.search-modal__form .search-modal__field {
  flex: 1;
  margin-right: 8px;
  padding: 13px 40px 13px 15px;
  width: 100%;
  color: inherit;
}
.search-modal__form .search-modal__submit {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: inherit;
}
.search-modal__form .search-modal__submit span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
}
.search-modal__form.actived .search-modal__submit, .search-modal__form.searching .search-modal__submit {
  opacity: 0;
}

.search-modal .modal__button-close {
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  bottom: 20px;
  display: flex;
  align-items: center;
  color: #1d2128;
}
.search-modal .modal__button-close .shopwell-svg-icon--close {
  margin-right: 5px;
}
.search-modal .modal__button-close:after {
  display: none;
}
.search-modal .header-search__trending {
  color: #1d2128;
  font-size: 14px;
  font-size: 0.875rem;
}
.search-modal .header-search__trending-label {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 5px;
}
.search-modal .header-search__trending-links li {
  padding: 0;
  margin-top: 11px;
}
.search-modal .header-search__results .search-list {
  padding-top: 10px;
  padding-bottom: 10px;
}
.search-modal .header-search__results .search-list .list-item {
  padding-left: 10px;
  padding-right: 10px;
}
.search-modal .header-search__results .search-list .list-item img {
  max-width: 70px;
  margin-right: 20px;
}

.modal__preferences {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  max-width: 448px;
  width: 100%;
}
.modal__preferences .modal__header {
  padding: 20px 23px 0;
  display: flex;
  justify-content: space-between;
}
.modal__preferences .modal__heading {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1d2128;
}
.modal__preferences .modal__button-close {
  position: static;
}
.modal__preferences .modal__content {
  padding: 21px 64px 64px;
}
.modal__preferences label {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7d828a;
  margin-bottom: 8px;
}
.modal__preferences .update-preferences {
  width: 100%;
}
.modal__preferences .select2-container--open .select2-dropdown--below {
  margin-top: 0;
}

.shopwell-popup-add-to-cart-modal .modal__loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.shopwell-popup-add-to-cart-modal .modal__notices {
  max-width: 770px;
}
.shopwell-popup-add-to-cart-modal .modal__notices .modal__content {
  padding: 25px 30px 30px;
}
.shopwell-popup-add-to-cart-modal.loading .modal__button-close,
.shopwell-popup-add-to-cart-modal.loading .product-quickview {
  transition: none;
  opacity: 0;
}
.shopwell-popup-add-to-cart-modal.loading .modal__loader {
  display: block;
}
.shopwell-popup-add-to-cart-modal.modal--open .modal__notices {
  opacity: 1;
}

.modal__notices {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  background-color: #fff;
  max-width: 946px;
  width: 100%;
  opacity: 0;
  transition: 0.5s;
}
.modal__notices .modal__content {
  padding: 16px;
  height: 100%;
}
.modal__notices .shopwell-product-popup-atc__notice {
  margin-bottom: 10px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1d2128;
}
.modal__notices .widget_shopping_cart_content {
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.modal__notices .widget_shopping_cart_content ul.cart_list {
  height: auto;
  width: 50%;
  padding: 0;
  max-height: 170px;
  padding-right: 30px;
}
.modal__notices .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item {
  border-bottom: none;
  margin-bottom: 0;
  min-height: auto;
}
.modal__notices .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item:last-child {
  padding-bottom: 0;
}
.modal__notices .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item:not(.active) {
  display: none;
}
.modal__notices .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item__title {
  font-size: 18px;
  font-size: 1.125rem;
}
.modal__notices .widget_shopping_cart_content ul.cart_list a.remove,
.modal__notices .widget_shopping_cart_content ul.cart_list .woocommerce-cart-item__qty {
  display: none;
}
.modal__notices .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item__qty--text {
  display: block !important;
  visibility: visible !important;
  color: #7d828a;
  font-weight: 500;
  margin-top: 5px;
}
.modal__notices .widget_shopping_cart_content ul.cart_list::-webkit-scrollbar {
  width: 3px;
}
.modal__notices .widget_shopping_cart_content ul.cart_list::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal__notices .widget_shopping_cart_content .widget_shopping_cart_footer {
  width: 50%;
  padding: 0 0 0 20px;
  position: relative;
  bottom: auto;
}
.modal__notices .widget_shopping_cart_content .widget_shopping_cart_footer:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  content: "";
  border-right: 1px solid rgba(185, 185, 185, 0.4);
}
.modal__notices .widget_shopping_cart_content .widget_shopping_cart_footer .woocommerce-mini-cart__total {
  background-color: transparent;
  margin: 0 0 20px 0;
  padding: 0;
  font-weight: 500;
}
.modal__notices .shopwell-product-popup-atc__recommendation {
  border-top: 1px solid rgba(185, 185, 185, 0.4);
  padding-top: 30px;
  margin-top: 30px;
}
.modal__notices .shopwell-product-popup-atc__recommendation.loading {
  height: 0;
  opacity: 0;
  transition: height 0.4s;
}
.modal__notices .shopwell-product-popup-atc__recommendation.active {
  height: auto;
  opacity: 1;
}
.modal__notices .shopwell-product-popup-atc__recommendation.loaded {
  display: block;
}
.modal__notices .shopwell-product-popup-atc__recommendation .product-heading {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 20px 20px 0;
  font-weight: 500;
  line-height: 1;
}
.modal__notices .shopwell-product-popup-atc__recommendation .recommendation-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__notices .shopwell-product-popup-atc__recommendation .swiper-button {
  font-size: 16px;
  font-size: 1rem;
  background-color: transparent;
  box-shadow: none;
  width: auto;
  height: auto;
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}
.modal__notices .shopwell-product-popup-atc__recommendation .swiper-button.swiper-button-disabled {
  color: #ebeff3;
}
.modal__notices .shopwell-product-popup-atc__recommendation .shopwell-swiper-button-next {
  margin-right: -5px;
}
.modal__notices .shopwell-product-popup-atc__recommendation .swiper-button-lock,
.modal__notices .shopwell-product-popup-atc__recommendation .swiper-pagination.swiper-pagination-lock,
.modal__notices .shopwell-product-popup-atc__recommendation .swiper-pagination {
  display: none;
}
.modal__notices .shopwell-product-popup-atc__recommendation ul.products {
  flex-wrap: nowrap;
  border: none !important;
}
.modal__notices .shopwell-product-popup-atc__recommendation ul.products li.product {
  margin-bottom: 0;
  border: none;
}
.modal__notices .shopwell-product-popup-atc__recommendation ul.products li.product:after {
  display: none;
}

@media (max-width: 767px) {
  .shopwell-popup-add-to-cart-modal .modal__notices {
    width: 85%;
    right: 0;
    top: 0;
    left: auto;
    max-width: 470px;
    transform: translateX(100%);
    transition: transform 0.5s;
    background-color: #fff;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-color: #1d2128 rgba(125, 130, 138, 0.3);
    scrollbar-width: thin;
  }
  .shopwell-popup-add-to-cart-modal .modal__notices .modal__content {
    padding: 16px;
  }
  .shopwell-popup-add-to-cart-modal .modal__notices::-webkit-scrollbar {
    width: 2px;
  }
  .shopwell-popup-add-to-cart-modal .modal__notices::-webkit-scrollbar-track {
    background-color: rgba(125, 130, 138, 0.3);
  }
  .shopwell-popup-add-to-cart-modal .modal__notices::-webkit-scrollbar-thumb {
    background-color: #1d2128;
  }
  .shopwell-popup-add-to-cart-modal .shopwell-product-popup-atc__notice {
    font-size: 16px;
    font-size: 1rem;
    padding-top: 10px;
  }
  .shopwell-popup-add-to-cart-modal.modal--open .modal__notices {
    transform: translateX(0);
  }
  .shopwell-popup-add-to-cart-modal .widget_shopping_cart_content {
    flex-direction: column;
    margin-top: 20px;
  }
  .shopwell-popup-add-to-cart-modal .widget_shopping_cart_content .woocommerce-mini-cart__buttons .shopwell-button.checkout {
    line-height: 44px;
  }
  .shopwell-popup-add-to-cart-modal .widget_shopping_cart_content ul.cart_list,
  .shopwell-popup-add-to-cart-modal .widget_shopping_cart_content .widget_shopping_cart_footer {
    width: 100%;
    padding-right: 0;
  }
  .shopwell-popup-add-to-cart-modal .widget_shopping_cart_content .widget_shopping_cart_footer {
    padding-left: 0;
    margin-top: 20px;
  }
  .shopwell-popup-add-to-cart-modal .widget_shopping_cart_content .widget_shopping_cart_footer:after {
    display: none;
  }
  .shopwell-popup-add-to-cart-modal .shopwell-product-popup-atc__recommendation {
    padding-top: 20px;
    margin-top: 20px;
  }
  .shopwell-popup-add-to-cart-modal .shopwell-product-popup-atc__recommendation .product-heading {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .shopwell-popup-add-to-cart-modal .shopwell-product-popup-atc__recommendation ul.products {
    margin: 0;
  }
  .shopwell-popup-add-to-cart-modal .shopwell-product-popup-atc__recommendation ul.products li.product {
    padding: 0;
  }
  .shopwell-popup-add-to-cart-modal .shopwell-product-popup-atc__recommendation .shopwell-swiper-buttons {
    display: none;
  }
  .shopwell-popup-add-to-cart-modal .shopwell-product-popup-atc__recommendation .swiper-pagination {
    position: relative;
    display: block;
    margin: 20px 0;
  }
}
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 1100;
}

.modal--open {
  visibility: visible;
  z-index: 2000;
}
.modal--open .modal__header {
  opacity: 1;
}
.modal--open .modal__content {
  opacity: 1;
}

.modal__container {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.modal__header {
  padding: 16px;
}

.modal__content {
  padding: 16px;
}

.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}

button.modal__button-close,
.modal__button-close {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 16px;
  font-size: 1rem;
  z-index: 1;
  cursor: pointer;
}

body.modal-opened {
  overflow: hidden;
}

.admin-bar .modal {
  top: 32px;
}

@media (max-width: 780px) {
  .admin-bar .modal {
    top: 46px;
  }
}
@media (max-width: 600px) {
  .admin-bar .modal {
    top: 0;
  }
}
/* Navigation
--------------------------------------------- */
.nav-menu,
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  padding: 4px 22px;
  position: relative;
}
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children,
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  min-width: 220px;
  top: 100%;
  left: 0;
  transform: translateY(5px);
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  z-index: 9;
  transition: 0.25s;
}
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children > li:first-child,
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu > li:first-child {
  padding-top: 17px;
}
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children > li:last-child,
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu > li:last-child {
  padding-bottom: 17px;
}
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children ul,
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu ul {
  top: 0;
  left: 100%;
}
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children li,
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu li {
  width: 100%;
}
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children li.hovered > ul, .nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.children li:hover > ul,
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu li.hovered > ul,
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu) > ul.sub-menu li:hover > ul {
  top: 0;
  left: 100%;
}
.nav-menu li:not(.menu-item-mega):not(.mega-sub-menu).hovered > ul, .nav-menu li:not(.menu-item-mega):not(.mega-sub-menu):hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: none;
  z-index: 999;
}
.nav-menu a {
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.nav-menu a:focus, .nav-menu a:hover {
  text-decoration: none;
}

.shopwell-primary-menu-overlay {
  background-color: #1d2128;
  bottom: 0;
  display: block;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.6s ease-in-out 0.1s, visibility 0s 0.5s;
  visibility: hidden;
  z-index: -1;
}
.shopwell-primary-menu-overlay.shopwell-hover {
  opacity: 0.2;
  transition: opacity 0.5s;
  visibility: visible;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.post-navigation a {
  font-size: 14px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  text-align: left;
}
.post-navigation .nav-titles {
  line-height: 1;
  margin: 0 0 15px 0;
  overflow: hidden;
  display: flex;
}
.post-navigation .nav-titles a {
  flex: 1;
  display: block;
  transition: all 0.25s ease-in-out;
}
.post-navigation .nav-titles a:focus, .post-navigation .nav-titles a:hover {
  color: var(--shopwell-color__primary);
}
.post-navigation .nav-titles .shopwell-svg-icon {
  font-size: 11px;
  font-size: 0.6875rem;
  padding-left: 8px;
  /*rtl:raw:
  	transform: rotateY(180deg);
  	padding-left: 8px;
  	padding-right: 0;
  */
}
.post-navigation .nav-titles .shopwell-svg-icon svg {
  vertical-align: -1px;
}
.post-navigation .nav-titles .nav-previous .shopwell-svg-icon {
  padding-left: 0;
  padding-right: 8px;
  /*rtl:raw:
  	padding-left: 0;
  	padding-right: 8px;
  */
}
.post-navigation .nav-links {
  display: flex;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  flex: 1;
  display: flex;
  word-break: break-word;
  padding: 20px;
  border: 2px solid rgba(185, 185, 185, 0.4);
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}
.post-navigation .nav-links .nav-previous:focus-within, .post-navigation .nav-links .nav-previous:hover,
.post-navigation .nav-links .nav-next:focus-within,
.post-navigation .nav-links .nav-next:hover {
  border-color: #1d2128;
}
.post-navigation .nav-links .nav-previous img,
.post-navigation .nav-links .nav-next img {
  border-radius: 2px;
}
.post-navigation .nav-links .nav-title {
  line-height: 20px;
  color: #1d2128;
}
.post-navigation .nav-links .nav-next {
  justify-content: flex-end;
}
.post-navigation .nav-links .meta-date {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #7d828a;
  padding-top: 1px;
}
.post-navigation .nav-previous {
  margin-right: 12px;
}
.post-navigation .nav-previous img {
  margin-right: 15px;
}
.post-navigation .nav-next {
  margin-left: 12px;
}
.post-navigation .nav-next img {
  margin-left: 15px;
}

.pagination {
  text-align: center;
  width: 100%;
  margin-top: 15px;
}

.page-links,
.nav-links {
  clear: both;
}
.page-links .post-page-numbers,
.page-links .page-numbers,
.nav-links .post-page-numbers,
.nav-links .page-numbers {
  border: 2px solid rgba(185, 185, 185, 0.4);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 42px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7d828a;
  display: inline-block;
}
.page-links .post-page-numbers:focus, .page-links .post-page-numbers:hover,
.page-links .page-numbers:focus,
.page-links .page-numbers:hover,
.nav-links .post-page-numbers:focus,
.nav-links .post-page-numbers:hover,
.nav-links .page-numbers:focus,
.nav-links .page-numbers:hover {
  border-color: #1d2128;
  color: #1d2128;
}
.page-links .post-page-numbers.current,
.page-links .page-numbers.current,
.nav-links .post-page-numbers.current,
.nav-links .page-numbers.current {
  border-color: #1d2128;
  background-color: #1d2128;
  color: #fff;
}
.page-links .post-page-numbers.current:hover, .page-links .post-page-numbers.current:focus, .page-links .post-page-numbers.current:focus-visible,
.page-links .page-numbers.current:hover,
.page-links .page-numbers.current:focus,
.page-links .page-numbers.current:focus-visible,
.nav-links .post-page-numbers.current:hover,
.nav-links .post-page-numbers.current:focus,
.nav-links .post-page-numbers.current:focus-visible,
.nav-links .page-numbers.current:hover,
.nav-links .page-numbers.current:focus,
.nav-links .page-numbers.current:focus-visible {
  outline: none;
}
.page-links .post-page-numbers.dots,
.page-links .page-numbers.dots,
.nav-links .post-page-numbers.dots,
.nav-links .page-numbers.dots {
  cursor: pointer;
  border: none;
  position: relative;
  bottom: 5px;
}
.page-links .page-numbers,
.nav-links .page-numbers {
  display: inline-block;
  margin: 0 1px;
}
.page-links .page-numbers.prev, .page-links .page-numbers.next,
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
  border: none;
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}
.page-links .page-numbers.prev,
.nav-links .page-numbers.prev {
  margin-right: 15px;
}
.page-links .page-numbers.next,
.nav-links .page-numbers.next {
  margin-left: 15px;
}

.shopwell-posts-found {
  margin-top: 37px;
  width: 100%;
}
.shopwell-posts-found .shopwell-posts-found__inner {
  padding: 0 9.19em;
}

.next-posts-navigation {
  margin-top: 25px;
}
.next-posts-navigation .nav-links {
  min-width: 240px;
}
.next-posts-navigation .shopwell-pagination--loading {
  visibility: hidden;
  display: none;
}
.next-posts-navigation.loading .nav-links {
  display: none;
}
.next-posts-navigation.loading .shopwell-pagination--loading {
  visibility: visible;
  display: block;
}

.content-area .next-posts-navigation {
  min-height: 60px;
}

.shopwell-pagination__arrow {
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #fff;
  color: #7d828a;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 6px 0px rgba(29, 33, 40, 0.16);
  transition: 0.3s;
}
.shopwell-pagination__arrow:hover {
  box-shadow: 0px 4px 16px 0px rgba(29, 33, 40, 0.16);
  color: #1d2128;
}

.nav-links .next:focus,
.nav-links .prev:focus {
  box-shadow: 0px 4px 16px 0px rgba(29, 33, 40, 0.16);
  color: #1d2128;
}

/* Posts and pages
--------------------------------------------- */
.entry-content a,
.page-content a {
  text-decoration: underline;
}
.entry-content a:not(.button, .wp-block-button__link):focus, .entry-content a:not(.button, .wp-block-button__link):hover,
.page-content a:not(.button, .wp-block-button__link):focus,
.page-content a:not(.button, .wp-block-button__link):hover {
  color: var(--shopwell-color__primary);
}
.entry-content ul li,
.entry-content ol li,
.page-content ul li,
.page-content ol li {
  padding: 3px 0;
}

.entry-category a {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #7d828a;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}
.entry-category a:focus {
  outline: 1px dotted;
  outline-offset: 3px;
}
.entry-category a:focus, .entry-category a:hover {
  color: #1d2128;
}

.content-area .entry-category a:not(:last-child):after {
  content: ",";
}

.entry-title {
  font-size: 36px;
  font-size: 2.25rem;
  margin-top: 0;
}
.entry-title a {
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.entry-title a:focus, .entry-title a:hover {
  background-size: 100% 2px;
}

.entry-meta {
  font-size: 12px;
  font-size: 0.75rem;
}
.entry-meta {
  color: #7d828a;
  font-weight: 500;
  display: inline-flex;
  text-transform: capitalize;
}
.entry-meta a:focus {
  text-decoration: underline;
}
.entry-meta > * {
  margin-right: 22px;
}
.entry-meta > *:last-child {
  margin-right: 0;
}
.entry-meta .shopwell-svg-icon {
  margin-right: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: 2px;
}
.entry-meta .shopwell-svg-icon svg {
  vertical-align: 0;
}

.no-sidebar.single-post .entry-header,
.no-sidebar.single-post .entry-content,
.no-sidebar.single-post .entry-footer,
.no-sidebar.single-post .author-info,
.no-sidebar.single-post .post-navigation,
.no-sidebar.single-post .comments-area,
.no-sidebar.single-post .shopwell-posts-related {
  max-width: 750px;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.no-sidebar.single-post .entry-thumbnail {
  max-width: 1140px;
  width: 1140px;
  margin-left: calc(-570px + 50%);
  margin-right: calc(-570px + 50%);
  text-align: center;
  margin-bottom: 38px;
}
.no-sidebar.single-post .entry-meta__share {
  float: right;
}

.single-post .site-content {
  padding-top: 40px;
  padding-bottom: 30px;
}
.single-post:not(.no-sidebar) .site-content {
  padding-top: 0;
}
.single-post .entry-thumbnail {
  width: 100%;
  margin-bottom: 5px;
  margin-top: 12px;
}
.single-post .entry-thumbnail + .site-content-container {
  padding-top: 0;
}
.single-post .entry-thumbnail img {
  border-radius: 2px;
}
.single-post .entry-thumbnail.entry-gallery.swiper-container {
  position: relative;
}
.single-post .entry-thumbnail.entry-gallery.swiper-container .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.single-post .entry-thumbnail.entry-gallery.swiper-container .shopwell-swiper-button-prev {
  left: 22px;
}
.single-post .entry-thumbnail.entry-gallery.swiper-container .shopwell-swiper-button-next {
  right: 22px;
}
.single-post .entry-thumbnail.entry-gallery.swiper-container .shopwell-swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1;
  width: auto;
  /*rtl:raw:
  	left:auto;
  */
}
.single-post .entry-category {
  margin-bottom: 10px;
}
.single-post .entry-title {
  margin-bottom: 13px;
}
.single-post .entry-content {
  margin-bottom: 40px;
}
.single-post .entry-content blockquote p {
  line-height: 1.2;
  margin-bottom: 0;
}
.single-post .entry-content > :first-child {
  margin-top: 0;
}
.single-post .entry-footer {
  clear: both;
}
.single-post .entry-meta {
  display: block;
  margin-bottom: 32px;
}
.single-post .entry-meta > * {
  float: left;
}
.single-post .entry-meta:after {
  display: block;
  content: "";
  clear: both;
}
.single-post.content-sidebar .entry-header .entry-meta, .single-post.sidebar-content .entry-header .entry-meta {
  margin-bottom: 36px;
}
.single-post .entry-meta__share {
  position: relative;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
}
.single-post .entry-meta__share .shopwell-svg-icon {
  font-size: 15px;
  font-size: 0.9375rem;
}
.single-post .entry-meta__share .post__socials-share {
  position: absolute;
  top: 0;
  left: 120%;
  width: auto;
  display: flex;
  flex-direction: column;
  z-index: 99;
  opacity: 0;
  padding-left: 20px;
  transition: 0.3s;
  transform: translateX(0);
  visibility: hidden;
}
.single-post .entry-meta__share .post__socials-share a {
  white-space: nowrap;
  margin: 0;
  border-radius: 0;
}
.single-post .entry-meta__share.active .post__socials-share {
  visibility: visible;
  opacity: 1;
  left: 100%;
  transform: translateX(1);
}

.entry-tags {
  margin-left: -5px;
  margin-right: -5px;
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.entry-tags a {
  border: 2px solid #ebeff3;
  display: inline-block;
  padding: 9px 21px 8px;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #7d828a;
  margin: 5px;
  border-radius: 2px;
  font-weight: 500;
}
.entry-tags a:focus, .entry-tags a:hover {
  border-color: #1d2128;
  color: #1d2128;
}

.author-info {
  border: 1px solid rgba(185, 185, 185, 0.4);
  border-radius: 2px;
  padding: 31px 30px 28px;
  margin-bottom: 31px;
}
.author-info .avatar {
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.author-info__vcard,
.author-info__description,
.author-info__socials {
  padding-left: 127px;
  position: relative;
}

.author-info__name {
  font-weight: 500;
  text-transform: capitalize;
  padding-top: 13px;
  padding-bottom: 10px;
  display: flex;
}

.author-info__description {
  padding-left: 127px;
  padding-right: 50px;
  font-size: 16px;
  font-size: 1rem;
  color: #7d828a;
}

.author-info__socials {
  margin-top: 17px;
  margin-left: -11px;
  margin-right: -11px;
}
.author-info__socials a {
  color: #7d828a;
  padding-left: 11px;
  padding-right: 11px;
  font-size: 20px;
  font-size: 1.25rem;
}
.author-info__socials a:focus, .author-info__socials a:hover {
  color: #1d2128;
}

.single-post .post__socials-share .shopwell-svg-icon {
  font-size: 17px;
  font-size: 1.0625rem;
  text-align: center;
}
.single-post .post__socials-share > .shopwell-socials--bg {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  margin-bottom: 12px;
  padding: 13.5px;
  border-radius: 2px;
  line-height: 1;
}

.shopwell-socials--bg {
  color: #fff;
  background-color: #616869;
}

.entry-footer .post__socials-share {
  padding-top: 24px;
  margin-bottom: 19px;
  position: relative;
}
.entry-footer .post__socials-share::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.entry-footer .social-share__label {
  display: none;
}
.entry-footer .social-share-link:first-child, .entry-footer .social-share-link:nth-child(2) {
  padding: 13.5px 19px;
}
.entry-footer .social-share-link:first-child .social-share__label, .entry-footer .social-share-link:nth-child(2) .social-share__label {
  display: inline-block;
  transform: translateY(1px);
}
.entry-footer .social-share-link:first-child .shopwell-svg-icon, .entry-footer .social-share-link:nth-child(2) .shopwell-svg-icon {
  margin-right: 15px;
}

.shopwell-posts-related {
  margin-top: 32px;
  position: relative;
}
.shopwell-posts-related::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.shopwell-posts-related .shopwell-posts-related__heading {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 4;
  font-weight: 500;
  margin: 0;
}

.shopwell-posts-related__content {
  display: flex;
  justify-content: space-between;
  margin-left: -12px;
  margin-right: -12px;
}
.shopwell-posts-related__content .hentry {
  display: block;
  padding-right: 12px;
  padding-left: 12px;
  width: 33.33%;
}
.shopwell-posts-related__content .hentry .post-thumbnail {
  display: inline-block;
  margin-bottom: 8px;
}
.shopwell-posts-related__content .hentry .entry-title {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 6px;
}
.shopwell-posts-related__content .hentry .entry-meta {
  margin-bottom: 0;
}
.shopwell-posts-related__content .hentry:last-child {
  margin-right: 0;
}

.hentry .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.hentry .post-thumbnail img {
  border-radius: 2px;
  transition: all 0.9s ease-in-out;
}
.hentry:focus-within .post-thumbnail img, .hentry:hover .post-thumbnail img {
  transform: scale(1.1);
}
.hentry .post-format-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
}
.hentry .post-format-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(17, 24, 39, 0.6);
  transition: transform 0.22s ease;
  z-index: -1;
}
.hentry .post-format-icon .shopwell-svg-icon svg {
  transition: 0.3s all;
}
.hentry .post-format-icon.icon-gallery {
  font-size: 18px;
  font-size: 1.125rem;
}
.hentry:focus-within .post-format-icon:before, .hentry:hover .post-format-icon:before {
  transform: scale(1.25);
}
.hentry:focus-within .post-format-icon svg, .hentry:hover .post-format-icon svg {
  animation: anim-topbottom 0.3s forwards;
}

.hfeed .hentry {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hfeed .hentry .entry-summary {
  flex: 1;
  width: 100%;
  margin-bottom: 8px;
}
.hfeed .hentry .entry-category {
  margin-bottom: 6px;
}
.hfeed .hentry .entry-title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 7px;
}
.hfeed .hentry .entry-excerpt {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7d828a;
  margin-bottom: 10px;
}
.hfeed .hentry .entry-excerpt p {
  margin: 0;
}
.hfeed .hentry .post-thumbnail {
  max-width: 50%;
  margin-right: 23px;
  position: relative;
}
.hfeed .hentry .post-thumbnail + .entry-summary {
  width: auto;
}

.search-results .content-area article {
  margin-bottom: 24px;
}
.search-results .content-area article .entry-title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.search-results .content-area article .entry-excerpt {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7d828a;
  margin-bottom: 10px;
}
.search-results .content-area article .entry-excerpt p {
  margin: 0;
}

.search-no-results section.no-results .page-header {
  padding-top: 30px;
}

.blog--classic .site-main {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.blog--classic .site-main .hentry {
  display: inline-block;
  width: 50%;
  padding: 0 12px;
}
.blog--classic .site-main .entry-summary {
  margin-bottom: 0;
}
.blog--classic .site-main .post-thumbnail {
  display: inline-block;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-bottom: 5px;
}
.blog--classic .site-main .post-thumbnail img {
  width: 100%;
}
.blog--classic .site-main .entry-excerpt,
.blog--classic .site-main .entry-meta__author {
  display: none;
}
.blog--classic .site-main .entry-read-more {
  display: none;
  margin-top: 20px;
}
.blog--classic .site-main .post-large {
  width: 100%;
  position: relative;
}
.blog--classic .site-main .post-large::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.blog--classic .site-main .post-large {
  padding-bottom: 24px;
}
.blog--classic .site-main .post-large::before {
  width: calc(100% - 24px);
  left: 12px;
}
.blog--classic .site-main .post-large .entry-title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.3333333333;
}
.blog--classic .site-main .post-large .entry-excerpt,
.blog--classic .site-main .post-large .entry-meta__author {
  display: block;
}
.blog--classic .site-main .post-large .entry-read-more {
  display: block;
}
.blog--classic .shopwell-posts-group,
.blog--classic .shopwell-recent-post__heading {
  padding-left: 12px;
  padding-right: 12px;
}

.blog--grid .site-main {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.blog--grid .site-main .hentry {
  display: inline-block;
  width: 33.33%;
  padding: 0 12px;
}
.blog--grid .site-main .post-thumbnail {
  display: inline-block;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-bottom: 5px;
}
.blog--grid .site-main .post-thumbnail img {
  width: 100%;
}
.blog--grid .site-main .entry-summary {
  margin-bottom: 0;
}
.blog--grid .site-main .entry-title {
  margin-bottom: 9px;
}
.blog--grid .shopwell-posts-group,
.blog--grid .shopwell-recent-post__heading {
  padding-left: 15px;
  padding-right: 15px;
}
.blog--grid .shopwell-posts-found {
  margin-top: 24px;
}

.shopwell-blog-page.blog.home .site-content {
  padding-top: 6px;
}
.shopwell-blog-page .site-content {
  padding-bottom: 50px;
}
.shopwell-blog-page .page-header + .site-content {
  padding-top: 36px;
}

.shopwell-recent-post__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 27px 0;
  flex: 1 1 100%;
}

.archive.tag .blog-header__title, .archive.author .blog-header__title {
  font-size: 54px;
  font-size: 3.375rem;
}

.category .shopwell-posts-group ~ .no-results .page-header {
  display: none;
}

.single-shopwell_popup .site {
  position: relative;
}
.single-shopwell_popup .site .shopwell-single-popup {
  display: block;
  position: static;
  transform: none;
}
.single-shopwell_popup .site .shopwell-single-popup .shopwell-popup__content {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  z-index: 99999;
  margin: 0 auto;
}
.single-shopwell_popup .site .shopwell-single-popup .shopwell-popup__backdrop {
  z-index: 9999;
}
.single-shopwell_popup .site .shopwell-single-popup .elementor-add-section {
  background-color: #fff;
  margin: 0 !important;
}

.site-content-container {
  margin-bottom: 30px;
}

.shopwell-trending-posts {
  margin: 0 0 25px 0;
  width: 100%;
}

.trending-posts__items .hentry {
  margin: 0;
}
.trending-posts__items .entry-meta__content {
  display: flex;
}
.trending-posts__items .entry-meta__content > * {
  margin-right: 22px;
}
.trending-posts__items .entry-meta__content > *:last-child {
  margin-right: 0;
}

.trending-posts__thumbnail {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.trending-posts__thumbnail:focus {
  outline: 1px dotted;
  outline-offset: 2px;
}
.trending-posts__thumbnail:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.trending-posts__thumbnail--full {
  height: 480px;
}

.trending-posts__button {
  margin-right: 15px;
  --shopwell-color__primary--gray: transparent;
  --shopwell-color__primary--grayer: transparent;
}
.trending-posts__button.shopwell-button--ghost {
  position: relative;
  overflow: hidden;
  z-index: 0;
  color: #fff;
  border-color: #fff;
  transition: 0.2s 0.1s;
}
.trending-posts__button.shopwell-button--ghost:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: translateX(-100%);
  z-index: -1;
  transition: 0.3s ease-out;
}
.trending-posts__button.shopwell-button--ghost:focus, .trending-posts__button.shopwell-button--ghost:hover {
  color: #000;
  border-color: #fff;
  transition: 0.2s 0.1s;
}
.trending-posts__button.shopwell-button--ghost:focus:before, .trending-posts__button.shopwell-button--ghost:hover:before {
  transform: translateX(0%);
}

.trending-posts__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.featured-posts__container:not(.swiper-container-initialized) ~ .swiper-button,
.featured-posts__container:not(.swiper-initialized) ~ .swiper-button {
  display: none;
}

.trending-posts--small {
  flex: 1 1 33%;
  max-width: 33%;
}
.trending-posts--small .trending-posts__thumbnail {
  height: 234px;
}
.trending-posts--small .trending-posts__button {
  display: none;
}
.trending-posts--small .hentry {
  padding: 6px 0 6px 12px;
}
.trending-posts--small .hentry .post-format-icon {
  top: 20px;
  left: unset;
  right: 20px;
  transform: translate(0, 0);
}
.trending-posts--small .hentry .entry-title {
  line-height: 1.5;
  margin-bottom: 6px;
}

.trending-posts--layout-1 .trending-posts__items {
  display: flex;
  margin: -6px 0;
}
.trending-posts--layout-1 .trending-posts__items > .hentry:nth-child(1) {
  flex: 1 1 67%;
  max-width: 67%;
}
.trending-posts--layout-1 .trending-posts__items > .hentry:nth-child(1) .entry-summary {
  padding: 30px 100px 30px 30px;
}
.trending-posts--layout-1 .trending-posts__items > .hentry:nth-child(1) .entry-title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.3333333333;
  margin-bottom: 14px;
}
.trending-posts--layout-1 .hentry {
  position: relative;
}
.trending-posts--layout-1 div.entry-summary {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 16px 34px;
}
.trending-posts--layout-1 div.entry-summary a,
.trending-posts--layout-1 div.entry-summary .entry-title,
.trending-posts--layout-1 div.entry-summary .entry-meta {
  color: inherit;
}
.trending-posts--layout-1 div.entry-summary .entry-category a {
  display: inline-block;
  padding: 5px 9px;
  line-height: 1;
  background: var(--shopwell-color__primary);
  border-radius: 15px 0 15px 15px;
  transition: 0.3s all;
}
.trending-posts--layout-1 div.entry-summary .entry-category a:focus, .trending-posts--layout-1 div.entry-summary .entry-category a:hover {
  transform: translateY(-1px);
  border-radius: 15px;
}

.trending-posts--layout-2 .hentry .entry-summary,
.trending-posts--layout-3 .hentry .entry-summary {
  margin: 0;
}
.trending-posts--layout-2 .hentry .entry-title,
.trending-posts--layout-3 .hentry .entry-title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.3333333333;
  margin-bottom: 15px;
}
.trending-posts--layout-2 .hentry .entry-excerpt,
.trending-posts--layout-3 .hentry .entry-excerpt {
  margin-bottom: 25px;
}
.trending-posts--layout-2 .hentry .entry-meta,
.trending-posts--layout-3 .hentry .entry-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trending-posts--layout-2 .entry-meta-box,
.trending-posts--layout-3 .entry-meta-box {
  display: flex;
}
.trending-posts--layout-2 .trending-posts__button,
.trending-posts--layout-3 .trending-posts__button {
  color: #1d2128;
  font-weight: 500;
  margin-right: auto;
  margin-top: 40px;
  border-color: #1d2128;
}
.trending-posts--layout-2 .trending-posts__button.shopwell-button--ghost:before,
.trending-posts--layout-3 .trending-posts__button.shopwell-button--ghost:before {
  background-color: #1d2128;
}
.trending-posts--layout-2 .trending-posts__button.shopwell-button--ghost:focus, .trending-posts--layout-2 .trending-posts__button.shopwell-button--ghost:hover,
.trending-posts--layout-3 .trending-posts__button.shopwell-button--ghost:focus,
.trending-posts--layout-3 .trending-posts__button.shopwell-button--ghost:hover {
  color: #fff;
  border-color: #1d2128;
}

.trending-posts--layout-2 .trending-posts__items {
  position: relative;
  transition: 0.3s;
}
.trending-posts--layout-2 .trending-posts__items:focus-within .swiper-button, .trending-posts--layout-2 .trending-posts__items:hover .swiper-button {
  opacity: 1;
  visibility: visible;
}
.trending-posts--layout-2 .trending-posts__thumbnail {
  order: 2;
  width: 66%;
}
.trending-posts--layout-2 .entry-summary {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 34%;
  height: 480px;
  background-color: #ebeff3;
  padding: 0 40px 0 45px;
}
.trending-posts--layout-2 .entry-meta__content {
  display: flex;
}
.trending-posts--layout-2 .entry-category a {
  color: #1d2128;
}
.trending-posts--layout-2 .trending-posts__button {
  order: 5;
  margin-bottom: 10px;
  padding-left: 0.375em;
  padding-right: 0.375em;
  border-color: #1d2128;
}
.trending-posts--layout-2 .trending-posts__button.shopwell-button--ghost:before {
  background-color: #1d2128;
}
.trending-posts--layout-2 .trending-posts__button.shopwell-button--ghost:focus, .trending-posts--layout-2 .trending-posts__button.shopwell-button--ghost:hover {
  color: #fff;
  border-color: #1d2128;
}
.trending-posts--layout-2 .swiper-container:not(.swiper-container-initialized),
.trending-posts--layout-2 .swiper-container:not(.swiper-initialized) {
  overflow: hidden;
}
.trending-posts--layout-2 .swiper-container:not(.swiper-container-initialized) .hentry,
.trending-posts--layout-2 .swiper-container:not(.swiper-initialized) .hentry {
  flex: 1 0 100%;
}
.trending-posts--layout-2 .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.trending-posts--layout-2 .shopwell-swiper-button-prev {
  left: -16px;
}
.trending-posts--layout-2 .shopwell-swiper-button-next {
  right: -16px;
}

.trending-posts--layout-3 {
  position: relative;
}
.trending-posts--layout-3::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.trending-posts--layout-3 {
  padding-bottom: 32px;
}
.trending-posts--layout-3 .trending-posts__thumbnail {
  order: 1;
  width: 49%;
  height: 316px;
  margin-right: 24px;
}
.trending-posts--layout-3 .hentry .entry-summary {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 10px;
}
.trending-posts--layout-3 .hentry .entry-excerpt {
  margin-bottom: 17px;
}
.trending-posts--layout-3 .hentry .entry-meta {
  justify-content: flex-start;
}
.trending-posts--layout-3 .trending-posts__button {
  order: 5;
  margin-top: 25px;
}

.trending-posts--number-1 .trending-posts__items > .hentry:nth-child(1) {
  flex: 1 1 100%;
  max-width: 100%;
}

.trending-posts--number-2 .trending-posts__items {
  margin: 0;
}
.trending-posts--number-2 .trending-posts--small .trending-posts__thumbnail {
  height: 480px;
}
.trending-posts--number-2 .trending-posts--small .hentry {
  padding: 0 0 0 12px;
}

.shopwell-posts-group {
  width: 100%;
  margin-bottom: 15px;
}

.shopwell-posts-group__items {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.shopwell-posts-group__items li {
  margin-bottom: 10px;
  padding: 0 15px;
}
.shopwell-posts-group__items li:first-child {
  padding-left: 0;
}
.shopwell-posts-group__items li:last-child {
  padding-right: 0;
}
.shopwell-posts-group__items a {
  color: #7d828a;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 12px;
  position: relative;
}
.shopwell-posts-group__items a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
}
.shopwell-posts-group__items a:focus, .shopwell-posts-group__items a:hover {
  color: #1d2128;
}
.shopwell-posts-group__items .active,
.shopwell-posts-group__items .current_page_item a,
.shopwell-posts-group__items .current_page_parent a {
  color: #1d2128;
}
.shopwell-posts-group__items .active:after,
.shopwell-posts-group__items .current_page_item a:after,
.shopwell-posts-group__items .current_page_parent a:after {
  background-color: #1d2128;
}

.shopwell-posts-group--menu {
  justify-content: center;
  margin: 0 0 9px;
}
.shopwell-posts-group--menu li {
  padding: 0 24px;
}
.shopwell-posts-group--menu li:first-child {
  padding-left: 0;
}
.shopwell-posts-group--menu li:last-child {
  padding-right: 0;
}

.featured-posts__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.featured-posts__title {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0;
}

.featured-posts__link {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  --shopwell-color__primary: $color__dark;
}
.featured-posts__link:focus {
  outline: 1px dotted;
  outline-offset: 3px;
}

.featured-posts__content {
  position: relative;
}
.featured-posts__content .hentry {
  flex-direction: column;
  margin: 0;
}
.featured-posts__content .hentry .post-thumbnail {
  width: 100%;
  max-width: none;
  margin: 0 0 5px 0;
}
.featured-posts__content .hentry .post-thumbnail img {
  width: 100%;
}
.featured-posts__content .hentry .entry-summary {
  margin-bottom: 0;
}
.featured-posts__content .swiper-button-disabled {
  cursor: not-allowed;
}
.featured-posts__content .swiper-button {
  position: absolute;
  top: 102px;
  z-index: 10;
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}
.featured-posts__content .shopwell-swiper-button-prev {
  left: -22px;
}
.featured-posts__content .shopwell-swiper-button-next {
  right: -22px;
}

.featured-posts--columns-4 .entry-category {
  display: none;
}
.featured-posts--columns-4 .featured-posts__content .hentry .post-thumbnail {
  margin: 0 0 13px 0;
}
.featured-posts--columns-4 .swiper-button {
  top: 75px;
}

.featured-posts--position-under {
  position: relative;
}
.featured-posts--position-under::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.featured-posts--position-under {
  padding-top: 31px;
}

.featured-posts--position-above {
  position: relative;
}
.featured-posts--position-above::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(185, 185, 185, 0.4);
}
.featured-posts--position-above {
  padding-bottom: 26px;
  margin-bottom: 32px;
}

.error404 .site-header:after {
  display: none;
}

.error404 .site-content {
  padding-top: 0;
  padding-bottom: 0;
}

.error-404__v1 {
  max-width: 420px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-bottom: 90px;
  margin-top: 110px;
}

.error-404__title {
  margin: 30px 0 15px;
}

.error-404__content {
  font-weight: 500;
}

.error-404__icon {
  font-size: 257px;
  font-size: 16.0625rem;
}

.error-404__button.shopwell-button {
  margin-top: 42px;
  min-width: 180px;
  --shopwell-color__primary: #1d2128;
  box-shadow: none;
}

.error-404__v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 170px;
  margin-bottom: 130px;
}
.error-404__v2 .error-404__title {
  font-size: 128px;
  font-size: 8rem;
  font-weight: 500;
  margin: 0;
}
.error-404__v2 .error-404__content {
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 18px;
  line-height: 32px;
  font-weight: 400;
}
.error-404__v2 .error-404__content h3 {
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 500;
  margin: 0 0 29px;
  white-space: nowrap;
}
.error-404__v2 .error-404__button {
  margin-top: 39px;
}

.error-404__image {
  order: 2;
  max-width: 556px;
  height: auto;
  margin-left: 50px;
}

.error-404__wrapper {
  max-width: 500px;
  padding-bottom: 23px;
  text-align: left;
}

.elementor-widget-shopwell-countdown .shopwell-countdown .minutes,
.elementor-widget-shopwell-countdown .shopwell-countdown .seconds {
  display: block !important;
}

/* Help Center */
.search-bar-hc {
  padding: 50px 0;
  text-align: center;
}

.search-bar-hc__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.search-bar-hc__form {
  position: relative;
}

.search-bar-hc__field {
  width: 100%;
  padding-right: 70px;
}

button.search-bar-hc__submit,
.search-bar-hc__submit {
  font-size: 20px;
  font-size: 1.25rem;
  position: absolute;
  top: 0;
  right: 0;
  min-width: 60px;
  height: 100%;
  border: none;
  color: #1d2128;
}

.search-bar-hc > .container {
  max-width: 590px;
}

.page-header-hc .site-breadcrumb {
  padding-top: 20px;
  padding-bottom: 20px;
}
.page-header-hc .site-breadcrumb + .page-header__content {
  margin-top: 0;
}
.page-header-hc .page-header__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
  margin-top: 0;
  text-align: left;
  line-height: 1;
}
.page-header-hc .page-header__title .shopwell-svg-icon {
  padding-right: 10px;
}
.page-header-hc .page-header__title .shopwell-svg-icon img {
  max-width: 30px;
}
.page-header-hc .page-header__title small {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 15px;
  text-transform: lowercase;
}

.shopwell-help-archive .page-header > .container,
.shopwell-help-archive .site-content > .container {
  max-width: 590px;
}
.shopwell-help-archive .shopwell-search__heading {
  display: none;
}
.shopwell-help-archive .site-content {
  padding-top: 50px;
  padding-bottom: 110px;
}
.shopwell-help-archive .page-header + .site-content {
  padding-top: 50px;
}
.shopwell-help-archive .shopwell-search__heading + .hentry {
  border-top: 1px solid #ebeff3;
}
.shopwell-help-archive .hentry {
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #ebeff3;
  padding-top: 20px;
  padding-bottom: 25px;
  margin: 0;
}
.shopwell-help-archive .hentry:first-child {
  border-top: 1px solid #ebeff3;
}
.shopwell-help-archive .hentry .help-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
}
.shopwell-help-archive .hentry .help-short-description {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
}
.shopwell-help-archive .hentry .help-short-description p {
  margin: 0;
}
.shopwell-help-archive .hentry .search-hightlight {
  background-color: #b4f4de;
}
.shopwell-help-archive.hfeed .hentry {
  margin: 0;
}
.shopwell-help-archive.search-results article {
  margin-bottom: 0;
}
.shopwell-help-archive .pagination {
  margin-top: 50px;
}
.shopwell-help-archive .shopwell-progress {
  display: none;
}
.shopwell-help-archive.search-no-results section.no-results {
  border-top: 1px solid #ebeff3;
  padding-top: 30px;
}
.shopwell-help-archive.search-no-results section.no-results .page-header,
.shopwell-help-archive.search-no-results section.no-results .search-form {
  display: none;
}

.single-sw_help_article .page-header__content {
  border-bottom: 1px solid #ebeff3;
  padding-bottom: 40px;
}
.single-sw_help_article .site-content {
  padding-top: 45px;
  padding-bottom: 45px;
}
.single-sw_help_article .site-content ul {
  margin-bottom: 0;
}
.single-sw_help_article .entry-title {
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.single-sw_help_article .site-content .content-area {
  display: flex;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar {
  order: 1;
  flex: 26% 0 0;
  padding-right: 30px;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar li {
  padding: 15px 0;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar li a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #7d828a;
  position: relative;
  padding-left: 20px;
  display: block;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 2px;
  opacity: 0;
  transition: height 0.35s;
  background-color: #1d2128;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar li a:hover {
  color: #1d2128;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar li a:hover:before {
  opacity: 1;
  height: 100%;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar li.current-post a {
  color: #1d2128;
}
.single-sw_help_article .site-content .content-area .shopwell-help-sidebar li.current-post a:before {
  opacity: 1;
  height: 100%;
}
.single-sw_help_article .site-content .content-area .hentry {
  order: 2;
  width: 100%;
}

/* Comments
--------------------------------------------- */
.comments-area {
  margin-top: 25px;
  border-top: 1px solid rgba(185, 185, 185, 0.4);
}

.comments-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 30px 0 0;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
}
.comment-list .children {
  list-style: none;
  margin-left: 30px;
}
.comment-list .comment-meta {
  position: relative;
}
.comment-list .comment-meta ~ .comment-content {
  margin-left: 55px;
}
.comment-list .avatar {
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.comment-list > li:first-child .comment-body {
  border-top: none;
}
.comment-list .comment-body {
  padding: 25px 0 18px;
  border-top: 1px solid rgba(185, 185, 185, 0.4);
}
.comment-list .comment-content {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.85;
  color: #1d2128;
}
.comment-list .comment-metadata {
  font-weight: 500;
  margin-bottom: 9px;
}
.comment-list .comment-metadata .fn {
  line-height: 1;
  padding-top: 3px;
  font-weight: 500;
}
.comment-list .comment-metadata .date {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
}
.comment-list .reply {
  padding-top: 7px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
  font-weight: 500;
}
.comment-list .reply a {
  color: inherit;
}
.comment-list .reply a:focus, .comment-list .reply a:hover {
  color: #1d2128;
}
.comment-list .reply a:first-child {
  padding-right: 10px;
}
.comment-list .comment-respond .comment-reply-title {
  display: flex;
  justify-content: space-between;
}

.comment-respond {
  margin-top: 27px;
}
.comment-respond .comment-reply-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 9px;
  text-transform: capitalize;
}
.comment-respond .comment-form {
  margin-left: -15px;
  margin-right: -15px;
}
.comment-respond .comment-form .comment-notes,
.comment-respond .comment-form .logged-in-as {
  color: #7d828a;
}
.comment-respond .comment-form .comment-notes a,
.comment-respond .comment-form .comment-notes .required,
.comment-respond .comment-form .logged-in-as a,
.comment-respond .comment-form .logged-in-as .required {
  color: inherit;
}
.comment-respond .comment-form p {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 0 18px;
  font-size: 14px;
  font-size: 0.875rem;
}
.comment-respond .comment-form p span {
  margin-bottom: 7px;
  display: inline-flex;
  font-weight: 500;
}
.comment-respond .comment-form p:last-child {
  margin-bottom: 0;
}
.comment-respond .comment-form p a:hover {
  color: #1d2128;
}
.comment-respond .comment-form p a:focus {
  color: #1d2128;
  outline: 1px dotted;
  outline-offset: 3px;
}
.comment-respond .comment-form .comment-notes span {
  font-weight: normal;
}
.comment-respond .comment-form .comment-form-comment {
  margin-bottom: 13px;
}
.comment-respond .comment-form .comment-form-comment textarea {
  height: 120px;
}
.comment-respond .comment-form .comment-form-email {
  margin-bottom: 41px;
}
.comment-respond .comment-form-author,
.comment-respond .comment-form-email {
  width: 50%;
  float: left;
}
.comment-respond .comment-form-author input,
.comment-respond .comment-form-email input {
  width: 100%;
}
.comment-respond .submit {
  width: 100%;
  background-color: #1d2128;
  color: #fff;
  box-shadow: none;
}
.comment-respond .submit:focus, .comment-respond .submit:hover {
  background-color: #1d2128;
  color: #fff;
  box-shadow: none;
}

/* .bypostauthor {
     display: initial;
}*/
/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}
.widget form input[type=search] {
  height: 43px;
  line-height: 43px;
  border-width: 2px;
  padding: 0 20px;
  box-shadow: none;
}
.widget form input[type=search]:focus, .widget form input[type=search]:hover {
  box-shadow: none;
}
.widget form input[type=submit],
.widget form button[type=submit] {
  margin-left: 12px;
  background-color: #1d2128;
  color: #fff;
  font-weight: normal;
  box-shadow: none;
  padding: 0;
  line-height: 43px;
}
.widget form input[type=submit].has-icon,
.widget form button[type=submit].has-icon {
  font-size: 16px;
  font-size: 1rem;
  padding: 0;
  min-width: var(--shopwell-size__medium);
  line-height: var(--shopwell-size__medium);
}
.widget form input[type=submit]:hover, .widget form input[type=submit]:focus,
.widget form button[type=submit]:hover,
.widget form button[type=submit]:focus {
  background-color: #1d2128;
}
.widget form input[type=submit] #search-icon,
.widget form button[type=submit] #search-icon {
  color: #fff;
  fill: #fff;
  width: 28.45px;
  height: 28.45px;
  transform: scaleX(-1);
}

.wp-block-calendar:not(.wp-block) {
  border: 1px solid #ebeff3;
  max-width: 300px;
}
.wp-block-calendar:not(.wp-block) .wp-block-calendar,
.wp-block-calendar:not(.wp-block) .calendar_wrap {
  position: relative;
}
.wp-block-calendar:not(.wp-block) .wp-calendar-table {
  margin-bottom: 5px;
  border: none;
}
.wp-block-calendar:not(.wp-block) caption {
  margin-bottom: 15px;
  font-weight: 600;
  padding: 10px 20px;
  text-align: center;
  background-color: #fbfbfc;
}
.wp-block-calendar:not(.wp-block) thead,
.wp-block-calendar:not(.wp-block) tbody {
  border: none;
}
.wp-block-calendar:not(.wp-block) thead th,
.wp-block-calendar:not(.wp-block) thead td,
.wp-block-calendar:not(.wp-block) tbody th,
.wp-block-calendar:not(.wp-block) tbody td {
  background: transparent;
  border: 0;
  word-break: normal;
  padding: 0.5em;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}
.wp-block-calendar:not(.wp-block) thead th:first-child,
.wp-block-calendar:not(.wp-block) thead td:first-child,
.wp-block-calendar:not(.wp-block) tbody th:first-child,
.wp-block-calendar:not(.wp-block) tbody td:first-child {
  padding-left: 1em;
}
.wp-block-calendar:not(.wp-block) thead th:last-child,
.wp-block-calendar:not(.wp-block) thead td:last-child,
.wp-block-calendar:not(.wp-block) tbody th:last-child,
.wp-block-calendar:not(.wp-block) tbody td:last-child {
  padding-right: 1em;
}
.wp-block-calendar:not(.wp-block) thead th {
  color: #999;
}
.wp-block-calendar:not(.wp-block) .wp-calendar-nav {
  padding: 10px 0;
}
.wp-block-calendar:not(.wp-block) .wp-calendar-nav a {
  text-decoration: none;
}

ul.wp-block-categories,
.wp-block-categories__list,
ul.wp-block-archives {
  padding: 0;
  margin: 0;
}
ul.wp-block-categories li,
.wp-block-categories__list li,
ul.wp-block-archives li {
  font-size: 14px;
  font-size: 0.875rem;
  list-style: none;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7d828a;
  line-height: 1.2;
}
ul.wp-block-categories li:last-child,
.wp-block-categories__list li:last-child,
ul.wp-block-archives li:last-child {
  padding-bottom: 0;
}
ul.wp-block-categories li:first-child,
.wp-block-categories__list li:first-child,
ul.wp-block-archives li:first-child {
  padding-top: 0;
}
ul.wp-block-categories li a,
.wp-block-categories__list li a,
ul.wp-block-archives li a {
  position: relative;
}
ul.wp-block-categories li a:after,
.wp-block-categories__list li a:after,
ul.wp-block-archives li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
ul.wp-block-categories li a:focus:after, ul.wp-block-categories li a:hover:after,
.wp-block-categories__list li a:focus:after,
.wp-block-categories__list li a:hover:after,
ul.wp-block-archives li a:focus:after,
ul.wp-block-archives li a:hover:after {
  width: 100%;
  left: 0;
}

ol.wp-block-latest-comments {
  padding-left: 0;
}

.wp-block-latest-comments__comment {
  margin-bottom: 0;
}

.wp-block-latest-comments__comment-excerpt p {
  margin: 5px 0 0;
}

.wp-block-search .wp-block-search__input {
  height: 43px;
  line-height: 43px;
  border-width: 2px;
  padding: 0 20px;
  box-shadow: none;
  border-color: #ebeff3;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}
.wp-block-search .wp-block-search__input:focus, .wp-block-search .wp-block-search__input:hover {
  box-shadow: none;
}
.wp-block-search .wp-block-search__button,
.wp-block-search .wp-block-search__button.wp-block-search__button {
  background-color: #1d2128;
  color: #fff;
  border: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: none;
  margin-left: 12px;
}
.wp-block-search .wp-block-search__button:focus, .wp-block-search .wp-block-search__button:hover,
.wp-block-search .wp-block-search__button.wp-block-search__button:focus,
.wp-block-search .wp-block-search__button.wp-block-search__button:hover {
  background-color: #1d2128;
}

.wp-block-group .wp-block-group__inner-container > h1, .wp-block-group .wp-block-group__inner-container > h2, .wp-block-group .wp-block-group__inner-container > h3, .wp-block-group .wp-block-group__inner-container > h4, .wp-block-group .wp-block-group__inner-container > h5, .wp-block-group .wp-block-group__inner-container > h6 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 20px;
}

.wp-block-latest-posts,
.wp-block-latest-comments,
.wp-block-page-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-latest-posts li,
.wp-block-latest-comments li,
.wp-block-page-list li {
  padding: 7px 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.wp-block-latest-posts li:last-child,
.wp-block-latest-comments li:last-child,
.wp-block-page-list li:last-child {
  padding-bottom: 0;
}
.wp-block-latest-posts li:first-child,
.wp-block-latest-comments li:first-child,
.wp-block-page-list li:first-child {
  padding-top: 0;
}
.wp-block-latest-posts li a,
.wp-block-latest-comments li a,
.wp-block-page-list li a {
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.wp-block-latest-posts li a:focus, .wp-block-latest-posts li a:hover,
.wp-block-latest-comments li a:focus,
.wp-block-latest-comments li a:hover,
.wp-block-page-list li a:focus,
.wp-block-page-list li a:hover {
  background-size: 100% 1px;
}

.wp-block-tag-cloud:not(.is-style-outline) {
  margin: -8px 0;
  padding-top: 8px;
}
.wp-block-tag-cloud:not(.is-style-outline) a {
  text-decoration: none;
  background-color: #ebeff3;
  color: var(--shopwell-color__heading);
  font-weight: 500;
  padding: 8px 13px 9px;
  border-radius: 3px;
  margin-bottom: 10px;
  transition: 0.3s all;
}
.wp-block-tag-cloud:not(.is-style-outline) a:focus, .wp-block-tag-cloud:not(.is-style-outline) a:hover {
  transform: translateY(-1px);
  color: #fff;
  background-color: var(--shopwell-color__primary);
}

p.wp-block-tag-cloud {
  margin: 0;
}

.blog-sidebar .widget,
.single-sidebar .widget {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
}
.blog-sidebar .posts-slider-widget,
.single-sidebar .posts-slider-widget {
  padding-bottom: 0;
  border-bottom: none;
}
.blog-sidebar .widget_tag_cloud .widget-title,
.single-sidebar .widget_tag_cloud .widget-title {
  margin-bottom: 7px;
}
.blog-sidebar .shopwell-newsletter-widget .widget-title,
.single-sidebar .shopwell-newsletter-widget .widget-title {
  margin-bottom: 12px;
}
.blog-sidebar figure.wp-block-gallery,
.single-sidebar figure.wp-block-gallery {
  margin: 0;
}
.blog-sidebar .widget_archive,
.blog-sidebar .widget_categories,
.single-sidebar .widget_archive,
.single-sidebar .widget_categories {
  padding-bottom: 20px;
}
.blog-sidebar .widget_archive .widget-title,
.blog-sidebar .widget_categories .widget-title,
.single-sidebar .widget_archive .widget-title,
.single-sidebar .widget_categories .widget-title {
  margin-bottom: 10px;
}

.blog-sidebar .widget:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.user-bio-widget__header {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.user-bio-widget__content-avatar {
  margin-right: 32px;
}
.user-bio-widget__content-avatar img {
  border-radius: 100%;
}

.user-bio-widget__content-name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 13px;
  margin-bottom: 3px;
  color: #1d2128;
}

.user-bio-widget__content-job {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 9px;
  color: #1d2128;
}

.user-bio-widget__content {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7d828a;
  margin-bottom: 14px;
}

.user-bio-widget__footer a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
}
.user-bio-widget__footer a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #1d2128;
  transition: 0.5s;
}

.posts-slider-widget .posts-slider {
  padding: 31px 31px 9px 31px;
  border: 1px solid rgba(185, 185, 185, 0.4);
}
.posts-slider-widget .post-thumbnail {
  display: inline-block;
  margin-bottom: 8px;
}
.posts-slider-widget .post-format-icon {
  display: none;
}
.posts-slider-widget .entry-title__slider {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7142857143;
  margin-top: 0;
  margin-bottom: 15px;
}
.posts-slider-widget .entry-meta {
  margin-bottom: 3px;
}
.posts-slider-widget .swiper-button {
  position: absolute;
  top: 35%;
  transform: translateY(-35%);
  /*rtl:raw:
  	transform: translateY(-35%) rotateY(180deg);
  */
}
.posts-slider-widget .shopwell-swiper-button-prev {
  left: 10px;
}
.posts-slider-widget .shopwell-swiper-button-next {
  right: 10px;
}
.posts-slider-widget .swiper-button-disabled,
.posts-slider-widget .swiper-button-disabled:focus,
.posts-slider-widget .swiper-button-disabled:hover {
  background-color: inherit;
  color: #7d828a;
}
.posts-slider-widget .swiper-pagination {
  margin-top: 0;
  text-align: center;
  position: static;
}

.social-links-widget.widget .widget-title {
  margin-bottom: 14px;
}
.social-links-widget .shopwell-socials--bg {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 14px;
  border-radius: 100%;
  margin: 10px 10px 0 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shopwell-instagram-widget .shopwell-instagram__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.shopwell-instagram-widget .shopwell-instagram__item {
  transition: 0.5s;
  width: 12.5%;
  margin: 0;
  padding: 0 4px 4px 0;
}
.shopwell-instagram-widget .shopwell-instagram__item:focus-within, .shopwell-instagram-widget .shopwell-instagram__item:hover {
  opacity: 0.9;
}
.shopwell-instagram-widget .shopwell-instagram__item img {
  display: block;
  border-radius: 2px;
}
.shopwell-instagram-widget .columns-1 .shopwell-instagram__item {
  width: 100%;
}
.shopwell-instagram-widget .columns-2 .shopwell-instagram__item {
  width: 50%;
}
.shopwell-instagram-widget .columns-3 .shopwell-instagram__item {
  width: 33.3333333333%;
}
.shopwell-instagram-widget .columns-4 .shopwell-instagram__item {
  width: 25%;
}
.shopwell-instagram-widget .columns-5 .shopwell-instagram__item {
  width: 20%;
}
.shopwell-instagram-widget .columns-6 .shopwell-instagram__item {
  width: 16.6666666667%;
}
.shopwell-instagram-widget .columns-7 .shopwell-instagram__item {
  width: 14.2857142857%;
}
.shopwell-instagram-widget .columns-8 .shopwell-instagram__item {
  width: 12.5%;
}

.shopwell-newsletter-widget .shopwell-newsletter__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6666666667;
  color: #7d828a;
  margin-bottom: 8px;
}
.shopwell-newsletter-widget .shopwell-newsletter__form .mc4wp-form-fields {
  display: flex;
  flex-wrap: wrap;
}
.shopwell-newsletter-widget .shopwell-newsletter__form .mc4wp-form-fields input[type=email],
.shopwell-newsletter-widget .shopwell-newsletter__form .mc4wp-form-fields input[type=text] {
  flex: auto;
  margin-right: 12px;
  padding: 0 13px;
  line-height: 40px;
  height: auto;
  box-shadow: none;
  border: 2px solid #ebeff3;
}
.shopwell-newsletter-widget .shopwell-newsletter__form .mc4wp-form-fields input[type=submit] {
  font-size: 14px;
  font-size: 0.875rem;
  min-width: 120px;
  padding: 0 1.5em;
  line-height: var(--shopwell-size__medium);
  background-color: #1d2128;
  color: #fff;
  min-width: auto;
  padding-left: 1.65em;
  padding-right: 1.65em;
  box-shadow: none;
}

.widget_archive ul,
.widget_categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_archive li,
.widget_categories li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.6666666667;
}
.widget_archive li a,
.widget_categories li a {
  color: #1d2128;
}

.widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
}
.widget_tag_cloud .tagcloud a {
  font-size: 10px !important;
  font-weight: 500;
  color: #fff;
  background-color: #1d2128;
  border-radius: 2px;
  padding: 9px 12px 8px;
  margin: 12px 12px 0 0;
  text-transform: capitalize;
}

.shopwell-popular-posts-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.shopwell-popular-posts-widget li {
  display: flex;
  margin-bottom: 16px;
}
.shopwell-popular-posts-widget li:last-child {
  margin-bottom: 0;
}
.shopwell-popular-posts-widget .post-thumbnail {
  margin-right: 16px;
  position: relative;
}
.shopwell-popular-posts-widget .post-thumbnail img {
  max-width: 100px;
  border-radius: 2px;
}
.shopwell-popular-posts-widget .post-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shopwell-popular-posts-widget .post-format-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
}
.shopwell-popular-posts-widget .post-format-icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: scale(1) translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(17, 24, 39, 0.6);
  transition: transform 0.22s ease;
  z-index: -1;
}
.shopwell-popular-posts-widget .post-format-icon.icon-gallery {
  font-size: 12px;
  font-size: 0.75rem;
}
.shopwell-popular-posts-widget .post-title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #1d2128;
  display: block;
}
.shopwell-popular-posts-widget .post-meta__date {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 2;
  font-weight: 500;
  color: #7d828a;
}

.widget > ul,
.wp-block-list,
.wp-block-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget > ul,
.wp-block-list {
  font-size: 90%;
}
.widget > ul li:not(:last-child),
.wp-block-list li:not(:last-child) {
  margin-bottom: 8px;
}
.widget > ul li a,
.wp-block-list li a {
  color: inherit;
}

.widget-title,
.widgettitle,
.wp-block-search__label,
.wp-block-heading {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 20px;
}

.shopwell-icon-box-widget {
  margin-top: 24px;
  padding: 13px 19px 9px;
  border: 1px solid rgba(185, 185, 185, 0.4);
  border-radius: 2px;
}
.shopwell-icon-box-widget .shopwell-icon-box-widget__item {
  display: flex;
  align-items: center;
  color: #7d828a;
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
  padding-bottom: 9px;
  margin-bottom: 11px;
  position: relative;
}
.shopwell-icon-box-widget .shopwell-icon-box-widget__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.shopwell-icon-box-widget .shopwell-icon-box-widget__icon {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 16px;
}
.shopwell-icon-box-widget .shopwell-icon-box-widget__text {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
  font-weight: 500;
}
.shopwell-icon-box-widget a.shopwell-icon-box-widget__text:hover {
  color: #1d2128;
}
.shopwell-icon-box-widget .shopwell-icon-box-widget__button {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
  margin-left: auto;
}
.shopwell-icon-box-widget .shopwell-icon-box-widget__button:hover {
  color: #1d2128;
}
.shopwell-icon-box-widget .shopwell-icon-box-widget__button_all {
  display: none;
}

/* 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-text {
  margin: 0.8075em 0;
  font-size: 14px;
  font-size: 0.875rem;
}

.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;
}

/* Elements
--------------------------------------------- */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.shopwellFadeInUp {
  animation-name: shopwellFadeInUp;
}

.shopwellSpinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: transparent;
  animation: shopwellSpin infinite 1s linear;
}

@keyframes fadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  99.99% {
    transform: scale(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  99.99% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
  }
}
@keyframes shopwellFadeIn {
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes shopwellFadeIn {
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@-webkit-keyframes shopwellBlur {
  0% {
    -webkit-filter: blur(0px);
  }
  0% {
    -webkit-filter: blur(1px);
  }
  50% {
    -webkit-filter: blur(2px);
  }
  100% {
    -webkit-filter: blur(3px);
  }
}
@-moz-keyframes shopwellBlur {
  0% {
    -moz-filter: blur(0px);
  }
  0% {
    -moz-filter: blur(1px);
  }
  50% {
    -moz-filter: blur(2px);
  }
  100% {
    -moz-filter: blur(3px);
  }
}
@keyframes shopwellBlur {
  0% {
    filter: blur(0px);
  }
  0% {
    filter: blur(1px);
  }
  50% {
    filter: blur(2px);
  }
  100% {
    filter: blur(3px);
  }
}
@keyframes anim-ripple {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  20% {
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}
.shopwell-progress {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.6666666667;
  color: #1d2128;
}

.shopwell-progress__inner {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #ebeff3;
  padding: 0 4.19em;
}
.shopwell-progress__inner .shopwell-progress__count-bar {
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #000000;
  height: 2px;
}

.shopwell-pagination--loading {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.shopwell-pagination--loading-dots {
  display: flex;
  width: 23px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.shopwell-pagination--loading-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #1d2128;
  margin-bottom: 6px;
  transition: 0.3s;
  animation: shopwellLoading 0.8s linear infinite;
}
.shopwell-pagination--loading-dots span:nth-child(1) {
  animation-delay: 0s;
}
.shopwell-pagination--loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.shopwell-pagination--loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.shopwell-pagination--loading-dots span:nth-child(4) {
  animation-delay: 0.6s;
}

.shopwell-pagination--loading-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8333333333;
  color: #1d2128;
}

.shopwell-socials {
  display: flex;
}

.shopwell-socials__item {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #7d828a;
  margin-right: 23px;
}
.shopwell-socials__item:last-child {
  margin-right: 0;
}
.shopwell-socials__item:hover {
  color: #1d2128;
}

.shopwell-socials--twitter {
  background-color: #000;
}

.shopwell-socials--facebook {
  background-color: #316FF6;
}

.shopwell-socials--googleplus {
  background-color: #dd4b39;
}

.shopwell-socials--pinterest {
  background-color: #e60023;
}

.shopwell-socials--tumblr {
  background-color: #34526f;
}

.shopwell-socials--reddit {
  background-color: #ff4500;
}

.shopwell-socials--linkedin {
  background-color: #0077b5;
}

.shopwell-socials--stumbleupon {
  background-color: #f74425;
}

.shopwell-socials--digg {
  background-color: #005be2;
}

.shopwell-socials--vk {
  background-color: #0077ff;
}

.shopwell-socials--telegram {
  background-color: #24A1DE;
}

.shopwell-socials--email {
  background-color: #ff0000;
}

.shopwell-socials--blogger {
  background-color: #f57d00;
}

.shopwell-socials--tiktok {
  background-color: #000;
}

.shopwell-socials--flickr {
  background-color: #0063dc;
}

.shopwell-socials--instagram {
  background-color: #e4405f;
}

.shopwell-socials--youtube {
  background-color: #ff0000;
}

.shopwell-socials--vimeo {
  background-color: #86c9ef;
}

.shopwell-socials--dribbble {
  background-color: #ea4c89;
}

.shopwell-socials--behance {
  background-color: #053eff;
}

.shopwell-socials--github {
  background-color: #4078c0;
}

.swiper-pagination-bullets {
  position: relative;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #c9cacc;
  width: 8px;
  height: 8px;
  opacity: 1;
  margin: 0 6px;
  border: none;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background-color: #1d2128;
}

.swiper-pagination--background {
  background-color: rgba(29, 33, 40, 0.48);
  height: 32px;
  display: flex;
  align-items: center;
  width: fit-content;
  border-radius: 30px;
  padding: 6px;
}
.swiper-pagination--background .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.24);
}
.swiper-pagination--background .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination--background .swiper-pagination-bullet:hover {
  background-color: #fff;
}
.swiper-pagination--background:empty {
  display: none;
}

.swiper-button {
  display: inline-flex;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #fff;
  color: #7d828a;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 6px 0px rgba(29, 33, 40, 0.16);
  transition: 0.3s;
}
.swiper-button:hover {
  box-shadow: 0px 4px 8px 0px rgba(29, 33, 40, 0.16);
  color: #1d2128;
}

.swiper-button-disabled {
  cursor: not-allowed;
}
.swiper-button-disabled:hover {
  color: #7d828a;
}

.swiper-button--subtle {
  background-color: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
.swiper-button--subtle:hover {
  box-shadow: none;
}

.swiper-button--raised {
  font-size: 24px;
  font-size: 1.5rem;
  width: 32px;
  height: 60px;
  border-radius: 2px;
}

.swiper-pagination-lock,
.swiper-button-lock {
  display: none;
}

.shopwell-more .shopwell-more__content {
  margin-top: 10px;
  display: none;
}
.shopwell-more .shopwell-more__content > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.shopwell-more .shopwell-more__button {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
  font-weight: 500;
  margin-top: 11px;
}

.shopwell-rtl-smart .shopwell-slides-elementor .item-slider:before,
.shopwell-rtl-smart .shopwell-slides-elementor .shopwell-slide__image:before,
.shopwell-rtl-smart .page-header__image:before {
  /*rtl:raw:
  	content: '';
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	width: auto;
  	height: auto;
  	background-image: inherit;
  	background-position-x: inherit;
  	background-position-y: inherit;
  	background-size: inherit;
  	background-repeat-x: inherit;
  	background-repeat-y: inherit;
  	background-attachment: inherit;
  	background-origin: inherit;
  	background-clip: inherit;
  	transform: rotateY(180deg);
  */
}
.shopwell-rtl-smart .shopwell-banner__featured-image {
  /*rtl:raw:
  	transform: scale(1.01) rotateY(180deg);
  */
}
.shopwell-rtl-smart .shopwell-banner__image-zoom .shopwell-banner:hover .shopwell-banner__featured-image {
  /*rtl:raw:
  	transform: scale(1.1) rotateY(180deg);
  */
}
.shopwell-rtl-smart .header-category__menu .menu-item-has-background > ul:after {
  /*rtl:raw:
  	content: '';
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	width: auto;
  	height: auto;
  	background: inherit;
  	transform: rotateY(180deg);
  	z-index: -1;
  */
}

.rtl-bg > .elementor-widget-wrap:before {
  /*rtl:raw:
  	content: '';
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	width: auto;
  	height: auto;
  	background-image: inherit;
  	background-position-x: inherit;
  	background-position-y: inherit;
  	background-size: inherit;
  	background-repeat-x: inherit;
  	background-repeat-y: inherit;
  	background-attachment: inherit;
  	background-origin: inherit;
  	background-clip: inherit;
  	transform: rotateY(180deg);
  */
}

/* Elementor
--------------------------------------------- */
:root {
  --elementor--spacing-default: 12px;
  --elementor--spacing-narrow: 6px;
  --elementor--spacing-extended: 18px;
  --elementor--spacing-wide: 24px;
  --elementor--spacing-wider: 36px;
  --elementor--width-default: 24px;
  --elementor--width-narrow: 12px;
  --elementor--width-extended: 36px;
  --elementor--width-wide: 48px;
  --elementor--width-wider: 72px;
}

@media (min-width: 1200px) {
  .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default {
    max-width: calc(1140px + var(--elementor--width-default));
  }
  .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-narrow {
    max-width: calc(1140px + var(--elementor--width-narrow));
  }
  .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-extended {
    max-width: calc(1140px + var(--elementor--width-extended));
  }
  .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-wide {
    max-width: calc(1140px + var(--elementor--width-wide));
  }
  .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-wider {
    max-width: calc(1140px + var(--elementor--width-wider));
  }
}
.elementor-container.elementor-column-gap-default .elementor-column > .elementor-element-populated {
  padding: var(--elementor--spacing-default);
}
.elementor-container.elementor-column-gap-narrow .elementor-column > .elementor-element-populated {
  padding: var(--elementor--spacing-narrow);
}
.elementor-container.elementor-column-gap-extended .elementor-column > .elementor-element-populated {
  padding: var(--elementor--spacing-extended);
}
.elementor-container.elementor-column-gap-wide .elementor-column > .elementor-element-populated {
  padding: var(--elementor--spacing-wide);
}
.elementor-container.elementor-column-gap-wider .elementor-column > .elementor-element-populated {
  padding: var(--elementor--spacing-wider);
}

@media (max-width: 1024px) {
  :root {
    --elementor--spacing-default: 12px 16px;
    --elementor--spacing-narrow: 8px;
    --elementor--spacing-extended: 18px 24px;
    --elementor--spacing-wide: 24px 32px;
    --elementor--spacing-wider: 36px 48px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .elementor .elementor-element.shopwell-tablet-column--column_lg > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-tablet-column--column_lg > .elementor-element,
  .elementor .elementor-section.shopwell-tablet-column--column_lg .elementor-column {
    flex: 1 0 100%;
    width: 100%;
  }
  .elementor .elementor-element.shopwell-tablet-column--column_md > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-tablet-column--column_md > .elementor-element,
  .elementor .elementor-section.shopwell-tablet-column--column_md .elementor-column {
    flex: 1 0 75%;
    width: 75%;
  }
  .elementor .elementor-element.shopwell-tablet-column--column_sm > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-tablet-column--column_sm > .elementor-element,
  .elementor .elementor-section.shopwell-tablet-column--column_sm .elementor-column {
    flex: 1 0 50%;
    width: 50%;
  }
  .elementor .elementor-element.shopwell-tablet-column--column_xs > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-tablet-column--column_xs > .elementor-element,
  .elementor .elementor-section.shopwell-tablet-column--column_xs .elementor-column {
    flex: 1 0 40%;
    width: 40%;
  }
  .elementor .elementor-element.shopwell-tablet-column--column_xxs > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-tablet-column--column_xxs > .elementor-element,
  .elementor .elementor-section.shopwell-tablet-column--column_xxs .elementor-column {
    flex: 1 0 30%;
    width: 30%;
  }
  .elementor .elementor-element.shopwell-tablet-column--column_xxxs > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-tablet-column--column_xxxs > .elementor-element,
  .elementor .elementor-section.shopwell-tablet-column--column_xxxs .elementor-column {
    flex: 1 0 22.5%;
    width: 22.5%;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default) {
    --widgets-spacing: 16px;
    --elementor--spacing-default: 8px;
    --elementor--spacing-narrow: 8px;
    --elementor--spacing-extended: 8px;
    --elementor--spacing-wide: 8px;
    --elementor--spacing-wider: 8px;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default).e-con.e-flex {
    flex-wrap: nowrap !important;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: space-between;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default).e-con.e-flex::-webkit-scrollbar {
    display: none;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default).e-con.e-grid {
    --display: flex;
    display: flex;
    flex-wrap: nowrap !important;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: space-between;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default).e-con.e-grid::-webkit-scrollbar {
    display: none;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default) .elementor-container:not(.elementor-column-gap-no) {
    padding-left: 8px;
    padding-right: 8px;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default) .elementor-container {
    flex-wrap: nowrap !important;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: space-between;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default) .elementor-container::-webkit-scrollbar {
    display: none;
  }
  .shopwell-responsive-column:not(.shopwell-tablet-column--default) .elementor-container:not(.elementor-column-gap-no) {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 767px) {
  .elementor .elementor-element.shopwell-mobile-column--column_lg > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-mobile-column--column_lg > .elementor-element,
  .elementor .elementor-section.shopwell-mobile-column--column_lg .elementor-column {
    flex: 1 0 100%;
    width: 100%;
  }
  .elementor .elementor-element.shopwell-mobile-column--column_md > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-mobile-column--column_md > .elementor-element,
  .elementor .elementor-section.shopwell-mobile-column--column_md .elementor-column {
    flex: 1 0 75%;
    width: 75%;
  }
  .elementor .elementor-element.shopwell-mobile-column--column_sm > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-mobile-column--column_sm > .elementor-element,
  .elementor .elementor-section.shopwell-mobile-column--column_sm .elementor-column {
    flex: 1 0 50%;
    width: 50%;
  }
  .elementor .elementor-element.shopwell-mobile-column--column_xs > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-mobile-column--column_xs > .elementor-element,
  .elementor .elementor-section.shopwell-mobile-column--column_xs .elementor-column {
    flex: 1 0 40%;
    width: 40%;
  }
  .elementor .elementor-element.shopwell-mobile-column--column_xxs > .e-con-inner > .elementor-element,
  .elementor .elementor-element.shopwell-mobile-column--column_xxs > .elementor-element,
  .elementor .elementor-section.shopwell-mobile-column--column_xxs .elementor-column {
    flex: 1 0 30%;
    width: 30%;
  }
  .shopwell-responsive-column:not(.shopwell-mobile-column--default) {
    --widgets-spacing: 16px;
    --elementor--spacing-default: 8px;
    --elementor--spacing-narrow: 8px;
    --elementor--spacing-extended: 8px;
    --elementor--spacing-wide: 8px;
    --elementor--spacing-wider: 8px;
  }
  .shopwell-responsive-column:not(.shopwell-mobile-column--default).e-con.e-flex {
    flex-wrap: nowrap !important;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: space-between;
  }
  .shopwell-responsive-column:not(.shopwell-mobile-column--default).e-con.e-flex::-webkit-scrollbar {
    display: none;
  }
  .shopwell-responsive-column:not(.shopwell-mobile-column--default).e-con.e-grid {
    --display: flex;
    display: flex;
    flex-wrap: nowrap !important;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: space-between;
  }
  .shopwell-responsive-column:not(.shopwell-mobile-column--default).e-con.e-grid::-webkit-scrollbar {
    display: none;
  }
  .shopwell-responsive-column:not(.shopwell-mobile-column--default) .elementor-container {
    flex-wrap: nowrap !important;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: space-between;
  }
  .shopwell-responsive-column:not(.shopwell-mobile-column--default) .elementor-container::-webkit-scrollbar {
    display: none;
  }
  .shopwell-responsive-column:not(.shopwell-mobile-column--default) .elementor-container:not(.elementor-column-gap-no) {
    padding-left: 8px;
    padding-right: 8px;
  }
  .shopwell-responsive-column.shopwell-mobile-column--column_sm {
    --widgets-spacing: 8px;
    --elementor--spacing-default: 4px;
    --elementor--spacing-narrow: 4px;
    --elementor--spacing-extended: 4px;
    --elementor--spacing-wide: 4px;
    --elementor--spacing-wider: 4px;
  }
  .shopwell-responsive-column.shopwell-mobile-column--column_sm .elementor-container:not(.elementor-column-gap-no) {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.shopwell-icon-box {
  position: relative;
}

.shopwell-icon-box__button-link {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-indent: -9999px;
  white-space: nowrap;
}

.shopwell-icon-box__icon {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}
.shopwell-icon-box__icon img {
  width: 100%;
}

.shopwell-icon-box__title {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 13px;
}

.shopwell-icon-box__content {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #1d2128;
}

.shopwell-icon-box__wrapper .shopwell-button {
  margin-top: 11px;
}

.shopwell-icon-box__icon-position--left .shopwell-icon-box,
.shopwell-icon-box__icon-position--right .shopwell-icon-box {
  display: flex;
  align-items: flex-start;
}

.shopwell-icon-box__icon-position--left {
  --shopwell-icon-box-margin: 15px;
}
.shopwell-icon-box__icon-position--left .shopwell-icon-box__icon {
  margin-right: var(--shopwell-icon-box-margin);
  margin-left: 0;
  margin-bottom: 0;
}
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--left .shopwell-icon-box {
  justify-content: flex-start;
}
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--center .shopwell-icon-box {
  justify-content: center;
}
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--right .shopwell-icon-box {
  justify-content: flex-end;
}

.shopwell-icon-box__icon-position--top {
  --shopwell-icon-box-margin: 11px;
}
.shopwell-icon-box__icon-position--top .shopwell-icon-box {
  display: flex;
  flex-direction: column;
}
.shopwell-icon-box__icon-position--top .shopwell-icon-box__icon {
  margin-bottom: var(--shopwell-icon-box-margin);
  margin-left: 0;
  margin-right: 0;
}
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--left .shopwell-icon-box {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--center .shopwell-icon-box {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--right .shopwell-icon-box {
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

.shopwell-icon-box__icon-position--right {
  --shopwell-icon-box-margin: 15px;
}
.shopwell-icon-box__icon-position--right .shopwell-icon-box__icon {
  order: 2;
  margin-left: var(--shopwell-icon-box-margin);
  margin-right: 0;
  margin-bottom: 0;
}
.shopwell-icon-box__icon-position--right .shopwell-icon-box__wrapper {
  order: 1;
}
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--left .shopwell-icon-box {
  justify-content: flex-start;
}
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--center .shopwell-icon-box {
  justify-content: center;
}
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--right .shopwell-icon-box {
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .shopwell-icon-box__vertical-align-top .shopwell-icon-box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .shopwell-icon-box__vertical-align-middle .shopwell-icon-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .shopwell-icon-box__vertical-align-bottom .shopwell-icon-box {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.shopwell-swiper-carousel-elementor {
  position: relative;
}
.shopwell-swiper-carousel-elementor .shopwell-swiper-button {
  text-align: center;
  opacity: 1;
  z-index: 99;
  position: absolute;
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}
.shopwell-swiper-carousel-elementor .swiper-button-disabled {
  cursor: auto;
  opacity: 0.7;
}
.elementor-page .shopwell-swiper-carousel-elementor .swiper-container ~ .swiper-pagination-bullets {
  position: relative;
}

.shopwell-swiper-carousel-elementor .swiper-pagination-lock,
.shopwell-swiper-carousel-elementor .swiper-scrollbar-lock,
.shopwell-swiper-carousel-elementor .swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.elementor-element .swiper .elementor-swiper-button.swiper-button-disabled {
  cursor: not-allowed;
}

.shopwell-heading {
  padding-bottom: 0;
  margin: 0;
  color: var(--shopwell-color__heading);
}

.shopwell-heading--normal {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.shopwell-heading--medium {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.shopwell-heading--large {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
}

.shopwell-before-heading {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
}

.shopwell-heading__button-on {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shopwell-subscribe-box-form-items--row .shopwell-subscribe-box .mc4wp-form-fields {
  position: relative;
  display: flex;
}
.shopwell-subscribe-box-form-items--row .shopwell-subscribe-box .mc4wp-form-fields input[type=text],
.shopwell-subscribe-box-form-items--row .shopwell-subscribe-box .mc4wp-form-fields input[type=email],
.shopwell-subscribe-box-form-items--row .shopwell-subscribe-box .mc4wp-form-fields select {
  min-width: 0;
}
.shopwell-subscribe-box-form-items--row .shopwell-subscribe-box .mc4wp-form-fields input {
  flex: 1;
}
.shopwell-subscribe-box-form-items--row .shopwell-subscribe-box .mc4wp-form-fields button,
.shopwell-subscribe-box-form-items--row .shopwell-subscribe-box .mc4wp-form-fields input[type=submit] {
  flex: 0;
  margin-left: 12px;
}

.shopwell-subscribe-box-form-items--column .shopwell-subscribe-box {
  text-align: center;
}
.shopwell-subscribe-box-form-items--column .mc4wp-form-fields {
  display: flex;
  flex-direction: column;
}
.shopwell-subscribe-box-form-items--column .mc4wp-form-fields input[type=text],
.shopwell-subscribe-box-form-items--column .mc4wp-form-fields input[type=email],
.shopwell-subscribe-box-form-items--column .mc4wp-form-fields select {
  height: 60px;
}
.shopwell-subscribe-box-form-items--column .mc4wp-form-fields button,
.shopwell-subscribe-box-form-items--column .mc4wp-form-fields input[type=submit] {
  line-height: 60px;
  margin-top: 24px;
  margin-left: 0;
}

.shopwell-subscribe-box {
  display: flex;
}
.shopwell-subscribe-box.show-image img {
  flex: 1 0 50%;
}

.shopwell-subscribe-box__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.shopwell-subscribe-box__content .mc4wp-form {
  width: 100%;
}

.shopwell-subscribe-box__title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 40px;
  font-weight: 700;
}

.shopwell-subscribe-box__description {
  margin-bottom: 16px;
  margin-top: 3px;
}

.shopwell-subscribe-box__short-description {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
  margin-top: 16px;
}
.shopwell-subscribe-box__short-description a {
  --shopwell-color__primary: #1d2128;
  color: #1d2128;
  text-decoration: underline !important;
}

@media (max-width: 767px) {
  .shopwell-subscribe-box.show-image {
    flex-wrap: wrap;
  }
}
.shopwell-navigation-menu-element .menu-icon-item--svg {
  float: left;
  width: 14px;
  margin-right: 10px;
}

.shopwell-navigation-menu__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
.shopwell-navigation-menu__title .shopwell-svg-icon {
  margin-right: 5px;
  display: none;
}

.shopwell-navigation-menu__title--toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.shopwell-navigation-menu__title--toggle + .shopwell-navigation-menu {
  display: none;
}
.shopwell-navigation-menu__title--toggle .shopwell-svg-icon {
  display: block;
}
.shopwell-navigation-menu__title--toggle.shopwell-active .navigation-menu__plus {
  display: none;
}
.shopwell-navigation-menu__title--toggle.shopwell-active .navigation-menu__minus {
  display: block;
}
.shopwell-navigation-menu__title--toggle .navigation-menu__plus {
  display: block;
}
.shopwell-navigation-menu__title--toggle .navigation-menu__minus {
  display: none;
}

.shopwell-navigation-menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex-direction: column;
}
.shopwell-navigation-menu li {
  padding: 0;
}
.shopwell-navigation-menu li a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}
.shopwell-navigation-menu li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.shopwell-navigation-menu li a:focus:after, .shopwell-navigation-menu li a:hover:after {
  width: 100%;
  left: 0;
}

.shopwell-navigation-menu--column .shopwell-navigation-menu {
  margin-top: 19px;
}
.shopwell-navigation-menu--column .shopwell-navigation-menu li {
  margin-bottom: 8px;
}
.shopwell-navigation-menu--column .shopwell-navigation-menu li:last-child {
  margin-bottom: 0;
}

.shopwell-navigation-menu--row .shopwell-navigation-menu ul {
  margin-left: -15px;
  margin-right: -15px;
}
.shopwell-navigation-menu--row .shopwell-navigation-menu ul li {
  margin-left: 15px;
  margin-right: 15px;
}

.shopwell-advanced-menu {
  position: relative;
}
.shopwell-advanced-menu ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.shopwell-advanced-menu ul.menu > li > a {
  position: relative;
  z-index: 10;
  margin: 0 16px;
  line-height: 31.5px;
  padding: 5px 14px 7px 15px;
}
.shopwell-advanced-menu ul.menu > li > a > .menu-item-icon {
  font-size: 28px;
  font-size: 1.75rem;
  color: #7d828a;
  margin-right: 20px;
  position: relative;
  top: 6px;
  transition: 0.2s;
}
.shopwell-advanced-menu ul.menu > li > a::after {
  transition: 0.2s;
  position: absolute;
  right: 15px;
  top: 52%;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 7px;
  height: 10px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAKCAYAAAB4zEQNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjhERTI3NDlEMEQ1QjExRUQ4OEIyQTJDQjZFNkY4OTE2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjhERTI3NDlFMEQ1QjExRUQ4OEIyQTJDQjZFNkY4OTE2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OERFMjc0OUIwRDVCMTFFRDg4QjJBMkNCNkU2Rjg5MTYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OERFMjc0OUMwRDVCMTFFRDg4QjJBMkNCNkU2Rjg5MTYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5k5ytBAAAAWUlEQVR42mK8df8xAxCUAPEKIH7CgASYoBLdQHwAiGXQJUE67gKxMroCJqhRDtgUMEEVYVXAxIAHwCRloKqVobpBpjxhwiUB0xmBTQIEWIC4B8rGCASAAAMAxscZpdb3Q6kAAAAASUVORK5CYII=);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-advanced-menu ul.menu > li.hovered > a::before, .shopwell-advanced-menu ul.menu > li:hover > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -7px;
  bottom: 0;
  background-color: rgba(185, 185, 185, 0.4);
  border-radius: 24px;
  z-index: -1;
}
.shopwell-advanced-menu ul.menu > li.hovered > a::after, .shopwell-advanced-menu ul.menu > li:hover > a::after {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAKCAYAAAB4zEQNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg2REY5MjIxMEQ1QjExRUQ5OTYyRjkwMTAyOEM1QkI4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjg2REY5MjIyMEQ1QjExRUQ5OTYyRjkwMTAyOEM1QkI4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ODZERjkyMUYwRDVCMTFFRDk5NjJGOTAxMDI4QzVCQjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODZERjkyMjAwRDVCMTFFRDk5NjJGOTAxMDI4QzVCQjgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5loBQxAAAAWElEQVR42mKUVdRgAIISIF4BxE8YkAATVKIbiA8AsQy6JEjHXSBWRlfABDXKAZsCJqgirAqYGPAAmKQMVLUyVDfIlCdMuCRgOiOwSYAACxD3QNkYgQAQYABJ5xdvIEdRbwAAAABJRU5ErkJggg==);
}
.shopwell-advanced-menu ul.menu ul li:not(.mega-menu-container) {
  padding: 3px 0;
}
.shopwell-advanced-menu ul.menu ul li:not(.mega-menu-container):first-child {
  padding-top: 0;
}
.shopwell-advanced-menu ul.menu ul li:not(.mega-menu-container):last-child {
  padding-bottom: 0;
}
.shopwell-advanced-menu ul.menu ul li a {
  line-height: 2;
  display: inline-block;
  position: relative;
}
.shopwell-advanced-menu ul.menu ul li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.shopwell-advanced-menu ul.menu ul li a:focus:after, .shopwell-advanced-menu ul.menu ul li a:hover:after {
  width: 100%;
  left: 0;
}
.shopwell-advanced-menu a {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  text-decoration: none;
}
.shopwell-advanced-menu > ul {
  flex-direction: column;
  padding: 22px 0 24px;
}
.shopwell-advanced-menu > ul > li:first-child {
  padding-top: 0;
}
.shopwell-advanced-menu > ul > li.hovered > a, .shopwell-advanced-menu > ul > li:hover > a {
  color: #1d2128;
}
.shopwell-advanced-menu > ul > li.hovered > a .shopwell-svg-icon, .shopwell-advanced-menu > ul > li:hover > a .shopwell-svg-icon {
  color: inherit;
}
.shopwell-advanced-menu > ul > li > a {
  font-weight: 500;
  position: relative;
  line-height: 2.5;
}
.shopwell-advanced-menu .menu-item-mega.hovered > ul .mega-menu-container, .shopwell-advanced-menu .menu-item-mega:hover > ul .mega-menu-container {
  opacity: 1;
  visibility: visible;
}
.shopwell-advanced-menu .mega-menu-main {
  display: flex;
}
.shopwell-advanced-menu .mega-menu-main li {
  padding: 3px 0;
}
.shopwell-advanced-menu .mega-menu-main > li {
  padding: 0 24px;
}
.shopwell-advanced-menu .mega-menu-main > li > a,
.shopwell-advanced-menu .mega-menu-main > li > span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.shopwell-advanced-menu .mega-menu-main > li > span {
  display: inline-block;
}
.shopwell-advanced-menu .mega-menu-main .font-weight--medium > a {
  font-weight: 500;
}
.shopwell-advanced-menu .mega-menu-main .font-weight--large > a {
  font-weight: 700;
}
.shopwell-advanced-menu .mega-menu-container {
  padding: 35px 40px;
}
.shopwell-advanced-menu .mega-menu .mega-menu-container {
  min-height: 100%;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  position: absolute;
  top: 0;
  padding-left: calc(100% + 34px);
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: 0.3s;
  overflow: hidden;
  z-index: 9;
  background-color: #fff;
}
.shopwell-advanced-menu .mega-menu.mega-menu--grid .mega-menu__row {
  display: flex;
}
.shopwell-advanced-menu .menu-widget-image__content {
  margin-top: 13px;
}
.shopwell-advanced-menu .menu-widget-image__desc {
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 1200px) {
  .shopwell-advanced-menu .mega-menu-container.container {
    width: 1140px;
  }
}
.shopwell-social-icons__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}

.shopwell-social-icons__item {
  font-size: 17px;
  font-size: 1.0625rem;
  padding-left: 14px;
  padding-right: 14px;
  color: #7d828a;
}
.shopwell-social-icons__item .shopwell-img-icon {
  display: inline-flex;
}
.shopwell-social-icons__item .shopwell-img-icon img {
  display: block;
}

.shopwell-countdown {
  display: flex;
  /*rtl:raw:
      direction: ltr;
  */
}
.shopwell-countdown .timer {
  padding: 0 23px;
  position: relative;
  color: #1d2128;
  text-align: center;
}
.shopwell-countdown .timer .text {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}
.shopwell-countdown .timer .divider {
  position: absolute;
  top: 15px;
  right: -8px;
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 600;
  /*rtl:raw:
      right: -8px;
      left: auto;
  */
}
.shopwell-countdown .digits {
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 600;
  display: block;
  min-width: 15px;
  margin-bottom: 7px;
}
.shopwell-countdown .days .digits,
.shopwell-countdown .weeks .digits {
  min-width: auto;
}
.shopwell-countdown .divider {
  display: none;
}

.shopwell-slides-elementor .item-slider {
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 442px;
  width: 100%;
  border-radius: 2px;
  --shopwell-sliders-bg-overlay: transparent;
}
.shopwell-slides-elementor .item-slider:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--shopwell-sliders-bg-overlay);
}
.shopwell-slides-elementor .item-slider:not(:first-child) {
  display: none;
}
.shopwell-slides-elementor .item-slider.swiper-slide {
  display: block;
}
.shopwell-slides-elementor .slick-slide-inner {
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.shopwell-slides-elementor .shopwell-swiper-arrows-inner {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.shopwell-slides-elementor .shopwell-swiper-arrows-inner .shopwell-swiper-button {
  pointer-events: auto;
}
.elementor-element .shopwell-slides-elementor .swiper-container ~ .swiper-pagination-bullets,
.elementor-element .shopwell-slides-elementor div.swiper-pagination.swiper-pagination-horizontal,
.elementor-element .shopwell-slides-elementor .swiper-pagination {
  width: max-content;
  margin-top: 0;
  text-align: left;
  position: absolute;
  bottom: 41px;
  left: 43px;
  right: 0;
  z-index: 1;
  transition: background-color 0s;
}
.elementor-element .shopwell-slides-elementor .swiper-pagination-bullet {
  opacity: 1;
}
.shopwell-slides-elementor .button-link-all {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.shopwell-slides-elementor .shopwell-button-second {
  margin-left: 32px;
  z-index: 9;
}

.shopwell-slide__content {
  position: relative;
  padding: 38px 48px 48px 48px;
}

.shopwell-slide__subtitle {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
  display: block;
  text-transform: uppercase;
  line-height: 1;
}

.shopwell-slide__title {
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 11px;
}
.shopwell-slide__title + .shopwell-slide-button {
  margin-bottom: 17px;
}

.shopwell-slide__before-description {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.shopwell-slide__description {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 17px;
  line-height: 22px;
}
.shopwell-slide__description p {
  margin: 0;
}

.shopwell-slide__after-button {
  margin-top: 12px;
}

.slick-slide-inner.slide-has-image .shopwell-slide__image {
  width: 50%;
}
.slick-slide-inner.slide-has-image .shopwell-slide__content {
  width: 50%;
}

.shopwell-slide__image {
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}

.shopwell-slide__after-description {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.shopwell-slide__after-description + .shopwell-slide-button {
  margin-top: 17px;
}

.elementor-element .shopwell-slides__dots-position-center .swiper-container ~ div.swiper-pagination-bullets {
  left: 50%;
  transform: translateX(-50%);
  bottom: 13px;
  right: auto;
}

.elementor-element .shopwell-slides__dots-position-right .swiper-container ~ div.swiper-pagination-bullets {
  right: 43px;
  left: auto;
}

.shopwell-slides__arrow-position-right-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 46px;
  bottom: 32px;
  transition: background-color 0s;
}
.shopwell-slides__arrow-position-right-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button-prev {
  right: 88px;
}
.shopwell-slides__arrow-position-right-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button-next {
  right: 32px;
}

.shopwell-slides__arrow-position-left-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 46px;
  bottom: 32px;
  transition: background-color 0s;
  /*rtl:raw:
  	transform: rotateY(0);
  */
}
.shopwell-slides__arrow-position-left-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button-next {
  left: 88px;
}
.shopwell-slides__arrow-position-left-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button-prev {
  left: 32px;
}

.elementor-element .shopwell-slides__arrow-position-center-center .shopwell-swiper-button {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
  background-color: #ffffff;
  border-radius: 8px;
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.elementor-element .shopwell-slides__arrow-position-center-center .shopwell-swiper-button-prev {
  left: 0;
}
.elementor-element .shopwell-slides__arrow-position-center-center .shopwell-swiper-button-next {
  right: 0;
}

.shopwell-slides__paginations-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.shopwell-slides__paginations-container .shopwell-swiper-button,
.shopwell-slides__paginations-container .swiper-pagination {
  pointer-events: auto;
}

.shopwell-checklist__item {
  display: flex;
  margin-bottom: 32px;
}
.shopwell-checklist__item.none .shopwell-checklist__icon {
  background-color: #ebeff3;
  color: #ebeff3;
}
.shopwell-checklist__item.none .shopwell-checklist__title,
.shopwell-checklist__item.none .shopwell-checklist__description {
  color: #7d828a;
}

.shopwell-checklist__icon {
  display: inline-flex;
  font-size: 18px;
  font-size: 1.125rem;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background-color: #33ff93;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  margin-right: 22px;
}

.shopwell-checklist__wrapper {
  margin-top: 5px;
}

.shopwell-checklist__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  font-weight: 500;
  color: #1d2128;
  margin-bottom: 7px;
}

.shopwell-checklist__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #1d2128;
}

.shopwell-team-member-grid__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.shopwell-team-member-grid__tags-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: #7d828a;
  padding: 25px 55px 30px;
  text-transform: capitalize;
  border-bottom: 2px solid #ebeff3;
  cursor: pointer;
}
.shopwell-team-member-grid__tags-item.active {
  color: #1d2128;
  border-bottom-color: #1d2128;
  text-shadow: 0.6px 0px #1d2128;
}

.shopwell-team-member-grid__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: -10px -30px;
  position: relative;
}
.shopwell-team-member-grid__wrapper .shopwell-team-member-grid__item img {
  border-radius: 100%;
}

.shopwell-team-member-grid__item {
  margin-bottom: 18px;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  padding: 10px 30px;
  position: relative;
}
.shopwell-team-member-grid__item img {
  margin-bottom: 25px;
}
.shopwell-team-member-grid__item.fadeIn {
  animation-name: fadeIn;
}
.shopwell-team-member-grid__item.fadeOut {
  display: none;
}

.shopwell-team-member-grid__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 2px;
}

.shopwell-team-member-grid__description {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 32px;
}

.shopwell-team-member-grid__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 13px -12px 0;
}
.shopwell-team-member-grid__socials a {
  padding: 0 12px 5px;
}

.shopwell-accordion__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0;
  position: relative;
}
.shopwell-accordion__title a {
  color: inherit;
  display: block;
  padding: 28px 50px 27px 0;
}

.shopwell-accordion__item {
  border-bottom: 1px solid #ebeff3;
}

.shopwell-accordion__content {
  padding-bottom: 32px;
  display: none;
}

.shopwell-accordion__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #ebeff3;
  border-radius: 50%;
  color: #7d828a;
  display: inline-flex;
}
.shopwell-accordion__icon i,
.shopwell-accordion__icon svg {
  transition: 0.3s;
}

.shopwell-accordion__icon--default {
  width: 32px;
  height: 32px;
  transition: 0.4s;
}
.shopwell-accordion__icon--default:before, .shopwell-accordion__icon--default:after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
}
.shopwell-accordion__icon--default:before {
  transform: translate(150%, -50%);
  left: 0;
  top: 50%;
  border-width: 2px 0 0 0;
  width: 25%;
}
.shopwell-accordion__icon--default:after {
  transform: translate(-50%, 150%);
  left: 50%;
  top: 0;
  border-width: 0 0 0 2px;
  height: 25%;
}

.shopwell-tab--active .shopwell-accordion__icon--default {
  color: #ffffff;
  background-color: #1d2128;
}
.shopwell-tab--active .shopwell-accordion__icon--default:after {
  display: none;
}
.shopwell-tab--active .shopwell-accordion__svg-icon i,
.shopwell-tab--active .shopwell-accordion__svg-icon svg {
  transform: rotate(180deg);
}

.shopwell-accordion__icon-position--left .shopwell-accordion__icon {
  left: 0;
  right: auto;
}
.shopwell-accordion__icon-position--left .shopwell-accordion__title-text {
  padding-left: 50px;
  padding-right: 0;
}

.shopwell-image-box {
  position: relative;
}
.shopwell-image-box .shopwell-button__icon {
  /*rtl:raw:
  	transform: rotateY(180deg);
  */
}
.shopwell-image-box .shopwell-button--text:after {
  display: none;
}

.shopwell-image-box__link-wrapper {
  width: 100%;
}

.shopwell-image-box__link {
  display: block;
}

.shopwell-image-box__summary {
  flex-shrink: 0;
}

.shopwell-image-box__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 32px;
  margin-top: 25px;
  margin-bottom: 2px;
}
.shopwell-image-box__title .shopwell-svg-icon {
  line-height: inherit;
}
.shopwell-image-box__title .shopwell-svg-icon svg {
  height: auto;
}

.shopwell-image-box__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
}

.shopwell--title-ellipsis-yes .shopwell-image-box__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.shopwell-image-box__sale {
  position: absolute;
  top: 0;
  right: 7px;
  background-color: #d8125d;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 16px;
}

.shopwell-image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -6px;
}

.shopwell-image-grid__item {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  padding: 0 6px;
  margin-bottom: 0;
}
.shopwell-image-grid__item a {
  width: 100%;
}

.shopwell-image-box-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -20px;
}

.shopwell-image-box-grid__item {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
  align-items: center;
  justify-content: center;
}
.shopwell-image-box-grid__item a {
  width: 100%;
  display: contents;
}

.shopwell-image-box-grid__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  display: block;
}

.shopwell--title-ellipsis-yes .shopwell-image-box-grid__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}

@media (min-width: 992px) {
  .shopwell-image-box-grid-scroll--yes .shopwell-image-box-grid {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-image-box-grid-scroll--yes .shopwell-image-box-grid::-webkit-scrollbar {
    display: none;
  }
  .shopwell-image-box-grid-scroll--yes .shopwell-image-box-grid {
    justify-content: flex-start;
  }
  .shopwell-image-box-grid-scroll--yes .shopwell-image-box-grid__item {
    margin: 0;
  }
  .shopwell-image-box-grid-scroll--yes .shopwell-image-box-grid__item:first-child {
    margin-left: 0;
  }
  .shopwell-image-box-grid-scroll--yes .shopwell-image-box-grid__item:last-child {
    margin-right: 0;
  }
}
.shopwell-banner {
  position: relative;
  overflow: hidden;
}
.shopwell-banner .shopwell-countdown {
  min-width: 13px;
  width: fit-content;
  padding: 5px 5px 4px 8px;
  margin-left: -5px;
  margin-right: -5px;
  border-radius: 30px;
  background-color: #1d2128;
}
.shopwell-banner .shopwell-countdown .timer {
  padding: 0 5px;
  color: #fff;
}
.shopwell-banner .shopwell-countdown .divider {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  top: 1px;
  right: -2px;
  /*rtl:raw:
      right: -2px;
      left: auto;
  */
}
.shopwell-banner .shopwell-countdown .text {
  display: none;
}
.shopwell-banner .shopwell-countdown .digits {
  margin-bottom: 0;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
}

.shopwell-banner__image-zoom .shopwell-banner:focus-within .shopwell-banner__featured-image, .shopwell-banner__image-zoom .shopwell-banner:hover .shopwell-banner__featured-image {
  transform: scale(1.1);
  transition: var(--shopwell-banner__duration-time);
}

.shopwell-banner__zoom-fade .shopwell-banner:focus-within .shopwell-banner__featured-image, .shopwell-banner__zoom-fade .shopwell-banner:hover .shopwell-banner__featured-image {
  transform: scale(1.1);
}
.shopwell-banner__zoom-fade .shopwell-banner:focus-within .shopwell-banner__featured-image:before, .shopwell-banner__zoom-fade .shopwell-banner:hover .shopwell-banner__featured-image:before {
  background-color: rgba(0, 0, 0, 0.2);
}
.shopwell-banner__zoom-fade .shopwell-banner .shopwell-banner__featured-image:before {
  content: "";
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  transition: var(--shopwell-banner__duration-time);
}

.shopwell-banner__fade-in .shopwell-banner:focus-within .shopwell-banner__featured-image:before, .shopwell-banner__fade-in .shopwell-banner:hover .shopwell-banner__featured-image:before {
  background-color: rgba(0, 0, 0, 0);
}
.shopwell-banner__fade-in .shopwell-banner .shopwell-banner__featured-image:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  transition: var(--shopwell-banner__duration-time);
}

.shopwell-banner__fade-out .shopwell-banner:focus-within .shopwell-banner__featured-image:before, .shopwell-banner__fade-out .shopwell-banner:hover .shopwell-banner__featured-image:before {
  background-color: rgba(0, 0, 0, 0.16);
}
.shopwell-banner__fade-out .shopwell-banner .shopwell-banner__featured-image:before {
  content: "";
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  transition: var(--shopwell-banner__duration-time);
}

.shopwell-banner__blur .shopwell-banner:focus-within .shopwell-banner__featured-image, .shopwell-banner__blur .shopwell-banner:hover .shopwell-banner__featured-image {
  -webkit-animation-name: shopwellBlur;
  -moz-animation-name: shopwellBlur;
  animation-name: shopwellBlur;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.shopwell-banner__overlay .shopwell-banner .shopwell-banner__featured-image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: var(--shopwell-banner__duration-time);
  opacity: 0;
}
.shopwell-banner__overlay .shopwell-banner:focus-within .shopwell-banner__featured-image:before, .shopwell-banner__overlay .shopwell-banner:hover .shopwell-banner__featured-image:before {
  opacity: 1;
}

.shopwell-banner__countdown {
  --shopwell-input__box-shadow: transparent;
  display: inline-flex;
  flex-direction: column;
  box-shadow: 0px 2px 6px 0px var(--shopwell-input__box-shadow);
  margin-bottom: 20px;
}

.shopwell-banner__countdown-text {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.shopwell-banner__countdown--row .shopwell-banner__countdown {
  align-items: center;
}
.shopwell-banner__countdown--row .shopwell-banner__countdown-text {
  margin-right: auto;
  margin-bottom: 0;
}

.shopwell-banner__featured-image {
  --shopwell-banner__duration-time: .3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: var(--shopwell-banner__duration-time);
  animation-duration: var(--shopwell-banner__duration-time);
}

.shopwell-banner__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  margin: auto;
  padding: 26px 32px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.shopwell-banner__wrapper.countdown__position--after .shopwell-banner__content {
  order: 1;
}
.shopwell-banner__wrapper.countdown__position--after .shopwell-banner__countdown {
  order: 2;
  margin-top: 20px;
  margin-bottom: 0;
}

.shopwell-banner__before-title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.shopwell-banner__title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 32px;
  margin: 0 0 14px;
}

.shopwell-banner__title--icon {
  line-height: 1;
}

.shopwell-banner__description {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 3px;
}
.shopwell-banner .shopwell-banner__description a {
  color: inherit;
  text-decoration: underline;
}

.shopwell-banner__button-2 {
  margin-left: 30px;
}

.shopwell-banner__sale {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #1d2128;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 11px;
  font-size: 0.6875rem;
}

.shopwell-banner__sale--text {
  margin-bottom: 2px;
  line-height: 1;
}

.elementor-widget:not(:last-child).elementor-widget-shopwell-banner {
  margin-bottom: 0;
}

.shopwell--time-text-enable-yes .shopwell-banner .shopwell-countdown {
  box-shadow: 0px 2px 6px 0px var(--shopwell-input__box-shadow);
}
.shopwell--time-text-enable-yes .shopwell-banner .shopwell-countdown .timer {
  position: relative;
  text-align: center;
}
.shopwell--time-text-enable-yes .shopwell-banner .shopwell-countdown .text {
  position: absolute;
  display: inline;
  text-align: center;
  top: calc(100% + 17px);
  left: 50%;
  transform: translateX(-50%);
}

.shopwell-banner__arrow {
  font-size: 21px;
  font-size: 1.3125rem;
}

.shopwell-product-tabs__tabs {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}
.shopwell-product-tabs__tabs li {
  position: relative;
  margin: 0 27.5px;
  padding-bottom: 16px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  color: #7d828a;
  cursor: pointer;
  transition: 0.3s;
}
.shopwell-product-tabs__tabs li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 0;
  border-bottom: 2px solid;
  transition: width 0.3s;
}
.shopwell-product-tabs__tabs li:focus-within, .shopwell-product-tabs__tabs li:hover {
  color: #1d2128;
}
.shopwell-product-tabs__tabs li:focus-within::after, .shopwell-product-tabs__tabs li:hover::after {
  width: 100%;
  left: 0;
}
.shopwell-product-tabs__tabs li.active {
  color: #1d2128;
}
.shopwell-product-tabs__tabs li.active::after {
  width: 100%;
  left: 0;
}
.shopwell-product-tabs__tabs li:first-child {
  margin-left: 0;
}
.shopwell-product-tabs__tabs li:last-child {
  margin-right: 0;
}

.shopwell-tabs__panels {
  position: relative;
}

.shopwell-tabs__panel {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s;
}
.shopwell-tabs__panel ul.products {
  border-bottom: none !important;
}
.shopwell-tabs__panel.active {
  opacity: 1;
  display: block;
  visibility: visible;
  position: static;
}

.woocommerce-navigation__products-tabs {
  text-align: center;
  margin-top: 39px;
}
.woocommerce-navigation__products-tabs .nav-links {
  min-width: auto;
  background-color: rgba(6, 177, 143, 0.12);
  color: #06b18f;
}

.shopwell-product-tabs__panels-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.shopwell-product-tabs__panels.loading .shopwell-product-tabs__panels-loading {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.shopwell-product-tabs__heading-style--background .shopwell-product-tabs__tabs {
  margin: 0 auto 35px;
  width: fit-content;
  background-color: rgba(185, 185, 185, 0.4);
  padding: 8px;
  border-radius: 3px;
}
.shopwell-product-tabs__heading-style--background .shopwell-product-tabs__tabs li {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d2128;
  padding: 16px 47px;
  border-radius: 3px;
  margin: 0;
}
.shopwell-product-tabs__heading-style--background .shopwell-product-tabs__tabs li:after {
  display: none;
}
.shopwell-product-tabs__heading-style--background .shopwell-product-tabs__tabs li.active {
  background-color: #fff;
}

.shopwell-product-carousel .woocommerce:not(.swiper-container-initialized) {
  overflow: hidden;
}
.shopwell-product-carousel ul.products {
  flex-wrap: nowrap;
  z-index: 1;
}
.shopwell-product-carousel ul.products.product-card-layout-4 li.product div.product-inner {
  padding-bottom: 18px;
}
.shopwell-product-carousel ul.products li.product {
  flex-shrink: 0;
  margin-bottom: 0;
}
.shopwell-product-carousel ul.products li.product div.product-inner {
  pointer-events: auto;
  padding-bottom: 0;
}
.shopwell-product-carousel.shopwell-carousel-spacing-empty .shopwell-product-carousel__container > .swiper-container-initialized,
.shopwell-product-carousel.shopwell-carousel-spacing-empty .shopwell-product-carousel__container > .swiper-initialized,
.shopwell-product-carousel.shopwell-carousel-spacing-empty > .swiper-container-initialized,
.shopwell-product-carousel.shopwell-carousel-spacing-empty > .swiper-initialized {
  padding-left: 0;
  padding-right: 0;
  margin-left: -12px;
  margin-right: -12px;
  /*rtl:raw:
  	margin-left: 0;
  	margin-right: 0;
  */
}
.shopwell-product-carousel.shopwell-carousel-spacing-empty .shopwell-product-carousel__container > .swiper-container-initialized ul.products,
.shopwell-product-carousel.shopwell-carousel-spacing-empty .shopwell-product-carousel__container > .swiper-initialized ul.products,
.shopwell-product-carousel.shopwell-carousel-spacing-empty > .swiper-container-initialized ul.products,
.shopwell-product-carousel.shopwell-carousel-spacing-empty > .swiper-initialized ul.products {
  margin-left: 0;
  margin-right: 0;
}
.shopwell-product-carousel .swiper-pagination {
  position: relative;
  z-index: 0;
  margin-top: 5px;
  text-align: center;
  pointer-events: auto;
}
.shopwell-product-carousel .swiper-pagination-bullet {
  opacity: 1;
}
.shopwell-product-carousel .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
}
.shopwell-product-carousel .shopwell-swiper-carousel__paginations {
  text-align: center;
}
.elementor-page .shopwell-product-carousel .swiper-horizontal > .swiper-scrollbar,
.elementor-page .shopwell-product-carousel .swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 0;
  right: 0;
  position: relative;
  z-index: 0;
  margin-top: 17px;
  margin-bottom: 0;
  height: 2px;
  background-color: #ebeff3;
  border-radius: 0;
  pointer-events: auto;
}
.elementor-page .shopwell-product-carousel .swiper-horizontal > .swiper-scrollbar .swiper-scrollbar-drag,
.elementor-page .shopwell-product-carousel .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  top: 0;
  height: 2px;
  background-color: #1d2128;
  border-radius: 0;
}
.elementor-page .shopwell-product-carousel .swiper-horizontal > .swiper-scrollbar .swiper-scrollbar-drag::before,
.elementor-page .shopwell-product-carousel .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag::before {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 6px 0;
}
.shopwell-product-carousel.product-no-button .product-card-layout-1 li.product .product-inner:hover,
.shopwell-product-carousel.product-no-button .product-card-layout-2 li.product .product-inner:hover {
  height: 100%;
}

body:not(.product-card-layout-6) .shopwell-product-carousel > .swiper-container-initialized,
body:not(.product-card-layout-6) .shopwell-product-carousel > .swiper-initialized,
body:not(.product-card-layout-6) .shopwell-product-carousel .shopwell-product-carousel__container > .swiper-container-initialized,
body:not(.product-card-layout-6) .shopwell-product-carousel .shopwell-product-carousel__container > .swiper-initialized {
  position: relative;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  margin: -10px -10px -150px;
  padding: 10px 10px 150px;
}
body:not(.product-card-layout-6) .shopwell-product-carousel > .swiper-container-initialized:hover,
body:not(.product-card-layout-6) .shopwell-product-carousel > .swiper-initialized:hover,
body:not(.product-card-layout-6) .shopwell-product-carousel .shopwell-product-carousel__container > .swiper-container-initialized:hover,
body:not(.product-card-layout-6) .shopwell-product-carousel .shopwell-product-carousel__container > .swiper-initialized:hover {
  z-index: 3;
}

.shopwell-products-carousel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 21px;
}

.shopwell-products-carousel__heading-right {
  display: flex;
}
.shopwell-products-carousel__heading-right .shopwell-products-carousel__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.shopwell-products-carousel__heading-right .shopwell-products-carousel__button .shopwell-button {
  color: #1d2128;
}

.shopwell-product-carousel__container {
  position: relative;
  max-width: 70%;
  width: 100%;
}

.shopwell-product-carousel__countdown {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7d828a;
  justify-content: center;
  margin-right: 23px;
  padding-right: 13px;
  position: relative;
  white-space: nowrap;
}
.shopwell-product-carousel__countdown::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: #ebeff3;
}
.shopwell-product-carousel__countdown .shopwell-countdown {
  margin-left: 8px;
}
.shopwell-product-carousel__countdown .timer {
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.shopwell-product-carousel__countdown .timer .text {
  display: none;
  padding: 3px;
}
.shopwell-product-carousel__countdown .timer .divider {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  top: 6px;
  right: -3px;
  /*rtl:raw:
              right: -3px;
  left: auto;
          */
}
.shopwell-product-carousel__countdown .timer .digits {
  background-color: #1d2128;
  border-radius: 50%;
  font-size: 12px;
  font-size: 0.75rem;
  color: #ffffff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-bottom: 0;
}
.shopwell-product-carousel__countdown .seconds {
  display: none;
}
.shopwell-product-carousel__countdown .minutes .divider {
  display: none;
}

.shopwell-product-carousel__border-yes ul.products li.product {
  --shopwell-product-carousel-border-height: 100%;
}
.shopwell-product-carousel__border-yes ul.products li.product.swiper-slide-visible::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: var(--shopwell-product-carousel-border-height);
  background-color: rgba(185, 185, 185, 0.4);
  transition: 0.3s;
  z-index: 10;
  height: 100%;
}
.shopwell-product-carousel__border-yes ul.products li.product.swiper-slide-visible:hover::before {
  opacity: 0;
}
.shopwell-product-carousel__border-yes ul.products li.product.swiper-slide-visible.swiper-slide-active::before {
  opacity: 0;
}
.shopwell-product-carousel__border-yes ul.products.product-card-layout-3 li.product.swiper-slide-visible:hover::before, .shopwell-product-carousel__border-yes ul.products.product-card-layout-5 li.product.swiper-slide-visible:hover::before {
  opacity: 1;
}
.shopwell-product-carousel__border-yes ul.products.product-card-layout-3 li.product.swiper-slide-visible.swiper-slide-active::before, .shopwell-product-carousel__border-yes ul.products.product-card-layout-5 li.product.swiper-slide-visible.swiper-slide-active::before {
  opacity: 0;
}

.shopwell-product-carousel__hide-featured-buttons-none .shopwell-product-carousel ul.products.product-card-layout-1 li.product .product-inner, .shopwell-product-carousel__hide-featured-buttons-none .shopwell-product-carousel ul.products.product-card-layout-2 li.product .product-inner {
  padding-bottom: 10px;
}
.shopwell-product-carousel__hide-featured-buttons-none .shopwell-product-carousel ul.products.product-card-layout-1 li.product .product-inner:hover, .shopwell-product-carousel__hide-featured-buttons-none .shopwell-product-carousel ul.products.product-card-layout-2 li.product .product-inner:hover {
  height: 100%;
}
.shopwell-product-carousel__hide-featured-buttons-none .shopwell-product-carousel ul.products.product-card-layout-3 li.product .product-inner:hover .product-price-group > * {
  opacity: 1;
  visibility: visible;
}

.shopwell-slides__arrow-position-right-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 46px;
  bottom: 32px;
  transition: background-color 0s;
}
.shopwell-slides__arrow-position-right-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button-prev {
  right: 88px;
}
.shopwell-slides__arrow-position-right-bottom .shopwell-swiper-slider-elementor .shopwell-swiper-button-next {
  right: 32px;
}

.shopwell-product-carousel--elementor .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  border-radius: 100%;
  top: 32%;
}
.shopwell-product-carousel--elementor .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-product-carousel--elementor .shopwell-swiper-button-next {
  right: -22px;
}

.shopwell-product-carousel__arrows-style-2 .shopwell-product-carousel__heading {
  width: 100%;
  max-width: 30%;
}

.shopwell-product-carousel__dots-style-2 .swiper-pagination-bullets {
  left: 50%;
  transform: translateX(-50%);
  padding: 6px;
  bottom: 13px;
}

.shopwell-product-carousel__has-heading {
  display: flex;
  align-items: center;
}

.shopwell-product-carousel__heading {
  flex-shrink: 0;
  text-align: center;
  padding: 0px 46px 0 61px;
}

.shopwell-product-carousel__heading-title {
  margin-bottom: 22px;
}
.shopwell-product-carousel__heading-title .shopwell-svg-icon {
  line-height: inherit;
}
.shopwell-product-carousel__heading-title .shopwell-svg-icon svg {
  height: auto;
}

.shopwell-product-carousel__heading-description {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
  flex: 1;
}

.shopwell-product-grid .woocommerce-pagination {
  display: block;
}

.shopwell-counter__number-wrapper {
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  display: flex;
  line-height: 1;
  margin-bottom: 20px;
  justify-content: center;
}

.shopwell-counter__number-prefix {
  text-align: right;
  white-space: pre-wrap;
}

.shopwell-counter__number-suffix {
  text-align: left;
  white-space: pre-wrap;
}

.shopwell-counter__title {
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
}

.shopwell-product-category-box .shopwell-product-category-box__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.shopwell-product-category-box .shopwell-product-category-box__item-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100px;
  background-color: #ffffff;
  position: relative;
}
.shopwell-product-category-box .shopwell-product-category-box__image {
  padding: 0 10px;
}
.shopwell-product-category-box .shopwell-product-category-box__image img {
  border-radius: 100%;
}
.shopwell-product-category-box .shopwell-product-category-box__item {
  position: relative;
  padding: 0 15px;
}
.shopwell-product-category-box .shopwell-product-category-box__content {
  margin-top: 17px;
}
.shopwell-product-category-box .shopwell-product-category-box__cat-name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}
.shopwell-product-category-box .shopwell-product-category-box__link {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.shopwell-product-category-box__button-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.shopwell-search {
  --shopwell-search__height: 60px;
  --shopwell-color__primary: #1d2128;
}
.shopwell-search .shopwell-search__wrapper {
  height: 100%;
}
.shopwell-search .header-search__trending-links {
  padding: 0;
}
.shopwell-search .header-search__trending--inside {
  margin-right: 0;
  overflow: inherit;
}
.shopwell-search .header-search__container {
  padding-left: 24px;
}
.shopwell-search .header-search__container > .header-search__field:first-child {
  margin-left: 0;
}
.shopwell-search .shopwell-button--smooth {
  --shopwell-color__primary--gray: var(--shopwell-input__background-color);
  --shopwell-color__primary--grayer: var(--shopwell-input__background-color);
}

.shopwell-search__items {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
}

.shopwell-search__item {
  padding: 0 24px;
  position: relative;
  margin-bottom: 23px;
}
.shopwell-search__item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  bottom: 5px;
  right: 0;
  background-color: #ebeff3;
}

.shopwell-search__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7d828a;
}

.shopwell-search__field {
  width: 100%;
}

.shopwell-search__button {
  min-width: 90px;
}
.shopwell-search__button.shopwell-button--icon {
  font-size: 20px;
  font-size: 1.25rem;
  min-width: 60px;
}

.shopwell-search__button-position--inside .shopwell-search__form {
  position: relative;
  width: 558px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  --shopwell-input__height: 60px;
}
.shopwell-search__button-position--inside .header-search__container {
  padding-left: 0;
}
.shopwell-search__button-position--inside .shopwell-search__button.shopwell-button--icon {
  min-width: 48px;
}
.shopwell-search__button-position--inside .shopwell-type--input-text {
  padding-right: 6px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.shopwell-search__button-position--inside.shopwell-search__button-icon-position--left .shopwell-button--text {
  min-width: auto;
}

.shopwell-search__button-position--outside .shopwell-search__form {
  display: flex;
}
.shopwell-search__button-position--outside .shopwell-search__button {
  margin-left: 12px;
}

.shopwell-search__input-size--large .shopwell-search__wrapper {
  height: 60px;
}

.shopwell-search__input-size--medium .shopwell-search {
  --shopwell-search__height: 44px;
  --shopwell-input__height: 44px;
  height: 44px;
}
.shopwell-search__input-size--medium .shopwell-search__field {
  height: var(--shopwell-size__medium);
}

.shopwell-search__input-size--small .shopwell-search {
  --shopwell-search__height: 32px;
  --shopwell-input__height: 32px;
  height: 32px;
}
.shopwell-search__input-size--small .shopwell-search__field {
  height: 32px;
}

.shopwell-search__categories-position--left .header-search__categories-label {
  margin-left: 0;
}

.shopwell-search__button-icon-position--left .header-search__field {
  margin-left: 22px;
}

.shopwell-search__trending-position--outside .header-search__trending-links {
  margin: 14px -17px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.shopwell-search__trending-position--outside .header-search__trending-links li {
  color: #7d828a;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 13px 17px;
  position: relative;
}
.shopwell-search__trending-position--outside .header-search__trending-links li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 1px;
  background-color: #7d828a;
}
.shopwell-search__trending-position--outside .header-search__trending-links li:first-child::before {
  display: none;
}
.shopwell-search__trending-position--outside .header-search__trending-links li a {
  color: inherit;
}

.header-search__trending.show-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}
.header-search__trending.show-title .header-search__trending-links {
  margin: 0;
}
.header-search__trending.show-title .header-search__trending-links li {
  padding: 0 2px 0 0;
  margin-right: 5px;
  position: relative;
  color: #1d2128;
}
.header-search__trending.show-title .header-search__trending-links li:before {
  display: none;
}
.header-search__trending.show-title .header-search__trending-links li:after {
  content: ",";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
}
.header-search__trending.show-title .header-search__trending-links li:last-child:after {
  display: none;
}
.header-search__trending.show-title .header-search__trending-links li a {
  position: relative;
}
.header-search__trending.show-title .header-search__trending-links li a:after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid;
}

.header-search__trending--title {
  font-size: 14px;
  font-weight: 500;
  color: #1d2128;
  margin-right: 3px;
}

.shopwell-product-deals {
  position: relative;
}
.shopwell-product-deals .swiper-pagination {
  position: relative;
  z-index: 0;
  margin-top: 5px;
}
.shopwell-product-deals .shopwell-swiper-button {
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-product-deals .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-product-deals .shopwell-swiper-button-next {
  right: -22px;
}
.shopwell-product-deals .swiper-scrollbar {
  left: 0;
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 17px;
  margin-bottom: 0;
  height: 2px;
  background-color: #ebeff3;
  border-radius: 0;
  pointer-events: auto;
}
.shopwell-product-deals .swiper-scrollbar .swiper-scrollbar-drag {
  top: 0;
  height: 2px;
  background-color: #1d2128;
  border-radius: 0;
}
.shopwell-product-deals .product-inner {
  width: 100%;
  pointer-events: auto;
}
.shopwell-product-deals .shopwell-swiper-carousel__paginations {
  text-align: center;
  pointer-events: auto;
}
.shopwell-product-deals .deal-sold {
  margin-top: 10px;
}
.shopwell-product-deals ul.products.product-card-layout-3 li.product .product-price-group .deal-sold {
  margin-top: 10px;
  transition: 0.3s;
}
.shopwell-product-deals ul.products.product-card-layout-1 .deal-sold {
  padding-left: 8px;
  padding-right: 8px;
}
.shopwell-product-deals ul.products.product-card-layout-2 .deal-sold {
  padding-left: 9px;
  padding-right: 9px;
}
.shopwell-product-deals ul.products.product-card-layout-4 .deal-sold {
  padding-left: 12px;
  padding-right: 12px;
}
.shopwell-product-deals .deal-progress .progress-bar {
  height: 4px;
  border-radius: 2px;
  position: relative;
  background: #e4e4e4;
  margin-bottom: 5px;
}
.shopwell-product-deals .deal-progress .progress-value {
  height: 4px;
  background-color: #1d2128;
  border-radius: 2px;
}
.shopwell-product-deals .deal-progress .deal-text {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #7d828a;
}

.shopwell-product-deals__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 24px;
  color: var(--shopwell-color__heading);
}

.shopwell-product-deals__aftertitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 24px;
}

.shopwell-product-deals__group-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shopwell-product-deals__countdown {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7d828a;
}
.shopwell-product-deals__countdown .shopwell-countdown .timer,
.shopwell-product-deals__countdown .shopwell-countdown .digits {
  font-size: 14px;
  font-size: 0.875rem;
}
.shopwell-product-deals__countdown .shopwell-countdown .divider {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  color: #7d828a;
  top: 7px;
  right: -2px;
  /*rtl:raw:
              right: -2px;
  left: auto;
          */
}
.shopwell-product-deals__countdown .shopwell-countdown .text {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #7d828a;
}
.shopwell-product-deals__countdown .shopwell-countdown .timer {
  padding: 0 10px;
  color: #1d2128;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.shopwell-product-deals__countdown .shopwell-countdown .digits {
  background-color: #1d2128;
  color: #fff;
  border-radius: 50%;
  line-height: 32px;
  height: 32px;
  width: 32px;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
}

.shopwell-product-deals-position--top .shopwell-product-deals__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
}
.shopwell-product-deals-position--top .shopwell-product-deals__sale-text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7d828a;
  font-weight: 500;
}
.shopwell-product-deals-position--top .shopwell-product-deals__countdown {
  padding: 0 12px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.shopwell-product-deals-position--top .shopwell-product-deals__countdown .text {
  display: none;
}
.shopwell-product-deals-position--top .shopwell-product-deals__countdown .digits {
  margin-bottom: 0px;
}
.shopwell-product-deals-position--top .shopwell-product-deals__button {
  display: flex;
  position: relative;
  padding-left: 24px;
  white-space: nowrap;
}
.shopwell-product-deals-position--top .shopwell-product-deals__button .shopwell-button {
  color: #1d2128;
}
.shopwell-product-deals-position--top .shopwell-product-deals__button::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 1px;
  height: 24px;
  background-color: #ebeff3;
}

.shopwell-product-deals-position--left .shopwell-product-deals {
  display: flex;
  align-items: flex-start;
}
.shopwell-product-deals-position--left .shopwell-product-deals ul.products li.product .product-inner {
  padding-bottom: 0;
}
.shopwell-product-deals-position--left .shopwell-product-deals ul.products li.product .product-variation-items {
  margin-top: 0;
}
.shopwell-product-deals-position--left .shopwell-product-deals ul.products li.product .woocommerce-loop-product__title {
  margin-top: 0;
}
.shopwell-product-deals-position--left .shopwell-product-deals ul.products li.product .shopwell-rating {
  margin-top: 0;
}
.shopwell-product-deals-position--left .shopwell-product-deals__content {
  display: block;
  border: 2px solid #ebeff3;
  width: 218px;
  padding: 25px 28px 30px;
  text-align: center;
  border-radius: var(--shopwell-border__radius);
  margin-right: 11px;
  border-radius: 8px;
}
.shopwell-product-deals-position--left .shopwell-product-deals__products {
  width: calc(100% - 229px);
}
.shopwell-product-deals-position--left .shopwell-product-deals__title {
  font-size: 18px;
  font-size: 1.125rem;
}
.shopwell-product-deals-position--left .shopwell-product-deals__aftertitle {
  margin-top: 2px;
  color: #43a6ff;
}
.shopwell-product-deals-position--left .shopwell-product-deals__group-heading {
  flex-direction: column;
}
.shopwell-product-deals-position--left .shopwell-product-deals__countdown {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 38px;
  color: #7d828a;
  margin-bottom: 37px;
}
.shopwell-product-deals-position--left .shopwell-product-deals__countdown .shopwell-countdown {
  margin-top: 11px;
}
.shopwell-product-deals-position--left .shopwell-product-deals__countdown .shopwell-countdown .divider {
  display: block;
  color: #7d828a;
  top: 10px;
}
.shopwell-product-deals-position--left .shopwell-product-deals__countdown .shopwell-countdown .timer {
  padding: 0 10px;
  color: #1d2128;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.shopwell-product-deals-position--left .shopwell-product-deals__countdown .shopwell-countdown .digits {
  background-color: #063f70;
  color: #fff;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
}
.shopwell-product-deals-position--left .shopwell-product-deals__countdown .shopwell-countdown .text {
  margin-top: 5px;
}
.shopwell-product-deals-position--left .shopwell-swiper-button-prev {
  left: 220px;
}
.shopwell-product-deals-position--left .shopwell-product-deals > .swiper-button-disabled {
  display: none;
}

.shopwell-product-deals__button-mobile-on .shopwell-product-deals__button-mobile {
  display: none;
}

.shopwell-product-deals__hide-progress-bar-yes .deal-sold {
  display: none;
}

.shopwell-navigation-bar {
  display: flex;
  flex-direction: column;
}

.shopwell-navigation-bar__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 60px;
  font-weight: 500;
  padding: 0 24px;
  color: #7d828a;
}
.shopwell-navigation-bar__title a {
  color: #7d828a;
}
.shopwell-navigation-bar__title.active {
  position: relative;
  color: #1d2128;
}
.shopwell-navigation-bar__title.active a {
  color: #1d2128;
}
.shopwell-navigation-bar__title.active::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #1d2128;
}

.sticky-navigation-bar {
  position: fixed;
  top: 32px;
  transition: 0.3s;
}

.shopwell-products-listing__tabs {
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 20px;
  font-weight: 500;
  color: #1d2128;
  margin-bottom: 28px;
}
.shopwell-products-listing__tabs span {
  flex-shrink: 1;
  flex-basis: 100%;
  color: #1d2128;
  margin-right: 24px;
}

.shopwell-products-listing {
  display: flex;
}

.shopwell-products-listing__items {
  flex-shrink: 1;
  flex-basis: 100%;
  margin-right: 24px;
  padding-right: 35px;
  border-right: 1px solid rgba(185, 185, 185, 0.4);
}
.shopwell-products-listing__items:last-child {
  border-right: none;
}

.shopwell-products-listing__item {
  margin-bottom: 20px;
}

.shopwell-products-listing__box {
  display: flex;
  align-items: center;
}

.shopwell-products-listing__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.shopwell-products-listing__image {
  margin-right: 20px;
  border-radius: 2px;
  width: 112px;
}

.shopwell-products-listing__title {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #1d2128;
  margin-bottom: 9px;
  min-height: 40px;
}

.shopwell-products-listing__price {
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 22px;
  color: #1d2128;
  margin-bottom: 2px;
}
.shopwell-products-listing__price > span {
  display: flex;
}
.shopwell-products-listing__price ins {
  order: 1;
  margin-right: 6px;
  background-color: transparent;
  color: #dd2831;
}
.shopwell-products-listing__price del {
  order: 2;
  font-weight: 400;
}
.shopwell-products-listing__price > .woocommerce-Price-amount {
  margin-left: 4px;
  margin-right: 4px;
}
.shopwell-products-listing__price > .woocommerce-Price-amount:first-child {
  margin-left: 0;
}
.shopwell-products-listing__price > .woocommerce-Price-amount:last-child {
  margin-right: 0;
}

.shopwell-products-listing__rating {
  display: flex;
  align-items: center;
}
.shopwell-products-listing__rating .star-rating {
  display: inline;
}
.shopwell-products-listing__rating .review-count {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 16px;
  color: #7d828a;
  margin: 2px 0 0 8px;
}

@media (max-width: 991px) {
  .shopwell-products-listing__tabs {
    font-size: 16px;
    font-size: 1rem;
    color: #1d2128;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-products-listing__tabs::-webkit-scrollbar {
    display: none;
  }
  .shopwell-products-listing__tabs {
    overflow-y: visible;
    position: relative;
  }
  .shopwell-products-listing__tabs span {
    flex-shrink: 0;
    flex-basis: auto;
    position: relative;
    color: #7d828a;
    padding: 12px 0 17px 0;
    cursor: pointer;
    transition: 0.3s;
  }
  .shopwell-products-listing__tabs span::after {
    position: absolute;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1d2128;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
  }
  .shopwell-products-listing__tabs span.active {
    color: #1d2128;
  }
  .shopwell-products-listing__tabs span.active::after {
    opacity: 1;
  }
  .shopwell-products-listing__tabs::after {
    position: absolute;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(185, 185, 185, 0.4);
  }
  .shopwell-products-listing {
    position: relative;
  }
  .shopwell-products-listing__items {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.4s;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .shopwell-products-listing__items.active {
    opacity: 1;
    display: block;
    visibility: visible;
    position: static;
  }
}
.shopwell-contact-form {
  /*rtl:raw:
  	text-align: right;
  */
}
.shopwell-contact-form select,
.shopwell-contact-form input[type=text],
.shopwell-contact-form input[type=email],
.shopwell-contact-form input[type=tel],
.shopwell-contact-form input[type=date] {
  width: 100%;
  margin-bottom: 4px;
  /*rtl:raw:
  	text-align: right;
  */
}
.shopwell-contact-form:not(.shopwell-contact-form-skin--border) select,
.shopwell-contact-form:not(.shopwell-contact-form-skin--border) textarea,
.shopwell-contact-form:not(.shopwell-contact-form-skin--border) input[type=submit],
.shopwell-contact-form:not(.shopwell-contact-form-skin--border) input[type=text],
.shopwell-contact-form:not(.shopwell-contact-form-skin--border) input[type=email],
.shopwell-contact-form:not(.shopwell-contact-form-skin--border) input[type=tel],
.shopwell-contact-form:not(.shopwell-contact-form-skin--border) input[type=date] {
  border: none;
}
.shopwell-contact-form textarea {
  margin-bottom: 4px;
  height: auto;
  padding: 21px 23px 9px;
  /*rtl:raw:
  	text-align: right;
  */
}
.shopwell-contact-form p {
  margin: 0 0 8px;
}
.shopwell-contact-form label {
  color: #1d2128;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 7px;
  display: inline-block;
}
.shopwell-contact-form .wpcf7-list-item {
  margin-left: 0;
}
.shopwell-contact-form .wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #1d2128;
  margin-left: 10px;
  font-weight: 400;
  /*rtl:raw:
  		margin-left: 10px;
  */
}
.shopwell-contact-form .wpcf7-checkbox input[type=checkbox] {
  /*rtl:raw:
  	float: right;
  */
}
.shopwell-contact-form input[type=submit] {
  margin-top: 10px;
  width: 100%;
  background-color: #1d2128;
  color: #fff;
  box-shadow: none;
}
.shopwell-contact-form select {
  color: #7d828a;
}

.shopwell-col2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.shopwell-col2 .col-1,
.shopwell-col2 .col-2 {
  flex: 0 0 calc(50% - 12px);
}

.shopwell-products-recently-viewed-carousel .no-products,
.shopwell-products-recently-viewed-grid .no-products {
  text-align: center;
}
.shopwell-products-recently-viewed-carousel .hide-empty,
.shopwell-products-recently-viewed-grid .hide-empty {
  display: none;
}
.shopwell-products-recently-viewed-carousel .shopwell-swiper-button,
.shopwell-products-recently-viewed-grid .shopwell-swiper-button {
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-products-recently-viewed-carousel .shopwell-swiper-button-prev,
.shopwell-products-recently-viewed-grid .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-products-recently-viewed-carousel .shopwell-swiper-button-next,
.shopwell-products-recently-viewed-grid .shopwell-swiper-button-next {
  right: -22px;
}
.shopwell-products-recently-viewed-carousel .deal-progress,
.shopwell-products-recently-viewed-grid .deal-progress {
  width: 100%;
  padding: 9px 0;
}
.shopwell-products-recently-viewed-carousel .deal-progress .progress-bar,
.shopwell-products-recently-viewed-grid .deal-progress .progress-bar {
  height: 4px;
  border-radius: 2px;
  position: relative;
  background-color: #e4e4e4;
  margin-bottom: 5px;
}
.shopwell-products-recently-viewed-carousel .deal-progress .progress-value,
.shopwell-products-recently-viewed-grid .deal-progress .progress-value {
  height: 4px;
  background-color: #1d2128;
  border-radius: 2px;
}
.shopwell-products-recently-viewed-carousel .deal-progress .deal-text,
.shopwell-products-recently-viewed-grid .deal-progress .deal-text {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #7d828a;
}
.shopwell-products-recently-viewed-carousel .product-card-layout-2 .deal-progress,
.shopwell-products-recently-viewed-grid .product-card-layout-2 .deal-progress {
  padding-left: 9px;
  padding-right: 9px;
}
.shopwell-products-recently-viewed-carousel .product-card-layout-4 .deal-progress,
.shopwell-products-recently-viewed-grid .product-card-layout-4 .deal-progress {
  padding-left: 12px;
  padding-right: 12px;
}

.shopwell-products-recently-viewed__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 21px;
}

.shopwell-products-recently-viewed__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
}

.elementor-widget-shopwell-product-tag-cloud a {
  display: inline-block;
  font-size: 11px;
  font-size: 0.6875rem;
  background-color: #1d2128;
  color: #fff;
  font-weight: 500;
  padding: 8px 13px 6px;
  border-radius: 8px;
  margin: 6px;
}

.shopwell-quick-links__item {
  display: inline-block;
  font-size: 11px;
  font-size: 0.6875rem;
  background-color: #1d2128;
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  margin: 6px;
}

.shopwell-preferences--elementor {
  display: flex;
}

.shopwell-preferences__item {
  position: relative;
  padding-right: 21px;
  margin-right: 19px;
}
.shopwell-preferences__item .shopwell-button__icon img {
  position: relative;
  top: -2px;
}
.shopwell-preferences__item .shopwell-button__icon + .shopwell-button__text {
  padding-left: 8px;
}
.shopwell-preferences__item a {
  color: inherit;
}
.shopwell-preferences__item a::after {
  display: none;
}
.shopwell-preferences__item::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 1px;
  height: 12px;
  background-color: rgba(185, 185, 185, 0.4);
}
.shopwell-preferences__item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.shopwell-preferences__item:last-child::after {
  display: none;
}

.shopwell-brands-grid__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  --shopwell-brands-grid-columns: 6;
}

.shopwell-brands-grid__item {
  text-align: center;
  padding: 0 12px;
  margin-bottom: 50px;
  width: calc(100% / var(--shopwell-brands-grid-columns));
}

.shopwell-brands-grid__image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(185, 185, 185, 0.4);
  max-width: 150px;
  height: 150px;
  padding: 10px;
  margin: 0 auto;
}
.elementor .shopwell-brands-grid__image img {
  border-radius: 50%;
}

.shopwell-brands-grid__name {
  display: block;
  margin-top: 10px;
}

.shopwell-image-before-after .imageslide-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.shopwell-image-before-after .shopwell-svg-icon {
  font-size: 46px;
}

.shopwell-post-grid--elementor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.shopwell-post-grid--elementor.hfeed .hentry .entry-summary {
  width: 100%;
  margin-bottom: 0;
}
.shopwell-post-grid--elementor.hfeed .hentry .entry-title {
  font-weight: 700;
}

.shopwell-posts-grid__content-position--bottom .hentry {
  flex-direction: column;
}
.shopwell-posts-grid__content-position--bottom .hentry .post-thumbnail {
  max-width: 100%;
  margin-right: 0;
  margin-bottom: 5px;
}

.shopwell-posts-grid__content-position--left .hentry {
  flex-wrap: nowrap;
}
.shopwell-posts-grid__content-position--left .hentry .post-thumbnail {
  max-width: 267px;
}
.shopwell-posts-grid__content-position--left:not(.elementor-widget-shopwell-posts-carousel) .entry-title {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.shopwell-posts-grid__content-position--left:not(.elementor-widget-shopwell-posts-carousel) .entry-meta__comments {
  display: none;
}

.shopwell-posts-grid__content-position--overlay .hfeed .hentry .entry-summary {
  margin: 0;
}
.shopwell-posts-grid__content-position--overlay .hentry {
  position: relative;
  margin-bottom: 0;
}
.shopwell-posts-grid__content-position--overlay .hentry .post-thumbnail {
  max-width: 100%;
  margin-right: 0;
}
.shopwell-posts-grid__content-position--overlay .hentry .entry-title {
  font-size: 17px;
  font-size: 1.0625rem;
  margin-bottom: 5px;
}
.shopwell-posts-grid__content-position--overlay .hentry .entry-excerpt {
  color: #fff;
}
.shopwell-posts-grid__content-position--overlay .post-thumbnail {
  position: relative;
}
.shopwell-posts-grid__content-position--overlay .post-thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.shopwell-posts-grid__content-position--overlay .entry-summary {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 16px 24px;
}
.shopwell-posts-grid__content-position--overlay .entry-summary > *,
.shopwell-posts-grid__content-position--overlay .entry-summary a {
  color: inherit;
}

@media (min-width: 992px) {
  .shopwell-posts-grid-scroll--yes .shopwell-post-grid--elementor {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-posts-grid-scroll--yes .shopwell-post-grid--elementor::-webkit-scrollbar {
    display: none;
  }
  .shopwell-posts-grid-scroll--yes .shopwell-post-grid--elementor {
    justify-content: flex-start;
  }
}
.shopwell-post-carousel--elementor .list-posts__inner {
  display: flex;
  flex-wrap: nowrap;
}
.shopwell-post-carousel--elementor .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-post-carousel--elementor .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-post-carousel--elementor .shopwell-swiper-button-next {
  right: -22px;
}
.shopwell-post-carousel--elementor .swiper-pagination {
  margin-top: 0;
}

.shopwell-images-carousel--elementor .list-images__inner {
  display: flex;
  flex-wrap: nowrap;
}
.shopwell-images-carousel--elementor .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 60px;
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-images-carousel--elementor .shopwell-swiper-button-prev {
  left: 16px;
}
.shopwell-images-carousel--elementor .shopwell-swiper-button-next {
  right: 16px;
}
.shopwell-images-carousel--elementor .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  margin-top: 0;
}
.elementor-page .shopwell-images-carousel--elementor .swiper-container ~ .swiper-pagination-bullets,
.elementor-page .shopwell-images-carousel--elementor .swiper-pagination {
  width: max-content;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  margin-top: 0;
}

.shopwell-list-style-default ul.elementor-icon-list-items,
.shopwell-list-style-default ul {
  list-style-type: disc;
}
.shopwell-list-style-default ul.elementor-icon-list-items {
  margin: 0 0 0 1.3em;
}
.shopwell-list-style-default ul .elementor-icon-list-item,
.shopwell-list-style-default ul li {
  display: list-item;
}

.shopwell-list-style-ordered ul {
  list-style: none;
  counter-reset: item;
}
.shopwell-list-style-ordered ul li:before {
  content: counter(item) ".";
  counter-increment: item;
  padding-right: 10px;
  font-weight: 700;
}

.shopwell-testimonial-carousel--elementor .shopwell-testimonial__inner {
  display: flex;
  flex-wrap: nowrap;
}
.shopwell-testimonial-carousel--elementor .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-testimonial-carousel--elementor .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-testimonial-carousel--elementor .shopwell-swiper-button-next {
  right: -22px;
}

.shopwell-testimonial__list {
  padding: 6px;
  margin: -6px;
}

.shopwell-testimonial__item {
  text-align: center;
  color: #1d2128;
  height: auto;
}

div.shopwell-testimonial__rating {
  font-size: 24px;
  font-size: 1.5rem;
  width: auto;
  height: auto;
  text-align: center;
  margin: 0 auto 20px;
}
div.shopwell-testimonial__rating .user-rating {
  color: #1d2128;
  left: 0;
  top: 0;
}
div.shopwell-testimonial__rating .max-rating {
  position: static;
}

.shopwell-testimonial__content {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 27px;
}

.shopwell-testimonial__name {
  font-weight: 500;
  margin-top: 19px;
}

.shopwell-testimonial__company {
  font-size: 12px;
  font-size: 0.75rem;
}

.shopwell-testimonial__brand {
  margin-top: 10px;
}

.shopwell-testimonial__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shopwell-testimonial__left {
  display: flex;
  align-items: center;
}

.shopwell-testimonial__image-position--top .shopwell-testimonial__rating {
  margin-top: 26px;
  margin-bottom: 17px;
}
.shopwell-testimonial__image-position--top .shopwell-testimonial__content {
  margin-bottom: 0;
}
.shopwell-testimonial__image-position--top .shopwell-testimonial__name {
  font-size: 24px;
  font-size: 1.5rem;
}
.shopwell-testimonial__image-position--top .shopwell-testimonial__company {
  font-size: 16px;
  font-size: 1rem;
}

.shopwell-testimonial__image-position--left .shopwell-testimonial__item {
  text-align: left;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 48px 48px 43px 48px;
  border-radius: 3px;
}
.shopwell-testimonial__image-position--left div.shopwell-testimonial__rating {
  margin: 30px 0 12px;
}
.shopwell-testimonial__image-position--left .shopwell-testimonial__content {
  margin-bottom: 0;
}
.shopwell-testimonial__image-position--left .shopwell-testimonial__name {
  margin-top: 0;
  margin-left: 20px;
}
.shopwell-testimonial__image-position--left .shopwell-testimonial__company {
  margin-left: 20px;
}
.shopwell-testimonial__image-position--left .shopwell-testimonial__brand {
  margin-top: 0;
}

@media (min-width: 1025px) {
  .shopwell-testimonial-carousel--elementor.navigation-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .shopwell-testimonial-carousel--elementor.navigation-tablet-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
@media (max-width: 767px) {
  .shopwell-testimonial-carousel--elementor.navigation-mobile-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
.elementor-motion-parallax {
  position: relative;
}
.elementor-motion-parallax .elementor-motion-effects-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.elementor-motion-parallax .elementor-motion-effects-layer {
  position: absolute;
  width: 100%;
  height: 150%;
  top: -25%;
  left: 0;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

@-moz-document url-prefix() {
  .elementor-motion-parallax .elementor-motion-effects-layer {
    top: 0;
  }
}
.shopwell-image-box-carousel .shopwell-image-box-carousel__inner {
  display: flex;
  flex-wrap: nowrap;
}
.shopwell-image-box-carousel .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  top: 75px;
}
.shopwell-image-box-carousel .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-image-box-carousel .shopwell-swiper-button-next {
  right: -22px;
}

.shopwell-image-box-carousel__item {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
}
.shopwell-image-box-carousel__item a {
  width: 100%;
  display: contents;
}

.shopwell-image-box-carousel__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.shopwell--title-ellipsis-yes .shopwell-image-box-carousel__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}

.shopwell-product-tabs-carousel--elementor .woocommerce:not(.swiper-container-initialized), .shopwell-product-tabs-carousel--elementor .woocommerce:not(.swiper-initialized) {
  padding: 0;
  margin: 0;
}
.shopwell-product-tabs-carousel--elementor .shopwell-tabs__panel > .swiper-container-initialized,
.shopwell-product-tabs-carousel--elementor .shopwell-tabs__panel > .swiper-initialized {
  position: relative;
  pointer-events: none;
  z-index: 2;
  margin: -6px -10px -150px;
  padding: 6px 10px 150px;
}
.shopwell-product-tabs-carousel--elementor .shopwell-tabs__panel > .swiper-container-initialized:hover,
.shopwell-product-tabs-carousel--elementor .shopwell-tabs__panel > .swiper-initialized:hover {
  z-index: 3;
}
.shopwell-product-tabs-carousel--elementor .shopwell-swiper-button {
  top: 32%;
}
.shopwell-product-tabs-carousel--elementor .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-product-tabs-carousel--elementor .shopwell-swiper-button-next {
  right: -22px;
}
.shopwell-product-tabs-carousel--elementor .swiper-pagination {
  margin-top: 30px;
}
.shopwell-product-tabs-carousel--elementor ul.products {
  flex-wrap: nowrap;
  z-index: 1;
}
.shopwell-product-tabs-carousel--elementor ul.products li.product {
  flex-shrink: 0;
}
.shopwell-product-tabs-carousel--elementor ul.products li.product div.product-inner {
  pointer-events: auto;
}
.shopwell-product-tabs-carousel--elementor .woocommerce-badges {
  z-index: 9;
}
.shopwell-product-tabs-carousel--elementor .shopwell-product-tabs__panels.loading .shopwell-product-tabs__panel {
  opacity: 0;
}
.shopwell-product-tabs-carousel--elementor .shopwell-product-tabs__panels.loading .shopwell-swiper-button {
  display: none;
}

.product-card-layout-6 .shopwell-product-tabs-carousel--elementor .shopwell-tabs__panel > .swiper-container-initialized,
.product-card-layout-6 .shopwell-product-tabs-carousel--elementor .shopwell-tabs__panel > .swiper-initialized {
  margin: 0;
  padding: 0;
}
.product-card-layout-6 .shopwell-product-deals__products {
  margin: 0;
  padding: 0;
}

.shopwell-pricing-table {
  --shopwell-pricing-table-color: #1d2128;
  padding: 45px 30px;
  color: var(--shopwell-pricing-table-color);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.35s;
}

.shopwell-pricing-table__header {
  display: flex;
  flex-direction: column;
  order: 1;
}

.shopwell-pricing-table__heading {
  margin: 0 0 10px;
  order: 2;
  color: var(--shopwell-pricing-table-color);
}

.shopwell-pricing-table__subheading {
  order: 3;
  margin-bottom: 28px;
  font-size: 14px;
  font-size: 0.875rem;
}

.shopwell-pricing-table__price {
  margin-bottom: 20px;
  order: 1;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.shopwell-pricing-table--heading-above .shopwell-pricing-table__heading {
  order: 1;
}
.shopwell-pricing-table--heading-above .shopwell-pricing-table__price {
  order: 2;
}

.shopwell-pricing-table__integer-part {
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 500;
}

.shopwell-pricing-table__period {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  padding-top: 5px;
}

.shopwell-pricing-table-period--beside {
  flex-direction: row;
  align-items: flex-end;
}
.shopwell-pricing-table-period--beside .shopwell-pricing-table__period {
  padding-top: 0;
  padding-bottom: 5px;
}

.shopwell-pricing-table__features-list {
  font-size: 12px;
  font-size: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 2.4;
  order: 3;
}
.shopwell-pricing-table__features-list .shopwell-repeater-item-icon {
  padding-right: 5px;
}

.shopwell-pricing-table__footer {
  order: 2;
  margin-bottom: 23px;
  width: 100%;
}
.shopwell-pricing-table__footer .shopwell-button {
  width: 100%;
}

.shopwell-pricing-table--button-below .shopwell-pricing-table__footer {
  order: 3;
  margin-top: 23px;
  margin-bottom: 0;
}
.shopwell-pricing-table--button-below .shopwell-pricing-table__features-list {
  order: 2;
}

.shopwell-pricing-table__ribbon {
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f86820;
  color: #fff;
  padding: 10px;
  border-radius: 3px;
  line-height: 1;
}
.shopwell-pricing-table__ribbon.shopwell-ribbon-center {
  left: 50%;
  transform: translateX(-50%);
}
.shopwell-pricing-table__ribbon.shopwell-ribbon-right {
  right: 30px;
  left: auto;
}

.shopwell-share-socials-title-below .shopwell-share-icons .social-share-link {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  margin: 0;
  padding: 0;
  text-align: center;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-svg-icon {
  background-color: #1d2128;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: var(--share-icon-size, 24px);
  width: calc(var(--share-icon-size, 36px) + 2 * var(--share-icon-padding, 0.5em));
  height: calc(var(--share-icon-size, 36px) + 2 * var(--share-icon-padding, 0.5em));
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--twitter .shopwell-svg-icon {
  background-color: #000;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--facebook .shopwell-svg-icon {
  background-color: #316FF6;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--googleplus .shopwell-svg-icon {
  background-color: #dd4b39;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--pinterest .shopwell-svg-icon {
  background-color: #e60023;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--tumblr .shopwell-svg-icon {
  background-color: #34526f;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--reddit .shopwell-svg-icon {
  background-color: #ff4500;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--linkedin .shopwell-svg-icon {
  background-color: #0077b5;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--stumbleupon .shopwell-svg-icon {
  background-color: #f74425;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--digg .shopwell-svg-icon {
  background-color: #005be2;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--vk .shopwell-svg-icon {
  background-color: #0077ff;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--telegram .shopwell-svg-icon {
  background-color: #24A1DE;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--email .shopwell-svg-icon {
  background-color: #ff0000;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--blogger .shopwell-svg-icon {
  background-color: #f57d00;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--tiktok .shopwell-svg-icon {
  background-color: #000;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--flickr .shopwell-svg-icon {
  background-color: #0063dc;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--instagram .shopwell-svg-icon {
  background-color: #e4405f;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--youtube .shopwell-svg-icon {
  background-color: #ff0000;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--vimeo .shopwell-svg-icon {
  background-color: #86c9ef;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--dribbble .shopwell-svg-icon {
  background-color: #ea4c89;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--behance .shopwell-svg-icon {
  background-color: #053eff;
}
.shopwell-share-socials-title-below .shopwell-share-icons .shopwell-socials--github .shopwell-svg-icon {
  background-color: #4078c0;
}
.shopwell-share-socials-title-below .shopwell-share-icons .social-share__label {
  color: #1d2128;
}
.shopwell-share-socials-title-below.shopwell-share-socials-shape-rounded .shopwell-share-icons .shopwell-svg-icon {
  border-radius: 10%;
}
.shopwell-share-socials-title-below.shopwell-share-socials-shape-circle .shopwell-share-icons .shopwell-svg-icon {
  border-radius: 50%;
}

.shopwell-share-socials-title-beside .shopwell-share-icons .shopwell-svg-icon {
  margin-right: 18px;
  font-size: var(--share-icon-size, 24px);
}
.shopwell-share-socials-title-beside .social-share-link {
  padding: 18px 25px 18px 20px;
}
.shopwell-share-socials-title-beside.shopwell-share-socials-shape-rounded .shopwell-share-icons .social-share-link {
  border-radius: 7px;
}
.shopwell-share-socials-title-beside.shopwell-share-socials-shape-circle .shopwell-share-icons .social-share-link {
  border-radius: 30px;
}

.shopwell-share-icons .social-share__label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.elementor-grid-0 .elementor-grid.shopwell-share-icons .elementor-grid-item {
  display: inline-flex;
}

.shopwell-share-icons__copylink {
  border-top: 1px solid rgba(185, 185, 185, 0.4);
  margin-top: 38px;
  padding-top: 40px;
}
.shopwell-share-icons__copylink form {
  position: relative;
}

.shopwell-share-icons__copylink-heading {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #7d828a;
  margin-bottom: 16px;
}

.shopwell-share-icons__copylink--link {
  width: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7d828a;
  padding-right: 95px;
}

.shopwell-share-icons__copylink--button {
  position: absolute;
  min-width: auto;
  line-height: 44px;
  top: 8px;
  right: 8px;
  box-shadow: none;
}

.shopwell-team-carousel--elementor .shopwell-team-member-carousel__wrapper {
  display: flex;
  flex-wrap: nowrap;
}
.shopwell-team-carousel--elementor .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-team-carousel--elementor .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-team-carousel--elementor .shopwell-swiper-button-next {
  right: -22px;
}
.shopwell-team-carousel--elementor .swiper-pagination {
  margin-top: 10px;
}

.shopwell-360-degree-viewer .shopwell-images-gallery-degree {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
}
.shopwell-360-degree-viewer .product-degree__images {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
}
.shopwell-360-degree-viewer .product-degree__images li {
  height: 100%;
  margin-bottom: 0;
}
.shopwell-360-degree-viewer .product-degree__images img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 100%;
}
.shopwell-360-degree-viewer .product-degree__images img.previous-image {
  visibility: hidden;
}
.shopwell-360-degree-viewer .product-degree__images img.current-image {
  visibility: visible;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__spinner {
  width: 40px;
  display: block;
  margin: 0 auto;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  margin-top: 0 !important;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__spinner:before {
  border-width: 2px;
  border-color: #1d2128 #1d2128 #1d2128 transparent;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border-style: solid;
  -webkit-animation: shopwellSpin 1s linear infinite;
  animation: shopwellSpin 1s linear infinite;
  content: " ";
  width: 40px;
  height: 40px;
  font-weight: 400;
  display: block;
}
.shopwell-360-degree-viewer .nav_bar {
  display: none;
}
.shopwell-360-degree-viewer .nav_bar + .shopwell-gallery-degree__nav-bar {
  opacity: 1;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  z-index: 11;
  display: flex;
  align-items: center;
  opacity: 0;
  transition-delay: 0.5s;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  color: #8e929b;
  margin: 0 5px;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar a:focus, .shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar a:hover {
  color: #1d2128;
  border-color: #1d2128;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar a.nav-bar__run {
  font-size: 24px;
  font-size: 1.5rem;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar a.nav-bar__run .pause {
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar a.nav-bar__run.active .play {
  display: none;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar a.nav-bar__run.active .pause {
  display: inline-block;
}
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar .nav-bar__prev,
.shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar .nav-bar__next {
  /*rtl:raw:
            transform: rotateY(180deg);
  */
}

/* html */
.shopwell-product-gallery-degree:-webkit-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}

.shopwell-product-gallery-degree:-moz-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}

.shopwell-icons-box-carousel--elementor .shopwell-icon-box-carousel__inner {
  display: flex;
  flex-wrap: nowrap;
}
.shopwell-icons-box-carousel--elementor .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-icons-box-carousel--elementor .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-icons-box-carousel--elementor .shopwell-swiper-button-next {
  right: -22px;
}
.shopwell-icons-box-carousel--elementor .swiper-pagination {
  margin-top: 10px;
}

.shopwell-icon-box__icon-position--left .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--left .shopwell-icons-box-carousel__item > a,
.shopwell-icon-box__icon-position--right .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--right .shopwell-icons-box-carousel__item > a {
  display: flex;
  align-items: flex-start;
}

.shopwell-icon-box__icon-position--left {
  --shopwell-icon-box-margin: 15px;
}
.shopwell-icon-box__icon-position--left .shopwell-icon-box__icon {
  margin-right: var(--shopwell-icon-box-margin);
  margin-left: 0;
  margin-bottom: 0;
}
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
  justify-content: flex-start;
}
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
  justify-content: center;
}
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--left.shopwell-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
  justify-content: flex-end;
}

.shopwell-icon-box__icon-position--top {
  --shopwell-icon-box-margin: 11px;
}
.shopwell-icon-box__icon-position--top .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--top .shopwell-icons-box-carousel__item > a {
  display: flex;
  flex-direction: column;
}
.shopwell-icon-box__icon-position--top .shopwell-icon-box__icon {
  margin-bottom: var(--shopwell-icon-box-margin);
  margin-left: 0;
  margin-right: 0;
}
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--top.shopwell-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

.shopwell-icon-box__icon-position--right {
  --shopwell-icon-box-margin: 15px;
}
.shopwell-icon-box__icon-position--right .shopwell-icon-box__icon {
  order: 2;
  margin-left: var(--shopwell-icon-box-margin);
  margin-right: 0;
  margin-bottom: 0;
}
.shopwell-icon-box__icon-position--right .shopwell-icon-box-carousel__wrapper {
  order: 1;
}
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
  justify-content: flex-start;
}
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
  justify-content: center;
}
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
.shopwell-icon-box__icon-position--right.shopwell-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
  justify-content: flex-end;
}

.shopwell-image-hotspot {
  position: relative;
  overflow: hidden;
}
.shopwell-image-hotspot .shopwell-hotspot__point {
  --rz-point-color-primary: #fff;
  --rz-point-color-secondary: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 40%;
  left: 40%;
  cursor: pointer;
}
.shopwell-image-hotspot .shopwell-hotspot__point:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-color: var(--rz-point-color-secondary);
  opacity: 0.15;
  border-radius: 50%;
  position: absolute;
  left: calc(-50% - 4px);
  top: calc(-50% - 4px);
  animation: anim-ripple 1.5s linear 0s infinite;
}
.shopwell-image-hotspot .shopwell-hotspot__point:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--rz-point-color-primary);
  border-radius: 50%;
}
.shopwell-image-hotspot .shopwell-hotspot__product {
  display: inline-flex;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  position: absolute;
  width: 290px;
  left: 50%;
  top: 50%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.06);
}
.shopwell-image-hotspot .shopwell-hotspot__product .shopwell-hotspot__product-image {
  margin-right: 15px;
}
.shopwell-image-hotspot .shopwell-hotspot__product .shopwell-hotspot__product-image img {
  display: block;
  max-width: 88px;
}
.shopwell-image-hotspot .shopwell-hotspot__product .shopwell-hotspot__product-name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 5px;
}
.shopwell-image-hotspot .shopwell-hotspot__product .star-rating {
  margin-bottom: 5px;
}
.shopwell-image-hotspot .shopwell-hotspot__product .shopwell-hotspot__product-price {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1d2128;
  display: flex;
  align-items: center;
}
.shopwell-image-hotspot .shopwell-hotspot__product .shopwell-hotspot__product-price ins {
  background-color: transparent;
  order: 1;
}
.shopwell-image-hotspot .shopwell-hotspot__product .shopwell-hotspot__product-price del {
  color: #7d828a;
  font-size: 12px;
  font-size: 0.75rem;
  order: 2;
  padding-left: 5px;
}
.shopwell-image-hotspot .shopwell-hotspot__product .shopwell-hotspot__product-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.shopwell-image-hotspot .shopwell-hotspot-item.active .shopwell-hotspot__product {
  opacity: 1;
  z-index: 1;
  pointer-events: all;
}

.shopwell-image-hotspot__featured-image {
  /*rtl:raw:
      transform: rotateY(180deg);
  */
}

.shopwell-gallery--elementor.elementor-image-gallery .gallery {
  margin: -12px;
  grid-gap: inherit;
}
.shopwell-gallery--elementor.elementor-image-gallery figure.gallery-item {
  padding: 12px;
}
.shopwell-gallery--elementor.elementor-image-gallery figcaption.gallery-caption {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #1d2128;
  margin-top: 10px;
}

.elementor-widget-shopwell-gallery:not(.shopwell-gallery__masonry--yes) .shopwell-gallery--elementor.elementor-image-gallery figure.gallery-item {
  max-width: 100%;
}

.elementor-editor-active .shopwell-gallery__masonry--yes .shopwell-gallery--elementor.elementor-image-gallery figure.gallery-item {
  max-width: 100%;
}

.shopwell-gallery__masonry--yes .shopwell-gallery--elementor.elementor-image-gallery {
  margin: -12px;
}

@media (min-width: 768px) {
  .shopwell-gallery--elementor .gallery-columns-10 .gallery-item {
    max-width: 10%;
  }
  .shopwell-gallery--elementor .gallery-columns-9 .gallery-item {
    max-width: 11.1111111111%;
  }
  .shopwell-gallery--elementor .gallery-columns-8 .gallery-item {
    max-width: 12.5%;
  }
  .shopwell-gallery--elementor .gallery-columns-7 .gallery-item {
    max-width: 14.2857142857%;
  }
  .shopwell-gallery--elementor .gallery-columns-6 .gallery-item {
    max-width: 16.6666666667%;
  }
  .shopwell-gallery--elementor .gallery-columns-5 .gallery-item {
    max-width: 20%;
  }
  .shopwell-gallery--elementor .gallery-columns-4 .gallery-item {
    max-width: 25%;
  }
  .shopwell-gallery--elementor .gallery-columns-3 .gallery-item {
    max-width: 33.3333333333%;
  }
  .shopwell-gallery--elementor .gallery-columns-2 .gallery-item {
    max-width: 50%;
  }
  .shopwell-gallery--elementor .gallery-columns-1 .gallery-item {
    max-width: 100%;
  }
}
.shopwell-gallery-carousel--elementor.elementor-image-gallery .gallery {
  display: flex;
  margin: 0;
}
.shopwell-gallery-carousel--elementor.elementor-image-gallery figure.gallery-item {
  padding: 0;
}
.shopwell-gallery-carousel--elementor .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-gallery-carousel--elementor .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-gallery-carousel--elementor .shopwell-swiper-button-next {
  right: -22px;
}

@media (min-width: 1025px) {
  .shopwell-gallery-carousel--elementor.navigation-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .shopwell-gallery-carousel--elementor.navigation-tablet-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
@media (max-width: 767px) {
  .shopwell-gallery-carousel--elementor.navigation-mobile-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
.shopwell-tab__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #7d828a;
  border-radius: 3px;
}
.shopwell-tab__title:hover {
  color: #1d2128;
}
.shopwell-tab__title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  display: inline-block;
}
.shopwell-tab__title.shopwell-tab--active {
  color: #1d2128;
}

.shopwell-tab__content {
  display: none;
  font-size: 18px;
  font-size: 1.125rem;
}
.shopwell-tab__content > h1:first-child,
.shopwell-tab__content > h2:first-child,
.shopwell-tab__content > h3:first-child,
.shopwell-tab__content > h4:first-child,
.shopwell-tab__content > h5:first-child,
.shopwell-tab__content > h6:first-child,
.shopwell-tab__content > p:first-child {
  margin-top: 0;
}

.shopwell-tabs-view--horizontal .shopwell-tabs-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 3px;
  padding-bottom: 36px;
}
.shopwell-tabs-view--horizontal .shopwell-tabs-alignment--left {
  text-align: initial;
  justify-content: flex-start;
}
.shopwell-tabs-view--horizontal .shopwell-tabs-alignment--justify {
  justify-content: space-between;
}
.shopwell-tabs-view--horizontal .shopwell-tab__title {
  display: inline-block;
}
.shopwell-tabs-view--horizontal .shopwell-tab__title a {
  padding: 27px 64px;
  position: relative;
  border-bottom: 2px solid rgba(185, 185, 185, 0.4);
}
.shopwell-tabs-view--horizontal .shopwell-tab__title a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: #1d2128;
  transition: 0.3s;
}
.shopwell-tabs-view--horizontal .shopwell-tab__title:hover a:after, .shopwell-tabs-view--horizontal .shopwell-tab__title.shopwell-tab--active a:after {
  width: 100%;
}
.shopwell-tabs-view--horizontal .shopwell-tab__content {
  padding: 0 23%;
  text-align: center;
}

.shopwell-tabs-view--vertical .shopwell-tabs {
  display: flex;
}
.shopwell-tabs-view--vertical .shopwell-tabs-wrapper {
  text-align: left;
  flex-shrink: 0;
  padding-right: 100px;
}
.shopwell-tabs-view--vertical .shopwell-tab__title {
  position: relative;
  padding-left: 25px;
  margin-bottom: 34px;
}
.shopwell-tabs-view--vertical .shopwell-tab__title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background-color: #1d2128;
  transition: 0.3s;
}
.shopwell-tabs-view--vertical .shopwell-tab__title:last-child {
  margin-bottom: 0;
}
.shopwell-tabs-view--vertical .shopwell-tab__title:hover:before, .shopwell-tabs-view--vertical .shopwell-tab__title.shopwell-tab--active:before {
  height: 100%;
}
.shopwell-tabs-view--vertical .shopwell-tab__content {
  text-align: initial;
}

.shopwell-tabs .shopwell-tab-mobile-title {
  display: block;
  padding: 14px 0;
  border-top: 1px solid #fff;
}

@media (min-width: 768px) {
  .shopwell-tab-mobile-title {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .shopwell-tabs__tabs {
    display: none;
  }
  .shopwell-tab__content {
    padding: 36px 0;
  }
  .elementor-widget-shopwell-tabs .shopwell-tabs-wrapper {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .elementor-widget-shopwell-tabs .shopwell-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }
  .elementor-widget-shopwell-tabs .shopwell-tabs-wrapper {
    justify-content: flex-start;
    width: 100%;
  }
  .elementor-widget-shopwell-tabs .shopwell-tabs-wrapper .shopwell-tab__title {
    white-space: nowrap;
  }
  .shopwell-tabs-view--horizontal .shopwell-tab__content {
    padding-left: 0;
    padding-right: 0;
  }
  .shopwell-tabs-view--horizontal .shopwell-tab__title a {
    padding: 13px 30px;
  }
  .shopwell-tabs-view--vertical .shopwell-tabs {
    flex-direction: column;
  }
  .shopwell-tabs-view--vertical .shopwell-tabs-wrapper {
    width: 100% !important;
    display: flex;
    padding: 0;
  }
  .shopwell-tabs-view--vertical .shopwell-tab__title {
    padding: 0;
    margin: 0;
  }
  .shopwell-tabs-view--vertical .shopwell-tab__title a {
    padding: 13px 30px;
    position: relative;
    border-bottom: 2px solid rgba(185, 185, 185, 0.4);
  }
  .shopwell-tabs-view--vertical .shopwell-tab__title a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: #1d2128;
    transition: 0.3s;
  }
  .shopwell-tabs-view--vertical .shopwell-tab__title:hover a:after, .shopwell-tabs-view--vertical .shopwell-tab__title.shopwell-tab--active a:after {
    width: 100%;
  }
  .shopwell-tabs-view--vertical .shopwell-tab__title:before {
    display: none;
  }
}
.shopwell-instagram--elementor .shopwell-instagram__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.shopwell-instagram--elementor .shopwell-instagram__item {
  transition: 0.5s;
  width: 16.666%;
  margin: 0;
}
.shopwell-instagram--elementor .shopwell-instagram__item:focus-within, .shopwell-instagram--elementor .shopwell-instagram__item:hover {
  opacity: 0.9;
}
.shopwell-instagram--elementor .shopwell-instagram__item img {
  display: block;
  border-radius: 2px;
}

.shopwell-instagram-carousel--elementor .shopwell-swiper-button {
  font-size: 16px;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  /*rtl:raw:
  	transform: translateY(-50%) rotateY(180deg);
  */
}
.shopwell-instagram-carousel--elementor .shopwell-swiper-button-prev {
  left: -22px;
}
.shopwell-instagram-carousel--elementor .shopwell-swiper-button-next {
  right: -22px;
}

.shopwell-instagram-carousel__wrapper {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

@media (min-width: 1025px) {
  .shopwell-instagram-carousel--elementor.navigation-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .shopwell-instagram-carousel--elementor.navigation-tablet-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
@media (max-width: 767px) {
  .shopwell-instagram-carousel--elementor.navigation-mobile-both .shopwell-swiper-button {
    top: calc(50% - 32px);
  }
}
.shopwell-alert {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 3px;
  padding: 12px 3px;
  position: relative;
}
.shopwell-alert a {
  color: inherit;
  text-decoration: underline !important;
}
.shopwell-alert.shopwell-alert-icon {
  padding-left: 42px;
}

.shopwell-alert__title {
  font-weight: 500;
  padding: 0 30px 0 15px;
}

.shopwell-alert__description {
  padding: 0 30px 0 15px;
}

.shopwell-alert__icons {
  font-size: 24px;
  font-size: 1.5rem;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--shopwell-alert__color);
}

button.shopwell-alert__dismiss,
.shopwell-alert__dismiss {
  font-size: 20px;
  font-size: 1.25rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--shopwell-alert__color);
}
button.shopwell-alert__dismiss:after,
.shopwell-alert__dismiss:after {
  display: none;
}

.shopwell-alert--success {
  --shopwell-alert__color: #13bc96;
  background-color: rgba(19, 188, 150, 0.08);
  color: var(--shopwell-alert__color);
}

.shopwell-alert--danger {
  --shopwell-alert__color: #f21951;
  background-color: rgba(242, 24, 80, 0.08);
  color: var(--shopwell-alert__color);
}

.shopwell-alert--warning {
  --shopwell-alert__color: #e4a705;
  background-color: rgba(237, 178, 0, 0.08);
  color: var(--shopwell-alert__color);
}

.shopwell-alert--info {
  --shopwell-alert__color: #1086ff;
  background-color: rgba(16, 134, 255, 0.08);
  color: var(--shopwell-alert__color);
}

.shopwell-modal-popup--elementor {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 38px 40px 48px;
}
.shopwell-modal-popup--elementor .swiper-pagination {
  margin-top: 30px;
}

.shopwell-modal-popup__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
}

.shopwell-modal-popup__description {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  margin-top: 12px;
}

.shopwell-modal-popup__button {
  --shopwell-color__primary--box-shadow: none;
  line-height: 44px;
  margin-top: 23px;
}

.shopwell-modal-popup__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 9;
}

.shopwell-modal-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0;
}
.shopwell-modal-popup__header .shopwell-modal-popup__title {
  font-size: 16px;
  font-size: 1rem;
}

.shopwell-modal-popup__inner {
  padding: 20px 40px 50px;
}

.popup-content__button-close {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #1d2128;
  top: 8px;
}

.admin-bar .shopwell-modal-popup__content {
  top: 32px;
}

@media (max-width: 780px) {
  .admin-bar .shopwell-modal-popup__content {
    top: 46px;
  }
}
@media (max-width: 767px) {
  .shopwell-modal-popup__wrapper {
    width: 100%;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }
  .shopwell-modal-popup__inner {
    padding: 20px 8px 20px;
  }
}
@media (max-width: 600px) {
  .admin-bar .shopwell-modal-popup__content {
    top: 0;
  }
}
.shopwell-store-locations__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.shopwell-store-locations__tags-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: #7d828a;
  padding: 25px 55px 30px;
  text-transform: capitalize;
  border-bottom: 2px solid #ebeff3;
  cursor: pointer;
}
.shopwell-store-locations__tags-item.active {
  color: #1d2128;
  border-bottom-color: #1d2128;
  text-shadow: 0.6px 0px #1d2128;
}

.shopwell-store-locations__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: -23px;
  position: relative;
}

.shopwell-store-locations__item {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  padding: 23px;
  font-size: 14px;
  font-size: 0.875rem;
  position: relative;
}
.shopwell-store-locations__item.fadeIn {
  animation-name: fadeIn;
}
.shopwell-store-locations__item.fadeOut {
  display: none;
}
.shopwell-store-locations__item:before {
  content: "";
  position: absolute;
  top: 23px;
  bottom: 23px;
  left: 23px;
  right: 23px;
  width: calc(100% - 46px);
  height: calc(100% - 46px);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  z-index: -1;
}

.shopwell-store-locations__content {
  padding: 23px 46px 46px;
}

.shopwell-store-locations__location {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 13px;
}

.shopwell-store-locations__address {
  margin-bottom: 11px;
}
.shopwell-store-locations__address b,
.shopwell-store-locations__address strong {
  font-weight: 500;
}

.shopwell-store-locations__phone {
  margin-bottom: 22px;
}

.shopwell-store-locations__hours-text {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.shopwell-store-locations__store-hours--item {
  display: flex;
  margin-bottom: 3px;
}
.shopwell-store-locations__store-hours--item:last-child {
  margin-bottom: 0;
}

.shopwell-store-locations__store-hours--day {
  min-width: 105px;
}

.shopwell-store-locations__button {
  background-color: #1d2128;
  margin-top: 26px;
}
.shopwell-store-locations__button:focus, .shopwell-store-locations__button:hover {
  background-color: #1d2128;
}

.shopwell-google-map {
  display: flex;
  margin: 0 auto;
}

.shopwell-google-map__wapper {
  width: 100%;
  order: 2;
  border-radius: 3px;
  margin-left: 30px;
}
.shopwell-google-map__wapper button {
  min-width: auto;
  height: auto;
}
.shopwell-google-map__wapper .gm-style .gm-style-iw-c {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
}
.shopwell-google-map__wapper button.gm-ui-hover-effect span {
  transform: translate(-5px, 5px);
}

.shopwell-google-map__markers {
  flex: 31% 0 0;
  order: 1;
  padding-right: 2px;
}

.shopwell-google-map__marker {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 22px 30px 25px;
  border: 1px solid rgba(185, 185, 185, 0.4);
  border-radius: 3px;
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}
.shopwell-google-map__marker.shopwell-open {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
}
.shopwell-google-map__marker.shopwell-open .shopwell-google-map__marker--arrow {
  transform: rotateX(180deg);
  color: #1d2128;
  border-color: #1d2128;
}
.shopwell-google-map__marker .shopwell-google-map__marker--foot {
  display: none;
}

.shopwell-google-map__marker--head h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-size: 1.125rem;
}
.shopwell-google-map__marker--head p {
  margin: 0;
  line-height: 1.6;
}
.shopwell-google-map__marker--head p b,
.shopwell-google-map__marker--head p strong {
  font-weight: 500;
  display: inline-block;
}

.shopwell-google-map__marker--foot {
  margin-top: 15px;
}
.shopwell-google-map__marker--foot h5 {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 15px 0;
}
.shopwell-google-map__marker--foot ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.shopwell-google-map__marker--foot ul li label {
  min-width: 100px;
  display: inline-block;
}
.shopwell-google-map__marker--foot .shopwell-button {
  padding: 0 20px;
  background-color: #1d2128;
}

.shopwell-google-map__marker--arrow {
  font-size: 10px;
  font-size: 0.625rem;
  position: absolute;
  top: 17px;
  right: 17px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(185, 185, 185, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7d828a;
  cursor: pointer;
}

.shopwell-google-map__info .shopwell-google-map__marker--head h4 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 7px;
}
.shopwell-google-map__info .shopwell-google-map__marker--foot h5,
.shopwell-google-map__info .shopwell-google-map__marker--foot ul,
.shopwell-google-map__info .shopwell-google-map__marker--arrow {
  display: none;
}

.shopwell-google-map--header {
  margin: 0 auto;
}

.shopwell-google-map--search {
  max-width: 450px;
  margin: 0 auto;
  padding-bottom: 50px;
  position: relative;
}
.shopwell-google-map--search .shopwell-gm-search__field {
  width: 100%;
  padding: 0 56px;
}
.shopwell-google-map--search .shopwell-location-map-icon {
  position: absolute;
  top: 21px;
  left: 25px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #7d828a;
}
.shopwell-google-map--search .shopwell-seach-map-icon {
  position: absolute;
  top: 21px;
  right: 25px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #7d828a;
}

.shopwell-articles-grid__items {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}

.shopwell-articles-grid__item {
  padding: 12px;
}

.shopwell-articles-grid__wrapper {
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 3px;
  height: 100%;
  padding: 45px 48px 48px 48px;
}
.shopwell-articles-grid__wrapper .shopwell-button--view-more {
  font-size: 14px;
  font-size: 0.875rem;
}

.shopwell-articles-grid__icon-box {
  margin-bottom: 23px;
}

.shopwell-articles-grid__icon {
  font-size: 30px;
}
.shopwell-articles-grid__icon.stacked {
  width: var(--shopwell-input__height);
  height: var(--shopwell-input__height);
  line-height: var(--shopwell-input__height);
  text-align: center;
}

.shopwell-articles-grid__category {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.shopwell-articles-grid__category a {
  color: inherit;
}

.shopwell-articles-grid__list {
  list-style-type: none;
  margin-bottom: 8px;
  padding: 0;
}
.shopwell-articles-grid__list a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 32px;
  font-weight: 500;
  color: #7d828a;
}
.shopwell-articles-grid__list a:focus, .shopwell-articles-grid__list a:hover {
  color: #1d2128;
}

.shopwell-icon-box-list {
  padding: 13px 19px 9px;
  border: 1px solid #ebeff3;
  border-radius: 2px;
}

.shopwell-icon-box-list__item {
  --shopwell-icon-box-list__item-spacing: 10px;
  --shopwell-icon-box-list__button-spacing: 10px;
  display: flex;
  align-items: center;
  color: #7d828a;
  border-bottom: 1px solid #ebeff3;
  padding-bottom: var(--shopwell-icon-box-list__item-spacing);
  margin-bottom: var(--shopwell-icon-box-list__item-spacing);
}
.shopwell-icon-box-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.shopwell-icon-box-list__icon {
  --shopwell-icon-box-list__icon-spacing: 16px;
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: var(--shopwell-icon-box-list__icon-spacing);
  line-height: 1;
}

.shopwell-icon-box-list__title {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
  font-weight: 500;
  margin: 0;
  margin-right: var(--shopwell-icon-box-list__button-spacing);
}

.shopwell-icon-box-list__button {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7d828a;
  margin-left: auto;
  border-bottom: none;
  position: relative;
}
.shopwell-icon-box-list__button:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
.shopwell-icon-box-list__button:focus, .shopwell-icon-box-list__button:hover {
  color: #1d2128;
}
.shopwell-icon-box-list__button:focus:after, .shopwell-icon-box-list__button:hover:after {
  width: 100%;
  left: 0;
}

.shopwell-icon-list--vertical .shopwell-icon-box-list {
  display: flex;
  justify-content: center;
}
.shopwell-icon-list--vertical .shopwell-icon-box-list__item {
  --shopwell-icon-box-list__item-spacing: 30px;
  flex-direction: column;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-right: var(--shopwell-icon-box-list__item-spacing);
  border-bottom: none;
  text-align: center;
  position: relative;
}
.shopwell-icon-list--vertical .shopwell-icon-box-list__item:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(var(--shopwell-icon-box-list__item-spacing) / 2 * -1);
  border-right: 1px solid transparent;
}
.shopwell-icon-list--vertical .shopwell-icon-box-list__item:last-child {
  margin-right: 0;
}
.shopwell-icon-list--vertical .shopwell-icon-box-list__item:last-child:after {
  display: none;
}
.shopwell-icon-list--vertical .shopwell-icon-box-list__icon {
  margin-right: 0;
  margin-bottom: var(--shopwell-icon-box-list__icon-spacing);
}
.shopwell-icon-list--vertical .shopwell-icon-box-list__button {
  padding-left: 0;
  padding-top: var(--shopwell-icon-box-list__button-spacing);
  margin-left: 0;
}

@media (max-width: 1024px) {
  .shopwell-team-member-grid__item {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .shopwell-team-member-grid__tags,
  .shopwell-store-locations__tags {
    justify-content: center;
    margin-bottom: 54px;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-team-member-grid__tags::-webkit-scrollbar,
  .shopwell-store-locations__tags::-webkit-scrollbar {
    display: none;
  }
  .shopwell-team-member-grid__tags-item,
  .shopwell-store-locations__tags-item {
    padding-top: 18px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 22px;
  }
  .shopwell-team-member-grid__tags-item:first-child,
  .shopwell-store-locations__tags-item:first-child {
    padding-left: 12px;
    padding-right: 12px;
  }
  .shopwell-team-member-grid-tablet__columns-6 .shopwell-team-member-grid__item {
    width: 16.6666666667%;
  }
  .shopwell-team-member-grid-tablet__columns-6 .shopwell-team-member-grid__item:nth-child(6) {
    margin-right: 0 !important;
  }
  .shopwell-team-member-grid-tablet__columns-5 .shopwell-team-member-grid__item {
    width: 20%;
  }
  .shopwell-team-member-grid-tablet__columns-5 .shopwell-team-member-grid__item:nth-child(5) {
    margin-right: 0 !important;
  }
  .shopwell-team-member-grid-tablet__columns-4 .shopwell-team-member-grid__item {
    width: 25%;
  }
  .shopwell-team-member-grid-tablet__columns-4 .shopwell-team-member-grid__item:nth-child(4) {
    margin-right: 0 !important;
  }
  .shopwell-team-member-grid-tablet__columns-3 .shopwell-team-member-grid__item {
    width: 33.3333333333%;
  }
  .shopwell-team-member-grid-tablet__columns-3 .shopwell-team-member-grid__item:nth-child(3) {
    margin-right: 0 !important;
  }
  .shopwell-team-member-grid-tablet__columns-2 .shopwell-team-member-grid__item {
    width: 50%;
  }
  .shopwell-team-member-grid-tablet__columns-2 .shopwell-team-member-grid__item:nth-child(2) {
    margin-right: 0 !important;
  }
  .shopwell-team-member-grid-tablet__columns-1 .shopwell-team-member-grid__item {
    width: 100%;
  }
  .shopwell-team-member-grid-tablet__columns-1 .shopwell-team-member-grid__item:nth-child(1) {
    margin-right: 0 !important;
  }
  .shopwell-search__items {
    width: 100%;
  }
  .shopwell-store-locations__content {
    padding: 23px 24px 26px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left .shopwell-icons-box-carousel__item > a, .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right .shopwell-icons-box-carousel__item > a {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box__icon {
    order: 1;
    margin-right: var(--shopwell-icon-box-margin);
    margin-left: 0;
    margin-bottom: 0;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left .shopwell-icon-box-carousel__wrapper {
    order: 2;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
    justify-content: flex-start;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
    justify-content: center;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
    justify-content: flex-end;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top .shopwell-icons-box-carousel__item > a {
    display: flex;
    flex-direction: column;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box__icon {
    order: 1;
    margin-bottom: var(--shopwell-icon-box-margin);
    margin-left: 0;
    margin-right: 0;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top .shopwell-icon-box-carousel__wrapper {
    order: 2;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box__icon {
    order: 2;
    margin-left: var(--shopwell-icon-box-margin);
    margin-right: 0;
    margin-bottom: 0;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right .shopwell-icon-box-carousel__wrapper {
    order: 1;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
    justify-content: flex-start;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
    justify-content: center;
  }
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-tablet-icon-box__icon-position--right.shopwell-tablet-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
    justify-content: flex-end;
  }
  .shopwell-swiper-carousel-elementor.navigation-tablet-dots .shopwell-swiper-button, .shopwell-swiper-carousel-elementor.navigation-tablet-none .shopwell-swiper-button {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-tablet-dots .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-tablet-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-tablet-arrows .swiper-pagination, .shopwell-swiper-carousel-elementor.navigation-tablet-none .swiper-pagination {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-tablet-arrows .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-tablet-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-tablet-scrollbar .shopwell-swiper-button, .shopwell-swiper-carousel-elementor.navigation-tablet-none .shopwell-swiper-button {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-tablet-scrollbar .swiper-pagination, .shopwell-swiper-carousel-elementor.navigation-tablet-none .swiper-pagination {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-tablet-dots-arrows .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-tablet-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-tablet-arrows-scrollbar .swiper-pagination {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .shopwell-swiper-carousel-elementor.navigation-dots .shopwell-swiper-button, .shopwell-swiper-carousel-elementor.navigation-none .shopwell-swiper-button {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-dots .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-arrows .swiper-pagination, .shopwell-swiper-carousel-elementor.navigation-none .swiper-pagination {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-arrows .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-scrollbar .shopwell-swiper-button, .shopwell-swiper-carousel-elementor.navigation-none .shopwell-swiper-button {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-scrollbar .swiper-pagination, .shopwell-swiper-carousel-elementor.navigation-none .swiper-pagination {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-dots-arrows .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-arrows-scrollbar .swiper-pagination {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.dots-position-bottom .swiper-pagination {
    right: auto;
    width: 100%;
    bottom: 0;
    top: auto;
    flex-direction: row;
    justify-content: center;
  }
  .shopwell-swiper-carousel-elementor.dots-position-bottom.dots-position-tablet-right .swiper-pagination, .shopwell-swiper-carousel-elementor.dots-position-bottom.dots-position-mobile-right .swiper-pagination {
    right: auto !important;
  }
  .shopwell-swiper-carousel-elementor.dots-position-right.dots-position-tablet-bottom .swiper-pagination, .shopwell-swiper-carousel-elementor.dots-position-right.dots-position-mobile-bottom .swiper-pagination {
    bottom: auto !important;
  }
}
@media (max-width: 991px) {
  .shopwell-countdown .timer {
    padding: 0 15px;
  }
  .shopwell-countdown .digits {
    margin-bottom: 4px;
  }
  .shopwell-product-category-box .shopwell-product-category-box__items {
    flex-wrap: nowrap;
    margin: 0 -5px;
    scroll-behavior: smooth;
    overflow-x: auto;
  }
  .shopwell-product-category-box .shopwell-product-category-box__items::-webkit-scrollbar {
    display: none;
  }
  .shopwell-product-category-box .shopwell-product-category-box__item {
    padding: 0 5px;
  }
  .shopwell-product-tabs__tabs {
    margin-bottom: 22px;
  }
  .shopwell-product-tabs__tabs li {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 11px;
    padding-bottom: 20px;
  }
  .shopwell-google-map {
    flex-direction: column;
  }
  .shopwell-google-map__markers {
    flex: 100% 0 0;
  }
  .shopwell-google-map__wapper {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .shopwell-tablet-image-box-grid-scroll--yes .shopwell-image-box-grid {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-tablet-image-box-grid-scroll--yes .shopwell-image-box-grid::-webkit-scrollbar {
    display: none;
  }
  .shopwell-tablet-image-box-grid-scroll--yes .shopwell-image-box-grid {
    justify-content: flex-start;
  }
  .shopwell-tablet-image-box-grid-scroll--yes .shopwell-image-box-grid__item {
    margin: 0;
  }
  .shopwell-tablet-image-box-grid-scroll--yes .shopwell-image-box-grid__item:first-child {
    margin-left: 0;
  }
  .shopwell-tablet-image-box-grid-scroll--yes .shopwell-image-box-grid__item:last-child {
    margin-right: 0;
  }
  .shopwell-tablet-posts-grid-scroll--yes .shopwell-post-grid--elementor {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-tablet-posts-grid-scroll--yes .shopwell-post-grid--elementor::-webkit-scrollbar {
    display: none;
  }
  .shopwell-tablet-posts-grid-scroll--yes .shopwell-post-grid--elementor {
    justify-content: flex-start;
  }
  .shopwell-product-tabs ul.products.columns-4 li.product, .shopwell-product-tabs ul.products.columns-5 li.product, .shopwell-product-tabs ul.products.columns-6 li.product {
    width: 33.33%;
  }
}
@media (min-width: 768px) {
  .shopwell-subscribe-box-position--inside .mc4wp-form-fields {
    position: relative;
  }
  .shopwell-subscribe-box-position--inside input[type=email],
  .shopwell-subscribe-box-position--inside input[type=text] {
    padding-right: 118px;
  }
  .shopwell-subscribe-box-position--inside input[type=submit] {
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 8px;
    min-width: auto;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left .shopwell-icons-box-carousel__item > a, .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right .shopwell-icons-box-carousel__item > a {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box__icon {
    order: 1;
    margin-right: var(--shopwell-icon-box-margin);
    margin-left: 0;
    margin-bottom: 0;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left .shopwell-icon-box-carousel__wrapper {
    order: 2;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
    justify-content: flex-start;
    text-align: left;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
    justify-content: center;
    text-align: center;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
    justify-content: flex-end;
    text-align: right;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top .shopwell-icons-box-carousel__item > a {
    display: flex;
    flex-direction: column;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box__icon {
    order: 1;
    margin-bottom: var(--shopwell-icon-box-margin);
    margin-left: 0;
    margin-right: 0;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top .shopwell-icon-box-carousel__wrapper {
    order: 2;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box__icon,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box__icon {
    order: 2;
    margin-left: var(--shopwell-icon-box-margin);
    margin-right: 0;
    margin-bottom: 0;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box-carousel__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box__wrapper,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right .shopwell-icon-box-carousel__wrapper {
    order: 1;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--left .shopwell-icons-box-carousel__item > a {
    justify-content: flex-start;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--center .shopwell-icons-box-carousel__item > a {
    justify-content: center;
  }
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--left.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icon-box,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item,
  .shopwell-icon-box__icon-position--top.shopwell-mobile-icon-box__icon-position--right.shopwell-mobile-icon-box__icon-alignment--right .shopwell-icons-box-carousel__item > a {
    justify-content: flex-end;
  }
  .shopwell-heading--large {
    font-size: 16px;
    font-size: 1rem;
  }
  .shopwell-subscribe-box-form-items--column .mc4wp-form-fields button,
  .shopwell-subscribe-box-form-items--column .mc4wp-form-fields input[type=submit] {
    margin-top: 16px;
  }
  .shopwell-subscribe-box-mobile-position--inside .mc4wp-form-fields {
    position: relative;
  }
  .shopwell-subscribe-box-mobile-position--inside input[type=email],
  .shopwell-subscribe-box-mobile-position--inside input[type=text] {
    padding-right: 118px;
  }
  .shopwell-subscribe-box-mobile-position--inside input[type=submit] {
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 8px;
    min-width: auto;
    line-height: 44px;
  }
  .shopwell-subscribe-box-mobile-position--outside .shopwell-subscribe-box .mc4wp-form-fields {
    flex-direction: column;
  }
  .shopwell-subscribe-box-mobile-position--outside .shopwell-subscribe-box .mc4wp-form-fields input {
    flex: auto;
    width: 100%;
  }
  .shopwell-subscribe-box-mobile-position--outside .shopwell-subscribe-box .mc4wp-form-fields input[type=submit] {
    margin-top: 15px;
    margin-left: 0;
  }
  .shopwell-heading--large {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .shopwell-navigation-menu--column .shopwell-navigation-menu {
    margin-top: 11px;
  }
  .shopwell-navigation-menu--column .shopwell-navigation-menu__title--toggle + .shopwell-navigation-menu li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .shopwell-navigation-menu--column .shopwell-navigation-menu__title--toggle + .shopwell-navigation-menu li:last-child {
    margin-bottom: 0;
  }
  .shopwell-navigation-menu--column .shopwell-navigation-menu__title--toggle + .shopwell-navigation-menu ul {
    padding-left: 23px;
  }
  .shopwell-store-locations__tags-item {
    white-space: nowrap;
  }
  .shopwell-team-member-grid__tags,
  .shopwell-store-locations__tags {
    justify-content: flex-start;
    margin-right: -15px;
  }
  .shopwell-team-member-grid-mobile__columns-1 .shopwell-team-member-grid__item {
    width: 100%;
  }
  .shopwell-team-member-grid-mobile__columns-2 .shopwell-team-member-grid__wrapper {
    margin: 0 -15px;
  }
  .shopwell-team-member-grid-mobile__columns-2 .shopwell-team-member-grid__item {
    padding: 0 15px;
    --shopwell-team-member-grid-width-columns: calc(100% / 2);
    width: calc(var(--shopwell-team-member-grid-width-columns));
  }
  .shopwell-team-member-grid-mobile__columns-2 .shopwell-team-member-grid__item:nth-child(2n), .shopwell-team-member-grid-mobile__columns-2 .shopwell-team-member-grid__item:nth-child(2n+1).last {
    margin-right: 0;
  }
  .shopwell-team-member-grid-mobile__columns-3 .shopwell-team-member-grid__wrapper {
    margin: 0 -10px;
  }
  .shopwell-team-member-grid-mobile__columns-3 .shopwell-team-member-grid__item {
    padding: 0 10px;
    --shopwell-team-member-grid-width-columns: calc(100% / 3);
    width: calc(var(--shopwell-team-member-grid-width-columns));
  }
  .shopwell-team-member-grid-mobile__columns-3 .shopwell-team-member-grid__item:nth-child(3n+3), .shopwell-team-member-grid-mobile__columns-3 .shopwell-team-member-grid__item:nth-child(3n+1).last, .shopwell-team-member-grid-mobile__columns-3 .shopwell-team-member-grid__item:nth-child(3n+2).last {
    margin-right: 0;
  }
  .shopwell-team-member-grid-mobile__columns-4 .shopwell-team-member-grid__wrapper {
    margin: 0 -7.5px;
  }
  .shopwell-team-member-grid-mobile__columns-4 .shopwell-team-member-grid__item {
    padding: 0 7.5px;
    --shopwell-team-member-grid-width-columns: calc(100% / 4);
    width: calc(var(--shopwell-team-member-grid-width-columns));
  }
  .shopwell-team-member-grid-mobile__columns-4 .shopwell-team-member-grid__item:nth-child(4n+4), .shopwell-team-member-grid-mobile__columns-4 .shopwell-team-member-grid__item:nth-child(4n+1).last, .shopwell-team-member-grid-mobile__columns-4 .shopwell-team-member-grid__item:nth-child(4n+2).last, .shopwell-team-member-grid-mobile__columns-4 .shopwell-team-member-grid__item:nth-child(4n+3).last {
    margin-right: 0;
  }
  .shopwell-team-member-grid-mobile__columns-5 .shopwell-team-member-grid__wrapper {
    margin: 0 -5px;
  }
  .shopwell-team-member-grid-mobile__columns-5 .shopwell-team-member-grid__item {
    padding: 0 5px;
    --shopwell-team-member-grid-width-columns: calc(100% / 5);
    width: calc(var(--shopwell-team-member-grid-width-columns));
  }
  .shopwell-team-member-grid-mobile__columns-5 .shopwell-team-member-grid__item:nth-child(5n+5), .shopwell-team-member-grid-mobile__columns-5 .shopwell-team-member-grid__item:nth-child(5n+1).last, .shopwell-team-member-grid-mobile__columns-5 .shopwell-team-member-grid__item:nth-child(5n+2).last, .shopwell-team-member-grid-mobile__columns-5 .shopwell-team-member-grid__item:nth-child(5n+3).last, .shopwell-team-member-grid-mobile__columns-5 .shopwell-team-member-grid__item:nth-child(5n+4).last {
    margin-right: 0;
  }
  .shopwell-team-member-grid-mobile__columns-6 .shopwell-team-member-grid__wrapper {
    margin: 0 -5px;
  }
  .shopwell-team-member-grid-mobile__columns-6 .shopwell-team-member-grid__item {
    padding: 0 5px;
    --shopwell-team-member-grid-width-columns: calc(100% / 6);
    width: calc(var(--shopwell-team-member-grid-width-columns));
  }
  .shopwell-team-member-grid-mobile__columns-6 .shopwell-team-member-grid__item:nth-child(6n+6), .shopwell-team-member-grid-mobile__columns-6 .shopwell-team-member-grid__item:nth-child(6n+1).last, .shopwell-team-member-grid-mobile__columns-6 .shopwell-team-member-grid__item:nth-child(6n+2).last, .shopwell-team-member-grid-mobile__columns-6 .shopwell-team-member-grid__item:nth-child(6n+3).last, .shopwell-team-member-grid-mobile__columns-6 .shopwell-team-member-grid__item:nth-child(6n+4).last, .shopwell-team-member-grid-mobile__columns-6 .shopwell-team-member-grid__item:nth-child(6n+5).last {
    margin-right: 0;
  }
  .shopwell-swiper-carousel-elementor.navigation-mobile-dots .shopwell-swiper-button, .shopwell-swiper-carousel-elementor.navigation-mobile-none .shopwell-swiper-button {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-mobile-dots .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-mobile-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-mobile-arrows .swiper-pagination, .shopwell-swiper-carousel-elementor.navigation-mobile-none .swiper-pagination {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-mobile-arrows .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-mobile-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-mobile-scrollbar .shopwell-swiper-button, .shopwell-swiper-carousel-elementor.navigation-mobile-none .shopwell-swiper-button {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-mobile-scrollbar .swiper-pagination, .shopwell-swiper-carousel-elementor.navigation-mobile-none .swiper-pagination {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-mobile-dots-arrows .swiper-scrollbar, .shopwell-swiper-carousel-elementor.navigation-mobile-none .swiper-scrollbar {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.navigation-mobile-arrows-scrollbar .swiper-pagination {
    display: none !important;
  }
  .shopwell-swiper-carousel-elementor.dots-position-mobile-bottom .swiper-pagination {
    right: auto;
    width: 100%;
    bottom: 0;
    top: auto;
    flex-direction: row;
    justify-content: center;
  }
  .shopwell-swiper-carousel-elementor.dots-position-mobile-bottom.dots-position-right .swiper-pagination, .shopwell-swiper-carousel-elementor.dots-position-mobile-bottom.dots-position-tablet-right .swiper-pagination {
    right: auto !important;
  }
  .shopwell-swiper-carousel-elementor.dots-position-mobile-right.dots-position-bottom .swiper-pagination, .shopwell-swiper-carousel-elementor.dots-position-mobile-right.dots-position-tablet-bottom .swiper-pagination {
    bottom: auto !important;
  }
  .shopwell-swiper-carousel-elementor .shopwell-swiper-button-next {
    right: 0;
  }
  .shopwell-swiper-carousel-elementor .shopwell-swiper-button-prev {
    left: 0;
  }
  .shopwell-slides-elementor .item-slider {
    height: 240px;
  }
  .shopwell-slides-elementor .shopwell-button-second {
    margin-left: 20px;
  }
  .shopwell-slides-elementor .shopwell-slide__content {
    order: 1;
  }
  .shopwell-slides-elementor .shopwell-slide__image {
    height: 50%;
  }
  .shopwell-slides-elementor .slick-slide-inner.slide-has-image {
    flex-direction: column;
    justify-content: flex-start;
  }
  .shopwell-slide__content {
    width: 100%;
  }
  .shopwell-slide__subtitle {
    font-size: 11px;
    font-size: 0.6875rem;
    margin-bottom: 6px;
  }
  .shopwell-slide__title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .shopwell-slide__description {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    margin-bottom: 25px;
  }
  .shopwell-slides__centeredslides-yes .swiper-slide {
    height: 240px;
  }
  .shopwell-slides__centeredslides-yes .slick-slide-inner {
    width: 100%;
  }
  .shopwell-banner__wrapper {
    padding: 13px 19px;
  }
  .shopwell-banner__button-style--large .shopwell-button {
    font-size: 15px;
    font-size: 0.9375rem;
    min-width: 160px;
    min-width: 100px;
  }
  .shopwell-banner__button-style--medium .shopwell-button {
    font-size: 14px;
    font-size: 0.875rem;
    min-width: 120px;
    padding: 0 1.5em;
    line-height: var(--shopwell-size__medium);
    --shopwell-size__medium: 44px;
    min-width: 100px;
  }
  .shopwell-banner__button-style--medium .shopwell-button {
    height: var(--shopwell-size__medium);
  }
  .shopwell--time-text-enable-yes .shopwell-banner .shopwell-countdown {
    box-shadow: none;
  }
  .shopwell-product-carousel ul.products.mobile-show-atc li.product {
    margin: 0;
  }
  .shopwell-product-carousel.shopwell-carousel-spacing-empty .shopwell-product-carousel__container > .swiper-container-initialized,
  .shopwell-product-carousel.shopwell-carousel-spacing-empty .shopwell-product-carousel__container > .swiper-initialized,
  .shopwell-product-carousel.shopwell-carousel-spacing-empty > .swiper-container-initialized,
  .shopwell-product-carousel.shopwell-carousel-spacing-empty > .swiper-initialized {
    padding-left: 0;
    padding-right: 0;
    margin-left: -8px;
    margin-right: -8px;
  }
  .shopwell-product-carousel .shopwell-products-carousel__heading {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  .shopwell-product-carousel .shopwell-product-carousel__countdown {
    font-size: 0px;
    margin-right: 12px;
    padding-right: 6px;
  }
  .shopwell-product-carousel .shopwell-product-carousel__countdown .timer {
    padding: 0 5px;
  }
  .shopwell-product-carousel .shopwell-product-carousel__countdown .timer .digits {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
  .shopwell-product-carousel .shopwell-product-carousel__countdown .timer .divider {
    top: 2px;
  }
  .shopwell-product-carousel__has-heading {
    display: block;
  }
  .shopwell-product-carousel__heading {
    padding: 0 0 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .shopwell-product-carousel__heading-title {
    margin-bottom: 0;
  }
  .elementor .shopwell-product-carousel__heading-title img {
    max-width: 46px;
  }
  .shopwell-product-carousel__heading-description {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    margin-bottom: 0;
  }
  .shopwell-product-carousel__arrows-style-2 .shopwell-product-carousel__heading {
    max-width: 100%;
  }
  .shopwell-product-carousel__arrows-style-2 .shopwell-product-carousel__container {
    max-width: 100%;
  }
  .shopwell-counter__number-wrapper {
    margin-bottom: 12px;
  }
  .shopwell-search__form {
    width: 343px;
  }
  .shopwell-search__items {
    width: fit-content;
    margin-right: -14px;
    margin-left: -14px;
  }
  .shopwell-search__item:nth-child(3n)::after {
    display: none;
  }
  .shopwell-product-tabs__tabs {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-product-tabs__tabs::-webkit-scrollbar {
    display: none;
  }
  .shopwell-product-tabs__tabs {
    justify-content: flex-start;
    margin-right: -16px;
  }
  .shopwell-product-tabs__tabs li {
    white-space: nowrap;
  }
  .woocommerce-navigation__products-tabs {
    margin-top: 22px;
  }
  .shopwell-image-box__sale {
    font-size: 11px;
    font-size: 0.6875rem;
    right: 0;
    line-height: 14px;
    width: 60px;
    height: 60px;
  }
  .shopwell-mobile-image-box-grid-scroll--yes .shopwell-image-box-grid {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-mobile-image-box-grid-scroll--yes .shopwell-image-box-grid::-webkit-scrollbar {
    display: none;
  }
  .shopwell-mobile-image-box-grid-scroll--yes .shopwell-image-box-grid {
    justify-content: flex-start;
  }
  .shopwell-mobile-image-box-grid-scroll--yes .shopwell-image-box-grid__item {
    margin: 0;
  }
  .shopwell-mobile-image-box-grid-scroll--yes .shopwell-image-box-grid__item:first-child {
    margin-left: 0;
  }
  .shopwell-mobile-image-box-grid-scroll--yes .shopwell-image-box-grid__item:last-child {
    margin-right: 0;
  }
  .shopwell-product-deals .swiper-container-initialized .swiper-scrollbar,
  .shopwell-product-deals .swiper-initialized .swiper-scrollbar {
    margin-top: 10px;
  }
  .shopwell-product-deals-position--top .shopwell-product-deals__content {
    padding-bottom: 8px;
  }
  .shopwell-product-deals-position--top .shopwell-carousel-spacing-empty .shopwell-product-deals__content {
    padding-bottom: 25px;
  }
  .shopwell-product-deals-position--top .shopwell-product-deals__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 20px;
  }
  .shopwell-product-deals-position--top .shopwell-product-deals__countdown {
    padding: 0 6px;
  }
  .shopwell-product-deals-position--top .shopwell-product-deals__countdown .shopwell-countdown {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .shopwell-product-deals-position--top .shopwell-product-deals__countdown .digits {
    line-height: 25px;
    height: 24px;
    width: 24px;
    font-size: 11px;
    font-size: 0.6875rem;
    margin-bottom: 0;
  }
  .shopwell-product-deals-position--top .shopwell-product-deals__countdown .timer {
    padding: 0 4px;
  }
  .shopwell-product-deals-position--top .shopwell-product-deals__countdown .divider {
    font-size: 11px;
    font-size: 0.6875rem;
    top: 6px;
    right: -2px;
    /*rtl:raw:
    	right: -2px;
    	left: auto;
    */
  }
  .shopwell-product-deals-position--top .shopwell-product-deals__button {
    padding-left: 12px;
  }
  .shopwell-product-deals-position--left .shopwell-product-deals__content {
    width: 164px;
    min-width: 164px;
    padding: 18px 14px;
    margin-right: 8px;
  }
  .shopwell-product-deals-position--left .shopwell-product-deals__products {
    width: calc(100% - 172px);
    min-width: calc(100% - 172px);
  }
  .shopwell-product-deals-position--left .shopwell-product-deals__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
  }
  .shopwell-product-deals-position--left .shopwell-product-deals__countdown {
    margin-top: 18px;
    margin-bottom: 37px;
  }
  .shopwell-product-deals-position--left .shopwell-product-deals__countdown .shopwell-countdown .digits {
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 30px;
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
  }
  .shopwell-product-deals-position--left .shopwell-product-deals__countdown .shopwell-countdown .text {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .shopwell-product-deals-position--left .shopwell-product-deals__countdown .shopwell-countdown .divider {
    top: 5px;
  }
  .shopwell-product-deals__button-mobile-on .shopwell-product-deals__button .shopwell-button-desktop {
    display: none;
  }
  .shopwell-product-deals__button-mobile-on .shopwell-product-deals__button-mobile {
    display: inline-flex;
  }
  .shopwell-heading__button-mobile-on {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .shopwell-heading__button-mobile-on .shopwell-heading__button-desktop {
    display: none;
  }
  .shopwell-heading__button-mobile-on .shopwell-heading__button-mobile {
    display: inline-flex;
  }
  .shopwell-heading__button-mobile-on .shopwell-heading__button-mobile .shopwell-button {
    color: #1d2128;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .shopwell-products-view .shopwell-toolbar-view a.grid-2,
  .shopwell-products-view .shopwell-toolbar-view a.grid-3,
  .shopwell-products-view .shopwell-toolbar-view a.grid-5 {
    display: none;
  }
  .shopwell-button .shopwell-button__text_mobile {
    display: block;
  }
  .shopwell-button .shopwell-button__text_mobile + .shopwell-button__text {
    display: none;
  }
  .modal__preferences .modal__content {
    padding: 23px;
  }
  .modal__preferences .language_field {
    margin-top: 0;
  }
  .modal__preferences .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px;
  }
  .shopwell-brands-grid__image {
    max-width: 70px;
    height: 70px;
  }
  .shopwell-mobile-posts-grid-scroll--yes .shopwell-post-grid--elementor {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-mobile-posts-grid-scroll--yes .shopwell-post-grid--elementor::-webkit-scrollbar {
    display: none;
  }
  .shopwell-mobile-posts-grid-scroll--yes .shopwell-post-grid--elementor {
    justify-content: flex-start;
  }
  .shopwell-posts-grid__content-position--overlay .hfeed .hentry .entry-summary {
    padding: 15px 15px 10px;
  }
  .shopwell-posts-grid__content-position--overlay .hfeed .hentry .post-thumbnail {
    margin: 0;
  }
  .shopwell-posts-grid__content-position--overlay .hfeed .hentry .entry-title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.125;
    margin-bottom: 0;
  }
  .shopwell-post-carousel--elementor .hentry {
    margin-right: 16px;
  }
  .shopwell-360-degree-viewer .shopwell-gallery-degree__nav-bar {
    display: none;
  }
  .shopwell-product-tabs__heading-style--background .shopwell-product-tabs__tabs {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .shopwell-countdown .timer {
    padding: 0 15px;
  }
}
.elementor-drop-cap-view-stacked .elementor-drop-cap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.elementor-widget .elementor-icon-list-icon {
  align-items: center;
  justify-content: center;
}

.elementor-widget.elementor-widget-icon-list .elementor-icon-list-item .elementor-icon-list-icon svg {
  margin: 0;
}

.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon {
  margin-top: 4px;
}

.elementor .elementor-widget-text-editor .elementor-widget-container > *:first-child {
  margin-top: 0;
}
.elementor .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}
.elementor .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.single-shopwell_footer .elementor-widget-text-editor .elementor-widget-container > *:nth-child(2) {
  margin-top: 0;
}

.elementor-editor-active .elementor-text-editor > *:first-child {
  margin-top: 0;
}

.elementor-page.page .site-content > .container {
  padding-left: 0;
  padding-right: 0;
}

.elementor-add-section-area-button {
  min-width: auto;
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
div.elementor-widget-text-editor {
  font-family: var(--shopwell-font__main);
}

.elementor-icon-box-title {
  margin: 0;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 6px 12px;
}
.hero-price .hero-text {
  font-weight: 600;
  color: var(--shopwell-color__heading);
}
.hero-price .hero-amount {
  font-weight: 600;
  font-size: 30px;
  color: var(--shopwell-hot-label-bg);
}

.shopwell-sponsor--one .swiper-wrapper {
  --sponsor-slide-min-height: 175px;
  --sponsor-padding: 25px;
  --sponsor-border-color: rgba(185, 185, 185, 0.4);
  --sponsor-hover-bg: #fff;
  --sponsor-image-max-height: 60px;
  align-items: center;
  justify-content: center;
}
.shopwell-sponsor--one .swiper-wrapper .swiper-slide > * {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--sponsor-slide-min-height);
  text-align: center;
  padding: var(--sponsor-padding);
  border: 1px solid var(--sponsor-border-color);
  transition: all 0.2s ease-out;
}
.shopwell-sponsor--one .swiper-wrapper .swiper-slide > *:hover {
  background-color: var(--sponsor-hover-bg);
}
.shopwell-sponsor--one .swiper-wrapper .swiper-slide > *:focus-within {
  outline: 1px dotted;
  outline-offset: -5px;
}
.shopwell-sponsor--one .swiper-wrapper .swiper-slide figcaption > a {
  position: absolute;
  inset: 0;
}
.shopwell-sponsor--one .swiper-wrapper .swiper-slide img {
  max-height: var(--sponsor-image-max-height);
  object-fit: contain;
}

@media (min-width: 768px) {
  .elementor .elementor-element.elementor-position-left.elementor-position-top .elementor-widget-container .elementor-image-box-img {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .shopwell-sponsor--one .swiper-wrapper {
    --sponsor-slide-min-height: 125px;
    --sponsor-padding: 15px;
  }
}
/* Navigation Bar
--------------------------------------------- */
.shopwell-mobile-navigation-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-radius: 2px;
  --shopwell-color__navigation-bar--box-shadow: rgba(0, 0, 0, .16);
  box-shadow: 0px 0px 16px 0px var(--shopwell-color__navigation-bar--box-shadow);
}

.shopwell-mobile-navigation-bar__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.shopwell-mobile-navigation-bar__icon .shopwell-svg-icon {
  font-size: 20px;
  font-size: 1.25rem;
}
.shopwell-mobile-navigation-bar__icon .shopwell-svg-icon + em {
  margin-top: 5px;
}
.shopwell-mobile-navigation-bar__icon em {
  font-style: normal;
}
.shopwell-mobile-navigation-bar__icon.cart-icon span, .shopwell-mobile-navigation-bar__icon.wishlist-icon span, .shopwell-mobile-navigation-bar__icon.compare-icon span {
  position: relative;
  line-height: 1;
}
.shopwell-mobile-navigation-bar__icon.cart-icon .counter, .shopwell-mobile-navigation-bar__icon.wishlist-icon .counter, .shopwell-mobile-navigation-bar__icon.compare-icon .counter {
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 11px;
  min-width: 20px;
  height: 20px;
  border-radius: 30px;
  padding: 6px;
  background-color: #1d2128;
  display: inline-block;
}

.catalog-toolbar-sticky .shopwell-mobile-navigation-bar.standard_adaptive {
  display: none;
}

@media (min-width: 768px) {
  .shopwell-mobile-navigation-bar {
    display: none;
  }
}
/* Responsive
--------------------------------------------- */
@media (min-width: 1620px) {
  .shopwell-container {
    width: 1616px;
  }
}
@media (max-width: 1300px) {
  .header-search__field--trending-inside {
    min-width: auto;
  }
}
@media (max-width: 1199px) {
  .topbar .topbar-navigation ul {
    flex-wrap: nowrap;
  }
  .topbar .topbar-navigation .nav-menu > li > a {
    white-space: nowrap;
  }
  .topbar .topbar-container {
    overflow-x: auto;
  }
  .no-sidebar.single-post .entry-thumbnail,
  .content-sidebar.single-post .entry-thumbnail,
  .sidebar-content.single-post .entry-thumbnail {
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .no-sidebar.single-post .entry-thumbnail {
    margin-bottom: 27px;
  }
  .single-post .entry-title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3333333333;
    margin-bottom: 12px;
  }
  .single-post .wp-block-quote {
    padding-left: 0;
  }
  .single-post .wp-block-quote p {
    padding-top: 34px;
  }
  .single-post .wp-block-quote::after {
    top: 0;
  }
  .shopwell-posts-group__items {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-posts-group__items::-webkit-scrollbar {
    display: none;
  }
  .shopwell-posts-group__items {
    white-space: nowrap;
  }
  .shopwell-posts-group__items:last-child {
    padding-right: 15px;
  }
  .shopwell-posts-group--menu {
    justify-content: flex-start;
  }
  .blog--grid .site-main {
    margin-left: -15px;
    margin-right: -15px;
  }
  .blog--grid .site-main .hentry {
    width: 50%;
    padding: 0 15px;
  }
  .blog--classic .site-main .post-large {
    padding-bottom: 0;
  }
  .blog--classic .site-main .post-large::before {
    display: none;
  }
  .blog--classic .site-main .post-large .entry-excerpt,
  .blog--classic .site-main .post-large .entry-read-more {
    display: none;
  }
  .featured-posts--columns-3 .swiper-button {
    top: 84px;
  }
  .featured-posts--columns-4 .swiper-button {
    top: 61px;
  }
  .single-post .entry-meta__share .post__socials-share, .single-post .entry-meta__share.active .post__socials-share {
    top: 25px;
    right: 0;
    left: auto;
  }
  .header-v5 .site-header::after {
    display: none;
  }
  .header-v10 .main-navigation .nav-menu > li {
    padding: 0 7px;
  }
  .header-v10 .main-navigation .nav-menu > li:first-child {
    padding-left: 0;
  }
  .header-v10 .secondary-navigation .nav-menu li {
    padding: 0 7px;
  }
  .header-v10 .hamburger-panel .main-navigation {
    padding: 0 32px;
  }
  .campaign-bar__container {
    justify-content: flex-start;
  }
  .campaign-bar__item {
    width: 50%;
    flex: 1 0 50%;
  }
}
@media (max-width: 1024px) {
  .site-header:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .trending-posts--layout-2 .entry-summary {
    padding: 0 20px 0 25px;
  }
  .trending-posts--layout-2 .entry-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .trending-posts--layout-2 .entry-meta__author {
    margin-bottom: 5px;
  }
  .trending-posts--layout-3 .trending-posts__thumbnail {
    width: 55%;
  }
  .trending-posts--layout-3 .entry-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .hfeed .hentry + .shopwell-posts-found {
    margin-top: 0;
    position: relative;
    top: -2px;
  }
  .hfeed .blog-sidebar {
    padding-top: 28px;
    margin-top: 32px;
  }
  .featured-posts__content .swiper-button {
    top: 63px;
  }
  .blog-sidebar,
  .single-sidebar {
    margin-top: 34px;
    padding-top: 30px;
    position: relative;
  }
  .blog-sidebar::before,
  .single-sidebar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: rgba(185, 185, 185, 0.4);
  }
  .blog-sidebar .widget:last-child,
  .single-sidebar .widget:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media (max-width: 782px) {
  .shopwell-header-sticky.admin-bar .site-header.minimized {
    top: 46px;
  }
}
@media (max-width: 767px) {
  body {
    --shopwell-input__font-size: 16px;
  }
  .topbar:not(.topbar-mobile) {
    display: none;
  }
  .topbar-mobile--keep-left .topbar-center-items,
  .topbar-mobile--keep-left .topbar-right-items {
    display: none;
  }
  .topbar-mobile--keep-left .topbar-container {
    justify-content: center;
  }
  .topbar-mobile--keep-right .topbar-center-items,
  .topbar-mobile--keep-right .topbar-left-items {
    display: none;
  }
  .topbar-mobile--keep-right .topbar-container {
    justify-content: center;
  }
  .topbar-mobile--keep-center .topbar-right-items,
  .topbar-mobile--keep-center .topbar-left-items {
    display: none;
  }
  .topbar-mobile--keep-center .topbar-container {
    justify-content: center;
  }
  .topbar-mobile--keep-center .topbar-center-items > * {
    margin: 0;
  }
  .topbar-mobile--keep-both .topbar-center-items {
    display: none;
  }
  .header-v1 .site-header::after {
    display: none;
  }
  .header-v5 .site-header::after {
    display: none;
  }
  .panel__container {
    width: 320px;
  }
  .single-post .entry-thumbnail.entry-video > * {
    height: 367px;
  }
  .single-post .entry-meta__share {
    display: none;
  }
  .single-post .entry-footer .social-share-link {
    padding: 13.5px;
  }
  .single-post .entry-footer .social-share-link .shopwell-svg-icon {
    margin-right: 0;
  }
  .single-post .entry-footer .social-share-link .social-share__label {
    display: none;
  }
  .single-post .comments-area {
    margin-top: 9px;
    padding-top: 2px;
    border-top: none;
    position: relative;
  }
  .single-post .comments-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: rgba(185, 185, 185, 0.4);
  }
  .single-post .comments-area::before {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 4px;
  }
  .single-post .comment-list .comment-meta ~ .comment-content {
    margin-left: 0;
  }
  .single-post .comment-list .comment-metadata {
    margin-left: 52px;
    margin-bottom: 10px;
  }
  .single-post .comment-list .reply {
    padding-top: 11px;
  }
  .single-post .comment-respond .comment-form-author,
  .single-post .comment-respond .comment-form-email {
    width: 100%;
    float: none;
  }
  .single-post .comment-respond .comment-form .comment-form-email {
    margin-bottom: 32px;
  }
  .author-info__description {
    padding-right: 0;
  }
  .shopwell-posts-related::before {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 4px;
  }
  .archive .blog-header__content,
  .search-results .blog-header__content {
    padding-bottom: 27px;
    margin-bottom: 32px;
  }
  .archive .blog-header__content::before,
  .search-results .blog-header__content::before {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 4px;
  }
  .archive.category .blog-header__content {
    padding-bottom: 30px;
    margin-bottom: 27px;
  }
  .search-results .blog-header__content {
    padding-bottom: 15px;
    margin-bottom: 28px;
  }
  .shopwell-trending-posts {
    margin-left: -16px;
    margin-right: -16px;
    width: 100vw;
  }
  .trending-posts__thumbnail {
    height: 240px;
  }
  .trending-posts__items .hentry .entry-category {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .trending-posts__items .hentry .entry-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .trending-posts__items .hentry .entry-meta {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .hfeed .trending-posts__items .hentry {
    margin-bottom: 0;
  }
  .trending-posts--small {
    display: flex;
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 0 0 15px;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .trending-posts--small::-webkit-scrollbar {
    display: none;
  }
  .trending-posts--small .hentry {
    padding: 12px 6px 0;
    flex: 1 0 66%;
    max-width: 66%;
  }
  .trending-posts--small .hentry:first-child {
    padding-left: 0;
  }
  .trending-posts--small .hentry:last-child {
    padding-right: 12px;
  }
  .trending-posts--small .hentry:last-child .entry-summary {
    left: 6px;
  }
  .trending-posts--small .hentry .post-format-icon {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  .trending-posts--small .hentry .post-format-icon.icon-gallery {
    font-size: 16px;
    font-size: 1rem;
  }
  .trending-posts--small .hentry .entry-summary {
    width: calc(100% - 12px);
    padding: 12px 12px 12px;
  }
  .trending-posts--small .hentry .entry-summary .entry-category {
    font-size: 9px;
    font-size: 0.5625rem;
  }
  .trending-posts--small .hentry .entry-summary .entry-category a {
    padding: 4px 7px;
  }
  .trending-posts--small .hentry .entry-title a {
    display: block;
  }
  .trending-posts--small .trending-posts__thumbnail {
    height: 148px;
  }
  .hfeed .trending-posts--small .hentry .entry-title,
  .trending-posts--small .hentry .entry-title {
    margin-bottom: 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.125;
  }
  .trending-posts--layout-1 .trending-posts__items {
    flex-direction: column;
    margin: 0;
  }
  .trending-posts--layout-1 .trending-posts__items > .hentry .post-format-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .trending-posts--layout-1 .trending-posts__items > .hentry:nth-child(1) {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .trending-posts--layout-1 .trending-posts__items > .hentry:nth-child(1) .post-format-icon {
    top: 40px;
    right: 0;
    left: unset;
  }
  .trending-posts--layout-1 .trending-posts__items > .hentry:nth-child(1) .entry-summary {
    padding: 15px 50px 16px 15px;
  }
  .trending-posts--layout-1 .trending-posts__items > .hentry:nth-child(1) .entry-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  .trending-posts--layout-1 article.hentry {
    margin-bottom: 0;
  }
  .trending-posts--layout-1 .trending-posts__button {
    display: none;
  }
  .trending-posts--layout-1 .entry-summary {
    padding: 15px 40px 10px 15px;
  }
  .trending-posts--layout-2 {
    margin-left: 0;
    margin-right: 0;
  }
  .trending-posts--layout-2 .hentry {
    flex-direction: inherit;
    height: auto;
  }
  .trending-posts--layout-2 .entry-summary {
    height: auto;
    padding: 13px 24px 15px;
  }
  .trending-posts--layout-2 .entry-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .trending-posts--layout-2 .trending-posts__thumbnail {
    order: 1;
    width: 100%;
  }
  .trending-posts--layout-2 .trending-posts__button,
  .trending-posts--layout-2 .entry-excerpt,
  .trending-posts--layout-2 .swiper-button {
    display: none;
  }
  .hfeed .trending-posts--layout-2 .entry-summary {
    width: calc(100% - 48px);
  }
  .trending-posts--layout-3 {
    padding-bottom: 30px;
  }
  .trending-posts--layout-3::before {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 4px;
  }
  .trending-posts--layout-3 .trending-posts__items {
    padding-left: 15px;
    padding-right: 15px;
  }
  .trending-posts--layout-3 .trending-posts__thumbnail {
    width: 100%;
    margin-bottom: 13px;
  }
  .trending-posts--layout-3 article.hentry {
    margin-bottom: 0;
  }
  .trending-posts--layout-3 .hentry .entry-summary {
    padding-bottom: 0;
  }
  .trending-posts--layout-3 .hentry .entry-category {
    margin-bottom: 8px;
  }
  .trending-posts--layout-3 .hentry .entry-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .trending-posts--layout-3 .trending-posts__button {
    display: none;
  }
  .shopwell-posts-group__items {
    margin-right: -15px;
  }
  .shopwell-posts-group--menu {
    justify-content: flex-start;
  }
  .shopwell-posts-group--menu li {
    padding: 0 15px;
  }
  .shopwell-posts-group--menu li:first-child {
    padding-left: 0;
  }
  .shopwell-posts-group--menu li:last-child {
    padding-right: 0;
  }
  .featured-posts--position-under {
    padding-top: 35px;
  }
  .featured-posts--position-under::before {
    height: 4px;
    left: -15px;
    right: -15px;
    width: calc(100% + 30px);
  }
  .featured-posts--position-above::before {
    height: 4px;
    left: -15px;
    right: -15px;
    width: calc(100% + 30px);
  }
  .featured-posts__content .hentry .entry-title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .featured-posts__container {
    overflow: inherit;
  }
  .featured-posts__wrapper {
    display: flex;
    width: auto;
    margin-right: -15px;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .featured-posts__wrapper::-webkit-scrollbar {
    display: none;
  }
  .hfeed .featured-posts__wrapper .hentry {
    flex: 1 0 67%;
    max-width: 67%;
    padding: 0 8px;
    margin-bottom: 0;
  }
  .hfeed .featured-posts__wrapper .hentry:first-child {
    padding-left: 0;
  }
  .hfeed .featured-posts__wrapper .hentry:last-child {
    padding-right: 15px;
  }
  .featured-posts__link {
    display: none;
  }
  .hfeed .featured-posts--position-above .featured-posts__content .hentry {
    margin-bottom: 0;
  }
  .shopwell-blog-page .page-header__title {
    font-size: 54px;
    font-size: 3.375rem;
  }
  .shopwell-blog-page .page-header__description {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6666666667;
  }
  .hfeed .hentry {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .hfeed .hentry .entry-summary {
    margin-bottom: 0;
  }
  .hfeed .hentry .post-thumbnail {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-bottom: 6px;
  }
  .hfeed .hentry .post-thumbnail img {
    width: 100%;
    display: block;
  }
  .search-results .content-area article {
    margin-bottom: 18px;
  }
  .blog--classic .site-main .hentry + .pagination {
    margin: 5px 0 2px 0;
  }
  .single-sidebar::before,
  .blog-sidebar::before {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 4px;
  }
  .blog-sidebar .widget:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
  }
  .campaign-bar__item {
    --shopwell-campaign-bar-mobile-size: 14px;
    font-size: var(--shopwell-campaign-bar-mobile-size);
    width: auto;
    flex: 1;
    position: relative;
  }
  .error-404__v1 {
    margin-bottom: 25px;
    margin-top: 35px;
  }
  .error-404__v1 .error-404__title {
    font-size: 36px;
    font-size: 2.25rem;
    margin: 23px 0 20px;
  }
  .error-404__v1 .error-404__button {
    margin-top: 28px;
  }
  .error-404__v2 {
    display: block;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .error-404__v2 .error-404__title {
    font-size: 72px;
    font-size: 4.5rem;
  }
  .error-404__v2 .error-404__content {
    margin-top: 3px;
    font-size: 16px;
    font-size: 1rem;
  }
  .error-404__v2 .error-404__content h3 {
    font-size: 28px;
    font-size: 1.75rem;
    margin: 0 0 23px;
  }
  .error-404__v2 .error-404__button {
    margin-top: 20px;
  }
  .error-404__v2 .error-404__image {
    max-width: 185px;
    margin: auto;
  }
  .error-404__v2 .error-404__wrapper {
    text-align: center;
    margin-top: 36px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0px;
  }
  .shopwell-col2 {
    display: block;
  }
  .shopwell-navigation-bar-show .site {
    padding-bottom: 65px;
  }
  .page-header-hc .page-header__title {
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  .page-header-hc .page-header__title .shopwell-svg-icon {
    font-size: 30px;
  }
  .page-header-hc .page-header__content {
    padding-bottom: 24px;
  }
  .shopwell-help-archive .page-header + .site-content {
    padding-top: 0;
  }
  .shopwell-help-archive .hentry .help-short-description {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .single-sw_help_article .site-content {
    padding-top: 24px;
  }
  .single-sw_help_article .site-content .content-area {
    flex-direction: column;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar {
    flex: 100% 0 0;
    padding: 0;
    position: relative;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar .shopwell-help-sidebar__current {
    border: 2px solid #ebeff3;
    position: relative;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar .shopwell-help-sidebar__current:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAAxrNxjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjM3QjIwQkNDMjVBRDExRUM5QkFEQjNEQ0I3NjBBM0UwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjM3QjIwQkNEMjVBRDExRUM5QkFEQjNEQ0I3NjBBM0UwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MzdCMjBCQ0EyNUFEMTFFQzlCQURCM0RDQjc2MEEzRTAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MzdCMjBCQ0IyNUFEMTFFQzlCQURCM0RDQjc2MEEzRTAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6sw4h6AAAAb0lEQVR42mKsaexmZGBgqAPiuUD8hAEVyABxBBD3sACJEiBuAOJYIHZAUgxSdACIlYGYiwlILAfiu1CBA1AFyIpAcvNYoCY4IEkcgJoIUwS2hQUqiK6YAVkRiMOC5HBkxQxo7kVRiKyYAT0EAAIMALwKGx4801sSAAAAAElFTkSuQmCC");
    background-repeat: no-repeat;
    width: 10px;
    height: 7px;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar .shopwell-help-sidebar__current:hover + .shopwell-help-sidebar__list {
    opacity: 1;
    visibility: visible;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar .shopwell-help-sidebar__current li {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1d2128;
    padding: 21px;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar .shopwell-help-sidebar__list {
    border: 2px solid #ebeff3;
    border-top: none;
    padding: 10px 0;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar .shopwell-help-sidebar__list .current-post {
    display: none;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar .shopwell-help-sidebar__list li {
    padding: 0;
  }
  .single-sw_help_article .site-content .content-area .shopwell-help-sidebar .shopwell-help-sidebar__list li a {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 7px 21px;
  }
  .single-sw_help_article .entry-title {
    font-size: 32px;
    font-size: 2rem;
    padding-top: 30px;
    padding-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .shopwell-posts-related__content {
    display: flex;
    flex: 1 1 100%;
    max-width: auto;
    margin-left: 0;
    margin-right: -15px;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .shopwell-posts-related__content::-webkit-scrollbar {
    display: none;
  }
  .shopwell-posts-related__content .hentry {
    flex: 1 0 66%;
    max-width: 66%;
    padding-right: 15px;
    padding-left: 0;
  }
  .shopwell-posts-related__content .hentry .post-thumbnail {
    width: 100%;
    max-width: none;
  }
  .shopwell-posts-related__content .hentry .post-thumbnail img {
    width: 100%;
    display: block;
  }
  .shopwell-posts-related__content .hentry .entry-title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .post-navigation {
    position: relative;
    padding-top: 34px;
    position: relative;
  }
  .post-navigation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: rgba(185, 185, 185, 0.4);
  }
  .post-navigation::before {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 4px;
  }
  .post-navigation a {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-navigation .nav-links .nav-previous,
  .post-navigation .nav-links .nav-next {
    padding: 14px 15px 9px;
  }
  .post-navigation .nav-links .nav-previous img,
  .post-navigation .nav-links .nav-next img {
    width: 100%;
    display: block;
  }
  .post-navigation .nav-links .meta-date {
    padding-top: 5px;
  }
  .post-navigation .nav-previous {
    margin-right: 11.5px;
  }
  .post-navigation .nav-previous img {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .post-navigation .nav-next {
    margin-left: 11.5px;
  }
  .post-navigation .nav-next a {
    align-items: flex-start;
    text-align: left;
  }
  .post-navigation .nav-next img {
    margin-left: 0;
    margin-bottom: 8px;
    order: 1;
  }
  .post-navigation .nav-next .nav-title {
    order: 2;
  }
  .shopwell-header-sticky.admin-bar .site-header.minimized {
    top: 0;
  }
  .shopwell-return-button--base a {
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .single-post.content-sidebar .content-area .entry-meta, .single-post.sidebar-content .content-area .entry-meta, .single-post.no-sidebar .content-area .entry-meta {
    margin-bottom: 17px;
  }
  .single-post .entry-thumbnail.entry-video > * {
    height: 259px;
  }
  .no-sidebar.single-post .entry-thumbnail.entry-video > * {
    height: 254px;
  }
  .entry-footer .post__socials-share {
    padding-top: 36px;
  }
  .entry-footer .post__socials-share::before {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 4px;
  }
  .author-info {
    padding: 24px 24px 17px 23px;
  }
  .author-info .avatar {
    position: static;
  }
  .author-info__name {
    padding-bottom: 9px;
  }
  .author-info__vcard,
  .author-info__description,
  .author-info__socials {
    padding-left: 0;
    padding-right: 0;
  }
  .author-info__description {
    line-height: 22px;
  }
  .author-info__socials {
    margin-top: 14px;
  }
  .trending-posts--layout-3 .trending-posts__thumbnail {
    height: 190px;
  }
  .blog--classic .site-main,
  .blog--grid .site-main {
    margin-left: 0;
    margin-right: 0;
  }
  .blog--classic .site-main .hentry,
  .blog--grid .site-main .hentry {
    width: 100%;
    padding: 0;
  }
  .blog--classic .site-main .post-thumbnail,
  .blog--grid .site-main .post-thumbnail {
    width: 100%;
  }
  .blog--classic .site-main .post-large .entry-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .blog--classic .shopwell-posts-group,
  .blog--classic .shopwell-recent-post__heading,
  .blog--grid .shopwell-posts-group,
  .blog--grid .shopwell-recent-post__heading {
    padding-left: 0;
    padding-right: 0;
  }
  .shopwell-posts-found .shopwell-posts-found__inner {
    padding: 0;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text, .header-logo:not(.no-logo) .site-title,
.header-logo .site-description:not(.show-tagline) {
  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, .header-logo:not(.no-logo) .site-title:focus,
.header-logo .site-description:focus:not(.show-tagline) {
  background-color: #f1f1f1;
  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: 14px;
  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;
}

/* Columns
--------------------------------------------- */
.col-flex-xs-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-flex-xs-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-flex-xs-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-flex-xs-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-flex-xs-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-flex-xs-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-flex-xs-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-flex-xs-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-flex-xs-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-flex-xs-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-flex-xs-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-flex-xs-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

@media (min-width: 768px) {
  .col-flex-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-flex-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-flex-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-flex-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-flex-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-flex-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-flex-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-flex-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-flex-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-flex-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-flex-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-flex-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (min-width: 992px) {
  .col-flex-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-flex-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-flex-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-flex-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-flex-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-flex-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-flex-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-flex-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-flex-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-flex-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-flex-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-flex-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
