/* ==========================================================================
   Include variables and mixins
   ========================================================================== */
/* ==========================================================================
   Global CSS variables
   ========================================================================== */
:root {
  --qode-main-color: #0B0449;
  --qode-header-light-color: #fff;
  --qode-header-light-hover-color: #fff;
  --qode-header-dark-color: #000;
  --qode-header-dark-hover-color: #000;
}

/* ==========================================================================
   Typography variables
   ========================================================================== */
/* ==========================================================================
   Box variables
   ========================================================================== */
/* ==========================================================================
   Devices screen size variables
   ========================================================================== */
/* ==========================================================================
   Grid size and responsive grid size variables
   ========================================================================== */
/* ==========================================================================
   Typography mixins
   ========================================================================== */
/* ==========================================================================
   Typography mixins - end
   ========================================================================== */
/* ==========================================================================
   Menu mixins - begin
   ========================================================================== */
/* ==========================================================================
   Menu mixins - end
   ========================================================================== */
/* ==========================================================================
   Layout mixins - begin
   ========================================================================== */
/* ==========================================================================
   Layout mixins - end
   ========================================================================== */
/* ==========================================================================
   Input fields mixins - begin
   ========================================================================== */
/* ==========================================================================
   Input fields mixins - end
   ========================================================================== */
/* ==========================================================================
   Pagination mixins - begin
   ========================================================================== */
/* ==========================================================================
   Pagination mixins - end
   ========================================================================== */
/* ==========================================================================
   Grid size mixins - begin
   ========================================================================== */
/* ==========================================================================
   Grid size mixins - end
   ========================================================================== */
/* ==========================================================================
   Helper mixins - begin
   ========================================================================== */
/* ==========================================================================
   Helper mixins - end
   ========================================================================== */
/* ==========================================================================
   Common mixins - begin
   ========================================================================== */
/* ==========================================================================
   Common mixins - end
   ========================================================================== */
/* ==========================================================================
   Button mixins - start
   ========================================================================== */
/* ==========================================================================
   Button mixins - end
   ========================================================================== */
/* ==========================================================================
   Tabs mixins - start
   ========================================================================== */
/* ==========================================================================
   Tabs mixins - end
   ========================================================================== */
/* ==========================================================================
   Animation mixins - start
   ========================================================================== */
/* ==========================================================================
   Animation mixins - end
   ========================================================================== */
/* ==========================================================================
   Keyframes settings
   ========================================================================== */

@keyframes qode-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes qode-fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes qode-fade-in-from-bottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes qode-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes qode-ball-fall {
  0% {
    opacity: 0;
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    transform: translateY(145%);
  }
}

@keyframes qode-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes qode-double-pulse {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

@keyframes qode-cube {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

@keyframes qode-rotating-cubes {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes qode-stretch-delay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

@keyframes qode-bounce-delay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

@keyframes qode-rotate-circles {
  to {
    transform: rotate(360deg);
  }
}

@keyframes qode-atom-position {
  50% {
    top: 80px;
    left: 80px;
  }
}

@keyframes qode-atom-size {
  50% {
    transform: scale(0.5);
  }
}

@keyframes qode-atom-zindex {
  100% {
    z-index: 10;
  }
}

@keyframes qode-atom-shrink {
  50% {
    transform: scale(0.8);
  }
}

@keyframes qode-clock {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes qode-clock-1 {
  0% {
    transform: rotate(-135deg);
  }
  30% {
    transform: rotate(-450deg);
  }
  100% {
    transform: rotate(-450deg);
  }
}

@keyframes qode-clock-2 {
  5% {
    transform: rotate(-90deg);
  }
  35% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}

@keyframes qode-clock-3 {
  10% {
    transform: rotate(-45deg);
  }
  40% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes qode-clock-4 {
  15% {
    transform: rotate(0deg);
  }
  45% {
    transform: rotate(-315deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}

@keyframes qode-mitosis-invert {
  100% {
    transform: rotate(180deg);
  }
}

@keyframes qode-mitosis-ball-1 {
  12% {
    transform: none;
  }
  26% {
    transform: translateX(25%) scale(1, 0.8);
  }
  40% {
    transform: translateX(50%) scale(0.8, 0.8);
  }
  60% {
    transform: translateX(50%) scale(0.8, 0.8);
  }
  74% {
    transform: translate(50%, 25%) scale(0.6, 0.8);
  }
  88% {
    transform: translate(50%, 50%) scale(0.6, 0.6);
  }
  100% {
    transform: translate(50%, 50%) scale(0.6, 0.6);
  }
}

@keyframes qode-mitosis-ball-2 {
  12% {
    transform: none;
  }
  26% {
    transform: translateX(25%) scale(1, 0.8);
  }
  40% {
    transform: translateX(50%) scale(0.8, 0.8);
  }
  60% {
    transform: translateX(50%) scale(0.8, 0.8);
  }
  74% {
    transform: translate(50%, -25%) scale(0.6, 0.8);
  }
  88% {
    transform: translate(50%, -50%) scale(0.6, 0.6);
  }
  100% {
    transform: translate(50%, -50%) scale(0.6, 0.6);
  }
}

@keyframes qode-mitosis-ball-3 {
  12% {
    transform: none;
  }
  26% {
    transform: translateX(-25%) scale(1, 0.8);
  }
  40% {
    transform: translateX(-50%) scale(0.8, 0.8);
  }
  60% {
    transform: translateX(-50%) scale(0.8, 0.8);
  }
  74% {
    transform: translate(-50%, 25%) scale(0.6, 0.8);
  }
  88% {
    transform: translate(-50%, 50%) scale(0.6, 0.6);
  }
  100% {
    transform: translate(-50%, 50%) scale(0.6, 0.6);
  }
}

@keyframes qode-mitosis-ball-4 {
  12% {
    transform: none;
  }
  26% {
    transform: translateX(-25%) scale(1, 0.8);
  }
  40% {
    transform: translateX(-50%) scale(0.8, 0.8);
  }
  60% {
    transform: translateX(-50%) scale(0.8, 0.8);
  }
  74% {
    transform: translate(-50%, -25%) scale(0.6, 0.8);
  }
  88% {
    transform: translate(-50%, -50%) scale(0.6, 0.6);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.6, 0.6);
  }
}

@keyframes qode-lines-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes qode-fussion-ball-1 {
  50% {
    top: -100%;
    left: 200%;
  }
  100% {
    top: 50%;
    left: 100%;
    z-index: 2;
  }
}

@keyframes qode-fussion-ball-2 {
  50% {
    top: 200%;
    left: 200%;
  }
  100% {
    top: 100%;
    left: 50%;
    z-index: 1;
  }
}

@keyframes qode-fussion-ball-3 {
  50% {
    top: 200%;
    left: -100%;
  }
  100% {
    top: 50%;
    left: 0;
    z-index: 2;
  }
}

@keyframes qode-fussion-ball-4 {
  50% {
    top: -100%;
    left: -100%;
  }
  100% {
    top: 0;
    left: 50%;
    z-index: 1;
  }
}

@keyframes qode-wave-jump-1 {
  12% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in;
  }
  24%, 100% {
    transform: translate(40px, 0);
  }
}

@keyframes qode-wave-jump-2 {
  12% {
    transform: translate(0, 0);
  }
  24% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in;
  }
  36%, 100% {
    transform: translate(40px, 0);
  }
}

@keyframes qode-wave-jump-3 {
  24% {
    transform: translate(0, 0);
  }
  36% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in;
  }
  48%, 100% {
    transform: translate(40px, 0);
  }
}

@keyframes qode-wave-wipe {
  48%, 100% {
    transform: translateX(-120px);
  }
}

@keyframes qode-pulse-circles-pulse {
  0% {
    transform: scale(0.1);
    opacity: 1;
    border-width: 50px;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
    border-width: 0;
  }
}

@keyframes qode-bounce {
  from,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes qode-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* ==========================================================================
   Theme - Table of contents

 * 1.0 Reset styles
 * 2.0 Accessibility styles
 * 3.0 Alignments styles
 * 4.0 Clearings styles
 * 5.0 Typography styles
 * 6.0 Input Fields styles
 * 7.0 Content styles
 * 8.0 Plugins styles
 * 9.0 Modules styles (Header, Footer, Title etc.)
 * 10.0 Responsive styles
   ========================================================================== */
/* ==========================================================================
   1.0 Reset default styles
   ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: none;
}

* {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, nav, section, main {
  display: block;
}

del {
  text-decoration: line-through;
}

pre {
  max-width: 100%;
  margin: 15px 0;
  padding: 15px;
  background-color: #fafafa;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: monospace;
  font-size: 1em;
  color: #8C8BA4;
}

code {
  background-color: #fafafa;
  padding: 0;
  font-family: monospace, monospace;
  font-size: 1em;
  color: #8C8BA4;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  width: 100%;
  vertical-align: middle;
  border: medium none;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

table tr {
  border: 1px solid #C5C5C5;
}

table th {
  padding: 5px 7px;
  text-align: left;
  border-right: 1px solid #C5C5C5;
}

table td {
  padding: 5px 10px;
  text-align: left;
  border: 0;
  border-right: 1px solid #C5C5C5;
}

table td br {
  display: none;
}

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

hr:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

body:not([class*="wellmont-core"]) hr {
  clear: both;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5em;
  padding: 0;
}

ul.wp-block, ol.wp-block {
  margin-bottom: 1.5em;
}

ul:not(.wp-block), ol:not(.wp-block) {
  margin: 0 0 1.5em;
}

li > ul:not(.wp-block),
li > ol:not(.wp-block) {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

a img {
  border: none;
}

img, .wp-caption {
  height: auto;
  max-width: 100%;
}

img {
  vertical-align: middle;
  border-style: none;
}

figure {
  margin: 0;
}

embed,
iframe,
object {
  display: block;
  max-width: 100%;
}

video {
  display: block;
}

embed,
object {
  height: auto;
}

label {
  display: block;
  margin-bottom: 0.5em;
}

fieldset {
  margin-bottom: 1em;
  padding: 0.35em 0.75em 0.625em;
}

input[type='submit'] {
  -webkit-appearance: none;
}

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

b,
strong {
  font-weight: bolder;
}

kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  background-color: #fafafa;
}

small {
  font-size: 80%;
}

progress {
  vertical-align: baseline;
}

summary {
  display: list-item;
}

template {
  display: none;
}

figcaption,
.wp-caption,
.gallery-caption {
  display: block;
  max-width: 100%;
  font-size: 13px !important;
  line-height: 1em !important;
  color: #8C8BA4;
  text-align: center;
  opacity: 1;
  margin: .5em auto 1em;
}

figcaption a,
.wp-caption a,
.gallery-caption a {
  color: inherit;
}

.wp-caption .wp-caption-text {
  opacity: 1;
}

blockquote.instagram-media,
iframe.instagram-media {
  margin: auto !important;
}

.sticky,
.bypostauthor {
  opacity: 1;
}

::selection {
  color: #fff;
  background: var(--qode-main-color);
}

::-moz-selection {
  color: #fff;
  background: var(--qode-main-color);
}

/* ==========================================================================
   2.0 Accessibility styles
   ========================================================================== */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  line-height: 1;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  overflow: hidden;
}

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

#qodef-page-content[tabindex="-1"]:focus {
  outline: 0;
}

/* ==========================================================================
   3.0 Alignments styles
   ========================================================================== */
.alignleft {
  float: left;
  text-align: left;
  margin: .5em 1em .5em 0 !important;
  clear: left;
}

.aligncenter {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  text-align: right;
  margin: .5em 0 .5em 1em !important;
  clear: right;
}

.qodef-content-alignment-left {
  text-align: left;
}

.qodef-content-alignment-center {
  text-align: center;
}

.qodef-content-alignment-right {
  text-align: right;
}

/* ==========================================================================
   4.0 Clearings styles
   ========================================================================== */
.clear:before, .clear:after,
.comment-content:before,
.comment-content:after,
.nav-links:before,
.nav-links:after,
.pagination:before,
.pagination:after,
.comment-author:before,
.comment-author:after,
.widget-area:before,
.widget-area:after,
.widget:before,
.widget:after,
.comment-meta:before,
.comment-meta:after {
  content: '';
  display: table;
  table-layout: fixed;
}

.clear:after,
.comment-content:after,
.nav-links:after,
.pagination:after,
.comment-author:after,
.widget-area:after,
.widget:after,
.comment-meta:after {
  clear: both;
}

/* ==========================================================================
   5.0 Typography styles
   ========================================================================== */
body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
.qodef-h1 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 58px;
  line-height: 1.10345em;
  margin: 25px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h1 a,
.qodef-h1 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

h1 a:focus, h1 a:hover,
.qodef-h1 a:focus,
.qodef-h1 a:hover {
  color: var(--qode-main-color);
}

h2,
.qodef-h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 46px;
  line-height: 1.17391em;
  margin: 25px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h2 a,
.qodef-h2 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

h2 a:focus, h2 a:hover,
.qodef-h2 a:focus,
.qodef-h2 a:hover {
  color: var(--qode-main-color);
}

h3,
.qodef-h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 36px;
  line-height: 1.27778em;
  margin: 25px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h3 a,
.qodef-h3 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

h3 a:focus, h3 a:hover,
.qodef-h3 a:focus,
.qodef-h3 a:hover {
  color: var(--qode-main-color);
}

h4,
.qodef-h4 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 26px;
  line-height: 1.30769em;
  margin: 25px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h4 a,
.qodef-h4 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

h4 a:focus, h4 a:hover,
.qodef-h4 a:focus,
.qodef-h4 a:hover {
  color: var(--qode-main-color);
}

h5,
.qodef-h5 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
  margin: 25px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h5 a,
.qodef-h5 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

h5 a:focus, h5 a:hover,
.qodef-h5 a:focus,
.qodef-h5 a:hover {
  color: var(--qode-main-color);
}

h6,
.qodef-h6 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  margin: 25px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h6 a,
.qodef-h6 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

h6 a:focus, h6 a:hover,
.qodef-h6 a:focus,
.qodef-h6 a:hover {
  color: var(--qode-main-color);
}

a,
p a {
  color: #0B0449;
  text-decoration: none;
  transition: color 0.3s ease-out;
  cursor: pointer;
}

a:focus, a:hover,
p a:focus,
p a:hover {
  color: var(--qode-main-color);
}

p {
  margin: 10px 0;
}

p.has-large-font-size {
  font-size: 36px;
  line-height: 1.5625em;
}

p.has-large-font-size + p {
  line-height: 1.5625em;
}

p.has-background {
  padding: 20px 30px;
}

blockquote,
.wp-block-quote {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 400;
  color: #0B0449;
  font-size: 22px;
  position: relative;
  padding: 50px 9% 59px 137px;
  margin: 48px 0;
  border: none;
  background-color: #FCF9F5;
  quotes: none;
  z-index: 1;
}

@media only screen and (max-width: 680px) {
  blockquote,
  .wp-block-quote {
    padding: 60px 15px 60px 30px;
  }
}

blockquote.wp-block-quote.is-large, blockquote.wp-block-quote.is-style-large,
.wp-block-quote.wp-block-quote.is-large,
.wp-block-quote.wp-block-quote.is-style-large {
  margin: 0;
  padding: 48px 9% 52px 109px;
}

@media only screen and (max-width: 680px) {
  blockquote.wp-block-quote.is-large, blockquote.wp-block-quote.is-style-large,
  .wp-block-quote.wp-block-quote.is-large,
  .wp-block-quote.wp-block-quote.is-style-large {
    padding: 60px 15px 60px 30px;
  }
}

blockquote.wp-block-pullquote,
.wp-block-quote.wp-block-pullquote {
  padding: 25px !important;
  text-align: center;
}

blockquote.wp-block-pullquote p,
.wp-block-quote.wp-block-pullquote p {
  font-size: 28px !important;
  line-height: 1.6 !important;
}

blockquote.wp-block-pullquote.alignleft,
.wp-block-quote.wp-block-pullquote.alignleft {
  max-width: 420px;
}

blockquote.wp-block-pullquote.alignright,
.wp-block-quote.wp-block-pullquote.alignright {
  max-width: 420px;
}

blockquote.has-text-align-right:before,
.wp-block-quote.has-text-align-right:before {
  left: auto;
  right: 0;
}

blockquote:before,
.wp-block-quote:before {
  content: '';
  position: absolute;
  top: 59px;
  left: 83px;
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNC4xMjEiIGhlaWdodD0iMjAuODk4IiB2aWV3Qm94PSIwIDAgMjQuMTIxIDIwLjg5OCI+DQoJPHBhdGggZD0iTTEuNjg1LTY2LjZhNC4zMjQsNC4zMjQsMCwwLDEsMS4zOTItMy4yNzEsNC44MTMsNC44MTMsMCwwLDEsMy40NDItMS4zMTgsNC4zMTEsNC4zMTEsMCwwLDEsMy4zMiwxLjUxNCw1LjQsNS40LDAsMCwxLDEuMzY3LDMuNzYsMTAuMjY1LDEwLjI2NSwwLDAsMS0uNzgxLDMuNzExQTI2LjE0NiwyNi4xNDYsMCwwLDEsOC40LTU4LjE1NGE0NC41NCw0NC41NCwwLDAsMS0yLjgwOCw0LjA3N3EtMS41NjMsMi4wMjYtMy4xNzQsMy43ODRMMS4xLTUxLjQxNmEyOS42OTEsMjkuNjkxLDAsMCwwLDMuNjM4LTUuMTc2LDE0Ljk4OCwxNC45ODgsMCwwLDAsMS43ODItNS4yMjVBNS41MTMsNS41MTMsMCwwLDEsMy4xLTYzLjI1Nyw0LjMyMyw0LjMyMywwLDAsMSwxLjY4NS02Ni42Wm0tMTMuOTY1LDBhNC4zNjEsNC4zNjEsMCwwLDEsMS4zNjctMy4yNzFBNC43MjksNC43MjksMCwwLDEtNy41LTcxLjE5MWE0LjMxMSw0LjMxMSwwLDAsMSwzLjMyLDEuNTE0LDUuNCw1LjQsMCwwLDEsMS4zNjcsMy43NiwxMC4yNjUsMTAuMjY1LDAsMCwxLS43ODEsMy43MTEsMjYuMTQ2LDI2LjE0NiwwLDAsMS0yLjAyNiw0LjA1Myw0NC41MzksNDQuNTM5LDAsMCwxLTIuODA4LDQuMDc3cS0xLjU2MywyLjAyNi0zLjE3NCwzLjc4NGwtMS4zMTgtMS4xMjNhMzAuNzc5LDMwLjc3OSwwLDAsMCwzLjY2Mi01LjE3NkExMy45OTEsMTMuOTkxLDAsMCwwLTcuNS02MS44MTZhNS40Niw1LjQ2LDAsMCwxLTMuMzY5LTEuNDRBNC4zMjMsNC4zMjMsMCwwLDEtMTIuMjgtNjYuNloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyLjkxNSA3MS4xOTEpIiBmaWxsPSIjMGIwNDQ5Ii8+DQo8L3N2Zz4NCg==");
  background-repeat: no-repeat;
  width: 24px;
  height: 21px;
  z-index: -1;
}

@media only screen and (max-width: 680px) {
  blockquote:before,
  .wp-block-quote:before {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 10px;
  }
}

blockquote > *,
.wp-block-quote > * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  margin: 0;
}

blockquote p,
.wp-block-quote p {
  margin: 0 !important;
}

blockquote:after,
.wp-block-quote:after {
  content: '';
}

blockquote cite,
blockquote .wp-block-quote__citation,
blockquote .wp-block-pullquote__citation,
.wp-block-quote cite,
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote .wp-block-pullquote__citation {
  display: block;
  margin: 10px 0 0;
  font-style: normal;
  font-weight: 400 !important;
  text-align: inherit !important;
  text-transform: uppercase !important;
}

.qodef-e-info > * {
  display: inline-flex;
  vertical-align: initial;
  flex-wrap: wrap;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
}

.qodef-e-info > a:hover {
  color: var(--qode-main-color);
}

.qodef-info-separator-single {
  color: inherit;
}

.qodef-info-separator-single:after {
  content: ',';
  margin-right: 10px;
}

.qodef-info-separator-end {
  color: inherit;
}

.qodef-info-separator-end:after {
  content: '|';
  margin: 0 10px;
}

.qodef-info-separator-end:last-of-type {
  display: none;
}

/* ==========================================================================
   6.0 Input Fields styles
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="date"],
textarea,
select {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: 24px;
  margin: 0 0 10px;
  outline: 0;
  padding: 11px 21px;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
}

.qodef-contact-form-7 input[type="text"], .qodef-contact-form-7
input[type="email"], .qodef-contact-form-7
input[type="url"], .qodef-contact-form-7
input[type="password"], .qodef-contact-form-7
input[type="number"], .qodef-contact-form-7
input[type="tel"], .qodef-contact-form-7
input[type="search"], .qodef-contact-form-7
input[type="date"], .qodef-contact-form-7
textarea, .qodef-contact-form-7
select {
  margin: 0;
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="search"]::placeholder,
input[type="date"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: inherit;
  opacity: 1;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="date"],
textarea,
select {
  background-color: transparent;
  border-color: #C5C5C5;
  color: #8C8BA4;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  background-color: transparent;
  border-color: #C5C5C5;
  color: #0B0449;
}

#qodef-page-footer input[type="text"], #qodef-page-footer
input[type="email"], #qodef-page-footer
input[type="url"], #qodef-page-footer
input[type="password"], #qodef-page-footer
input[type="number"], #qodef-page-footer
input[type="tel"], #qodef-page-footer
input[type="search"], #qodef-page-footer
input[type="date"], #qodef-page-footer
textarea, #qodef-page-footer
select {
  background-color: transparent;
  border-color: #C5C5C5;
  color: #ffffff;
}

#qodef-page-footer input[type="text"]:focus, #qodef-page-footer
input[type="email"]:focus, #qodef-page-footer
input[type="url"]:focus, #qodef-page-footer
input[type="password"]:focus, #qodef-page-footer
input[type="number"]:focus, #qodef-page-footer
input[type="tel"]:focus, #qodef-page-footer
input[type="search"]:focus, #qodef-page-footer
input[type="date"]:focus, #qodef-page-footer
textarea:focus, #qodef-page-footer
select:focus {
  background-color: transparent;
  border-color: #C5C5C5;
  color: #cccccc;
}

.qodef-contact-form-7 .wpcf7-form-control-wrap {
  margin: 0 0 10px;
}

.qodef-contact-form-7 .qodef-grid-item .wpcf7-form-control-wrap {
  margin: 0;
}

.qodef-contact-form-7 label {
  margin: 0 0 10px;
}

.qodef-contact-form-7 label .wpcf7-form-control-wrap {
  margin: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MSIgaGVpZ2h0PSI2LjE1MSIgdmlld0JveD0iMCAwIDE0LjYxIDYuMTUxIj4NCiAgPHBhdGggZD0iTTI4NzAuMjQxLDE2MjIuNzA4bDUuMTI3LDcuMDc4LTUuMTI3LDYuOTQyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM3LjAyNSAtMjg2OS44MzYpIHJvdGF0ZSg5MCkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzhjOGJhNCIgc3Ryb2tlLXdpZHRoPSIxIi8+DQo8L3N2Zz4NCg==");
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  display: inline-block;
  height: auto;
  margin: 0;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

select:disabled {
  background-color: #fafafa;
  border-color: inherit;
  box-shadow: none;
  color: inherit;
  text-shadow: none;
}

select option {
  color: #8C8BA4;
}

select.qodef-arrow--light {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MSIgaGVpZ2h0PSI2LjE1MSIgdmlld0JveD0iMCAwIDE0LjYxIDYuMTUxIj4NCiAgPHBhdGggZD0iTTI4NzAuMjQxLDE2MjIuNzA4bDUuMTI3LDcuMDc4LTUuMTI3LDYuOTQyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM3LjAyNSAtMjg2OS44MzYpIHJvdGF0ZSg5MCkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIxIi8+DQo8L3N2Zz4NCg==");
}

.post-password-form input[type="password"] {
  margin-top: 0.5em;
}

@media only screen and (min-width: 769px) {
  .post-password-form input[type="password"] {
    display: block;
    max-width: 50%;
  }
}

input[type="submit"],
button[type="submit"],
.qodef-theme-button {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: auto;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: var(--qode-main-color);
  margin: 0;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  outline: none;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  padding: 15px 50px;
  color: var(--qode-main-color);
  background-color: #DFBEC3;
  border: 1px solid transparent;
  cursor: pointer;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.qodef-theme-button:hover {
  color: var(--qode-main-color);
  background-color: transparent;
  border-color: #DFBEC3;
}

button[type="submit"] span,
.qodef-theme-button span {
  display: block;
  line-height: inherit;
}

button[type="submit"] span:before,
.qodef-theme-button span:before {
  display: block;
  line-height: inherit;
}

/* ==========================================================================
   Select 2 Script styles (Version: 4.0.6 ) - begin
   ========================================================================== */
[class*="wellmont"] .select2-container--default {
  display: inline-block;
  margin: 0 0 10px;
  position: relative;
  vertical-align: middle;
  width: auto;
}

[class*="wellmont"] .select2-container--default .select2-selection--single {
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: auto;
  line-height: 24px;
  margin: 0;
  outline: none;
  padding: 11px 21px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

[class*="wellmont"] .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  display: block;
  line-height: inherit;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[class*="wellmont"] .select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: inherit;
  margin: 0;
  position: relative;
}

[class*="wellmont"] .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: inherit;
}

[class*="wellmont"] .select2-container--default .select2-selection--single .select2-selection__arrow {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 16px;
  height: 100%;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
}

[class*="wellmont"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

[class*="wellmont"] .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  content: '';
  background-image: url("../img/select2-arrow.svg");
  background-repeat: no-repeat;
  width: 14px;
  height: 6px;
  display: block;
  font-style: normal;
  line-height: inherit;
}

[class*="wellmont"] .select2-container--default .select2-selection--multiple {
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: auto;
  line-height: 24px;
  margin: 0;
  outline: none;
  padding: 11px 21px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

[class*="wellmont"] .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  color: inherit;
  display: block;
  line-height: inherit;
  list-style: none;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[class*="wellmont"] .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  margin: 0;
  padding: 0;
}

[class*="wellmont"] .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__placeholder {
  color: inherit;
  float: left;
  margin: 0;
}

[class*="wellmont"] .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: inherit;
  margin: 0;
  position: relative;
}

[class*="wellmont"] .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: default;
  float: left;
  margin: 0 10px 0 0;
  padding: 0;
}

[class*="wellmont"] .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove {
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-weight: inherit;
  margin: 0 10px 0 0;
  transition: opacity 0.3s ease-out;
}

[class*="wellmont"] .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove:hover {
  color: inherit;
  opacity: 0.8;
}

[class*="wellmont"] .select2-container--default .select2-search--inline {
  float: left;
}

[class*="wellmont"] .select2-container--default .select2-search--inline .select2-search__field {
  -webkit-appearance: none;
  border: none !important;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 !important;
  outline: none;
  padding: 0 !important;
  width: 100%;
}

[class*="wellmont"] .select2-container--default .select2-search--inline .select2-search__field:focus {
  border-color: #0B0449;
}

[class*="wellmont"] .select2-container--default .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

[class*="wellmont"] .select2-container--default .select2-dropdown {
  background-color: #fafafa;
  border: 1px solid #C5C5C5;
  border-radius: 0;
  display: block;
  left: -100000px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.admin-bar[class*="wellmont"] .select2-container--default .select2-dropdown {
  top: 32px;
}

@media only screen and (max-width: 782px) {
  .admin-bar[class*="wellmont"] .select2-container--default .select2-dropdown {
    top: 46px;
  }
}

[class*="wellmont"] .select2-container--default .select2-search--dropdown {
  display: block;
  padding: 14px 15px 2px;
}

[class*="wellmont"] .select2-container--default .select2-search--dropdown.select2-search--hide {
  display: none;
}

[class*="wellmont"] .select2-container--default .select2-search--dropdown .select2-search__field {
  -webkit-appearance: none;
  border: 1px solid #C5C5C5;
  color: #8C8BA4;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 4px 8px;
  width: 100%;
}

[class*="wellmont"] .select2-container--default .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

[class*="wellmont"] .select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border: 1px solid #C5C5C5;
  color: #8C8BA4;
}

[class*="wellmont"] .select2-container--default .select2-results {
  display: block;
}

[class*="wellmont"] .select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

[class*="wellmont"] .select2-container--default .select2-results__options {
  font-size: 16px;
  line-height: 24px;
  list-style: none;
  margin: 5px 0;
  padding: 2px 15px;
  position: relative;
}

[class*="wellmont"] .select2-container--default .select2-results__option {
  padding: 3px 0;
  transition: color 0.3s ease-out;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

[class*="wellmont"] .select2-container--default .select2-results__option[aria-selected] {
  cursor: pointer;
}

[class*="wellmont"] .select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

[class*="wellmont"] .select2-container--default .select2-results__option[aria-disabled=true] {
  color: #0B0449;
}

[class*="wellmont"] .select2-container--default .select2-results__option[aria-selected=true], [class*="wellmont"] .select2-container--default .select2-results__option[data-selected=true] {
  background: none;
  color: #0B0449;
}

[class*="wellmont"] .select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

[class*="wellmont"] .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

[class*="wellmont"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

[class*="wellmont"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

[class*="wellmont"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

[class*="wellmont"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

[class*="wellmont"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

[class*="wellmont"] .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: none;
  color: #0B0449;
}

[class*="wellmont"] .select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 7px 0;
}

[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding: 0;
}

[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 0;
  right: auto;
}

[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
}

[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin: 0 0 0 10px;
}

[class*="wellmont"] .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin: 0 0 0 10px;
}

[class*="wellmont"] .select2-container--default.select2-container--disabled .select2-selection--single,
[class*="wellmont"] .select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #fafafa;
  cursor: default;
}

[class*="wellmont"] .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear,
[class*="wellmont"] .select2-container--default.select2-container--disabled .select2-selection--multiple .select2-selection__clear {
  display: none;
}

[class*="wellmont"] .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

[class*="wellmont"] .select2-container--default.select2-container--open .select2-selection--single,
[class*="wellmont"] .select2-container--default.select2-container--open .select2-selection--multiple {
  color: #0B0449;
}

[class*="wellmont"] .select2-container--default.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--default .select2-selection {
  background-color: transparent !important;
  border-color: #C5C5C5 !important;
  color: #8C8BA4 !important;
}

.select2-container--default .select2-selection:focus {
  background-color: transparent !important;
  border-color: #C5C5C5 !important;
  color: #0B0449 !important;
}

#qodef-page-footer .select2-container--default .select2-selection {
  background-color: transparent !important;
  border-color: #C5C5C5 !important;
  color: #ffffff !important;
}

#qodef-page-footer .select2-container--default .select2-selection:focus {
  background-color: transparent !important;
  border-color: #C5C5C5 !important;
  color: #cccccc !important;
}

body[class*="wellmont"] #qodef-page-footer .select2-container--default .select2-selection--single .select2-selection__arrow:before,
body[class*="wellmont"] .qodef-section-skin--light .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  content: '';
  background-image: url("../img/select2-arrow-light.svg");
  background-repeat: no-repeat;
  width: 14px;
  height: 6px;
}

body:not([class*="wellmont-core"]) .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  content: '\25BE';
  font-family: initial;
  font-size: 16px;
}

.select2-close-mask {
  background-color: #ffffff;
  border: 0;
  display: block;
  filter: alpha(opacity=0);
  height: auto;
  left: 0;
  margin: 0;
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: auto;
  z-index: 99;
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 0 !important;
  line-height: 1;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/* ==========================================================================
   Search appearance tweak begin
   ========================================================================== */
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"]::-ms-clear,
input[type="text"]::-ms-clear {
  display: none;
}

/* ==========================================================================
   Autocomplete appearance tweak begin
   ========================================================================== */

input:-webkit-autofill {
  -webkit-animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: qodefAutofillFix;
}

/* ==========================================================================
   7.0 Content styles
   ========================================================================== */
#qodef-page-wrapper {
  position: relative;
}

#qodef-page-outer {
  position: relative;
}

#qodef-page-inner {
  position: relative;
  padding: 130px 0 100px;
}

#qodef-page-content.qodef-layout--template .qodef-page-content-section.qodef-col--12 {
  margin-bottom: 0;
}

.qodef--boxed {
  background-color: #fafafa;
}

.qodef--boxed #qodef-page-wrapper {
  display: block;
  background-color: #ffffff;
}

.qodef--boxed #qodef-page-inner {
  width: 100% !important;
  padding-left: 30px;
  padding-right: 30px;
}

.qodef--passepartout #qodef-page-wrapper {
  background-color: #ffffff;
}

.qodef-parallax-item {
  will-change: transform;
}

.qodef-link-custom-style {
  color: inherit;
}

.qodef-link-custom-style:hover {
  color: var(--qode-main-color);
}

/* ==========================================================================
   9.0 Magnific Popup styles
   ========================================================================== */
button.mfp-arrow {
  top: calc(50% - 25px) !important;
  width: 26px !important;
  height: 51px !important;
  margin: 0 !important;
  color: #ffffff;
  transition: color 0.3s ease-out;
  opacity: 1 !important;
}

button.mfp-arrow svg {
  display: block;
  width: 100%;
  pointer-events: none;
}

button.mfp-arrow:before, button.mfp-arrow:after {
  display: none !important;
}

button.mfp-arrow:hover {
  color: rgba(255, 255, 255, 0.4);
}

button.mfp-arrow.mfp-arrow-left {
  left: 30px;
}

button.mfp-arrow.mfp-arrow-right {
  right: 30px;
}

button.mfp-arrow.mfp-arrow-right svg {
  transform: rotate(180deg);
}

button.mfp-close {
  top: 6px !important;
  right: -32px !important;
  width: 32px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #ffffff;
  transition: color 0.3s ease-out;
  opacity: 1 !important;
}

button.mfp-close:hover {
  color: rgba(255, 255, 255, 0.4);
}

button.mfp-close:before, button.mfp-close:after {
  display: none !important;
}

button.mfp-close svg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.mfp-figure:after {
  background: transparent !important;
  box-shadow: none !important;
}

.mfp-bottom-bar .mfp-title,
.mfp-bottom-bar .mfp-counter {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: #ffffff;
}

.mfp-fade.mfp-bg,
.mfp-fade.mfp-wrap {
  opacity: 0;
  transition: opacity .35s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready,
.mfp-fade.mfp-wrap.mfp-ready {
  opacity: 1;
}

.mfp-fade.mfp-bg.mfp-removing,
.mfp-fade.mfp-wrap.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-bg {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   9.0 Swiper carousel styles
   ========================================================================== */
.qodef-swiper-container {
  position: relative;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  z-index: 1;
  overflow: hidden;
}

.qodef-swiper-container .swiper-slide img {
  width: 100%;
}

.qodef-swiper-container.qodef-blog .qodef-blog-item {
  margin-bottom: 0;
}

.qodef-swiper-container.qodef-swiper--initialized {
  visibility: visible;
}

.qodef-swiper-container.qodef-swiper--show-hidden-slides {
  overflow: visible;
}

.swiper-pagination-bullets {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  position: relative !important;
  margin-top: 30px;
  bottom: 0 !important;
  height: 30px;
  width: 30px;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 0 !important;
  height: auto;
  width: 30px;
  flex-direction: column;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11px;
  height: 11px;
  margin: 10px !important;
  padding: 0;
  background-color: rgba(11, 4, 73, 0.6);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.35s ease;
  transform: scale(0.636);
}

.swiper-pagination-bullets .swiper-pagination-bullet:hover, .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--qode-main-color);
  transform: scale(1);
}

.swiper-button-prev,
.swiper-button-next {
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  color: #0B0449;
  transition: all 0.35s ease;
  transform: translateY(-50%);
}

.swiper-container-horizontal.qodef-swiper--show-pagination .swiper-button-prev, .swiper-container-horizontal.qodef-swiper--show-pagination
.swiper-button-next {
  transform: translateY(calc(-50% - 30px));
}

.swiper-button-prev svg,
.swiper-button-next svg {
  display: block;
  width: 26px;
}

.swiper-button-prev .qodef-svg--slider-arrow-left circle:nth-of-type(2),
.swiper-button-prev .qodef-svg--slider-arrow-right circle:nth-of-type(2),
.swiper-button-next .qodef-svg--slider-arrow-left circle:nth-of-type(2),
.swiper-button-next .qodef-svg--slider-arrow-right circle:nth-of-type(2) {
  stroke: var(--qode-main-color);
  stroke-dasharray: 104;
  stroke-dashoffset: 104;
  transition: .6s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--qode-main-color);
}

.swiper-button-prev:hover .qodef-svg--slider-arrow-left circle:nth-of-type(2),
.swiper-button-prev:hover .qodef-svg--slider-arrow-right circle:nth-of-type(2),
.swiper-button-next:hover .qodef-svg--slider-arrow-left circle:nth-of-type(2),
.swiper-button-next:hover .qodef-svg--slider-arrow-right circle:nth-of-type(2) {
  stroke-dashoffset: 0;
}

.swiper-button-prev {
  left: 30px !important;
}

.swiper-button-prev.swiper-button-outside {
  left: -76px !important;
}

@media only screen and (max-width: 768px) {
  .swiper-button-prev.swiper-button-outside {
    left: -40px !important;
  }
}

@media only screen and (max-width: 680px) {
  .swiper-button-prev.swiper-button-outside {
    left: -30px !important;
  }
}

.swiper-container-vertical .swiper-button-prev {
  left: 50% !important;
  transform-origin: 0 0;
  transform: rotate(90deg) translate(0, -50%);
  top: 30px;
}

.swiper-button-next {
  right: 30px !important;
}

.swiper-button-next.swiper-button-outside {
  right: -76px !important;
}

@media only screen and (max-width: 768px) {
  .swiper-button-next.swiper-button-outside {
    right: -40px !important;
  }
}

@media only screen and (max-width: 680px) {
  .swiper-button-next.swiper-button-outside {
    right: -30px !important;
  }
}

.swiper-container-vertical .swiper-button-next {
  right: 50% !important;
  transform-origin: 0 50%;
  transform: rotate(90deg) translate(0, -50%);
  top: auto;
  bottom: 30px;
}

.qodef-slider-navigation-layout--simple .qodef-swiper-nav-holder,
.qodef-slider-navigation-layout--simple ~ .qodef-swiper-nav-holder {
  display: inline-flex;
  position: relative;
  margin-top: 17px;
}

.qodef-slider-navigation-layout--simple .qodef-swiper-nav-holder .swiper-button-prev,
.qodef-slider-navigation-layout--simple .qodef-swiper-nav-holder .swiper-button-next,
.qodef-slider-navigation-layout--simple ~ .qodef-swiper-nav-holder .swiper-button-prev,
.qodef-slider-navigation-layout--simple ~ .qodef-swiper-nav-holder .swiper-button-next {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

.qodef-slider-navigation-layout--simple .qodef-swiper-nav-holder .swiper-button-next,
.qodef-slider-navigation-layout--simple ~ .qodef-swiper-nav-holder .swiper-button-next {
  margin-left: 33px !important;
}

@media only screen and (max-width: 1024px) {
  .qodef-slider-navigation-disable-below--1024 .qodef-swiper-nav-holder,
  .qodef-slider-navigation-disable-below--1024 ~ .qodef-swiper-nav-holder {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .qodef-slider-navigation-disable-below--768 .qodef-swiper-nav-holder,
  .qodef-slider-navigation-disable-below--768 ~ .qodef-swiper-nav-holder {
    display: none;
  }
}

@media only screen and (max-width: 680px) {
  .qodef-slider-navigation-disable-below--680 .qodef-swiper-nav-holder,
  .qodef-slider-navigation-disable-below--680 ~ .qodef-swiper-nav-holder {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .qodef-slider-navigation-disable-below--480 .qodef-swiper-nav-holder,
  .qodef-slider-navigation-disable-below--480 ~ .qodef-swiper-nav-holder {
    display: none;
  }
}

.swiper-container-vertical + .swiper-button-prev {
  left: 50% !important;
  transform-origin: 0 0;
  transform: rotate(90deg) translate(0, -50%);
  top: -76px;
}

.swiper-container-vertical + .swiper-button-prev + .swiper-button-next {
  right: 50% !important;
  transform-origin: 0 50%;
  transform: rotate(90deg) translate(0, -50%);
  top: auto;
  bottom: -76px;
}

/* ==========================================================================
   WPML style start
   ========================================================================== */
.widget_icl_lang_sel_widget {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown:hover .wpml-ls-sub-menu,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click:hover .wpml-ls-sub-menu {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-flag,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-flag {
  position: relative;
  top: -1px;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-legacy-dropdown,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-legacy-dropdown {
  padding: 0;
  margin: 0;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  position: relative;
  display: flex;
  align-items: center;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
  content: '';
  background-image: url("../img/select2-arrow.svg");
  background-repeat: no-repeat;
  width: 14px;
  height: 6px;
  line-height: 1;
  border: 0;
  position: initial;
  margin-left: auto;
}

body:not([class*="wellmont-core"]) .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after, body:not([class*="wellmont-core"])
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
  content: '\25BE';
  font-family: initial;
  font-size: 16px;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  list-style: none;
  margin: 0;
  border-top: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  display: flex;
  align-items: center;
  border: 0;
  background-color: transparent;
  padding: 7px 0;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal {
  padding: 0;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0 !important;
  /* Important is because of widget default css */
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
  padding: 0;
  display: block;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  display: block;
  margin: 0;
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
  padding: 0;
  display: block;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  width: 200px;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  padding: 11px 20px;
  height: 46px;
  line-height: 24px;
  color: #8C8BA4;
  background-color: #fff;
  border: 1px solid transparent;
  font-size: 14px;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
  color: var(--qode-main-color);
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  margin: 0;
  padding: 0 20px;
  background-color: #fff;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  color: #8C8BA4;
  font-size: 14px;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
  color: var(--qode-main-color);
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  margin-right: 10px !important;
  /* Important is because of widget default css */
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
  color: #8C8BA4;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
  color: var(--qode-main-color);
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
  margin-right: 0;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  margin-bottom: 10px;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
  color: #8C8BA4;
}

#qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
  color: var(--qode-main-color);
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  width: 175px;
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  padding: 11px 20px;
  height: 46px;
  line-height: 24px;
  color: #8C8BA4;
  background-color: transparent;
  border: 1px solid transparent;
  font-size: 14px;
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
  color: var(--qode-main-color);
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  margin: 0;
  padding: 0 20px;
  background-color: transparent;
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  color: #8C8BA4;
  font-size: 14px;
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
  color: var(--qode-main-color);
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  margin-right: 10px !important;
  /* Important is because of widget default css */
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
  color: #8C8BA4;
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
  color: var(--qode-main-color);
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
  margin-right: 0;
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  margin-bottom: 10px;
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
  color: #8C8BA4;
}

#qodef-page-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
  color: var(--qode-main-color);
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  width: 175px;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  padding: 8px 20px;
  height: 40px;
  line-height: 24px;
  color: #fff;
  background-color: #000;
  border: 1px solid transparent;
  font-size: 14px;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
  color: #fff;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  margin: 0;
  padding: 0 20px;
  background-color: #000;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  color: #fff;
  font-size: 14px;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
  color: #fff;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  margin-right: 10px !important;
  /* Important is because of widget default css */
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
  color: #fff;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
  color: #fff;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
  margin-right: 0;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  margin-bottom: 10px;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
  color: #fff;
}

#qodef-top-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
  color: #fff;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  width: 100%;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  padding: 11px 20px;
  height: 46px;
  line-height: 24px;
  color: #8C8BA4;
  background-color: #fafafa;
  border: 1px solid transparent;
  font-size: 14px;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
  color: var(--qode-main-color);
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  margin: 0;
  padding: 0 20px;
  background-color: #fafafa;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  color: #8C8BA4;
  font-size: 14px;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
  color: var(--qode-main-color);
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  margin-right: 10px !important;
  /* Important is because of widget default css */
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
  color: #8C8BA4;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
  color: var(--qode-main-color);
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
  margin-right: 0;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  margin-bottom: 10px;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
  color: #8C8BA4;
}

#qodef-page-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
  color: var(--qode-main-color);
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  width: 100%;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  padding: 11px 20px;
  height: 46px;
  line-height: 24px;
  color: #8C8BA4;
  background-color: #fafafa;
  border: 1px solid transparent;
  font-size: 14px;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
  color: var(--qode-main-color);
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  margin: 0;
  padding: 0 20px;
  background-color: #fafafa;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  color: #8C8BA4;
  font-size: 14px;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
  color: var(--qode-main-color);
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  margin-right: 10px !important;
  /* Important is because of widget default css */
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
  color: #fff;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
  color: #fff;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
  margin-right: 0;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  margin-bottom: 10px;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
  color: #fff;
}

#qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
  color: #fff;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  width: 100%;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  padding: 11px 20px;
  height: 46px;
  line-height: 24px;
  color: #8C8BA4;
  background-color: #fafafa;
  border: 1px solid transparent;
  font-size: 14px;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  margin: 0;
  padding: 0 20px;
  background-color: #fafafa;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  color: #8C8BA4;
  font-size: 14px;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  margin-right: 10px !important;
  /* Important is because of widget default css */
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
  color: #fff;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a:hover {
  color: #fff;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
  margin-right: 0;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  margin-bottom: 10px;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
  color: #fff;
}

#qodef-side-area .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a:hover {
  color: #fff;
}

/* ==========================================================================
   WPML style start
   ========================================================================== */
/* ==========================================================================
   404 page styles
   ========================================================================== */
.error404:not([class*="wellmont-core"]) #qodef-page-content {
  height: auto !important;
  padding: 100px 0;
}

.error404 #qodef-page-inner {
  padding: 0;
}

.error404 #qodef-page-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

.error404.admin-bar #qodef-page-content {
  top: 32px;
  height: calc(100vh - 32px);
}

#qodef-404-page {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  text-align: center;
}

#qodef-404-page .qodef-404-number {
  font-size: 250px;
  opacity: 0.03;
  margin: 0 0 -140px;
}

@media only screen and (max-width: 680px) {
  #qodef-404-page .qodef-404-number {
    font-size: 150px;
  }
}

#qodef-404-page .qodef-404-subtitle {
  margin: 0 0 5px;
}

#qodef-404-page .qodef-404-title {
  margin: 0;
}

#qodef-404-page .qodef-404-text {
  display: block;
  margin: 14px auto 0;
  max-width: 32%;
}

@media only screen and (max-width: 1440px) {
  #qodef-404-page .qodef-404-text {
    max-width: 43%;
  }
}

@media only screen and (max-width: 1024px) {
  #qodef-404-page .qodef-404-text {
    max-width: 55%;
  }
}

@media only screen and (max-width: 768px) {
  #qodef-404-page .qodef-404-text {
    max-width: 73%;
  }
}

@media only screen and (max-width: 680px) {
  #qodef-404-page .qodef-404-text {
    max-width: none;
  }
}

#qodef-404-page .qodef-404-button {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-top: 44px;
}

/* ==========================================================================
   Blog styles
   ========================================================================== */
.qodef-blog {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.qodef-blog .qodef-blog-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0 0 60px;
}

.qodef-blog .qodef-blog-item .qodef-e-inner,
.qodef-blog .qodef-blog-item .qodef-e-media,
.qodef-blog .qodef-blog-item .qodef-e-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.qodef-blog .qodef-blog-item.qodef--hover .qodef-e-media-image a img {
  transform: scale(1.065) translateX(3%);
}

.qodef-blog .qodef-blog-item .qodef-e-media > * {
  margin-bottom: 26px;
}

.qodef-blog .qodef-blog-item .qodef-e-media iframe {
  display: block;
  height: 100%;
}

.qodef-blog .qodef-blog-item .qodef-e-media .qodef-e-date-on-image {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  top: 20px;
  left: 0;
  padding: 4px;
  width: 125px;
  height: 23px;
  background-color: #ffffff;
  z-index: 9;
}

.qodef-blog .qodef-blog-item .qodef-e-media .qodef-e-date-on-image a {
  display: flex;
  flex-direction: initial;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
}

.qodef-blog .qodef-blog-item .qodef-e-media .qodef-e-date-on-image a:hover {
  color: var(--qode-main-color);
}

.qodef-blog .qodef-blog-item .qodef-e-media .qodef-e-date-on-image .qodef-e-info-month,
.qodef-blog .qodef-blog-item .qodef-e-media .qodef-e-date-on-image .qodef-e-info-day {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
}

.qodef-blog .qodef-blog-item .qodef-e-media .qodef-e-date-on-image .qodef-e-info-day {
  margin-left: 5px;
}

.qodef-blog .qodef-blog-item .qodef-e-media-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.qodef-blog .qodef-blog-item .qodef-e-media-image a, .qodef-blog .qodef-blog-item .qodef-e-media-image img {
  display: block;
  width: 100%;
}

.qodef-blog .qodef-blog-item .qodef-e-media-image a {
  position: relative;
  overflow: hidden;
}

.qodef-blog .qodef-blog-item .qodef-e-media-image a img {
  transform: scale(1.065) translateX(0);
  transition: transform .6s ease;
}

.qodef-blog .qodef-blog-item .qodef-e-media-image.qodef--background {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.qodef-blog .qodef-blog-item .qodef-e-media-image.qodef--background img {
  visibility: hidden;
}

.qodef-blog .qodef-blog-item .qodef-e-title {
  margin: 0;
}

.qodef-blog .qodef-blog-item .qodef-e-title .qodef--custom {
  font-style: italic;
  color: #847E9F;
}

.qodef-blog .qodef-blog-item .qodef-e-title a:hover {
  color: currentColor;
}

.qodef-blog .qodef-blog-item .qodef-e-excerpt {
  margin: 4px 0 0;
}

.qodef-blog .qodef-blog-item .qodef-e-top-holder {
  position: relative;
  margin-bottom: 7px;
  z-index: 1;
}

.qodef-blog .qodef-blog-item .qodef-e-top-holder .qodef-e-info.qodef-e-info-cat .qodef-e-category a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  line-height: inherit;
}

.qodef-blog .qodef-blog-item .qodef-e-top-holder .qodef-e-info.qodef-e-info-cat .qodef-e-category a:hover {
  color: var(--qode-main-color);
}

body:not([class*="wellmont-core"]) .qodef-blog .qodef-blog-item .qodef-e-read-more {
  overflow: hidden;
}

body:not([class*="wellmont-core"]) .qodef-blog .qodef-blog-item .qodef-e-read-more a.qodef-theme-button {
  position: relative;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  letter-spacing: 0.200em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0B0449;
  padding: 0 !important;
  background-color: transparent;
  border: 0;
  border-bottom: 1px dashed;
}

body:not([class*="wellmont-core"]) .qodef-blog .qodef-blog-item .qodef-e-read-more a.qodef-theme-button:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}

body:not([class*="wellmont-core"]) .qodef-blog .qodef-blog-item .qodef-e-read-more a.qodef-theme-button:after {
  display: inline-block;
  content: '';
  position: relative;
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4Ljg1NiIgaGVpZ2h0PSI4Ljg3NiIgdmlld0JveD0iMCAwIDguODU2IDguODc2Ij4NCiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTczLjg1NCAtMjA2NS45NzcpIj4NCiAgICA8cGF0aCBkPSJNLTEyMTAuNS0zNi4wNDZ2LTcuNDc3aC03LjU4OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQ1IDIxMTApIiBmaWxsPSJub25lIiBzdHJva2U9IiMwYjA0NDkiIHN0cm9rZS13aWR0aD0iMSIvPg0KICAgIDxsaW5lIHgxPSI4IiB5Mj0iOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3My41IDIwNjYuNSkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzBiMDQ0OSIgc3Ryb2tlLXdpZHRoPSIxIi8+DQogIDwvZz4NCjwvc3ZnPg0K");
  background-repeat: no-repeat;
  margin-left: 10px;
}

body:not([class*="wellmont-core"]) .qodef-blog .qodef-blog-item .qodef-e-read-more a.qodef-theme-button:hover {
  color: var(--qode-main-color);
}

body:not([class*="wellmont-core"]) .qodef-blog .qodef-blog-item .qodef-e-read-more a.qodef-theme-button:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}

.qodef-blog .qodef-blog-item .qodef-e-text:after {
  content: '';
  clear: both;
  display: table;
}

.qodef-blog .qodef-blog-item .qodef-e-bottom-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 39px;
  margin-bottom: 26px;
}

.qodef-blog .qodef-blog-item .qodef-e-bottom-holder .qodef-e-right.qodef-e-info {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 680px) {
  .qodef-blog .qodef-blog-item .qodef-e-bottom-holder .qodef-e-right.qodef-e-info {
    justify-content: flex-start;
  }
}

.qodef-blog .qodef-blog-item .qodef-e-bottom-holder .qodef-e-info-tags a {
  color: var(--qode-main-color);
}

.qodef-blog .qodef-blog-item .qodef-e-bottom-holder .qodef-e-info-tags a:hover {
  color: #8C8BA4;
}

.qodef-blog .qodef-blog-item .qodef-e-bottom-holder .qodef-e-info-tags .qodef-info-separator-single:after {
  content: '';
  margin-right: 19px;
}

.qodef-blog .qodef-blog-item .qodef-e-left,
.qodef-blog .qodef-blog-item .qodef-e-right {
  flex-basis: 50%;
}

.qodef-blog .qodef-blog-item .qodef-e-right {
  text-align: right;
}

.qodef-blog .qodef-blog-item .qodef-e-post-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.qodef-blog .qodef-blog-item.sticky .qodef-e-title a {
  position: relative;
  text-decoration: underline;
}

.qodef-blog .qodef-blog-item.sticky .qodef-e-title a:after {
  content: '*';
  position: absolute;
  right: -0.5em;
  font-size: 1.5em;
}

html.elementor-html .qodef-blog .qodef-blog-item.format-video .wp-video {
  max-width: 100%;
}

html.elementor-html .qodef-blog .qodef-blog-item.format-video video {
  height: auto;
}

html.elementor-html .qodef-blog .qodef-blog-item.format-audio audio {
  display: block;
}

.qodef-blog .qodef-blog-item.format-audio .qodef-e-media-image {
  width: 100%;
}

.qodef-blog .qodef-blog-item.format-audio .qodef-e-media-image img {
  width: 100%;
}

.qodef-blog .qodef-blog-item.format-audio .qodef-e-media-audio {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 100%;
  margin: 0;
}

.qodef-blog .qodef-blog-item.format-audio .mejs-controls .mejs-time-rail .mejs-time-current {
  background: #847E9F;
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 9% 14% 10% 14%;
  background: #0B0449;
}

@media only screen and (max-width: 680px) {
  .qodef-blog .qodef-blog-item.format-link .qodef-e-link {
    padding: 68px 30px 71px;
  }
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link:hover .qodef-e-link-text {
  color: #ffffff;
}

.qodef-blog .qodef-blog-item.format-link .qodef-image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link-text {
  position: relative;
  color: #ffffff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link-icon {
  position: relative;
  display: block;
  margin-bottom: 15px;
  fill: #dfbec3;
  stroke: none;
}

.qodef-blog .qodef-blog-item.format-link .qodef-e-link-url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 9% 14% 10% 14%;
  background: #FCF9F5;
}

@media only screen and (max-width: 680px) {
  .qodef-blog .qodef-blog-item.format-quote .qodef-e-quote {
    padding: 80px 30px;
  }
}

.qodef-blog .qodef-blog-item.format-quote .qodef-image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-icon {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-text {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  line-height: 31px;
  color: #0B0449;
  margin: 0;
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-info {
  position: relative;
  display: inline-block;
  margin-top: 30px;
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-info .qodef-e-quote-author {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
}

.qodef-blog .qodef-blog-item.format-quote .qodef-e-quote-url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.qodef-blog.qodef-items--fixed article .qodef-e-media,
.qodef-blog.qodef-items--fixed article .qodef-e-media-image {
  height: 100%;
}

/* ==========================================================================
   Blog List styles
   ========================================================================== */
.qodef-blog.qodef--list .qodef-blog-item.format-audio .qodef-e-media-audio {
  margin: 0;
  bottom: 24px;
}

.qodef-blog.qodef--list .qodef-blog-item .qodef-e-media > * {
  margin-bottom: 24px;
}

.qodef-blog.qodef--list .qodef-blog-item .qodef-e-content .qodef-e-top-holder {
  margin-bottom: 4px;
}

.qodef-blog.qodef--list .qodef-blog-item .qodef-e-content .qodef-e-excerpt {
  margin: 9px 0 0;
}

/* ==========================================================================
   Blog Single styles
   ========================================================================== */
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-bottom-holder {
  margin-top: 64px;
  margin-bottom: 26px;
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-bottom-holder .qodef-e-left.qodef-e-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.qodef-blog.qodef--single .qodef-blog-item .qodef-e-link,
.qodef-blog.qodef--single .qodef-blog-item .qodef-e-quote {
  margin-bottom: 25px;
}

/* ==========================================================================
   Comments styles
   ========================================================================== */
#qodef-page-comments {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 82px;
}

#qodef-page-comments .qodef-page-comments-not-found {
  margin: 0;
}

#qodef-page-comments-list {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 81px;
}

#qodef-page-comments-list .qodef-m-title {
  margin: 0 0 31px;
}

#qodef-page-comments-list .qodef-m-comments {
  list-style: none;
  margin: 0;
  padding: 0;
}

#qodef-page-comments-list .qodef-m-comments > .qodef-comment-item:first-child {
  margin-top: 0;
}

#qodef-page-comments-list .qodef-comment-item {
  margin: 35px 0 0;
  padding: 0;
}

#qodef-page-comments-list .qodef-comment-item .children {
  list-style: none;
  margin: 0;
  padding: 0 0 0 100px;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-inner {
  display: flex;
  align-items: flex-start;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-image {
  flex-shrink: 0;
  margin-right: 24px;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-image img {
  display: block;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-title-date {
  position: relative;
  display: flex;
  justify-content: space-between;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-title {
  margin: 0;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-date a {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-date a:hover {
  color: #0B0449;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-text {
  margin: 0;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-text p {
  margin: 0;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-text img {
  margin-top: 5px;
  margin-bottom: 5px;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links {
  margin-top: 20px;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links a {
  position: relative;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  letter-spacing: 0.200em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0B0449;
  padding: 0 !important;
  background-color: transparent;
  border: 0;
  border-bottom: 1px dashed;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links a:after {
  display: inline-block;
  content: '';
  position: relative;
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4Ljg1NiIgaGVpZ2h0PSI4Ljg3NiIgdmlld0JveD0iMCAwIDguODU2IDguODc2Ij4NCiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTczLjg1NCAtMjA2NS45NzcpIj4NCiAgICA8cGF0aCBkPSJNLTEyMTAuNS0zNi4wNDZ2LTcuNDc3aC03LjU4OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQ1IDIxMTApIiBmaWxsPSJub25lIiBzdHJva2U9IiMwYjA0NDkiIHN0cm9rZS13aWR0aD0iMSIvPg0KICAgIDxsaW5lIHgxPSI4IiB5Mj0iOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3My41IDIwNjYuNSkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzBiMDQ0OSIgc3Ryb2tlLXdpZHRoPSIxIi8+DQogIDwvZz4NCjwvc3ZnPg0K");
  background-repeat: no-repeat;
  margin-left: 10px;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links a:hover {
  color: var(--qode-main-color);
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links a:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links > * {
  display: inline-flex;
  vertical-align: initial;
  flex-wrap: wrap;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links > *:last-child {
  margin-right: 0;
}

#qodef-page-comments-list .qodef-m-pagination {
  margin-top: 50px;
}

#respond {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.qodef-comment-item #respond {
  margin-top: 50px;
}

.qodef-comment-item #respond .comment-reply-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
}

#respond .comment-reply-title {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

#respond .qodef-comment-form .comment-notes,
#respond .qodef-comment-form .logged-in-as {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 400;
  color: #0B0449;
  margin: 10px 0 23px 0;
}

@media only screen and (max-width: 1024px) {
  #respond .qodef-comment-form .qodef-comments-grid .qodef-grid-inner {
    --qode-columns: 1;
    gap: unset;
  }
}

#respond .qodef-comment-form .comment-form-comment,
#respond .qodef-comment-form .comment-form-author,
#respond .qodef-comment-form .comment-form-email,
#respond .qodef-comment-form .comment-form-url,
#respond .qodef-comment-form .form-submit {
  margin: 0;
}

#respond .qodef-comment-form .comment-form-cookies-consent {
  align-items: center;
  display: flex;
  align-items: baseline;
  margin: 7px 0 22px 0;
  position: relative;
}

#respond .qodef-comment-form .comment-form-cookies-consent > * {
  margin: 0;
}

#respond .qodef-comment-form .comment-form-cookies-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin: -3px 6px 0 0;
}

/* ==========================================================================
   Filter styles
   ========================================================================== */
.qodef-filter--on .qodef-grid-inner {
  opacity: 1;
  transition: opacity .5s ease;
}

.qodef-filter--on.qodef--filter-loading .qodef-grid-inner {
  opacity: 0;
  transition: opacity .2s ease;
}

.qodef-filter--on.qodef--filter-loading .qodef-m-pagination-spinner {
  bottom: calc(50% - 16px) !important;
}

.qodef-m-filter {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0 0 40px;
}

.qodef-m-filter .qodef-m-filter-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qodef-m-filter .qodef-m-filter-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 27px;
  padding: 0 2px;
  transition: color 0.3s ease;
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.3em;
  color: #8C8BA4;
}

.qodef-m-filter .qodef-m-filter-item:hover, .qodef-m-filter .qodef-m-filter-item.qodef--active {
  color: #0B0449;
}

/* ==========================================================================
   Footer styles
   ========================================================================== */
#qodef-page-footer {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  background-color: #0B0449;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#qodef-page-footer > * {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

#qodef-page-footer-top-area .qodef-content-full-width {
  padding-left: 70px;
  padding-right: 70px;
}

.qodef--boxed #qodef-page-footer-top-area {
  padding-left: 30px;
  padding-right: 30px;
}

#qodef-page-footer-top-area-inner {
  padding-top: 126px;
  padding-bottom: 113px;
  border-top: 0 solid #C5C5C5;
}

#qodef-page-footer-bottom-area .qodef-content-full-width {
  padding-left: 70px;
  padding-right: 70px;
}

.qodef--boxed #qodef-page-footer-bottom-area {
  padding-left: 30px;
  padding-right: 30px;
}

#qodef-page-footer-bottom-area-inner {
  padding-top: 62px;
  padding-bottom: 62px;
  border-top: 0 solid #C5C5C5;
}

.wp-block-button {
  float: none;
  margin: 1em 0;
}

.wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: auto;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: var(--qode-main-color);
  margin: 0;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  outline: none;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  padding: 15px 50px;
  color: var(--qode-main-color);
  background-color: #DFBEC3;
  border: 1px solid transparent;
  border-radius: 28px;
  cursor: pointer;
}

.wp-block-button .wp-block-button__link:hover {
  color: var(--qode-main-color);
  background-color: transparent;
  border-color: #DFBEC3;
}

.wp-block-button.is-style-outline {
  border: none;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--qode-main-color);
  background-color: transparent;
  border: 1px solid #DFBEC3;
  border-width: 1px;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: var(--qode-main-color);
  background-color: #DFBEC3;
  border-color: #DFBEC3;
}

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

.wp-block-button.alignleft {
  text-align: left;
  margin-top: 0;
  margin-right: 2rem;
}

.wp-block-button.alignright {
  text-align: right;
  margin-top: 0;
  margin-left: 2rem;
}

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

.wp-block-image .aligncenter {
  clear: both;
}

.wp-block-cover-image {
  float: none !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.wp-block-cover-image p, .wp-block-cover-image h1, .wp-block-cover-image h2, .wp-block-cover-image h3, .wp-block-cover-image h4, .wp-block-cover-image h5, .wp-block-cover-image h6 {
  z-index: 1 !important;
  margin: 0 auto !important;
  max-width: 580px !important;
  padding: 14px !important;
  text-align: center;
  line-height: 1em !important;
}

.wp-block-cover-image p a, .wp-block-cover-image h1 a, .wp-block-cover-image h2 a, .wp-block-cover-image h3 a, .wp-block-cover-image h4 a, .wp-block-cover-image h5 a, .wp-block-cover-image h6 a {
  color: #fff !important;
}

.wp-block-cover-image p a:hover, .wp-block-cover-image h1 a:hover, .wp-block-cover-image h2 a:hover, .wp-block-cover-image h3 a:hover, .wp-block-cover-image h4 a:hover, .wp-block-cover-image h5 a:hover, .wp-block-cover-image h6 a:hover {
  color: var(--qode-main-color) !important;
}

.wp-block-cover-image *:not(.has-text-color):not(.has-inline-color):not(a) {
  color: #fff !important;
  font-size: 30px !important;
}

.wp-block-cover {
  margin-top: 10px !important;
}

.wp-block-cover.alignleft {
  margin-right: 2em !important;
}

.wp-block-cover.alignright {
  margin-left: 2em !important;
}

.wp-block-cover .wp-block-cover__inner-container {
  width: 100% !important;
}

.wp-block-cover p, .wp-block-cover h1, .wp-block-cover h2, .wp-block-cover h3, .wp-block-cover h4, .wp-block-cover h5, .wp-block-cover h6 {
  z-index: 1 !important;
  margin: 0 auto !important;
  max-width: 580px !important;
  padding: 14px !important;
  text-align: center;
  line-height: 1em !important;
}

.wp-block-cover p a, .wp-block-cover h1 a, .wp-block-cover h2 a, .wp-block-cover h3 a, .wp-block-cover h4 a, .wp-block-cover h5 a, .wp-block-cover h6 a {
  color: #fff !important;
}

.wp-block-cover p a:hover, .wp-block-cover h1 a:hover, .wp-block-cover h2 a:hover, .wp-block-cover h3 a:hover, .wp-block-cover h4 a:hover, .wp-block-cover h5 a:hover, .wp-block-cover h6 a:hover {
  color: var(--qode-main-color) !important;
}

.wp-block-cover *:not(.has-text-color):not(.has-inline-color):not(a) {
  color: #fff !important;
  font-size: 30px !important;
}

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

.wp-block-gallery ul.blocks-gallery-grid {
  margin: 0 !important;
}

.wp-block-gallery.alignleft {
  max-width: 420px;
}

.wp-block-gallery.alignright {
  max-width: 420px;
}

.wp-block-gallery figcaption {
  overflow-x: hidden;
}

.wp-caption {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.wp-block-pullquote {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  text-align: center !important;
  width: 100% !important;
  position: relative;
  z-index: -2;
}

.wp-block-pullquote blockquote {
  padding: 25px !important;
}

.wp-block-pullquote blockquote p {
  font-size: 28px !important;
  line-height: 1.6 !important;
}

.has-drop-cap:after {
  content: '';
  display: table;
  table-layout: fixed;
  clear: both;
}

.wp-block-file {
  display: flex;
  align-items: center;
  margin: 0;
  color: #0B0449;
  text-decoration: none;
  transition: color 0.3s ease-out;
  cursor: pointer;
}

.wp-block-file:focus, .wp-block-file:hover {
  color: var(--qode-main-color);
}

.wp-block-group.has-background {
  padding: 20px 30px;
}

.gallery-item img {
  border: 0 !important;
}

.wp-block-search .wp-block-search__input {
  margin-bottom: 0;
}

.wp-block-rss .wp-block-rss__item-title {
  display: inline-block;
  vertical-align: top;
}

/* ==========================================================================
   Header styles
   ========================================================================== */
#qodef-page-header {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  height: 100px;
  background-color: #fff;
  z-index: 100;
}

#qodef-page-header .qodef-header-logo-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100px;
  max-height: 100%;
}

#qodef-page-header .qodef-header-logo-link img {
  display: block;
  margin: auto 0;
  width: auto;
  max-height: 100%;
  transition: opacity 0.3s ease;
}

#qodef-page-header .qodef-header-logo-link.qodef-height--not-set img {
  max-height: 50%;
}

#qodef-page-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
}

/* ==========================================================================
   Justified Gallery styles
   ========================================================================== */
.qodef-layout--justified-gallery {
  height: auto !important;
  visibility: hidden;
}

.qodef-layout--justified-gallery.qodef--justified-gallery-init {
  visibility: visible;
}

.qodef-layout--justified-gallery .qodef-grid-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0 !important;
  overflow: hidden;
}

.qodef-layout--justified-gallery .qodef-grid-item {
  position: absolute;
  width: auto;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.qodef-layout--justified-gallery .qodef-grid-item img {
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
}

.qodef-layout--justified-gallery > .jg-filtered {
  display: none;
}

/* ==========================================================================
   Mobile Header styles
   ========================================================================== */
#qodef-page-mobile-header {
  position: relative;
  display: none;
  height: 70px;
  z-index: 100;
}

#qodef-page-mobile-header .qodef-mobile-header-logo-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 70px;
  max-height: 100%;
}

#qodef-page-mobile-header .qodef-mobile-header-logo-link img {
  display: block;
  margin: auto 0;
  width: auto;
  max-height: 100%;
  transition: opacity 0.3s ease;
}

#qodef-page-mobile-header .qodef-mobile-header-logo-link.qodef-height--not-set img {
  max-height: calc(50% * 100 / 70);
}

#qodef-page-mobile-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5%;
}

#qodef-page-mobile-header-inner.qodef-content-grid {
  padding: 0;
}

.qodef-mobile-header-opener {
  font-size: 20px;
  margin-left: 20px;
}

.qodef-mobile-header-opener svg {
  display: block;
  width: auto;
  height: auto;
}

.qodef-mobile-header-opener.qodef-source--predefined .qodef-m-icon.qodef--close {
  top: -6px;
  left: 14px;
}

.qodef-mobile-header-opener.qodef-source--predefined svg.qodef-svg--menu line,
.qodef-mobile-header-opener.qodef-source--predefined svg.qodef-svg--close line {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: none;
}

.qodef-mobile-header-opener.qodef-source--predefined svg.qodef-svg--menu line:nth-of-type(2),
.qodef-mobile-header-opener.qodef-source--predefined svg.qodef-svg--close line:nth-of-type(2) {
  transition-delay: unset;
}

.qodef-mobile-header-opener.qodef-source--predefined:hover svg.qodef-svg--menu line,
.qodef-mobile-header-opener.qodef-source--predefined:hover svg.qodef-svg--close line {
  stroke-dashoffset: 0;
}

.qodef-mobile-header-navigation {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  max-height: calc(100vh - 70px);
  background-color: #ffffff;
  border-bottom: 1px solid #C5C5C5;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 10;
}

.qodef-mobile-header-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.qodef-mobile-header-navigation ul li {
  position: relative;
  margin: 11px 0;
  padding: 0;
}

.qodef-mobile-header-navigation ul li a {
  position: relative;
  display: block;
}

.qodef-mobile-header-navigation ul li .qodef-menu-item-arrow {
  position: absolute;
  top: 2px;
  right: 0;
  width: 5px;
  height: auto;
  color: currentColor;
  z-index: 9;
  cursor: pointer;
  transition: color 0.3s ease-out;
  transform: rotate(0);
  transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.qodef-mobile-header-navigation ul li .qodef-menu-item-arrow:hover {
  color: var(--qode-main-color);
}

.qodef-mobile-header-navigation ul li ul {
  display: none;
}

.qodef-mobile-header-navigation ul li ul li > a {
  position: relative;
  display: flex;
  white-space: normal;
  margin: 8px 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  padding-right: 15px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
  font-size: 15px;
  padding-left: 15px;
  margin: 0;
}

.qodef-mobile-header-navigation ul li ul li > a .qodef-menu-item-icon {
  flex-shrink: 0;
}

.qodef-mobile-header-navigation ul li ul li > a:hover {
  color: var(--qode-main-color);
  color: var(--qode-main-color);
  padding-left: 15px;
}

.qodef-mobile-header-navigation ul li ul li.current-menu-ancestor > a, .qodef-mobile-header-navigation ul li ul li.current-menu-item > a {
  color: var(--qode-main-color);
  color: var(--qode-main-color);
  padding-left: 15px;
}

.qodef-mobile-header-navigation ul li.qodef--opened > .qodef-menu-item-arrow {
  transform: rotate(90deg);
}

.qodef-mobile-header-navigation > ul {
  margin: 0 auto;
  padding: 34px 0;
}

.qodef-mobile-header-navigation > ul > li > a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: #0B0449;
  letter-spacing: .2em;
}

.qodef-mobile-header-navigation > ul > li > a:before {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  left: -10px;
  height: 5px;
  width: 5px;
  background: currentColor;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.qodef-mobile-header-navigation > ul > li > a:hover {
  color: var(--qode-main-color);
}

.qodef-mobile-header-navigation > ul > li > a:hover:before {
  opacity: 1;
}

.qodef-mobile-header-navigation > ul > li.current-menu-ancestor > a, .qodef-mobile-header-navigation > ul > li.current-menu-item > a {
  color: var(--qode-main-color);
}

.qodef-mobile-header-navigation > ul > li.current-menu-ancestor > a:before, .qodef-mobile-header-navigation > ul > li.current-menu-item > a:before {
  opacity: 1;
}

.qodef-mobile-header-navigation > ul:not(.qodef-content-grid) {
  padding-left: 5%;
  padding-right: 5%;
}

body:not([class*="wellmont-core"]) .qodef-mobile-header-navigation ul > ul,
.qodef-mobile-header-navigation .qodef-drop-down-second-inner > ul {
  margin: 5px 0 2px;
}

body:not([class*="wellmont-core"]) .qodef-mobile-header-navigation ul ul li,
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li {
  margin: 0;
  padding: 3px 0;
}

body:not([class*="wellmont-core"]) .qodef-mobile-header-navigation ul ul li .qodef-menu-item-arrow,
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li .qodef-menu-item-arrow {
  top: 12px;
}

body:not([class*="wellmont-core"]) .qodef-mobile-header-navigation ul ul li ul li:first-child,
.qodef-mobile-header-navigation .qodef-drop-down-second-inner ul li ul li:first-child {
  padding-top: 14px;
}

/* ==========================================================================
   Navigation Menu styles
   ========================================================================== */
.qodef-header-navigation {
  height: 100%;
}

.qodef-header-navigation ul {
  margin: 0 !important;
  padding: 0;
  list-style: none;
}

.qodef-header-navigation ul li {
  position: relative;
  margin: 0;
  padding: 0;
}

.qodef-header-navigation ul li a .qodef-menu-item-arrow {
  position: absolute;
  display: block;
  top: calc(50% - 3px);
  right: 0;
  width: 4px;
  height: auto;
}

.qodef-header-navigation ul li.qodef--hide-link > a {
  cursor: default;
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 221px;
  margin: 0;
  padding: 28px 0;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out;
  box-shadow: 0 0 8px 2px #0000000f;
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul li {
  padding: 0 28px 0 38px;
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul li.menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul ul {
  top: calc(-28px - 8px);
  left: 100%;
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right {
  left: auto;
  right: 0;
  text-align: right;
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right li {
  padding: 0 38px 0 28px;
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right li a .qodef-menu-item-arrow {
  left: 0;
  right: auto;
  padding-bottom: 1px;
  transform: rotate(180deg);
}

.qodef-header-navigation ul li.qodef-menu-item--narrow ul.qodef-drop-down--right ul {
  left: -100%;
}

.qodef-header-navigation ul li.qodef-menu-item--narrow:hover > ul {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out;
}

.qodef-header-navigation > ul {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

.qodef-header-navigation > ul > li {
  height: 100%;
  margin: 0 25px;
}

.qodef-header-navigation > ul > li:first-child {
  margin-left: 0;
}

.qodef-header-navigation > ul > li:last-child {
  margin-right: 0;
}

.qodef-header-navigation > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: #0B0449;
  letter-spacing: .2em;
}

.qodef-header-navigation > ul > li > a:before {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  left: -10px;
  height: 5px;
  width: 5px;
  background: currentColor;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.qodef-header-navigation > ul > li > a .qodef-menu-item-arrow {
  display: none;
}

.qodef-header-navigation > ul > li > a:hover {
  color: var(--qode-main-color);
}

.qodef-header-navigation > ul > li > a:hover:before {
  opacity: 1;
}

.qodef-header-navigation > ul > li.current-menu-ancestor > a, .qodef-header-navigation > ul > li.current-menu-item > a {
  color: var(--qode-main-color);
}

.qodef-header-navigation > ul > li.current-menu-ancestor > a:before, .qodef-header-navigation > ul > li.current-menu-item > a:before {
  opacity: 1;
}

.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul {
  /* LEFT --- STANDARD MENU LEVEL TWO AND THREE */
  /* RIGHT --- STANDARD MENU LEVEL TWO AND THREE */
}

.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul li > a {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
  font-size: 15px;
}

.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li > a {
  position: relative;
  display: flex;
  white-space: normal;
  margin: 8px 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  padding-right: 15px;
}

.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li > a .qodef-menu-item-icon {
  flex-shrink: 0;
}

.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li:hover > a, .qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li.current-menu-ancestor > a, .qodef-header-navigation > ul > li.qodef-menu-item--narrow ul:not(.qodef-drop-down--right) li.current-menu-item > a {
  color: var(--qode-main-color);
}

.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li > a {
  position: relative;
  display: flex;
  white-space: normal;
  margin: 8px 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  justify-content: flex-end;
  padding-left: 15px;
  padding-right: 0;
}

.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li > a .qodef-menu-item-icon {
  flex-shrink: 0;
}

.qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li:hover > a, .qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li.current-menu-ancestor > a, .qodef-header-navigation > ul > li.qodef-menu-item--narrow ul.qodef-drop-down--right li.current-menu-item > a {
  color: var(--qode-main-color);
}

/* ==========================================================================
   Pagination global styles
   ========================================================================== */
.qodef-m-pagination {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0;
}

.qodef-m-pagination.qodef--wp .nav-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qodef-m-pagination.qodef--wp .page-numbers {
  position: relative;
  margin: 0 16px;
  padding: 0 3px;
  color: #8C8BA4;
}

.qodef-m-pagination.qodef--wp .page-numbers * {
  display: block;
  line-height: inherit;
}

.qodef-m-pagination.qodef--wp .page-numbers:first-child {
  margin-left: 0;
}

.qodef-m-pagination.qodef--wp .page-numbers:last-child {
  margin-right: 0;
}

.qodef-m-pagination.qodef--wp .page-numbers.prev, .qodef-m-pagination.qodef--wp .page-numbers.next {
  position: absolute;
  margin: 0;
  padding: 0;
  color: var(--qode-main-color);
}

.qodef-m-pagination.qodef--wp .page-numbers.prev svg, .qodef-m-pagination.qodef--wp .page-numbers.next svg {
  position: relative;
  display: block;
  width: 12px;
  height: auto;
  transform: translateX(0);
  transition: transform .3s ease-in-out;
}

.qodef-m-pagination.qodef--wp .page-numbers.prev {
  left: 0;
}

.qodef-m-pagination.qodef--wp .page-numbers.prev:hover svg {
  transform: translateX(-3px);
}

.qodef-m-pagination.qodef--wp .page-numbers.next {
  right: 0;
}

.qodef-m-pagination.qodef--wp .page-numbers.next:hover svg {
  transform: translateX(3px);
}

.qodef-m-pagination.qodef--wp .page-numbers:hover, .qodef-m-pagination.qodef--wp .page-numbers.current {
  color: var(--qode-main-color);
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item {
  position: relative;
  margin: 0 16px;
  padding: 0 3px;
  color: #8C8BA4;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item * {
  display: block;
  line-height: inherit;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:first-child {
  margin-left: 0;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:last-child {
  margin-right: 0;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev, .qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next {
  position: absolute;
  margin: 0;
  padding: 0;
  color: var(--qode-main-color);
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev svg, .qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next svg {
  position: relative;
  display: block;
  width: 12px;
  height: auto;
  transform: translateX(0);
  transition: transform .3s ease-in-out;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev {
  left: 0;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--prev:hover svg {
  transform: translateX(-3px);
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next {
  right: 0;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--next:hover svg {
  transform: translateX(3px);
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item:hover, .qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--active {
  color: var(--qode-main-color);
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef-prev--hidden {
  margin-left: 0;
}

.qodef-m-pagination.qodef--standard .qodef-m-pagination-item.qodef--hide {
  display: none;
}

.qodef-m-pagination.qodef--load-more {
  text-align: center;
}

.qodef-m-pagination.qodef--load-more .qodef-m-pagination-inner {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.qodef-m-pagination.qodef--load-more .qodef-load-more-button {
  opacity: 1;
}

.qodef-m-pagination.qodef--infinite-scroll {
  text-align: center;
}

.qodef-filter-pagination-spinner, .qodef-pagination--on .qodef-m-pagination-spinner {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 32px;
  height: auto;
  visibility: hidden;
  z-index: -1;
  animation: qode-rotate 2s infinite linear;
}

.qodef-filter-pagination-spinner {
  position: absolute;
  bottom: calc(50% - 32px / 2);
  left: calc(50% - 32px / 2);
}

.qodef--loading .qodef-filter-pagination-spinner {
  visibility: visible;
  z-index: 1;
}

.qodef-pagination--on.qodef-pagination-type--standard .qodef-grid-inner {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.qodef-pagination--on.qodef-pagination-type--standard .qodef-m-pagination-spinner {
  position: absolute;
  bottom: calc(50% - 32px / 2);
  left: calc(50% - 32px / 2);
}

.qodef-pagination--on.qodef-pagination-type--standard.qodef--loading .qodef-grid-inner {
  opacity: 0;
}

.qodef-pagination--on.qodef-pagination-type--standard.qodef--loading .qodef-m-pagination-inner {
  opacity: 0;
}

.qodef-pagination--on.qodef-pagination-type--load-more .qodef-m-pagination-spinner {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 32px / 2);
}

.qodef-pagination--on.qodef-pagination-type--load-more.qodef--loading .qodef-load-more-button {
  opacity: 0;
}

.qodef-pagination--on.qodef--loading .qodef-m-pagination-spinner {
  visibility: visible;
  z-index: 1;
}

.qodef-single-links {
  position: relative;
  display: flex;
  align-items: baseline;
  width: 100%;
  margin: 15px 0;
}

.qodef-single-links .qodef-m-single-links-title {
  display: inline-flex;
  vertical-align: initial;
  flex-wrap: wrap;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
  margin-right: 10px;
}

.qodef-single-links a,
.qodef-single-links > span:not(.qodef-m-single-links-title) {
  display: inline-flex;
  vertical-align: initial;
  flex-wrap: wrap;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
  margin-right: 8px;
  padding: 0 3px;
}

.qodef-single-links a:last-child,
.qodef-single-links > span:not(.qodef-m-single-links-title):last-child {
  margin-right: 0;
}

.qodef-single-links > span:not(.qodef-m-single-links-title) {
  color: var(--qode-main-color);
}

/* ==========================================================================
   Search styles
   ========================================================================== */
.qodef-search {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0 0 50px;
}

.qodef-search .qodef-e-search-heading {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 60px;
}

.qodef-search .qodef-e-search-heading .qodef-e-search-heading-title {
  margin: 0 0 20px;
}

.qodef-search .qodef-e-search-heading .qodef-e-search-heading-label {
  margin: 8px 0 0;
}

.qodef-search .qodef-search-form-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.qodef-search .qodef-search-form-field {
  margin: 0;
  padding-right: 50px;
}

.qodef-search .qodef-search-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  padding: 0;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: transparent;
  color: #0B0449;
}

.qodef-search .qodef-search-form-button:hover {
  color: var(--qode-main-color);
}

.qodef-search .qodef-search-form-button svg {
  display: block;
  width: 16px;
  height: auto;
}

.qodef-search article {
  margin-bottom: 30px;
}

.qodef-search article:last-child {
  margin-bottom: 0;
}

.qodef-search article .qodef-e-inner {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.qodef-search article .qodef-e-inner > * {
  width: 100%;
}

.qodef-search article .qodef-e-image {
  flex-basis: 180px;
  padding-right: 30px;
}

.qodef-search article .qodef-e-title {
  margin: 0;
}

.qodef-search article .qodef-e-excerpt {
  margin: 15px 0 0;
}

/* ==========================================================================
   Sidebar styles
   ========================================================================== */
#qodef-page-sidebar {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 60px;
}

#qodef-page-sidebar .wp-block-woocommerce-price-filter.qodef-filter-by-price .wc-block-components-price-slider__actions button {
  position: relative;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  letter-spacing: 0.200em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0B0449;
  padding: 0 !important;
  background-color: transparent;
  border: 0;
  border-bottom: 1px dashed;
  text-decoration: none;
  margin-top: 10px;
}

#qodef-page-sidebar .wp-block-woocommerce-price-filter.qodef-filter-by-price .wc-block-components-price-slider__actions button:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}

#qodef-page-sidebar .wp-block-woocommerce-price-filter.qodef-filter-by-price .wc-block-components-price-slider__actions button:after {
  display: inline-block;
  content: '';
  position: relative;
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4Ljg1NiIgaGVpZ2h0PSI4Ljg3NiIgdmlld0JveD0iMCAwIDguODU2IDguODc2Ij4NCiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTczLjg1NCAtMjA2NS45NzcpIj4NCiAgICA8cGF0aCBkPSJNLTEyMTAuNS0zNi4wNDZ2LTcuNDc3aC03LjU4OSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjQ1IDIxMTApIiBmaWxsPSJub25lIiBzdHJva2U9IiMwYjA0NDkiIHN0cm9rZS13aWR0aD0iMSIvPg0KICAgIDxsaW5lIHgxPSI4IiB5Mj0iOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU3My41IDIwNjYuNSkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzBiMDQ0OSIgc3Ryb2tlLXdpZHRoPSIxIi8+DQogIDwvZz4NCjwvc3ZnPg0K");
  background-repeat: no-repeat;
  margin-left: 10px;
}

#qodef-page-sidebar .wp-block-woocommerce-price-filter.qodef-filter-by-price .wc-block-components-price-slider__actions button:hover {
  color: var(--qode-main-color);
}

#qodef-page-sidebar .wp-block-woocommerce-price-filter.qodef-filter-by-price .wc-block-components-price-slider__actions button:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}

/* ==========================================================================
   SVG styles
   ========================================================================== */
.qodef-svg--menu {
  fill: none;
  stroke: currentColor;
}

.qodef-svg--search {
  fill: none;
  stroke: currentColor;
}

.qodef-svg--star {
  fill: currentColor;
  stroke: none;
}

.qodef-svg--menu-arrow {
  fill: none;
  stroke: currentColor;
}

.qodef-svg--slider-arrow-left,
.qodef-svg--slider-arrow-right {
  fill: none;
  stroke: currentColor;
  stroke-miterlimit: 10;
}

.qodef-svg--pagination-arrow-left path,
.qodef-svg--pagination-arrow-right path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.qodef-svg--arrow-down path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.qodef-svg--back-to-top g,
.qodef-svg--back-to-top path {
  fill: none;
  stroke: currentColor;
}

.qodef-svg--close {
  fill: none;
  stroke: currentColor;
}

.qodef-svg--cart-close {
  fill: currentColor;
  stroke: none;
}

.qodef-svg--spinner {
  fill: var(--qode-main-color);
  stroke: none;
}

.qodef-svg--link {
  fill: none;
  stroke: #484848;
}

.qodef-svg--drag-cursor circle {
  fill: #0B0449;
}

.qodef-svg--drag-cursor text {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  fill: #ffffff;
}

.qodef-svg--drag-cursor path {
  fill: #ffffff;
}

.qodef-svg--play circle {
  fill: currentColor;
  stroke: none;
}

.qodef-svg--plus line,
.qodef-svg--minus line {
  fill: none;
  stroke: currentColor;
}

/* ==========================================================================
   Title styles
   ========================================================================== */
.qodef-page-title {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  height: 360px;
  background-color: #FCF9F5;
}

.qodef-page-title .qodef-m-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  height: 100%;
}

.qodef-page-title .qodef-m-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qodef-page-title .qodef-m-title {
  margin: 0;
}

/* ==========================================================================
   Widgets static styles
   ========================================================================== */
.widget:last-child {
  margin-bottom: 0 !important;
}

.widget .qodef-widget-title a {
  color: inherit;
}

.widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered),
.widget ol:not(.qodef-shortcode-list):not(.select2-selection__rendered) {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li:last-child,
.widget ol:not(.qodef-shortcode-list):not(.select2-selection__rendered) li:last-child {
  margin-bottom: 0 !important;
}

.widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li ul,
.widget ol:not(.qodef-shortcode-list):not(.select2-selection__rendered) li ul {
  margin-left: 1em;
}

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

.widget .select2 {
  margin-bottom: 0;
}

.widget .wp-caption {
  color: inherit;
}

.widget .qodef-search-form-inner {
  align-items: stretch;
  display: flex;
  max-width: 100%;
  position: relative;
}

.widget .qodef-search-form-field {
  margin: 0;
}

.widget .qodef-search-form-button {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  padding: 0 1em;
}

.widget .qodef-search-form-button.qodef--has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  padding: 0;
  border: 0;
  height: initial;
  padding: 0;
}

.widget .qodef-search-form-button.qodef--has-icon svg {
  display: block;
  width: 16px;
  height: auto;
}

.widget .qodef-search-form-button.qodef--button-outside {
  margin-left: 1em;
}

.widget .qodef-search-form-button.qodef--button-inside {
  background-color: transparent !important;
  border: none !important;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.widget .tagcloud,
.widget .wp-block-tag-cloud {
  margin: 0 0 -11px 0;
}

.widget .tagcloud a,
.widget .wp-block-tag-cloud a {
  display: inline-block;
  font-family: inherit;
  font-size: 16px !important;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0 14px 8px 0;
  position: relative;
  text-transform: capitalize;
  vertical-align: top;
}

.widget.widget_calendar,
.widget .wp-block-calendar {
  width: 100%;
}

.widget.widget_calendar table,
.widget .wp-block-calendar table {
  table-layout: fixed;
}

.widget.widget_calendar caption,
.widget .wp-block-calendar caption {
  margin-bottom: 5px;
}

.widget.widget_calendar th,
.widget .wp-block-calendar th {
  background-color: transparent;
  font-weight: 600;
  padding: 5px 10px;
}

.widget.widget_calendar td,
.widget .wp-block-calendar td {
  padding: 5px 10px;
}

.widget.widget_calendar #today a,
.widget .wp-block-calendar #today a {
  color: inherit;
}

.widget.widget_calendar a,
.widget .wp-block-calendar a {
  text-decoration: none;
}

.widget.widget_calendar .wp-calendar-nav,
.widget .wp-block-calendar .wp-calendar-nav {
  margin: 5px 0 0 0;
  text-align: left;
}

.widget.widget_media_image {
  margin-bottom: 0;
}

.widget.widget_media_image a {
  display: inline-block;
  vertical-align: top;
}

.widget.widget_media_image img {
  display: block;
}

.widget.widget_custom_html {
  margin-bottom: 0;
}

.widget.widget_text img {
  display: block;
}

.widget.widget_nav_menu .qodef-menu-item-arrow {
  display: none;
}

.widget.widget_rss ul .rsswidget {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  display: block;
}

.widget.widget_rss ul .rssSummary {
  margin-top: 15px;
}

.widget.widget_rss ul li {
  margin: 0 0 23px !important;
}

.widget.widget_rss ul cite {
  display: block;
  margin-top: 8px;
}

.widget.widget_wellmont_core_title_widget {
  margin: 0;
}

.widget.widget_block .wp-block-columns,
.widget.widget_block .wp-block-group {
  margin: 0;
}

.widget.widget_block .wp-block-social-link {
  margin: 4px 8px 4px 0 !important;
}

.widget.widget_block .wp-block-social-link:last-child {
  margin-bottom: 4px !important;
}

.widget.widget_block .wp-block-latest-posts__featured-image {
  margin-bottom: 0.5em;
}

.widget.widget_block .wp-block-latest-posts__post-author, .widget.widget_block .wp-block-latest-posts__post-date {
  color: inherit;
}

.widget.widget_block .wp-block-rss__item-author, .widget.widget_block .wp-block-rss__item-publish-date {
  color: inherit;
}

.widget.widget_block .wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: auto;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: var(--qode-main-color);
  margin: 0;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  outline: none;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  padding: 15px 50px;
}

.widget h1:not([class*="qodef"]),
.widget h2:not([class*="qodef"]),
.widget h3:not([class*="qodef"]),
.widget h4:not([class*="qodef"]),
.widget h5:not([class*="qodef"]),
.widget h6:not([class*="qodef"]) {
  margin: 0;
}

.wp-block-page-list li,
.widget.widget_pages li,
.wp-block-archives-list li,
.widget.widget_archive li,
.widget.widget_meta li,
.widget.widget_nav_menu li,
.wp-block-categories li,
.widget.widget_categories li,
.widget.widget_layered_nav li,
.wc-block-product-categories li,
.wc-block-product-categories-list li,
.widget.widget_product_categories li,
.widget.widget_recent_comments li,
.widget.widget_recent_entries li {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
}

.wp-block-page-list li a,
.widget.widget_pages li a,
.wp-block-archives-list li a,
.widget.widget_archive li a,
.widget.widget_meta li a,
.widget.widget_nav_menu li a,
.wp-block-categories li a,
.widget.widget_categories li a,
.widget.widget_layered_nav li a,
.wc-block-product-categories li a,
.wc-block-product-categories-list li a,
.widget.widget_product_categories li a,
.widget.widget_recent_comments li a,
.widget.widget_recent_entries li a {
  color: #8C8BA4;
}

.wp-block-page-list li a:hover,
.widget.widget_pages li a:hover,
.wp-block-archives-list li a:hover,
.widget.widget_archive li a:hover,
.widget.widget_meta li a:hover,
.widget.widget_nav_menu li a:hover,
.wp-block-categories li a:hover,
.widget.widget_categories li a:hover,
.widget.widget_layered_nav li a:hover,
.wc-block-product-categories li a:hover,
.wc-block-product-categories-list li a:hover,
.widget.widget_product_categories li a:hover,
.widget.widget_recent_comments li a:hover,
.widget.widget_recent_entries li a:hover {
  color: #0B0449;
}

/* ==========================================================================
   Widgets variable styles
   ========================================================================== */
/* ==========================================================================
   Default widgets map
   ========================================================================== */
/* ==========================================================================
   Override default widgets map for specific widget area
   ========================================================================== */
.widget:not(.widget_wellmont_core_title_widget) {
  margin: 0 0 35px;
}

.widget .qodef-widget-title {
  margin: 0 0 10px;
}

.widget .qodef-widget-title a:hover {
  color: #8C8BA4;
}

.widget a {
  color: var(--qode-main-color);
}

.widget a:hover {
  color: #8C8BA4;
}

.widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li {
  margin: 0 0 13px;
}

.widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li ul {
  margin-top: 13px;
}

.widget[class*="_search"] .qodef-widget-title {
  margin-bottom: 17.5px;
}

.widget .qodef-search-form-button.qodef--button-inside {
  color: #0B0449;
}

.widget .qodef-search-form-button.qodef--button-inside:hover {
  color: #8C8BA4;
}

.widget .tagcloud a,
.widget .wp-block-tag-cloud a {
  color: var(--qode-main-color);
}

.widget .tagcloud a:hover,
.widget .wp-block-tag-cloud a:hover {
  color: #8C8BA4;
}

.widget.widget_calendar #today,
.widget .wp-block-calendar #today {
  color: #ffffff;
  background-color: #8C8BA4;
}

.widget.widget_calendar .wp-calendar-nav a,
.widget .wp-block-calendar .wp-calendar-nav a {
  color: var(--qode-main-color);
}

.widget.widget_calendar .wp-calendar-nav a:hover,
.widget .wp-block-calendar .wp-calendar-nav a:hover {
  color: #8C8BA4;
}

.widget.widget_media_gallery,
.widget .wp-block-gallery {
  margin-bottom: 30px !important;
}

.widget.widget_media_gallery .gallery,
.widget.widget_media_gallery .blocks-gallery-grid,
.widget .wp-block-gallery .gallery,
.widget .wp-block-gallery .blocks-gallery-grid {
  margin: 0 -5px !important;
}

.widget.widget_media_gallery .gallery-item,
.widget.widget_media_gallery .blocks-gallery-item,
.widget .wp-block-gallery .gallery-item,
.widget .wp-block-gallery .blocks-gallery-item {
  margin: 0 0 10px 0 !important;
  padding: 0 5px;
}

.widget.widget_media_image .qodef-widget-title {
  margin-bottom: 17.5px;
}

.widget.widget_block .wp-block-columns h1:not([class*="qodef"]),
.widget.widget_block .wp-block-columns h2:not([class*="qodef"]),
.widget.widget_block .wp-block-columns h3:not([class*="qodef"]),
.widget.widget_block .wp-block-columns h4:not([class*="qodef"]),
.widget.widget_block .wp-block-columns h5:not([class*="qodef"]),
.widget.widget_block .wp-block-columns h6:not([class*="qodef"]),
.widget.widget_block .wp-block-group h1:not([class*="qodef"]),
.widget.widget_block .wp-block-group h2:not([class*="qodef"]),
.widget.widget_block .wp-block-group h3:not([class*="qodef"]),
.widget.widget_block .wp-block-group h4:not([class*="qodef"]),
.widget.widget_block .wp-block-group h5:not([class*="qodef"]),
.widget.widget_block .wp-block-group h6:not([class*="qodef"]) {
  margin: 0 0 10px;
}

#qodef-top-area .widget:not(.widget_wellmont_core_title_widget) {
  margin: 0 0 0px;
  color: #9F9EB5;
}

#qodef-top-area .widget:not(.widget_wellmont_core_title_widget) h1:not([class*="qodef"]),
#qodef-top-area .widget:not(.widget_wellmont_core_title_widget) h2:not([class*="qodef"]),
#qodef-top-area .widget:not(.widget_wellmont_core_title_widget) h3:not([class*="qodef"]),
#qodef-top-area .widget:not(.widget_wellmont_core_title_widget) h4:not([class*="qodef"]),
#qodef-top-area .widget:not(.widget_wellmont_core_title_widget) h5:not([class*="qodef"]),
#qodef-top-area .widget:not(.widget_wellmont_core_title_widget) h6:not([class*="qodef"]) {
  color: #ffffff;
}

#qodef-top-area .widget .qodef-widget-title {
  margin: 0 0 10px;
  color: #ffffff;
}

#qodef-top-area .widget .qodef-widget-title a:hover {
  color: #ffffff;
}

#qodef-top-area .widget a {
  color: #9F9EB5;
}

#qodef-top-area .widget a:hover {
  color: #ffffff;
}

#qodef-top-area .widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li {
  margin: 0 0 13px;
}

#qodef-top-area .widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li ul {
  margin-top: 13px;
}

#qodef-top-area .widget[class*="_search"] .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-top-area .widget .qodef-search-form-button.qodef--button-inside {
  color: #0B0449;
}

#qodef-top-area .widget .qodef-search-form-button.qodef--button-inside:hover {
  color: #8C8BA4;
}

#qodef-top-area .widget .tagcloud a,
#qodef-top-area .widget .wp-block-tag-cloud a {
  color: #9F9EB5;
}

#qodef-top-area .widget .tagcloud a:hover,
#qodef-top-area .widget .wp-block-tag-cloud a:hover {
  color: #ffffff;
}

#qodef-top-area .widget.widget_calendar caption,
#qodef-top-area .widget .wp-block-calendar caption {
  color: #9F9EB5;
}

#qodef-top-area .widget.widget_calendar tbody,
#qodef-top-area .widget .wp-block-calendar tbody {
  color: #9F9EB5;
}

#qodef-top-area .widget.widget_calendar #today,
#qodef-top-area .widget .wp-block-calendar #today {
  color: #ffffff;
  background-color: #ffffff;
}

#qodef-top-area .widget.widget_calendar .wp-calendar-nav a,
#qodef-top-area .widget .wp-block-calendar .wp-calendar-nav a {
  color: #9F9EB5;
}

#qodef-top-area .widget.widget_calendar .wp-calendar-nav a:hover,
#qodef-top-area .widget .wp-block-calendar .wp-calendar-nav a:hover {
  color: #ffffff;
}

#qodef-top-area .widget.widget_media_gallery,
#qodef-top-area .widget .wp-block-gallery {
  margin-bottom: -5px !important;
}

#qodef-top-area .widget.widget_media_gallery .gallery,
#qodef-top-area .widget.widget_media_gallery .blocks-gallery-grid,
#qodef-top-area .widget .wp-block-gallery .gallery,
#qodef-top-area .widget .wp-block-gallery .blocks-gallery-grid {
  margin: 0 -5px !important;
}

#qodef-top-area .widget.widget_media_gallery .gallery-item,
#qodef-top-area .widget.widget_media_gallery .blocks-gallery-item,
#qodef-top-area .widget .wp-block-gallery .gallery-item,
#qodef-top-area .widget .wp-block-gallery .blocks-gallery-item {
  margin: 0 0 10px 0 !important;
  padding: 0 5px;
}

#qodef-top-area .widget.widget_media_image .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-top-area .widget.widget_block .wp-block-columns h1:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-columns h2:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-columns h3:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-columns h4:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-columns h5:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-columns h6:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-group h1:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-group h2:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-group h3:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-group h4:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-group h5:not([class*="qodef"]),
#qodef-top-area .widget.widget_block .wp-block-group h6:not([class*="qodef"]) {
  margin: 0 0 10px;
}

#qodef-page-footer .widget:not(.widget_wellmont_core_title_widget) {
  margin: 0 0 35px;
  color: #9F9EB5;
}

#qodef-page-footer .widget:not(.widget_wellmont_core_title_widget) h1:not([class*="qodef"]),
#qodef-page-footer .widget:not(.widget_wellmont_core_title_widget) h2:not([class*="qodef"]),
#qodef-page-footer .widget:not(.widget_wellmont_core_title_widget) h3:not([class*="qodef"]),
#qodef-page-footer .widget:not(.widget_wellmont_core_title_widget) h4:not([class*="qodef"]),
#qodef-page-footer .widget:not(.widget_wellmont_core_title_widget) h5:not([class*="qodef"]),
#qodef-page-footer .widget:not(.widget_wellmont_core_title_widget) h6:not([class*="qodef"]) {
  color: #ffffff;
}

#qodef-page-footer .widget .qodef-widget-title {
  margin: 0 0 10px;
  color: #ffffff;
}

#qodef-page-footer .widget .qodef-widget-title a:hover {
  color: #ffffff;
}

#qodef-page-footer .widget a {
  color: #9F9EB5;
}

#qodef-page-footer .widget a:hover {
  color: #ffffff;
}

#qodef-page-footer .widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li {
  margin: 0 0 13px;
}

#qodef-page-footer .widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li ul {
  margin-top: 13px;
}

#qodef-page-footer .widget button,
#qodef-page-footer .widget .button {
  color: var(--qode-main-color);
  background-color: #ffffff;
  border-color: #ffffff;
}

#qodef-page-footer .widget button:hover,
#qodef-page-footer .widget .button:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}

#qodef-page-footer .widget[class*="_search"] .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-page-footer .widget .qodef-search-form-button.qodef--button-inside {
  color: #ffffff;
}

#qodef-page-footer .widget .qodef-search-form-button.qodef--button-inside:hover {
  color: #ffffff;
}

#qodef-page-footer .widget .tagcloud a,
#qodef-page-footer .widget .wp-block-tag-cloud a {
  color: #9F9EB5;
}

#qodef-page-footer .widget .tagcloud a:hover,
#qodef-page-footer .widget .wp-block-tag-cloud a:hover {
  color: #ffffff;
}

#qodef-page-footer .widget.widget_calendar caption,
#qodef-page-footer .widget .wp-block-calendar caption {
  color: #9F9EB5;
}

#qodef-page-footer .widget.widget_calendar tbody,
#qodef-page-footer .widget .wp-block-calendar tbody {
  color: #9F9EB5;
}

#qodef-page-footer .widget.widget_calendar tr,
#qodef-page-footer .widget.widget_calendar th,
#qodef-page-footer .widget.widget_calendar td,
#qodef-page-footer .widget .wp-block-calendar tr,
#qodef-page-footer .widget .wp-block-calendar th,
#qodef-page-footer .widget .wp-block-calendar td {
  border-color: #ffffff;
}

#qodef-page-footer .widget.widget_calendar #today,
#qodef-page-footer .widget .wp-block-calendar #today {
  color: #000000;
  background-color: #ffffff;
}

#qodef-page-footer .widget.widget_calendar .wp-calendar-nav a,
#qodef-page-footer .widget .wp-block-calendar .wp-calendar-nav a {
  color: #9F9EB5;
}

#qodef-page-footer .widget.widget_calendar .wp-calendar-nav a:hover,
#qodef-page-footer .widget .wp-block-calendar .wp-calendar-nav a:hover {
  color: #ffffff;
}

#qodef-page-footer .widget.widget_media_gallery,
#qodef-page-footer .widget .wp-block-gallery {
  margin-bottom: 30px !important;
}

#qodef-page-footer .widget.widget_media_gallery .gallery,
#qodef-page-footer .widget.widget_media_gallery .blocks-gallery-grid,
#qodef-page-footer .widget .wp-block-gallery .gallery,
#qodef-page-footer .widget .wp-block-gallery .blocks-gallery-grid {
  margin: 0 -5px !important;
}

#qodef-page-footer .widget.widget_media_gallery .gallery-item,
#qodef-page-footer .widget.widget_media_gallery .blocks-gallery-item,
#qodef-page-footer .widget .wp-block-gallery .gallery-item,
#qodef-page-footer .widget .wp-block-gallery .blocks-gallery-item {
  margin: 0 0 10px 0 !important;
  padding: 0 5px;
}

#qodef-page-footer .widget.widget_media_image .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-page-footer .widget.widget_block .wp-block-columns h1:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-columns h2:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-columns h3:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-columns h4:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-columns h5:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-columns h6:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-group h1:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-group h2:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-group h3:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-group h4:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-group h5:not([class*="qodef"]),
#qodef-page-footer .widget.widget_block .wp-block-group h6:not([class*="qodef"]) {
  margin: 0 0 10px;
}

#qodef-page-footer .widget.widget_block .wp-block-button .wp-block-button__link {
  color: var(--qode-main-color);
  background-color: #ffffff;
  border-color: #ffffff;
}

#qodef-page-footer .widget.widget_block .wp-block-button .wp-block-button__link:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}

#qodef-side-area .widget:not(.widget_wellmont_core_title_widget) {
  margin: 0 0 35px;
  color: #8C8BA4;
}

#qodef-side-area .widget:not(.widget_wellmont_core_title_widget) h1:not([class*="qodef"]),
#qodef-side-area .widget:not(.widget_wellmont_core_title_widget) h2:not([class*="qodef"]),
#qodef-side-area .widget:not(.widget_wellmont_core_title_widget) h3:not([class*="qodef"]),
#qodef-side-area .widget:not(.widget_wellmont_core_title_widget) h4:not([class*="qodef"]),
#qodef-side-area .widget:not(.widget_wellmont_core_title_widget) h5:not([class*="qodef"]),
#qodef-side-area .widget:not(.widget_wellmont_core_title_widget) h6:not([class*="qodef"]) {
  color: #0B0449;
}

#qodef-side-area .widget .qodef-widget-title {
  margin: 0 0 10px;
  color: #0B0449;
}

#qodef-side-area .widget .qodef-widget-title a:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget a {
  color: #8C8BA4;
}

#qodef-side-area .widget a:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li {
  margin: 0 0 13px;
}

#qodef-side-area .widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li ul {
  margin-top: 13px;
}

#qodef-side-area .widget[class*="_search"] .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-side-area .widget .qodef-search-form-button.qodef--button-inside {
  color: #0B0449;
}

#qodef-side-area .widget .qodef-search-form-button.qodef--button-inside:hover {
  color: #8C8BA4;
}

#qodef-side-area .widget .tagcloud a,
#qodef-side-area .widget .wp-block-tag-cloud a {
  color: #8C8BA4;
}

#qodef-side-area .widget .tagcloud a:hover,
#qodef-side-area .widget .wp-block-tag-cloud a:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget.widget_calendar caption,
#qodef-side-area .widget .wp-block-calendar caption {
  color: #8C8BA4;
}

#qodef-side-area .widget.widget_calendar tbody,
#qodef-side-area .widget .wp-block-calendar tbody {
  color: #8C8BA4;
}

#qodef-side-area .widget.widget_calendar #today,
#qodef-side-area .widget .wp-block-calendar #today {
  color: #ffffff;
  background-color: var(--qode-main-color);
}

#qodef-side-area .widget.widget_calendar .wp-calendar-nav a,
#qodef-side-area .widget .wp-block-calendar .wp-calendar-nav a {
  color: #8C8BA4;
}

#qodef-side-area .widget.widget_calendar .wp-calendar-nav a:hover,
#qodef-side-area .widget .wp-block-calendar .wp-calendar-nav a:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget.widget_media_gallery,
#qodef-side-area .widget .wp-block-gallery {
  margin-bottom: 30px !important;
}

#qodef-side-area .widget.widget_media_gallery .gallery,
#qodef-side-area .widget.widget_media_gallery .blocks-gallery-grid,
#qodef-side-area .widget .wp-block-gallery .gallery,
#qodef-side-area .widget .wp-block-gallery .blocks-gallery-grid {
  margin: 0 -5px !important;
}

#qodef-side-area .widget.widget_media_gallery .gallery-item,
#qodef-side-area .widget.widget_media_gallery .blocks-gallery-item,
#qodef-side-area .widget .wp-block-gallery .gallery-item,
#qodef-side-area .widget .wp-block-gallery .blocks-gallery-item {
  margin: 0 0 10px 0 !important;
  padding: 0 5px;
}

#qodef-side-area .widget.widget_media_image .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-side-area .widget.widget_block .wp-block-columns h1:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-columns h2:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-columns h3:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-columns h4:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-columns h5:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-columns h6:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-group h1:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-group h2:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-group h3:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-group h4:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-group h5:not([class*="qodef"]),
#qodef-side-area .widget.widget_block .wp-block-group h6:not([class*="qodef"]) {
  margin: 0 0 10px;
}

.qodef-mega-menu-widget-holder .widget:not(.widget_wellmont_core_title_widget) {
  margin: 0 0 35px;
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget:not(.widget_wellmont_core_title_widget) h1:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget:not(.widget_wellmont_core_title_widget) h2:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget:not(.widget_wellmont_core_title_widget) h3:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget:not(.widget_wellmont_core_title_widget) h4:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget:not(.widget_wellmont_core_title_widget) h5:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget:not(.widget_wellmont_core_title_widget) h6:not([class*="qodef"]) {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget .qodef-widget-title {
  margin: 0 0 10px;
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget .qodef-widget-title a:hover {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget a {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget a:hover {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li {
  margin: 0 0 13px;
}

.qodef-mega-menu-widget-holder .widget ul:not(.qodef-shortcode-list):not(.select2-selection__rendered) li ul {
  margin-top: 13px;
}

.qodef-mega-menu-widget-holder .widget[class*="_search"] .qodef-widget-title {
  margin-bottom: 17.5px;
}

.qodef-mega-menu-widget-holder .widget .qodef-search-form-button.qodef--button-inside {
  color: #0B0449;
}

.qodef-mega-menu-widget-holder .widget .qodef-search-form-button.qodef--button-inside:hover {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget .tagcloud a,
.qodef-mega-menu-widget-holder .widget .wp-block-tag-cloud a {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget .tagcloud a:hover,
.qodef-mega-menu-widget-holder .widget .wp-block-tag-cloud a:hover {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget.widget_calendar caption,
.qodef-mega-menu-widget-holder .widget .wp-block-calendar caption {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget.widget_calendar tbody,
.qodef-mega-menu-widget-holder .widget .wp-block-calendar tbody {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget.widget_calendar #today,
.qodef-mega-menu-widget-holder .widget .wp-block-calendar #today {
  color: #ffffff;
  background-color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget.widget_calendar .wp-calendar-nav a,
.qodef-mega-menu-widget-holder .widget .wp-block-calendar .wp-calendar-nav a {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget.widget_calendar .wp-calendar-nav a:hover,
.qodef-mega-menu-widget-holder .widget .wp-block-calendar .wp-calendar-nav a:hover {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget.widget_media_gallery,
.qodef-mega-menu-widget-holder .widget .wp-block-gallery {
  margin-bottom: 30px !important;
}

.qodef-mega-menu-widget-holder .widget.widget_media_gallery .gallery,
.qodef-mega-menu-widget-holder .widget.widget_media_gallery .blocks-gallery-grid,
.qodef-mega-menu-widget-holder .widget .wp-block-gallery .gallery,
.qodef-mega-menu-widget-holder .widget .wp-block-gallery .blocks-gallery-grid {
  margin: 0 -5px !important;
}

.qodef-mega-menu-widget-holder .widget.widget_media_gallery .gallery-item,
.qodef-mega-menu-widget-holder .widget.widget_media_gallery .blocks-gallery-item,
.qodef-mega-menu-widget-holder .widget .wp-block-gallery .gallery-item,
.qodef-mega-menu-widget-holder .widget .wp-block-gallery .blocks-gallery-item {
  margin: 0 0 10px 0 !important;
  padding: 0 5px;
}

.qodef-mega-menu-widget-holder .widget.widget_media_image .qodef-widget-title {
  margin-bottom: 17.5px;
}

.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-columns h1:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-columns h2:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-columns h3:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-columns h4:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-columns h5:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-columns h6:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-group h1:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-group h2:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-group h3:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-group h4:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-group h5:not([class*="qodef"]),
.qodef-mega-menu-widget-holder .widget.widget_block .wp-block-group h6:not([class*="qodef"]) {
  margin: 0 0 10px;
}

/* ==========================================================================
   WooCommerce global styles
   ========================================================================== */
/* ==========================================================================
   WooCommerce mixins - start
   ========================================================================== */
/* ==========================================================================
   WooCommerce mixins - end
   ========================================================================== */
#qodef-woo-page .qodef-woo-product-mark,
.qodef-woo-shortcode .qodef-woo-product-mark,
#yith-quick-view-modal .qodef-woo-product-mark {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 23px 8px 29px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7em;
  color: #0B0449;
  background-color: #DFBEC3;
  z-index: 5;
}

#qodef-woo-page .qodef-woo-product-title,
.qodef-woo-shortcode .qodef-woo-product-title,
#yith-quick-view-modal .qodef-woo-product-title {
  margin: 0;
}

#qodef-woo-page .qodef-woo-ratings,
.qodef-woo-shortcode .qodef-woo-ratings,
#yith-quick-view-modal .qodef-woo-ratings {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  line-height: 1;
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-inner,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-inner,
#yith-quick-view-modal .qodef-woo-ratings .qodef-m-inner {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-star,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star,
#yith-quick-view-modal .qodef-woo-ratings .qodef-m-star {
  color: #DFBEC3;
  opacity: .5;
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-star svg,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star svg,
#yith-quick-view-modal .qodef-woo-ratings .qodef-m-star svg {
  display: inline-block;
  margin-right: .6em;
  width: 14px;
  height: auto;
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-star svg:last-child,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star svg:last-child,
#yith-quick-view-modal .qodef-woo-ratings .qodef-m-star svg:last-child {
  margin-right: 0;
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-star.qodef--active,
.qodef-woo-shortcode .qodef-woo-ratings .qodef-m-star.qodef--active,
#yith-quick-view-modal .qodef-woo-ratings .qodef-m-star.qodef--active {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
}

#qodef-woo-page .price,
.qodef-woo-shortcode .price,
#yith-quick-view-modal .price {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  margin: 3px 0 0;
}

#qodef-woo-page .price del,
.qodef-woo-shortcode .price del,
#yith-quick-view-modal .price del {
  margin-right: 10px;
}

#qodef-woo-page .price ins,
.qodef-woo-shortcode .price ins,
#yith-quick-view-modal .price ins {
  text-decoration: none;
}

#qodef-woo-page .button,
#qodef-woo-page .added_to_cart,
.qodef-woo-shortcode .button,
.qodef-woo-shortcode .added_to_cart,
#yith-quick-view-modal .button,
#yith-quick-view-modal .added_to_cart {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: auto;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: var(--qode-main-color);
  margin: 0;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  outline: none;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  padding: 15px 50px;
  cursor: pointer;
  z-index: 3;
  color: var(--qode-main-color);
  background-color: #DFBEC3;
  border: 1px solid transparent;
}

#qodef-woo-page .button:hover,
#qodef-woo-page .added_to_cart:hover,
.qodef-woo-shortcode .button:hover,
.qodef-woo-shortcode .added_to_cart:hover,
#yith-quick-view-modal .button:hover,
#yith-quick-view-modal .added_to_cart:hover {
  color: var(--qode-main-color);
  background-color: transparent;
  border-color: #DFBEC3;
}

#qodef-woo-page .button.added,
#qodef-woo-page .added_to_cart.added,
.qodef-woo-shortcode .button.added,
.qodef-woo-shortcode .added_to_cart.added,
#yith-quick-view-modal .button.added,
#yith-quick-view-modal .added_to_cart.added {
  display: none;
}

#qodef-woo-page .quantity {
  white-space: nowrap;
}

#qodef-woo-page .quantity input[type="number"] {
  width: 60px;
  margin: 0;
  padding: 12px 10px;
  text-align: center;
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  padding: 20px 30px;
  margin-bottom: 30px;
  border: 1px solid #C5C5C5;
  list-style: none;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  margin-top: 12px;
}

.woocommerce-page div.woocommerce .shop_table tr {
  border-left: none;
  border-right: none;
  border-top: none;
}

.woocommerce-page div.woocommerce .shop_table th, .woocommerce-page div.woocommerce .shop_table td {
  padding: 15px 0 15px 15px;
  vertical-align: middle;
  text-align: left;
  border: 0;
}

.woocommerce-page div.woocommerce .shop_table th:first-child, .woocommerce-page div.woocommerce .shop_table td:first-child {
  padding-left: 0;
}

.woocommerce-page div.woocommerce .shop_table th {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 400;
  color: #0B0449;
}

.woocommerce-page div.woocommerce .shop_table td ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-page div.woocommerce .shop_table td ul li {
  margin: 0 0 10px;
  padding: 0;
}

.woocommerce-page div.woocommerce .shop_table td ul li:last-child {
  margin-bottom: 0;
}

.woocommerce-page div.woocommerce .shop_table td ul li label {
  margin-bottom: 0;
}

.woocommerce-page div.woocommerce .shop_table p {
  margin: 0;
}

.woocommerce-page div.woocommerce .shop_table .variation:before, .woocommerce-page div.woocommerce .shop_table .variation:after {
  content: '';
  display: table;
  table-layout: fixed;
}

.woocommerce-page div.woocommerce .shop_table .variation:after {
  clear: both;
}

.woocommerce-page div.woocommerce .shop_table .variation dt {
  clear: left;
  float: left;
  font-weight: initial;
}

@media only screen and (max-width: 680px) {
  .woocommerce-page div.woocommerce .shop_table .variation dt {
    float: none;
    width: 100%;
  }
}

.woocommerce-page div.woocommerce .shop_table .variation dd {
  clear: right;
  float: left;
  margin: 0 0 0 5px;
}

@media only screen and (max-width: 680px) {
  .woocommerce-page div.woocommerce .shop_table .variation dd {
    float: none;
    margin: 0;
    width: 100%;
  }
}

.woocommerce-page div.woocommerce .col2-set {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 0 -30px;
}

.woocommerce-page div.woocommerce .col2-set > * {
  width: 100%;
  padding: 0 30px;
  margin-bottom: 60px;
}

.woocommerce-page div.woocommerce address {
  font-style: normal;
}

.woocommerce-page div.woocommerce address p {
  margin: 0;
}

.woocommerce-page div.woocommerce form p {
  margin: 0;
}

.woocommerce-page .pswp__counter,
.woocommerce-page .pswp__caption__center {
  color: #fff;
}

/* ==========================================================================
   WooCommerce cart styles
   ========================================================================== */
#qodef-woo-page.qodef--cart .shop_table th.product-remove,
#qodef-woo-page.qodef--cart .shop_table td.product-remove,
.yith-wcwl-form .shop_table th.product-remove,
.yith-wcwl-form .shop_table td.product-remove {
  width: 30px;
}

#qodef-woo-page.qodef--cart .shop_table th.product-remove a,
#qodef-woo-page.qodef--cart .shop_table td.product-remove a,
.yith-wcwl-form .shop_table th.product-remove a,
.yith-wcwl-form .shop_table td.product-remove a {
  font-size: 20px;
}

#qodef-woo-page.qodef--cart .shop_table th.product-thumbnail,
#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail,
.yith-wcwl-form .shop_table th.product-thumbnail,
.yith-wcwl-form .shop_table td.product-thumbnail {
  width: 72px;
  padding-left: 0;
}

#qodef-woo-page.qodef--cart .shop_table th.product-thumbnail a, #qodef-woo-page.qodef--cart .shop_table th.product-thumbnail img,
#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail a,
#qodef-woo-page.qodef--cart .shop_table td.product-thumbnail img,
.yith-wcwl-form .shop_table th.product-thumbnail a,
.yith-wcwl-form .shop_table th.product-thumbnail img,
.yith-wcwl-form .shop_table td.product-thumbnail a,
.yith-wcwl-form .shop_table td.product-thumbnail img {
  display: block;
  width: 100%;
  max-width: 100%;
}

#qodef-woo-page.qodef--cart .shop_table th.product-name,
#qodef-woo-page.qodef--cart .shop_table td.product-name,
.yith-wcwl-form .shop_table th.product-name,
.yith-wcwl-form .shop_table td.product-name {
  text-align: left;
}

#qodef-woo-page.qodef--cart .shop_table th.product-name a,
#qodef-woo-page.qodef--cart .shop_table td.product-name a,
.yith-wcwl-form .shop_table th.product-name a,
.yith-wcwl-form .shop_table td.product-name a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.3em;
}

#qodef-woo-page.qodef--cart .shop_table th.product-quantity input[type="number"],
#qodef-woo-page.qodef--cart .shop_table td.product-quantity input[type="number"],
.yith-wcwl-form .shop_table th.product-quantity input[type="number"],
.yith-wcwl-form .shop_table td.product-quantity input[type="number"] {
  margin: 0;
}

#qodef-woo-page.qodef--cart .shop_table th.actions,
#qodef-woo-page.qodef--cart .shop_table td.actions,
.yith-wcwl-form .shop_table th.actions,
.yith-wcwl-form .shop_table td.actions {
  padding: 30px 0 0;
  text-align: initial;
}

#qodef-woo-page.qodef--cart .shop_table th.actions .coupon,
#qodef-woo-page.qodef--cart .shop_table td.actions .coupon,
.yith-wcwl-form .shop_table th.actions .coupon,
.yith-wcwl-form .shop_table td.actions .coupon {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 70%;
  float: left;
}

#qodef-woo-page.qodef--cart .shop_table th.actions .coupon > *,
#qodef-woo-page.qodef--cart .shop_table td.actions .coupon > *,
.yith-wcwl-form .shop_table th.actions .coupon > *,
.yith-wcwl-form .shop_table td.actions .coupon > * {
  margin-bottom: 0;
}

#qodef-woo-page.qodef--cart .shop_table th.actions label,
#qodef-woo-page.qodef--cart .shop_table td.actions label,
.yith-wcwl-form .shop_table th.actions label,
.yith-wcwl-form .shop_table td.actions label {
  display: none;
}

#qodef-woo-page.qodef--cart .shop_table th.actions input[type="text"],
#qodef-woo-page.qodef--cart .shop_table td.actions input[type="text"],
.yith-wcwl-form .shop_table th.actions input[type="text"],
.yith-wcwl-form .shop_table td.actions input[type="text"] {
  width: auto;
  margin-right: 20px;
}

#qodef-woo-page.qodef--cart .shop_table th.actions > .button,
#qodef-woo-page.qodef--cart .shop_table td.actions > .button,
.yith-wcwl-form .shop_table th.actions > .button,
.yith-wcwl-form .shop_table td.actions > .button {
  float: right;
}

#qodef-woo-page.qodef--cart .shop_table.cart tbody > tr:last-child,
.yith-wcwl-form .shop_table.cart tbody > tr:last-child {
  border-bottom: 0;
}

#qodef-woo-page.qodef--cart .cart-collaterals .shop_table th,
.yith-wcwl-form .cart-collaterals .shop_table th {
  width: 20%;
}

#qodef-woo-page.qodef--cart .cross-sells,
#qodef-woo-page.qodef--cart .cart_totals,
.yith-wcwl-form .cross-sells,
.yith-wcwl-form .cart_totals {
  margin-top: 83px;
}

#qodef-woo-page.qodef--cart .cross-sells > h2,
#qodef-woo-page.qodef--cart .cart_totals > h2,
.yith-wcwl-form .cross-sells > h2,
.yith-wcwl-form .cart_totals > h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 36px;
  line-height: 1.27778em;
  margin: 0 0 13px;
}

#qodef-woo-page.qodef--cart .shipping-calculator-form select,
.yith-wcwl-form .shipping-calculator-form select {
  width: auto;
  min-width: 100%;
  margin: 0;
}

#qodef-woo-page.qodef--cart .wc-proceed-to-checkout,
.yith-wcwl-form .wc-proceed-to-checkout {
  margin-top: 20px;
}

.woocommerce-page div.woocommerce > .cart-empty {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 46px;
  line-height: 1.17391em;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: none;
}

.woocommerce-page div.woocommerce > .return-to-shop {
  margin: 20px 0 0;
  text-align: center;
}

.woocommerce-page div.woocommerce > .return-to-shop a {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: auto;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: var(--qode-main-color);
  margin: 0;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  outline: none;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  padding: 15px 50px;
  cursor: pointer;
  z-index: 3;
  color: var(--qode-main-color);
  background-color: #DFBEC3;
  border: 1px solid transparent;
}

.woocommerce-page div.woocommerce > .return-to-shop a:hover {
  color: var(--qode-main-color);
  background-color: transparent;
  border-color: #DFBEC3;
}

/* ==========================================================================
   WooCommerce checkout styles
   ========================================================================== */
#qodef-woo-page.qodef--checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  flex-direction: column;
}

#qodef-woo-page.qodef--checkout .woocommerce-form-coupon > p {
  margin-bottom: 10px;
}

#qodef-woo-page.qodef--checkout .woocommerce-checkout {
  margin-top: 40px;
}

#qodef-woo-page.qodef--checkout #customer_details h3 {
  margin: 0 0 20px;
}

#qodef-woo-page.qodef--checkout #order_review_heading {
  margin: 0 0 20px;
}

#qodef-woo-page.qodef--checkout .woocommerce-checkout-payment {
  margin-top: 30px;
}

#qodef-woo-page.qodef--checkout .woocommerce-checkout-payment .place-order {
  margin-top: 30px;
}

#qodef-woo-page.qodef--checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 15px;
}

#qodef-woo-page.qodef--checkout .wc_payment_methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

#qodef-woo-page.qodef--checkout .wc_payment_methods li {
  position: relative;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #C5C5C5;
}

#qodef-woo-page.qodef--checkout .wc_payment_methods li p {
  margin: 0;
}

#qodef-woo-page.qodef--checkout .wc_payment_methods li {
  padding-left: 25px;
  padding-right: 25px;
}

#qodef-woo-page.qodef--checkout .wc_payment_methods .input-radio {
  position: absolute;
  top: 18px;
  left: 0;
  margin: 0;
}

#qodef-woo-page.qodef--checkout .wc_payment_methods label {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
  margin: 0;
  cursor: pointer;
}

#qodef-woo-page.qodef--checkout .wc_payment_method:not(.payment_method_paypal) p {
  margin: 10px 0 0 0;
}

#qodef-woo-page.qodef--checkout .wc_payment_method.payment_method_paypal .input-radio {
  top: 61px;
}

#qodef-woo-page.qodef--checkout .wc_payment_method.payment_method_paypal label img {
  margin: 0 15px 0 10px;
}

/* ==========================================================================
   WooCommerce my account styles
   ========================================================================== */
.woocommerce-account .woocommerce-MyAccount-navigation {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 30%;
  float: left;
  padding-right: 50px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  position: relative;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #C5C5C5;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li p {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: #0B0449;
  letter-spacing: .2em;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  left: -10px;
  height: 5px;
  width: 5px;
  background: currentColor;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before {
  top: calc(50% - 1px);
  left: -11px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--qode-main-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:before {
  opacity: 1;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--qode-main-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:before {
  opacity: 1;
}

.woocommerce-account .woocommerce-MyAccount-content {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 70%;
  float: left;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message--info.woocommerce-message,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-info,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message--info.woocommerce-message .woocommerce-Button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-info .woocommerce-Button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error .woocommerce-Button {
  margin: 0;
}

@media only screen and (max-width: 680px) {
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message--info.woocommerce-message,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-info,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 20px;
  }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message--info.woocommerce-message .woocommerce-Button,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message.woocommerce-info .woocommerce-Button,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-error .woocommerce-Button {
    margin-top: 10px;
  }
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order-details {
  margin: 30px 0 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details {
  margin: 48px 0 0;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 36px;
  line-height: 1.27778em;
  margin: 0 0 20px;
}

.woocommerce-account .woocommerce-MyAccount-content .order-again {
  margin: 30px 0 0;
}

.woocommerce-account .button {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: auto;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: var(--qode-main-color);
  margin: 0;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  outline: none;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  padding: 15px 50px;
  cursor: pointer;
  z-index: 3;
  color: var(--qode-main-color);
  background-color: #DFBEC3;
  border: 1px solid transparent;
}

.woocommerce-account .button:hover {
  color: var(--qode-main-color);
  background-color: transparent;
  border-color: #DFBEC3;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox {
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword {
  margin-top: 10px;
}

.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword a {
  text-decoration: underline;
}

.woocommerce-account .woocommerce-form-login button {
  display: block;
  margin-top: 10px;
}

.woocommerce-account .woocommerce-form-login p.form-row:not(.woocommerce-form-row) {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-row--wide {
  width: 600px;
}

.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text {
  margin-bottom: 31px;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset {
  padding: 0;
  margin: 0;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
  display: none;
}

.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row {
  margin: 0 0 10px;
}

.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row input[type="text"] {
  margin: 0;
}

/* ==========================================================================
   WooCommerce order received styles
   ========================================================================== */
.woocommerce-order-received .woocommerce-order .woocommerce-thankyou-order-received {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 36px;
  line-height: 1.27778em;
  margin: 0 0 20px;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-overview {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-overview li {
  position: relative;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #C5C5C5;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-overview li p {
  margin: 0;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-details {
  margin-top: 40px;
}

.woocommerce-order-received .woocommerce-order h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 36px;
  line-height: 1.27778em;
  margin: 0 0 20px;
}

.woocommerce-order-received .woocommerce-order .woocommerce-customer-details {
  margin-top: 50px;
}

/* ==========================================================================
   WooCommerce pagination styles
   ========================================================================== */
#qodef-woo-page .woocommerce-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 67px;
}

#qodef-woo-page .woocommerce-pagination .page-numbers {
  position: relative;
  margin: 0 16px;
  padding: 0 3px;
  color: #8C8BA4;
}

#qodef-woo-page .woocommerce-pagination .page-numbers * {
  display: block;
  line-height: inherit;
}

#qodef-woo-page .woocommerce-pagination .page-numbers:first-child {
  margin-left: 0;
}

#qodef-woo-page .woocommerce-pagination .page-numbers:last-child {
  margin-right: 0;
}

#qodef-woo-page .woocommerce-pagination .page-numbers.prev, #qodef-woo-page .woocommerce-pagination .page-numbers.next {
  position: absolute;
  margin: 0;
  padding: 0;
  color: var(--qode-main-color);
}

#qodef-woo-page .woocommerce-pagination .page-numbers.prev svg, #qodef-woo-page .woocommerce-pagination .page-numbers.next svg {
  position: relative;
  display: block;
  width: 12px;
  height: auto;
  transform: translateX(0);
  transition: transform .3s ease-in-out;
}

#qodef-woo-page .woocommerce-pagination .page-numbers.prev {
  left: 0;
}

#qodef-woo-page .woocommerce-pagination .page-numbers.prev:hover svg {
  transform: translateX(-3px);
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next {
  right: 0;
}

#qodef-woo-page .woocommerce-pagination .page-numbers.next:hover svg {
  transform: translateX(3px);
}

#qodef-woo-page .woocommerce-pagination .page-numbers:hover, #qodef-woo-page .woocommerce-pagination .page-numbers.current {
  color: var(--qode-main-color);
}

@media only screen and (max-width: 1024px) {
  #qodef-woo-page .woocommerce-pagination {
    margin-bottom: 104px;
  }
}

/* ==========================================================================
   WooCommerce product list styles
   ========================================================================== */
.qodef-woo-product-list .qodef-e-inner,
.qodef-woo-product-list .qodef-e-media,
.qodef-woo-product-list .qodef-e-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.qodef-woo-product-list .qodef-e-media > .woocommerce-LoopProduct-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.qodef-woo-product-list .qodef-e-media-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.qodef-woo-product-list .qodef-e-media-image a, .qodef-woo-product-list .qodef-e-media-image img {
  display: block;
  width: 100%;
}

.qodef-woo-product-list .qodef-e-content {
  margin: 22px 0 48px;
  text-align: center;
}

.qodef-woo-product-list .qodef-woo-product-title {
  transition: color 0.3s ease-out;
}

.qodef-woo-product-list .qodef-e-top-holder {
  margin-bottom: 2px;
}

.qodef-woo-product-list .price {
  justify-content: center;
  margin: 8px 0 0 !important;
}

.qodef-woo-product-list .qodef-woo-ratings {
  margin-top: 9px;
}

.qodef-woo-product-list .qodef-e-media-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 20px;
  background-color: #FCF9F5;
  text-align: center;
  opacity: 0;
  transition: opacity .6s ease;
}

.qodef-woo-product-list .qodef-e-media-inner a {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, opacity 0.6s ease, transform 0.6s ease;
}

.qodef-woo-product-list select {
  min-width: 50%;
}

.qodef-woo-product-list .select2 {
  margin: 0;
}

.qodef-woo-product-list ul.products {
  --qode-columns: 3;
  --qode-columns-gap: 30px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--qode-columns), minmax(0, 1fr));
  gap: var(--qode-columns-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.qodef-woo-product-list ul.products.columns-1 {
  --qode-columns: 1;
}

.qodef-woo-product-list ul.products.columns-2 {
  --qode-columns: 2;
}

.qodef-woo-product-list ul.products.columns-3 {
  --qode-columns: 3;
}

.qodef-woo-product-list ul.products.columns-4 {
  --qode-columns: 4;
}

.qodef-woo-product-list ul.products.columns-5 {
  --qode-columns: 5;
}

.qodef-woo-product-list ul.products.columns-6 {
  --qode-columns: 6;
}

.qodef-woo-product-list ul.products.columns-7 {
  --qode-columns: 7;
}

.qodef-woo-product-list ul.products.columns-8 {
  --qode-columns: 8;
}

.qodef-woo-product-list ul.products.columns-9 {
  --qode-columns: 9;
}

.qodef-woo-product-list ul.products.columns-10 {
  --qode-columns: 10;
}

.qodef-woo-product-list.qodef-gutter--no ul.products {
  --qode-columns-gap: 0px;
}

.qodef-woo-product-list.qodef-gutter--tiny ul.products {
  --qode-columns-gap: 10px;
}

.qodef-woo-product-list.qodef-gutter--small ul.products {
  --qode-columns-gap: 20px;
}

.qodef-woo-product-list.qodef-gutter--normal ul.products {
  --qode-columns-gap: 30px;
}

.qodef-woo-product-list.qodef-gutter--medium ul.products {
  --qode-columns-gap: 40px;
}

.qodef-woo-product-list.qodef-gutter--large ul.products {
  --qode-columns-gap: 50px;
}

.qodef-woo-product-list.qodef-gutter--huge ul.products {
  --qode-columns-gap: 80px;
}

.qodef-woo-product-list .qodef-e-inner > .woocommerce-LoopProduct-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.touchevents .qodef-woo-product-list .qodef-e-inner {
  cursor: pointer;
}

.qodef-woo-product-list .qodef-e-inner:hover .qodef-e-media-inner {
  opacity: 1;
}

.qodef-woo-product-list .qodef-e-inner:hover .qodef-e-media-inner a {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   WooCommerce quantity input styles
   ========================================================================== */
#qodef-woo-page .qodef-quantity-buttons,
#yith-quick-view-modal .qodef-quantity-buttons {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-input,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-minus,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-plus {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  font-family: inherit;
  font-weight: 400;
  text-align: center;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #0B0449;
  background-color: #fff;
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-input {
  position: relative;
  height: 48px;
  width: 48px;
  padding: 0;
  margin: 0 17px;
  font-family: inherit;
  line-height: 48px;
  outline: 0;
  border: 1px solid #C5C5C5;
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input[type=number]::-webkit-inner-spin-button, #qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input[type=number]::-webkit-outer-spin-button,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-input[type=number]::-webkit-inner-spin-button,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-minus,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-plus {
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease-out;
}

#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus:hover,
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus:hover,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-minus:hover,
#yith-quick-view-modal .qodef-quantity-buttons .qodef-quantity-plus:hover {
  color: var(--qode-main-color);
}

/* ==========================================================================
   WooCommerce results and ordering styles
   ========================================================================== */
.qodef-woo-results {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.qodef-woo-results .woocommerce-ordering {
  margin-left: auto;
}

.qodef-woo-results .woocommerce-ordering select {
  width: auto;
  min-width: 225px;
  margin: 0;
}

.qodef-woo-results .woocommerce-ordering .select2-container--default {
  position: relative;
  top: 1px;
  margin: 0;
}

.qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection--single {
  padding: 11px 15px;
  border-color: transparent !important;
}

.qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 16px;
}

@media only screen and (max-width: 680px) {
  .qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection--single {
    padding-left: 0;
    margin-top: -10px;
  }
}

/* ==========================================================================
   WooCommerce single styles
   ========================================================================== */
#qodef-woo-page.qodef--single > .product,
#yith-quick-view-content.single-product > .product {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

#qodef-woo-page.qodef--single .qodef-woo-single-inner,
#yith-quick-view-content.single-product .qodef-woo-single-inner {
  position: relative;
  display: grid;
  grid-template-columns: 49% 1fr;
  gap: 70px;
}

#qodef-woo-page.qodef--single .qodef-woo-single-image,
#yith-quick-view-content.single-product .qodef-woo-single-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

#qodef-woo-page.qodef--single .qodef-woo-single-image .zoomImg,
#yith-quick-view-content.single-product .qodef-woo-single-image .zoomImg {
  cursor: crosshair;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery,
#yith-quick-view-content.single-product .woocommerce-product-gallery {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery figure,
#yith-quick-view-content.single-product .woocommerce-product-gallery figure {
  position: relative;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery figure a, #qodef-woo-page.qodef--single .woocommerce-product-gallery figure img,
#yith-quick-view-content.single-product .woocommerce-product-gallery figure a,
#yith-quick-view-content.single-product .woocommerce-product-gallery figure img {
  display: block;
  width: 100%;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery figure > .woocommerce-product-gallery__image,
#yith-quick-view-content.single-product .woocommerce-product-gallery figure > .woocommerce-product-gallery__image {
  position: relative;
  width: 100% !important;
  overflow: hidden;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery figure > .qodef-woo-thumbnails-wrapper {
  display: grid;
  gap: 20px;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery .woocommerce-product-gallery__trigger,
#yith-quick-view-content.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  z-index: 5;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-1 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-1 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-6 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-6 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-7 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-7 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-8 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-8 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-9 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-9 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-10 figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-10 figure > .qodef-woo-thumbnails-wrapper {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left .woocommerce-product-gallery__trigger,
#yith-quick-view-content.single-product .woocommerce-product-gallery.qodef-position--left .woocommerce-product-gallery__trigger {
  left: calc(28% + 20px + 10px);
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure,
#yith-quick-view-content.single-product .woocommerce-product-gallery.qodef-position--left figure {
  display: flex;
  flex-direction: row-reverse;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure a, #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure img,
#yith-quick-view-content.single-product .woocommerce-product-gallery.qodef-position--left figure a,
#yith-quick-view-content.single-product .woocommerce-product-gallery.qodef-position--left figure img {
  height: 100%;
  object-fit: cover;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image,
#yith-quick-view-content.single-product .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image {
  width: calc(100% - 28%) !important;
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper {
  flex-shrink: 0;
  width: 28%;
  margin-right: 20px;
}

@media (min-width: 681px) {
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper,
  #yith-quick-view-content.single-product .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--below figure > .qodef-woo-thumbnails-wrapper,
#yith-quick-view-content.single-product .woocommerce-product-gallery.qodef-position--below figure > .qodef-woo-thumbnails-wrapper {
  margin-top: 20px;
}

#qodef-woo-page.qodef--single .entry-summary,
#yith-quick-view-content.single-product .entry-summary {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

#qodef-woo-page.qodef--single .entry-summary .price,
#yith-quick-view-content.single-product .entry-summary .price {
  margin-top: 14px;
  font-size: 18px;
  color: #0B0449;
}

#qodef-woo-page.qodef--single .entry-summary .yith-wcwl-add-to-wishlist,
#yith-quick-view-content.single-product .entry-summary .yith-wcwl-add-to-wishlist {
  margin: 30px 0 0 !important;
  display: inline-block;
}

#qodef-woo-page.qodef--single .woocommerce-product-rating,
#yith-quick-view-content.single-product .woocommerce-product-rating {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 18px;
}

#qodef-woo-page.qodef--single .woocommerce-product-rating .qodef-woo-ratings,
#yith-quick-view-content.single-product .woocommerce-product-rating .qodef-woo-ratings {
  flex-shrink: 0;
  width: auto;
  margin-right: 20px;
}

#qodef-woo-page.qodef--single .woocommerce-product-rating .woocommerce-review-link,
#yith-quick-view-content.single-product .woocommerce-product-rating .woocommerce-review-link {
  color: #8C8BA4;
}

#qodef-woo-page.qodef--single .woocommerce-product-rating .woocommerce-review-link:hover,
#yith-quick-view-content.single-product .woocommerce-product-rating .woocommerce-review-link:hover {
  color: #0B0449;
}

#qodef-woo-page.qodef--single .woocommerce-product-details__short-description,
#yith-quick-view-content.single-product .woocommerce-product-details__short-description {
  margin-top: 37px;
}

#qodef-woo-page.qodef--single .woocommerce-product-details__short-description p,
#yith-quick-view-content.single-product .woocommerce-product-details__short-description p {
  margin-top: 0;
}

#qodef-woo-page.qodef--single .woocommerce-product-details__short-description p:last-child,
#yith-quick-view-content.single-product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

#qodef-woo-page.qodef--single form.cart,
#yith-quick-view-content.single-product form.cart {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 45px;
}

#qodef-woo-page.qodef--single form.cart:not(.variations_form),
#qodef-woo-page.qodef--single form.cart .variations_button,
#yith-quick-view-content.single-product form.cart:not(.variations_form),
#yith-quick-view-content.single-product form.cart .variations_button {
  display: flex;
  align-items: flex-start;
}

#qodef-woo-page.qodef--single form.cart:not(.variations_form) .quantity,
#qodef-woo-page.qodef--single form.cart .variations_button .quantity,
#yith-quick-view-content.single-product form.cart:not(.variations_form) .quantity,
#yith-quick-view-content.single-product form.cart .variations_button .quantity {
  margin-right: 31px;
}

@media only screen and (max-width: 480px) {
  #qodef-woo-page.qodef--single form.cart:not(.variations_form) .quantity,
  #qodef-woo-page.qodef--single form.cart .variations_button .quantity,
  #yith-quick-view-content.single-product form.cart:not(.variations_form) .quantity,
  #yith-quick-view-content.single-product form.cart .variations_button .quantity {
    margin-right: 15px;
  }
}

#qodef-woo-page.qodef--single form.cart:not(.variations_form) .quantity.hidden,
#qodef-woo-page.qodef--single form.cart .variations_button .quantity.hidden,
#yith-quick-view-content.single-product form.cart:not(.variations_form) .quantity.hidden,
#yith-quick-view-content.single-product form.cart .variations_button .quantity.hidden {
  margin: 0 !important;
}

#qodef-woo-page.qodef--single form.cart.grouped_form,
#yith-quick-view-content.single-product form.cart.grouped_form {
  flex-wrap: wrap;
}

#qodef-woo-page.qodef--single form.cart.grouped_form .group_table th, #qodef-woo-page.qodef--single form.cart.grouped_form .group_table td,
#yith-quick-view-content.single-product form.cart.grouped_form .group_table th,
#yith-quick-view-content.single-product form.cart.grouped_form .group_table td {
  padding: 20px 0;
  vertical-align: middle;
  text-align: left;
}

#qodef-woo-page.qodef--single form.cart.grouped_form .group_table label,
#yith-quick-view-content.single-product form.cart.grouped_form .group_table label {
  margin-bottom: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
}

#qodef-woo-page.qodef--single form.cart.grouped_form > .button,
#yith-quick-view-content.single-product form.cart.grouped_form > .button {
  margin-top: 30px;
}

#qodef-woo-page.qodef--single form.cart .group_table tr,
#yith-quick-view-content.single-product form.cart .group_table tr {
  border-left: none;
  border-right: none;
  border-top: none;
}

#qodef-woo-page.qodef--single form.cart .group_table th, #qodef-woo-page.qodef--single form.cart .group_table td,
#yith-quick-view-content.single-product form.cart .group_table th,
#yith-quick-view-content.single-product form.cart .group_table td {
  padding: 15px 0 15px 15px;
  vertical-align: middle;
  text-align: left;
  border: 0;
}

#qodef-woo-page.qodef--single form.cart .group_table th:first-child, #qodef-woo-page.qodef--single form.cart .group_table td:first-child,
#yith-quick-view-content.single-product form.cart .group_table th:first-child,
#yith-quick-view-content.single-product form.cart .group_table td:first-child {
  padding-left: 0;
}

#qodef-woo-page.qodef--single form.cart .group_table th,
#yith-quick-view-content.single-product form.cart .group_table th {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 400;
  color: #0B0449;
}

#qodef-woo-page.qodef--single form.cart .group_table td ul,
#yith-quick-view-content.single-product form.cart .group_table td ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#qodef-woo-page.qodef--single form.cart .group_table td ul li,
#yith-quick-view-content.single-product form.cart .group_table td ul li {
  margin: 0 0 10px;
  padding: 0;
}

#qodef-woo-page.qodef--single form.cart .group_table td ul li:last-child,
#yith-quick-view-content.single-product form.cart .group_table td ul li:last-child {
  margin-bottom: 0;
}

#qodef-woo-page.qodef--single form.cart .group_table td ul li label,
#yith-quick-view-content.single-product form.cart .group_table td ul li label {
  margin-bottom: 0;
}

#qodef-woo-page.qodef--single form.cart .group_table p,
#yith-quick-view-content.single-product form.cart .group_table p {
  margin: 0;
}

#qodef-woo-page.qodef--single form.cart .group_table .variation:before, #qodef-woo-page.qodef--single form.cart .group_table .variation:after,
#yith-quick-view-content.single-product form.cart .group_table .variation:before,
#yith-quick-view-content.single-product form.cart .group_table .variation:after {
  content: '';
  display: table;
  table-layout: fixed;
}

#qodef-woo-page.qodef--single form.cart .group_table .variation:after,
#yith-quick-view-content.single-product form.cart .group_table .variation:after {
  clear: both;
}

#qodef-woo-page.qodef--single form.cart .group_table .variation dt,
#yith-quick-view-content.single-product form.cart .group_table .variation dt {
  clear: left;
  float: left;
  font-weight: initial;
}

@media only screen and (max-width: 680px) {
  #qodef-woo-page.qodef--single form.cart .group_table .variation dt,
  #yith-quick-view-content.single-product form.cart .group_table .variation dt {
    float: none;
    width: 100%;
  }
}

#qodef-woo-page.qodef--single form.cart .group_table .variation dd,
#yith-quick-view-content.single-product form.cart .group_table .variation dd {
  clear: right;
  float: left;
  margin: 0 0 0 5px;
}

@media only screen and (max-width: 680px) {
  #qodef-woo-page.qodef--single form.cart .group_table .variation dd,
  #yith-quick-view-content.single-product form.cart .group_table .variation dd {
    float: none;
    margin: 0;
    width: 100%;
  }
}

#qodef-woo-page.qodef--single form.cart .variations,
#yith-quick-view-content.single-product form.cart .variations {
  margin-bottom: 30px;
}

#qodef-woo-page.qodef--single form.cart .variations tr,
#yith-quick-view-content.single-product form.cart .variations tr {
  border: 0;
}

#qodef-woo-page.qodef--single form.cart .variations tr[class^="description_attribute"] td,
#yith-quick-view-content.single-product form.cart .variations tr[class^="description_attribute"] td {
  padding-bottom: 10px;
}

#qodef-woo-page.qodef--single form.cart .variations td,
#yith-quick-view-content.single-product form.cart .variations td {
  position: relative;
}

#qodef-woo-page.qodef--single form.cart .variations td, #qodef-woo-page.qodef--single form.cart .variations th,
#yith-quick-view-content.single-product form.cart .variations td,
#yith-quick-view-content.single-product form.cart .variations th {
  padding: 3px 0;
  text-align: initial;
  border: 0;
}

#qodef-woo-page.qodef--single form.cart .variations label,
#yith-quick-view-content.single-product form.cart .variations label {
  margin-bottom: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
}

#qodef-woo-page.qodef--single form.cart .variations select,
#yith-quick-view-content.single-product form.cart .variations select {
  width: auto;
  min-width: 220px;
  margin: 0;
}

#qodef-woo-page.qodef--single form.cart .variations select,
#qodef-woo-page.qodef--single form.cart .variations .select2-container--default,
#yith-quick-view-content.single-product form.cart .variations select,
#yith-quick-view-content.single-product form.cart .variations .select2-container--default {
  margin: 0;
}

#qodef-woo-page.qodef--single form.cart .variations .reset_variations,
#yith-quick-view-content.single-product form.cart .variations .reset_variations {
  display: inline-block;
  margin-left: 10px;
  line-height: 1;
}

#qodef-woo-page.qodef--single form.cart .woocommerce-variation,
#yith-quick-view-content.single-product form.cart .woocommerce-variation {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

#qodef-woo-page.qodef--single form.cart .woocommerce-variation .woocommerce-variation-description > *,
#qodef-woo-page.qodef--single form.cart .woocommerce-variation .woocommerce-variation-price > *,
#qodef-woo-page.qodef--single form.cart .woocommerce-variation .woocommerce-variation-availability > *,
#yith-quick-view-content.single-product form.cart .woocommerce-variation .woocommerce-variation-description > *,
#yith-quick-view-content.single-product form.cart .woocommerce-variation .woocommerce-variation-price > *,
#yith-quick-view-content.single-product form.cart .woocommerce-variation .woocommerce-variation-availability > * {
  margin: 0 0 45px 0;
}

#qodef-woo-page.qodef--single .out-of-stock,
#yith-quick-view-content.single-product .out-of-stock {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
  margin: 28px 0 0;
}

#qodef-woo-page.qodef--single .product_meta,
#yith-quick-view-content.single-product .product_meta {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 42px;
}

#qodef-woo-page.qodef--single .product_meta > *,
#yith-quick-view-content.single-product .product_meta > * {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-bottom: 2px;
}

#qodef-woo-page.qodef--single .product_meta > *:last-child,
#yith-quick-view-content.single-product .product_meta > *:last-child {
  margin-bottom: 0;
}

#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-label,
#yith-quick-view-content.single-product .product_meta .qodef-woo-meta-label {
  flex-shrink: 0;
  margin-right: 11px;
  line-height: inherit !important;
}

#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value,
#yith-quick-view-content.single-product .product_meta .qodef-woo-meta-value {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
}

#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value a,
#yith-quick-view-content.single-product .product_meta .qodef-woo-meta-value a {
  color: inherit;
}

#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value a:hover,
#yith-quick-view-content.single-product .product_meta .qodef-woo-meta-value a:hover {
  color: var(--qode-main-color);
}

#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value.sku,
#yith-quick-view-content.single-product .product_meta .qodef-woo-meta-value.sku {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
  letter-spacing: 0;
  text-transform: initial;
}

#qodef-woo-page.qodef--single .product_meta .tagged_as .qodef-woo-meta-value,
#yith-quick-view-content.single-product .product_meta .tagged_as .qodef-woo-meta-value {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5625em;
  font-weight: 400;
  color: #8C8BA4;
  color: var(--qode-main-color);
  letter-spacing: 0;
  text-transform: initial;
}

#qodef-woo-page.qodef--single .product_meta .tagged_as .qodef-woo-meta-value a:hover,
#yith-quick-view-content.single-product .product_meta .tagged_as .qodef-woo-meta-value a:hover {
  color: #847E9F;
}

#qodef-woo-page.qodef--single .qodef-social-share,
#yith-quick-view-content.single-product .qodef-social-share {
  margin-top: 8px;
}

#qodef-woo-page.qodef--single .woocommerce-tabs,
#yith-quick-view-content.single-product .woocommerce-tabs {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 109px;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li {
  margin: 0 49px 0 0;
  padding: 0;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.3em;
  color: #8C8BA4;
  display: block;
  padding: 0;
  transition: color 0.3s ease-out;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:last-child,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li:last-child {
  margin-right: 0;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a:hover,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.active a,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.ui-state-active a,
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.ui-state-hover a,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li a:hover,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li.active a,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li.ui-state-active a,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li.ui-state-hover a {
  color: #0B0449;
}

@media only screen and (max-width: 680px) {
  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs,
  #yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs {
    flex-direction: column;
    align-items: flex-start;
  }
  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li,
  #yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li {
    margin: 0 0 10px 0;
    padding: 0;
  }
  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:last-child,
  #yith-quick-view-content.single-product .woocommerce-tabs .wc-tabs li:last-child {
    margin-bottom: 0;
  }
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tab {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 11px;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--additional_information,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--additional_information {
  margin-top: 16px;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--reviews,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--reviews {
  margin-top: 12px;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab > h2,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tab > h2 {
  display: none;
}

#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab:not(.woocommerce-Tabs-panel--reviews) p,
#yith-quick-view-content.single-product .woocommerce-tabs .wc-tab:not(.woocommerce-Tabs-panel--reviews) p {
  margin: 0;
}

#qodef-woo-page.qodef--single .shop_attributes th, #qodef-woo-page.qodef--single .shop_attributes td,
#yith-quick-view-content.single-product .shop_attributes th,
#yith-quick-view-content.single-product .shop_attributes td {
  vertical-align: middle;
  text-align: left;
}

#qodef-woo-page.qodef--single .shop_attributes th,
#yith-quick-view-content.single-product .shop_attributes th {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
}

#qodef-woo-page.qodef--single .shop_attributes p,
#yith-quick-view-content.single-product .shop_attributes p {
  margin: 0;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-Reviews-title,
#yith-quick-view-content.single-product .woocommerce-Reviews .woocommerce-Reviews-title {
  font-size: 20px;
  line-height: 1.3em;
  margin: 0;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist,
#yith-quick-view-content.single-product .woocommerce-Reviews .commentlist {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist > *,
#yith-quick-view-content.single-product .woocommerce-Reviews .commentlist > * {
  margin: 0 0 30px;
  padding: 0;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist > *:last-child,
#yith-quick-view-content.single-product .woocommerce-Reviews .commentlist > *:last-child {
  margin-bottom: 0;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .comment_container,
#yith-quick-view-content.single-product .woocommerce-Reviews .comment_container {
  position: relative;
  display: flex;
  align-items: flex-start;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .comment_container > img,
#yith-quick-view-content.single-product .woocommerce-Reviews .comment_container > img {
  flex-shrink: 0;
  margin-right: 25px;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .comment-text,
#yith-quick-view-content.single-product .woocommerce-Reviews .comment-text {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .meta,
#yith-quick-view-content.single-product .woocommerce-Reviews .meta {
  padding-top: 2px;
}

#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-review__author,
#yith-quick-view-content.single-product .woocommerce-Reviews .woocommerce-review__author {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
}

#qodef-woo-page.qodef--single #review_form,
#yith-quick-view-content.single-product #review_form {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 32px;
}

#qodef-woo-page.qodef--single #review_form .comment-reply-title,
#yith-quick-view-content.single-product #review_form .comment-reply-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
}

#qodef-woo-page.qodef--single #review_form .comment-notes ~ .comment-form-rating,
#yith-quick-view-content.single-product #review_form .comment-notes ~ .comment-form-rating {
  margin-top: -13px;
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating,
#yith-quick-view-content.single-product #review_form .comment-form-rating {
  margin: 10px 0 23px 0;
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating label,
#yith-quick-view-content.single-product #review_form .comment-form-rating label {
  margin-bottom: 5px;
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating .stars,
#yith-quick-view-content.single-product #review_form .comment-form-rating .stars {
  display: none;
  line-height: 1;
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating .qodef-comment-form-ratings,
#yith-quick-view-content.single-product #review_form .comment-form-rating .qodef-comment-form-ratings {
  display: flex;
  margin: 0;
  overflow: hidden;
  opacity: .5;
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating .qodef-comment-form-ratings.selected,
#yith-quick-view-content.single-product #review_form .comment-form-rating .qodef-comment-form-ratings.selected {
  opacity: 1;
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating .qodef-comment-form-ratings.selected .active ~ *,
#yith-quick-view-content.single-product #review_form .comment-form-rating .qodef-comment-form-ratings.selected .active ~ * {
  opacity: .5;
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating a,
#yith-quick-view-content.single-product #review_form .comment-form-rating a {
  color: #DFBEC3;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 0 0;
  font-size: 0;
  line-height: 1;
}

#qodef-woo-page.qodef--single #review_form .comment-form-rating a svg,
#yith-quick-view-content.single-product #review_form .comment-form-rating a svg {
  display: block;
  width: 14px;
  height: auto;
  fill: currentColor;
  stroke: none;
}

#qodef-woo-page.qodef--single .related,
#qodef-woo-page.qodef--single .up-sells,
#yith-quick-view-content.single-product .related,
#yith-quick-view-content.single-product .up-sells {
  margin-top: 108px;
}

#qodef-woo-page.qodef--single .related > h2,
#qodef-woo-page.qodef--single .up-sells > h2,
#yith-quick-view-content.single-product .related > h2,
#yith-quick-view-content.single-product .up-sells > h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 36px;
  line-height: 1.27778em;
  margin: 0 0 35px;
}

/* ==========================================================================
   WooCommerce widgets static styles
   ========================================================================== */
.widget .qodef-woo-ratings {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  line-height: 1;
  margin: 3px 0 0;
}

.widget .qodef-woo-ratings .qodef-m-inner {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.widget .qodef-woo-ratings .qodef-m-star {
  color: #DFBEC3;
  opacity: .5;
}

.widget .qodef-woo-ratings .qodef-m-star svg {
  display: inline-block;
  margin-right: .6em;
  width: 14px;
  height: auto;
}

.widget .qodef-woo-ratings .qodef-m-star svg:last-child {
  margin-right: 0;
}

.widget .qodef-woo-ratings .qodef-m-star.qodef--active {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
}

.widget .price {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  margin: 3px 0 0;
  margin: 3px 0 0;
}

.widget .price del {
  margin-right: 10px;
}

.widget .price ins {
  text-decoration: none;
}

.widget.woocommerce .qodef-woo-product-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.3em;
  letter-spacing: normal;
  margin: 0;
}

.widget.woocommerce a .product-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.3em;
}

.widget.woocommerce .button,
.widget.woocommerce .woocommerce-widget-layered-nav-dropdown__submit {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: auto;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #847E9F;
  line-height: 1.45455em;
  font-weight: 700;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  color: var(--qode-main-color);
  margin: 0;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  outline: none;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  padding: 13px 40px;
  cursor: pointer;
  z-index: 3;
  color: var(--qode-main-color);
  background-color: #DFBEC3;
  border: 1px solid transparent;
}

.widget.woocommerce .button:hover,
.widget.woocommerce .woocommerce-widget-layered-nav-dropdown__submit:hover {
  color: var(--qode-main-color);
  background-color: transparent;
  border-color: #DFBEC3;
}

.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-radius: 0;
  cursor: pointer;
  height: 1px;
  position: relative;
}

.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
  height: 11px;
  outline: none;
  position: absolute;
  top: -5px;
  width: 11px;
  z-index: 2;
}

.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle:last-of-type {
  transform: translateX(-11px);
}

.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
  border-radius: 0;
  display: block;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.widget.woocommerce.widget_price_filter .price_slider_amount {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 32px 0 0;
  position: relative;
}

.widget.woocommerce.widget_price_filter .price_slider_amount .clear {
  display: none;
}

.widget.woocommerce.widget_products ul li, .widget.woocommerce.widget_recently_viewed_products ul li, .widget.woocommerce.widget_top_rated_products ul li {
  display: flex;
  position: relative;
}

.widget.woocommerce.widget_products ul li:last-child, .widget.woocommerce.widget_recently_viewed_products ul li:last-child, .widget.woocommerce.widget_top_rated_products ul li:last-child {
  margin-bottom: 0;
}

.widget.woocommerce.widget_products .qodef-e-media, .widget.woocommerce.widget_recently_viewed_products .qodef-e-media, .widget.woocommerce.widget_top_rated_products .qodef-e-media {
  flex-shrink: 0;
}

.widget.woocommerce.widget_products .qodef-e-media a,
.widget.woocommerce.widget_products .qodef-e-media img, .widget.woocommerce.widget_recently_viewed_products .qodef-e-media a,
.widget.woocommerce.widget_recently_viewed_products .qodef-e-media img, .widget.woocommerce.widget_top_rated_products .qodef-e-media a,
.widget.woocommerce.widget_top_rated_products .qodef-e-media img {
  display: block;
  position: relative;
}

.widget.woocommerce.widget_recent_reviews ul li .reviewer {
  margin-top: 3px;
}

.widget.woocommerce.widget_recent_reviews ul li:last-child {
  margin-bottom: 0;
}

.widget.woocommerce.widget_recent_reviews ul li > * {
  display: block;
}

.widget.woocommerce.widget_recent_reviews a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  color: #0B0449;
  font-size: 20px;
  line-height: 1.3em;
  position: relative;
}

.widget.woocommerce.widget_recent_reviews a img {
  left: 0;
  position: absolute;
  top: 0;
}

.widget.woocommerce.widget_layered_nav button {
  margin-top: 10px;
}

.widget .wc-block-product-categories-list--has-images {
  margin: 0;
}

.widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: initial;
  font-size: 20px;
  line-height: 1.3em;
}

.widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
  vertical-align: top;
}

.widget .wc-block-components-price-slider {
  --qodef-track-height: 1px;
  --qodef-thumb-height: 11px;
  --qodef-thumb-width: 11px;
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input-wrapper {
  height: var(--qodef-track-height);
  background: var(--qodef-track-bg-color);
  margin: calc((var(--qodef-thumb-height) / 2)) 0;
  box-shadow: none;
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__controls {
  margin: 35px 0 0;
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input-progress {
  --range-color: var(--qodef-track-color);
  height: var(--qodef-track-height);
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-webkit-slider-thumb {
  background-color: var(--qode-main-color);
  width: var(--qodef-thumb-width);
  height: var(--qodef-thumb-height);
  border-radius: 100%;
  background-image: none;
  margin: calc((var(--qodef-track-height) / 2) - (var(--qodef-thumb-height) / 2)) 0 0 0;
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-moz-range-thumb {
  background-color: var(--qode-main-color);
  width: var(--qodef-thumb-width);
  height: var(--qodef-thumb-height);
  border-radius: 100%;
  background-image: none;
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-ms-thumb {
  background-color: var(--qode-main-color);
  width: var(--qodef-thumb-width);
  height: var(--qodef-thumb-height);
  border-radius: 100%;
  background-image: none;
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input::-ms-thumb:hover {
  transform: scale(1.1);
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-webkit-slider-thumb {
  transform: scale(1.1);
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-moz-range-thumb {
  transform: scale(1.1);
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input:focus::-ms-thumb {
  transform: scale(1.1);
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min::-webkit-slider-thumb {
  margin-left: -2px;
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min::-moz-range-thumb {
  transform: translate(-2px, 1px);
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max::-webkit-slider-thumb {
  margin-left: 2px;
}

.widget .wc-block-components-price-slider .wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max::-moz-range-thumb {
  transform: translate(2px, 1px);
}

.widget .wc-block-components-price-slider.wc-block-components-price-slider--has-filter-button:not(.wc-block-components-price-slider--has-input-fields) .wc-block-components-price-slider__controls {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   WooCommerce widgets variable styles
   ========================================================================== */
/* ==========================================================================
   Default widgets map
   ========================================================================== */
/* ==========================================================================
   Override default widgets map for specific widget area
   ========================================================================== */
.widget.woocommerce .qodef-woo-product-title a {
  color: var(--qode-main-color);
}

.widget.woocommerce .qodef-woo-product-title a:hover {
  color: #8C8BA4;
}

.widget.woocommerce a .product-title {
  color: var(--qode-main-color);
}

.widget.woocommerce a:hover .product-title {
  color: #8C8BA4;
}

.widget.woocommerce.widget_price_filter .qodef-widget-title {
  margin-bottom: 17.5px;
}

.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #CECECE;
}

.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
  background-color: var(--qode-main-color);
}

.widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
  background-color: var(--qode-main-color);
}

.widget.woocommerce.widget_shopping_cart {
  flex-direction: column;
  align-items: flex-start;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
  width: 100%;
}

.widget.woocommerce.widget_shopping_cart .qodef-widget-title {
  margin-bottom: 17.5px;
}

.widget.woocommerce.widget_layered_nav form {
  margin-top: 17.5px;
}

.widget.woocommerce.widget_layered_nav ul li.chosen a {
  color: #8C8BA4;
}

.widget.woocommerce.widget_products .qodef-widget-title, .widget.woocommerce.widget_recently_viewed_products .qodef-widget-title, .widget.woocommerce.widget_top_rated_products .qodef-widget-title {
  margin-bottom: 17.5px;
}

.widget.woocommerce.widget_products ul li, .widget.woocommerce.widget_recently_viewed_products ul li, .widget.woocommerce.widget_top_rated_products ul li {
  margin-bottom: 20px;
}

.widget.woocommerce.widget_products .qodef-e-media, .widget.woocommerce.widget_recently_viewed_products .qodef-e-media, .widget.woocommerce.widget_top_rated_products .qodef-e-media {
  margin-right: 20px;
}

.widget.woocommerce.widget_products .qodef-e-media img, .widget.woocommerce.widget_recently_viewed_products .qodef-e-media img, .widget.woocommerce.widget_top_rated_products .qodef-e-media img {
  width: 80px;
}

.widget.woocommerce.widget_recent_reviews .qodef-widget-title {
  margin-bottom: 17.5px;
}

.widget.woocommerce.widget_recent_reviews ul li {
  min-height: 80px;
  margin-bottom: 20px;
}

.widget.woocommerce.widget_recent_reviews ul li > * {
  padding-left: 100px;
}

.widget.woocommerce.widget_recent_reviews a:hover {
  color: #8C8BA4;
}

.widget.woocommerce.widget_recent_reviews a img {
  width: 80px;
}

.widget.widget_block .price {
  justify-content: center;
}

.widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item {
  margin-bottom: 20px !important;
  margin-left: 100px !important;
}

.widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a {
  color: var(--qode-main-color);
}

.widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a:hover {
  color: #8C8BA4;
}

.widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
  margin: 0 20px 0 -100px !important;
  max-width: initial !important;
  width: 80px !important;
}

.widget .wc-block-components-price-slider {
  --qodef-track-bg-color: #CECECE;
  --qodef-track-color: var(--qode-main-color);
}

#qodef-top-area .widget.woocommerce .qodef-woo-product-title a {
  color: #9F9EB5;
}

#qodef-top-area .widget.woocommerce .qodef-woo-product-title a:hover {
  color: #ffffff;
}

#qodef-top-area .widget.woocommerce a .product-title {
  color: #9F9EB5;
}

#qodef-top-area .widget.woocommerce a:hover .product-title {
  color: #ffffff;
}

#qodef-top-area .widget.woocommerce.widget_price_filter .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-top-area .widget.woocommerce.widget_shopping_cart {
  flex-direction: column;
  align-items: flex-start;
}

#qodef-top-area .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
  width: 100%;
}

#qodef-top-area .widget.woocommerce.widget_shopping_cart .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-top-area .widget.woocommerce.widget_layered_nav form {
  margin-top: 17.5px;
}

#qodef-top-area .widget.woocommerce.widget_layered_nav ul li.chosen a {
  color: #ffffff;
}

#qodef-top-area .widget.woocommerce.widget_products .qodef-widget-title, #qodef-top-area .widget.woocommerce.widget_recently_viewed_products .qodef-widget-title, #qodef-top-area .widget.woocommerce.widget_top_rated_products .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-top-area .widget.woocommerce.widget_products ul li, #qodef-top-area .widget.woocommerce.widget_recently_viewed_products ul li, #qodef-top-area .widget.woocommerce.widget_top_rated_products ul li {
  margin-bottom: 20px;
}

#qodef-top-area .widget.woocommerce.widget_products .qodef-e-media, #qodef-top-area .widget.woocommerce.widget_recently_viewed_products .qodef-e-media, #qodef-top-area .widget.woocommerce.widget_top_rated_products .qodef-e-media {
  margin-right: 20px;
}

#qodef-top-area .widget.woocommerce.widget_products .qodef-e-media img, #qodef-top-area .widget.woocommerce.widget_recently_viewed_products .qodef-e-media img, #qodef-top-area .widget.woocommerce.widget_top_rated_products .qodef-e-media img {
  width: 80px;
}

#qodef-top-area .widget.woocommerce.widget_recent_reviews .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-top-area .widget.woocommerce.widget_recent_reviews ul li {
  min-height: 80px;
  margin-bottom: 20px;
}

#qodef-top-area .widget.woocommerce.widget_recent_reviews ul li > * {
  padding-left: 100px;
}

#qodef-top-area .widget.woocommerce.widget_recent_reviews a:hover {
  color: #ffffff;
}

#qodef-top-area .widget.woocommerce.widget_recent_reviews a img {
  width: 80px;
}

#qodef-top-area .widget.widget_block .price {
  justify-content: center;
}

#qodef-top-area .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item {
  margin-bottom: 20px !important;
  margin-left: 100px !important;
}

#qodef-top-area .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a {
  color: #9F9EB5;
}

#qodef-top-area .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a:hover {
  color: #ffffff;
}

#qodef-top-area .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
  margin: 0 20px 0 -100px !important;
  max-width: initial !important;
  width: 80px !important;
}

#qodef-page-footer .widget .qodef-m-star {
  color: #ffffff !important;
}

#qodef-page-footer .widget.woocommerce .qodef-woo-product-title a {
  color: #9F9EB5;
}

#qodef-page-footer .widget.woocommerce .qodef-woo-product-title a:hover {
  color: #ffffff;
}

#qodef-page-footer .widget.woocommerce a .product-title {
  color: #9F9EB5;
}

#qodef-page-footer .widget.woocommerce a:hover .product-title {
  color: #ffffff;
}

#qodef-page-footer .widget.woocommerce.widget_price_filter .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-page-footer .widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: rgba(255, 255, 255, 0.5);
}

#qodef-page-footer .widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
  background-color: #ffffff;
}

#qodef-page-footer .widget.woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
  background-color: #ffffff;
}

#qodef-page-footer .widget.woocommerce.widget_shopping_cart {
  flex-direction: column;
  align-items: flex-start;
}

#qodef-page-footer .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
  width: 100%;
}

#qodef-page-footer .widget.woocommerce.widget_shopping_cart .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-page-footer .widget.woocommerce.widget_layered_nav form {
  margin-top: 17.5px;
}

#qodef-page-footer .widget.woocommerce.widget_layered_nav ul li.chosen a {
  color: #ffffff;
}

#qodef-page-footer .widget.woocommerce.widget_products .qodef-widget-title, #qodef-page-footer .widget.woocommerce.widget_recently_viewed_products .qodef-widget-title, #qodef-page-footer .widget.woocommerce.widget_top_rated_products .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-page-footer .widget.woocommerce.widget_products ul li, #qodef-page-footer .widget.woocommerce.widget_recently_viewed_products ul li, #qodef-page-footer .widget.woocommerce.widget_top_rated_products ul li {
  margin-bottom: 20px;
}

#qodef-page-footer .widget.woocommerce.widget_products .qodef-e-media, #qodef-page-footer .widget.woocommerce.widget_recently_viewed_products .qodef-e-media, #qodef-page-footer .widget.woocommerce.widget_top_rated_products .qodef-e-media {
  margin-right: 20px;
}

#qodef-page-footer .widget.woocommerce.widget_products .qodef-e-media img, #qodef-page-footer .widget.woocommerce.widget_recently_viewed_products .qodef-e-media img, #qodef-page-footer .widget.woocommerce.widget_top_rated_products .qodef-e-media img {
  width: 80px;
}

#qodef-page-footer .widget.woocommerce.widget_recent_reviews .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-page-footer .widget.woocommerce.widget_recent_reviews ul li {
  min-height: 80px;
  margin-bottom: 20px;
}

#qodef-page-footer .widget.woocommerce.widget_recent_reviews ul li > * {
  padding-left: 100px;
}

#qodef-page-footer .widget.woocommerce.widget_recent_reviews a:hover {
  color: #ffffff;
}

#qodef-page-footer .widget.woocommerce.widget_recent_reviews a img {
  width: 80px;
}

#qodef-page-footer .widget.widget_block .price {
  justify-content: center;
}

#qodef-page-footer .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item {
  margin-bottom: 20px !important;
  margin-left: 100px !important;
}

#qodef-page-footer .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a {
  color: #9F9EB5;
}

#qodef-page-footer .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a:hover {
  color: #ffffff;
}

#qodef-page-footer .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
  margin: 0 20px 0 -100px !important;
  max-width: initial !important;
  width: 80px !important;
}

#qodef-page-footer .widget .wc-block-components-price-slider {
  --qodef-track-bg-color: rgba(255, 255, 255, 0.5);
  --qodef-track-color: #ffffff;
}

#qodef-side-area .widget.woocommerce .qodef-woo-product-title a {
  color: #8C8BA4;
}

#qodef-side-area .widget.woocommerce .qodef-woo-product-title a:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget.woocommerce a .product-title {
  color: #8C8BA4;
}

#qodef-side-area .widget.woocommerce a:hover .product-title {
  color: var(--qode-main-color);
}

#qodef-side-area .widget.woocommerce.widget_price_filter .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-side-area .widget.woocommerce.widget_shopping_cart {
  flex-direction: column;
  align-items: flex-start;
}

#qodef-side-area .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
  width: 100%;
}

#qodef-side-area .widget.woocommerce.widget_shopping_cart .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-side-area .widget.woocommerce.widget_layered_nav form {
  margin-top: 17.5px;
}

#qodef-side-area .widget.woocommerce.widget_layered_nav ul li.chosen a {
  color: var(--qode-main-color);
}

#qodef-side-area .widget.woocommerce.widget_products .qodef-widget-title, #qodef-side-area .widget.woocommerce.widget_recently_viewed_products .qodef-widget-title, #qodef-side-area .widget.woocommerce.widget_top_rated_products .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-side-area .widget.woocommerce.widget_products ul li, #qodef-side-area .widget.woocommerce.widget_recently_viewed_products ul li, #qodef-side-area .widget.woocommerce.widget_top_rated_products ul li {
  margin-bottom: 20px;
}

#qodef-side-area .widget.woocommerce.widget_products .qodef-e-media, #qodef-side-area .widget.woocommerce.widget_recently_viewed_products .qodef-e-media, #qodef-side-area .widget.woocommerce.widget_top_rated_products .qodef-e-media {
  margin-right: 20px;
}

#qodef-side-area .widget.woocommerce.widget_products .qodef-e-media img, #qodef-side-area .widget.woocommerce.widget_recently_viewed_products .qodef-e-media img, #qodef-side-area .widget.woocommerce.widget_top_rated_products .qodef-e-media img {
  width: 80px;
}

#qodef-side-area .widget.woocommerce.widget_recent_reviews .qodef-widget-title {
  margin-bottom: 17.5px;
}

#qodef-side-area .widget.woocommerce.widget_recent_reviews ul li {
  min-height: 80px;
  margin-bottom: 20px;
}

#qodef-side-area .widget.woocommerce.widget_recent_reviews ul li > * {
  padding-left: 100px;
}

#qodef-side-area .widget.woocommerce.widget_recent_reviews a:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget.woocommerce.widget_recent_reviews a img {
  width: 80px;
}

#qodef-side-area .widget.widget_block .price {
  justify-content: center;
}

#qodef-side-area .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item {
  margin-bottom: 20px !important;
  margin-left: 100px !important;
}

#qodef-side-area .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a {
  color: #8C8BA4;
}

#qodef-side-area .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a:hover {
  color: var(--qode-main-color);
}

#qodef-side-area .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
  margin: 0 20px 0 -100px !important;
  max-width: initial !important;
  width: 80px !important;
}

.qodef-mega-menu-widget-holder .widget.woocommerce .qodef-woo-product-title a {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget.woocommerce .qodef-woo-product-title a:hover {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget.woocommerce a .product-title {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget.woocommerce a:hover .product-title {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_price_filter .qodef-widget-title {
  margin-bottom: 17.5px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_shopping_cart {
  flex-direction: column;
  align-items: flex-start;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
  width: 100%;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_shopping_cart .qodef-widget-title {
  margin-bottom: 17.5px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_layered_nav form {
  margin-top: 17.5px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_layered_nav ul li.chosen a {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_products .qodef-widget-title, .qodef-mega-menu-widget-holder .widget.woocommerce.widget_recently_viewed_products .qodef-widget-title, .qodef-mega-menu-widget-holder .widget.woocommerce.widget_top_rated_products .qodef-widget-title {
  margin-bottom: 17.5px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_products ul li, .qodef-mega-menu-widget-holder .widget.woocommerce.widget_recently_viewed_products ul li, .qodef-mega-menu-widget-holder .widget.woocommerce.widget_top_rated_products ul li {
  margin-bottom: 20px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_products .qodef-e-media, .qodef-mega-menu-widget-holder .widget.woocommerce.widget_recently_viewed_products .qodef-e-media, .qodef-mega-menu-widget-holder .widget.woocommerce.widget_top_rated_products .qodef-e-media {
  margin-right: 20px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_products .qodef-e-media img, .qodef-mega-menu-widget-holder .widget.woocommerce.widget_recently_viewed_products .qodef-e-media img, .qodef-mega-menu-widget-holder .widget.woocommerce.widget_top_rated_products .qodef-e-media img {
  width: 80px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews .qodef-widget-title {
  margin-bottom: 17.5px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews ul li {
  min-height: 80px;
  margin-bottom: 20px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews ul li > * {
  padding-left: 100px;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews a:hover {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget.woocommerce.widget_recent_reviews a img {
  width: 80px;
}

.qodef-mega-menu-widget-holder .widget.widget_block .price {
  justify-content: center;
}

.qodef-mega-menu-widget-holder .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item {
  margin-bottom: 20px !important;
  margin-left: 100px !important;
}

.qodef-mega-menu-widget-holder .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a {
  color: #ffffff;
}

.qodef-mega-menu-widget-holder .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item a:hover {
  color: #8C8BA4;
}

.qodef-mega-menu-widget-holder .widget .wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
  margin: 0 20px 0 -100px !important;
  max-width: initial !important;
  width: 80px !important;
}

/* ==========================================================================
   404 page responsive styles
   ========================================================================== */
@media only screen and (max-width: 680px) {
  #qodef-404-page {
    padding: 110px 40px 200px;
  }
}

/* ==========================================================================
   Blog styles
   ========================================================================== */
@media only screen and (max-width: 680px) {
  .qodef-blog .qodef-blog-item .qodef-e-left,
  .qodef-blog .qodef-blog-item .qodef-e-right {
    flex-basis: 100%;
  }
  .qodef-blog .qodef-blog-item .qodef-e-right {
    text-align: left;
    margin-top: 18px;
  }
}

/* ==========================================================================
   Comments responsive styles
   ========================================================================== */
@media only screen and (max-width: 1024px) {
  #qodef-page-comments {
    margin-bottom: 110px;
  }
}

@media only screen and (max-width: 1024px) {
  #qodef-page-comments-list .qodef-comment-item .children {
    padding-left: 40px;
  }
}

@media only screen and (max-width: 768px) {
  #qodef-page-comments-list .qodef-comment-item .children {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 680px) {
  #qodef-page-comments-list .qodef-comment-item .qodef-e-inner {
    flex-wrap: wrap;
  }
  #qodef-page-comments-list .qodef-comment-item .qodef-e-content {
    margin-top: 23px;
    width: 100%;
  }
  #qodef-page-comments-list .qodef-comment-item .children {
    padding-left: 3%;
  }
}

@media only screen and (max-width: 480px) {
  #qodef-page-comments-list .qodef-comment-item .qodef-e-title-date {
    flex-direction: column;
  }
  #qodef-page-comments-list .qodef-comment-item .qodef-e-title-date .qodef-e-date {
    margin-bottom: 5px;
  }
}

/* ==========================================================================
   Filter responsive styles
   ========================================================================== */
@media only screen and (max-width: 680px) {
  .qodef-m-filter .qodef-m-filter-items {
    flex-direction: column;
  }
  .qodef-m-filter .qodef-m-filter-item {
    margin: 5px 0;
  }
}

/* ==========================================================================
   Footer responsive styles
   ========================================================================== */
@media only screen and (max-width: 1024px) {
  #qodef-page-footer-top-area .qodef-content-full-width {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media only screen and (max-width: 1024px) {
  #qodef-page-footer-bottom-area .qodef-content-full-width {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ==========================================================================
   Header responsive styles
   ========================================================================== */
@media only screen and (max-width: 1024px) {
  #qodef-page-header {
    display: none;
  }
}

/* ==========================================================================
   Mobile Header responsive styles
   ========================================================================== */
@media only screen and (max-width: 1024px) {
  #qodef-page-mobile-header {
    display: block;
  }
}

/* ==========================================================================
   WooCommerce global responsive styles
   ========================================================================== */
@media only screen and (max-width: 768px) {
  .woocommerce-page div.woocommerce .col2-set {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   WooCommerce cart styles
   ========================================================================== */
@media only screen and (max-width: 680px) {
  #qodef-woo-page.qodef--cart .shop_table th.product-thumbnail,
  #qodef-woo-page.qodef--cart .shop_table td.product-thumbnail,
  .yith-wcwl-form .shop_table th.product-thumbnail,
  .yith-wcwl-form .shop_table td.product-thumbnail {
    display: none;
  }
  #qodef-woo-page.qodef--cart .shop_table th.product-subtotal,
  #qodef-woo-page.qodef--cart .shop_table td.product-subtotal,
  .yith-wcwl-form .shop_table th.product-subtotal,
  .yith-wcwl-form .shop_table td.product-subtotal {
    display: none;
  }
  #qodef-woo-page.qodef--cart .shop_table th.product-stock-status,
  #qodef-woo-page.qodef--cart .shop_table td.product-stock-status,
  .yith-wcwl-form .shop_table th.product-stock-status,
  .yith-wcwl-form .shop_table td.product-stock-status {
    display: none;
  }
  #qodef-woo-page.qodef--cart .shop_table th.actions .coupon,
  #qodef-woo-page.qodef--cart .shop_table td.actions .coupon,
  .yith-wcwl-form .shop_table th.actions .coupon,
  .yith-wcwl-form .shop_table td.actions .coupon {
    width: 100%;
    float: none;
  }
  #qodef-woo-page.qodef--cart .shop_table th.actions .coupon > *,
  #qodef-woo-page.qodef--cart .shop_table td.actions .coupon > *,
  .yith-wcwl-form .shop_table th.actions .coupon > *,
  .yith-wcwl-form .shop_table td.actions .coupon > * {
    margin-bottom: 20px;
  }
  #qodef-woo-page.qodef--cart .shop_table th.actions > .button,
  #qodef-woo-page.qodef--cart .shop_table td.actions > .button,
  .yith-wcwl-form .shop_table th.actions > .button,
  .yith-wcwl-form .shop_table td.actions > .button {
    float: none;
  }
  #qodef-woo-page.qodef--cart .cart-collaterals .shop_table th,
  .yith-wcwl-form .cart-collaterals .shop_table th {
    width: auto;
  }
}

/* ==========================================================================
   WooCommerce my account responsive styles
   ========================================================================== */
@media only screen and (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    padding-right: 0;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 680px) {
  .woocommerce-account .woocommerce-form-login .woocommerce-form-row--wide {
    width: 100%;
  }
}

/* ==========================================================================
   WooCommerce global responsive styles
   ========================================================================== */
@media (max-width: 1440px) {
  .qodef-woo-product-list ul.products.columns-6 {
    --qode-columns: 5;
  }
  .qodef-woo-product-list ul.products.columns-7 {
    --qode-columns: 5;
  }
  .qodef-woo-product-list ul.products.columns-8 {
    --qode-columns: 5;
  }
  .qodef-woo-product-list ul.products.columns-9 {
    --qode-columns: 5;
  }
  .qodef-woo-product-list ul.products.columns-10 {
    --qode-columns: 5;
  }
}

@media (max-width: 1366px) {
  .qodef-woo-product-list ul.products.columns-5 {
    --qode-columns: 4;
  }
  .qodef-woo-product-list ul.products.columns-6 {
    --qode-columns: 4;
  }
  .qodef-woo-product-list ul.products.columns-7 {
    --qode-columns: 4;
  }
  .qodef-woo-product-list ul.products.columns-8 {
    --qode-columns: 4;
  }
  .qodef-woo-product-list ul.products.columns-9 {
    --qode-columns: 4;
  }
  .qodef-woo-product-list ul.products.columns-10 {
    --qode-columns: 4;
  }
}

@media (max-width: 1024px) {
  .qodef-woo-product-list ul.products.columns-4 {
    --qode-columns: 3;
  }
  .qodef-woo-product-list ul.products.columns-5 {
    --qode-columns: 3;
  }
  .qodef-woo-product-list ul.products.columns-6 {
    --qode-columns: 3;
  }
  .qodef-woo-product-list ul.products.columns-7 {
    --qode-columns: 3;
  }
  .qodef-woo-product-list ul.products.columns-8 {
    --qode-columns: 3;
  }
  .qodef-woo-product-list ul.products.columns-9 {
    --qode-columns: 3;
  }
  .qodef-woo-product-list ul.products.columns-10 {
    --qode-columns: 3;
  }
}

@media (max-width: 768px) {
  .qodef-woo-product-list ul.products.columns-3 {
    --qode-columns: 2;
  }
  .qodef-woo-product-list ul.products.columns-4 {
    --qode-columns: 2;
  }
  .qodef-woo-product-list ul.products.columns-5 {
    --qode-columns: 2;
  }
  .qodef-woo-product-list ul.products.columns-6 {
    --qode-columns: 2;
  }
  .qodef-woo-product-list ul.products.columns-7 {
    --qode-columns: 2;
  }
  .qodef-woo-product-list ul.products.columns-8 {
    --qode-columns: 2;
  }
  .qodef-woo-product-list ul.products.columns-9 {
    --qode-columns: 2;
  }
  .qodef-woo-product-list ul.products.columns-10 {
    --qode-columns: 2;
  }
}

@media (max-width: 680px) {
  .qodef-woo-product-list ul.products.columns-2 {
    --qode-columns: 1;
  }
  .qodef-woo-product-list ul.products.columns-3 {
    --qode-columns: 1;
  }
  .qodef-woo-product-list ul.products.columns-4 {
    --qode-columns: 1;
  }
  .qodef-woo-product-list ul.products.columns-5 {
    --qode-columns: 1;
  }
  .qodef-woo-product-list ul.products.columns-6 {
    --qode-columns: 1;
  }
  .qodef-woo-product-list ul.products.columns-7 {
    --qode-columns: 1;
  }
  .qodef-woo-product-list ul.products.columns-8 {
    --qode-columns: 1;
  }
  .qodef-woo-product-list ul.products.columns-9 {
    --qode-columns: 1;
  }
  .qodef-woo-product-list ul.products.columns-10 {
    --qode-columns: 1;
  }
}

@media only screen and (max-width: 1440px) {
  .qodef-woo-product-list.qodef-gutter--huge ul.products {
    --qode-columns-gap: 60px;
  }
}

/* ==========================================================================
   WooCommerce results and ordering styles
   ========================================================================== */
@media only screen and (max-width: 680px) {
  .qodef-woo-results {
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
  }
  .qodef-woo-results .woocommerce-ordering {
    margin-left: 0;
  }
}

/* ==========================================================================
   WooCommerce single styles
   ========================================================================== */
@media only screen and (max-width: 1024px) {
  #qodef-woo-page.qodef--single .qodef-woo-single-inner {
    grid-template-columns: 1fr;
  }
  #qodef-woo-page.qodef--single .entry-summary {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 680px) {
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 figure > .qodef-woo-thumbnails-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 figure > .qodef-woo-thumbnails-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-6 figure > .qodef-woo-thumbnails-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-7 figure > .qodef-woo-thumbnails-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-8 figure > .qodef-woo-thumbnails-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-9 figure > .qodef-woo-thumbnails-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-10 figure > .qodef-woo-thumbnails-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left .woocommerce-product-gallery__trigger {
    left: 10px;
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure {
    flex-wrap: wrap;
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure > .woocommerce-product-gallery__image {
    width: 100% !important;
  }
  #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure > .qodef-woo-thumbnails-wrapper {
    width: 100%;
    margin: 16px 0 0;
  }
}

@media only screen and (max-width: 480px) {
  #qodef-woo-page.qodef--single form.cart .variations .value {
    position: relative;
  }
  #qodef-woo-page.qodef--single form.cart .variations .reset_variations {
    bottom: 0;
    left: 0;
    margin: 0;
    position: absolute;
  }
  #qodef-woo-page.qodef--single form.cart .variations tr:last-child .value {
    padding-bottom: 20px;
  }
  #qodef-woo-page.qodef--single form.cart .variations tr:last-child .select2-container--default {
    margin-bottom: 11px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
  #qodef-woo-page.qodef--single .related .columns-4,
  #qodef-woo-page.qodef--single .up-sells .columns-4 {
    --qode-columns: 2;
  }
}
