@charset "UTF-8";
/*--------------------------------------------------------------------------------
Resets & General Setup
--------------------------------------------------------------------------------*/
/*!
 * Based on Normalize.css v8.0.0, HTML5 Boilerplate v6.1.0, & Bootstrap Reboot v4.1.0 | Under MIT License
*/
/**
 * Document basic styling
 * DO NOT CHANGE THIS FILE!
 * To override any of the settings in this section, add your styling code in the custom directory.
 */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  /* 3 */
}

/* Sections
 */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: break-word;
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

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

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

/* Text-level semantics
 */
a {
  background-color: transparent;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -1.2em;
}

/* Embedded content
 */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

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

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

figcaption {
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    page-break-inside: avoid;
    border: 1px solid #cccccc;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/**
 * Form styling
 * DO NOT CHANGE THIS FILE!
 * To override any of the settings in this section, add your styling code in the custom directory.
 */
label {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

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

input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
select,
textarea {
  width: 100%;
  border: solid 1px #666666;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
}

input[type=text]:focus,
input[type=date]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  border-color: #333333;
  outline: 0 none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select {
  display: block;
}

/**
 * Table styling
 * DO NOT CHANGE THIS FILE!
 * To override any of the settings in this section, add your styling code in the custom directory.
 */
table {
  background-color: transparent;
  width: 100%;
  margin-bottom: 15px;
  font-size: 0.9em;
  border-spacing: 0;
  border-collapse: collapse;
}

table th,
table td {
  padding: 15px;
  line-height: 1.5;
  vertical-align: top;
  border: 1px solid #cccccc;
}

table th {
  font-weight: bold;
}

table thead th,
table tfoot th {
  font-size: 1em;
}

table caption + thead tr:first-child th,
table caption + thead tr:first-child td,
table caption + thead tr:first-child th,
table caption + thead tr:first-child td,
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
  border-top: 1px solid #cccccc;
}

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
  background-color: #f7f7f7;
}

table tbody + tbody {
  border-top: 2px solid #cccccc;
}

@media (max-width: 767px) {
  table table {
    font-size: 0.8em;
  }
  table table th,
  table table td {
    padding: 7px;
    line-height: 1.3;
  }
  table table th {
    font-weight: 400;
  }
}
/**
 * List styling
 * DO NOT CHANGE THIS FILE!
 * To override any of the settings in this section, add your styling code in the custom directory.
 */
dl,
dt,
dd,
ol,
ul,
li {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/**
 * DO NOT CHANGE THIS FILE!
**/
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

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

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.alignfull img {
  width: 100vw;
}

.wp-caption {
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.gallery-caption {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  padding: 0.75rem;
}

.pagination {
  margin: 20px auto;
}

.sticky {
  position: relative;
  display: block;
}

.bypostauthor {
  font-size: inherit;
}

.hide {
  display: none !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eeeeee;
  clip: auto !important;
  clip-path: none;
  color: #333333;
  display: block;
  font-size: 1rem;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/**
 * Post Item in Archive
 */
.post .wp-post-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .post .wp-post-image {
    max-height: 400px;
  }
}
@media (max-width: 575px) {
  .post .wp-post-image {
    max-height: 300px;
  }
}
/**
 * Comments
 */
#comments .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9em;
}

#comments .comment,
#comments .pingback {
  position: relative;
}

#comments .comment .comment-body,
#comments .pingback .comment-body {
  display: flex;
  flex-direction: column;
  padding: 30px 0 30px 60px;
  border-bottom: 1px solid #cccccc;
}

body.rtl #comments .comment .comment-body, body.rtl #comments .pingback .comment-body {
  padding: 30px 60px 30px 0;
}

#comments .comment .avatar,
#comments .pingback .avatar {
  position: absolute;
  left: 0;
  border-radius: 50%;
  margin-right: 10px;
}

body.rtl #comments .comment .avatar, body.rtl #comments .pingback .avatar {
  left: auto;
  right: 0;
  margin-right: 0;
  margin-left: 10px;
}

#comments .comment-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

#comments .reply,
#comments .comment-metadata {
  font-size: 11px;
  line-height: 1;
}

#comments .children {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 30px;
}

body.rtl #comments .children {
  padding-left: 0;
  padding-right: 30px;
}

#comments .children li:last-child {
  padding-bottom: 0;
}

#comments ol.comment-list .children:before {
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  line-height: 100%;
  content: "↪";
  position: absolute;
  top: 45px;
  left: 0;
  width: auto;
}

body.rtl #comments ol.comment-list .children:before {
  content: "↩";
  left: auto;
  right: 0;
}

@media (min-width: 768px) {
  #comments .comment-author,
  #comments .comment-metadata {
    line-height: 1;
  }
}
@media (max-width: 767px) {
  #comments .comment .comment-body {
    padding: 30px 0;
  }
  #comments .children {
    padding-left: 20px;
  }
  #comments .comment .avatar {
    position: inherit;
    float: left;
  }
  body.rtl #comments .comment .avatar {
    float: right;
  }
}
/*--------------------------------------------------------------------------------
General Site Setup
--------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
  html {
    margin-top: 0 !important;
  }
  html #wpadminbar {
    display: none !important;
  }
}

body:not([class*=elementor-page-]) .site-main .page-content {
  min-height: 65vh;
}

body {
  background: #FFFFFF;
  overflow-x: hidden;
  overscroll-behavior: none;
  width: 100%;
}
body.mobile-open {
  height: 100%;
  overflow: hidden;
}

/*--------------------------------------------------------------------------------
Layout and Elementor Overrides
--------------------------------------------------------------------------------*/
.site-container {
  position: relative;
  width: 100%;
}

.content-grid, .woocommerce-page .page-content, .product-single__container, .product-single__container .product__related .related.products, .container {
  align-items: start;
  display: grid;
  grid-template-columns: 1fr min(1280px, 100% - 2rem) 1fr;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
.content-grid > *, .woocommerce-page .page-content > *, .product-single__container > *, .product-single__container .product__related .related.products > *, .container > * {
  grid-column: 2;
}
.content-grid .full-width, .woocommerce-page .page-content .full-width, .product-single__container .full-width, .product-single__container .product__related .related.products .full-width, .product-single__container .product__related, .product-single__container .product__related .related.products .product__related, .container .full-width {
  grid-column: 1/-1;
  width: 100%;
}
.content-grid .grid-extend-right, .woocommerce-page .page-content .grid-extend-right, .product-single__container .grid-extend-right, .product-single__container .product__related .related.products .grid-extend-right, .container .grid-extend-right {
  grid-column: 2/4;
  width: 100%;
}
.content-grid .content, .woocommerce-page .page-content .content, .product-single__container .content, .product-single__container .product__related .related.products .content, .container .content {
  padding: 4rem 0;
}

.content-container {
  margin: 0 auto;
  max-width: 1280px;
}

.content-section, .product-single__container, .product-single__container .product__related {
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  .content-section, .product-single__container, .product-single__container .product__related {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .content-section, .product-single__container, .product-single__container .product__related {
    padding: 2rem 0;
  }
}

.container.container--sitewidth {
  grid-template-columns: 1fr min(1550px, 100% - 2rem) 1fr;
}
.container.container--narrow {
  grid-template-columns: 1fr min(800px, 100% - 2rem) 1fr;
}
.container.container--padded {
  padding: 6rem 1rem 8rem;
}
@media (max-width: 768px) {
  .container.container--padded {
    padding: 4rem 1rem 6rem;
  }
}

.elementor-editor-active .site-main {
  overflow: visible;
}
#wp-admin-bar-elementor_inspector,
#wp-admin-bar-elementor_notes {
  display: none;
}

/*--------------------------------------------------------------------------------
Vendor Imports
--------------------------------------------------------------------------------*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.is-active .hamburger--squeeze .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-active .hamburger--squeeze .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.is-active .hamburger--squeeze .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #0B3E69;
}

.hamburger-box {
  width: 26px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 2px;
  background-color: #0B3E69;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.is-active .hamburger--squeeze .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-active .hamburger--squeeze .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.is-active .hamburger--squeeze .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*!
* mmenu.js
* mmenujs.com
*
* Copyright (c) Fred Heusschen
* frebsite.nl
*
* License: CC-BY-NC-4.0
* http://creativecommons.org/licenses/by-nc/4.0/
*/
:root {
  --mm-lineheight:22px;
}

.mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu, .mm-menu *, .mm-menu :after, .mm-menu :before {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

:root {
  --mm-blocker-visibility-delay:0.4s;
  --mm-blocker-opacity-delay:0s;
}

.mm-blocker {
  display: block;
  position: absolute;
  bottom: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  background: var(--mm-color-background);
  -webkit-transition: bottom 0s ease var(--mm-blocker-visibility-delay), width 0.4s ease, opacity 0.4s ease var(--mm-blocker-opacity-delay), -webkit-transform 0.4s ease;
  transition: bottom 0s ease var(--mm-blocker-visibility-delay), width 0.4s ease, opacity 0.4s ease var(--mm-blocker-opacity-delay), -webkit-transform 0.4s ease;
  -o-transition: bottom 0s ease var(--mm-blocker-visibility-delay), width 0.4s ease, opacity 0.4s ease var(--mm-blocker-opacity-delay), transform 0.4s ease;
  transition: bottom 0s ease var(--mm-blocker-visibility-delay), width 0.4s ease, opacity 0.4s ease var(--mm-blocker-opacity-delay), transform 0.4s ease;
  transition: bottom 0s ease var(--mm-blocker-visibility-delay), width 0.4s ease, opacity 0.4s ease var(--mm-blocker-opacity-delay), transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mm-blocker:focus-visible {
  opacity: 0.75;
}

.mm-btn {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 50px;
  padding: 0;
}

.mm-btn--next, [dir=rtl] .mm-btn--prev {
  --mm-btn-rotate:135deg;
}

.mm-btn--prev, [dir=rtl] .mm-btn--next {
  --mm-btn-rotate:-45deg;
}

.mm-btn--next:after, .mm-btn--prev:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid var(--mm-color-icon);
  border-bottom: none;
  border-right: none;
  -webkit-transform: rotate(var(--mm-btn-rotate));
  -ms-transform: rotate(var(--mm-btn-rotate));
  transform: rotate(var(--mm-btn-rotate));
}

.mm-btn--prev:before {
  inset-inline-start: 23px;
}

.mm-btn--next:after {
  inset-inline-end: 23px;
}

.mm-btn--close:before {
  content: "×";
  font-size: 150%;
}

.mm-btnreset {
  padding: 0;
  background: 0 0;
  border: none;
  cursor: pointer;
}

.mm-divider {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  top: 0;
  min-height: var(--mm-lineheight);
  padding: calc((var(--mm-listitem-size) * 0.65 - var(--mm-lineheight)) * 0.5) 20px;
  font-size: 75%;
  text-transform: uppercase;
  background: var(--mm-color-background);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--mm-color-background-highlight)), to(var(--mm-color-background-highlight)));
  background-image: -o-linear-gradient(var(--mm-color-background-highlight), var(--mm-color-background-highlight));
  background-image: linear-gradient(var(--mm-color-background-highlight), var(--mm-color-background-highlight));
  opacity: 1;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.mm-navbar:not(.mm-hidden) ~ .mm-listview .mm-divider {
  top: var(--mm-navbar-size);
}

:root {
  --mm-listitem-size:50px;
}

.mm-listitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
  margin: 0;
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
}

.mm-listitem:after {
  content: "";
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  inset-inline-start: 20px;
  inset-inline-end: 0;
  bottom: 0;
}

.mm-listitem__btn, .mm-listitem__text {
  padding: calc((var(--mm-listitem-size) - var(--mm-lineheight)) / 2) 0;
}

.mm-listitem__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-listitem__btn {
  display: block;
  position: relative;
  width: auto;
  -webkit-padding-end: 50px;
  padding-inline-end: 50px;
  border-color: inherit;
  background: rgba(3, 2, 1, 0);
}

.mm-listitem__btn:not(.mm-listitem__text) {
  border-left-width: 1px;
  border-left-style: solid;
}

.mm-listitem--selected > .mm-listitem__text {
  background: var(--mm-color-background-emphasis);
}

.mm-listitem--opened > .mm-listitem__btn, .mm-listitem--opened > .mm-panel {
  background: var(--mm-color-background-highlight);
}

.mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  line-height: var(--mm-lineheight);
  -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mm-menu ::-webkit-input-placeholder {
  color: var(--mm-color-text-dimmed);
}

.mm-menu ::-moz-placeholder {
  color: var(--mm-color-text-dimmed);
}

.mm-menu :-ms-input-placeholder {
  color: var(--mm-color-text-dimmed);
}

.mm-menu ::-ms-input-placeholder {
  color: var(--mm-color-text-dimmed);
}

.mm-menu ::placeholder {
  color: var(--mm-color-text-dimmed);
}

.mm-menu, .mm-menu * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mm-menu :focus, .mm-menu :focus-visible, .mm-menu:focus, .mm-menu:focus-visible {
  outline: 0;
}

.mm-menu a, .mm-menu button, .mm-menu label {
  color: inherit;
}

.mm-menu a:focus, .mm-menu button:focus, .mm-menu label:focus {
  outline: 0;
}

.mm-menu a:focus-visible, .mm-menu button:focus-visible, .mm-menu label:focus-visible {
  outline: 2px solid var(--mm-color-focusring);
  outline-offset: -5px;
}

.mm-menu input:focus, .mm-menu input:focus-visible, .mm-menu select:focus, .mm-menu select:focus-visible, .mm-menu textarea:focus, .mm-menu textarea:focus-visible {
  outline: 2px solid var(--mm-color-focusring);
  outline-offset: 2px;
}

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  text-decoration: none;
  color: inherit;
}

:root {
  --mm-navbar-size:50px;
}

.mm-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: var(--mm-navbar-size);
  padding-top: env(safe-area-inset-top);
  color: var(--mm-color-text-dimmed);
  text-align: center;
  opacity: 1;
  background: var(--mm-color-background);
  border-bottom: 1px solid var(--mm-color-border);
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.mm-navbar > * {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mm-navbar__btn {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.mm-navbar__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  overflow: hidden;
}

.mm-navbar__title[href="#"] {
  pointer-events: none;
}

.mm-navbar__title > span {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-btn.mm-hidden + .mm-navbar__title:not(:last-child) {
  -webkit-padding-start: 60px;
  padding-inline-start: 60px;
  -webkit-padding-end: 10px;
  padding-inline-end: 10px;
}

.mm-btn:not(.mm-hidden) + .mm-navbar__title:last-child {
  -webkit-padding-start: 10px;
  padding-inline-start: 10px;
  -webkit-padding-end: 60px;
  padding-inline-end: 60px;
}

.mm-panel {
  --mm-panel-child-offset:100%;
  --mm-panel-parent-offset:-30%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  -webkit-transform: translate3d(var(--mm-panel-child-offset), 0, 0);
  transform: translate3d(var(--mm-panel-child-offset), 0, 0);
  -webkit-transition-property: inset-inline-start, -webkit-transform;
  transition-property: inset-inline-start, -webkit-transform;
  -o-transition-property: transform, inset-inline-start;
  transition-property: transform, inset-inline-start;
  transition-property: transform, inset-inline-start, -webkit-transform;
}

[dir=rtl] .mm-panel {
  --mm-panel-child-offset:-100%;
  --mm-panel-parent-offset:30%;
}

.mm-panel:after {
  content: "";
  display: block;
  height: var(--mm-listitem-size);
}

.mm-panel:focus {
  outline: 0;
}

.mm-panel--opened {
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.mm-panel--parent {
  -webkit-transform: translate3d(var(--mm-panel-parent-offset), 0, 0);
  transform: translate3d(var(--mm-panel-parent-offset), 0, 0);
  z-index: 0;
}

.mm-panel--highest {
  z-index: 3;
}

.mm-menu--opened .mm-panel--noanimation {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.mm-panel__content {
  padding: 20px;
}

.mm-panels {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
}

.mm-panels:focus {
  outline: 0;
}

:root {
  --mm-toggle-size:34px;
}

.mm-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: calc(var(--mm-toggle-size) * 1.75);
  -ms-flex: calc(var(--mm-toggle-size) * 1.75) 0 0px;
  flex: calc(var(--mm-toggle-size) * 1.75) 0 0;
  height: var(--mm-toggle-size);
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border: none !important;
  border-radius: var(--mm-toggle-size);
  border: var(--mm-color-border);
  background: var(--mm-color-border);
  cursor: pointer;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
}

.mm-toggle:before {
  content: "";
  aspect-ratio: 1;
  margin: 2px;
  border-radius: 100%;
  background: var(--mm-color-background);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mm-toggle:checked {
  background: #4bd963;
}

.mm-toggle:checked:before {
  -webkit-transform: translateX(calc(var(--mm-toggle-size) * 0.75));
  -ms-transform: translateX(calc(var(--mm-toggle-size) * 0.75));
  transform: translateX(calc(var(--mm-toggle-size) * 0.75));
}

[dir=rtl] .mm-toggle:checked:before {
  -webkit-transform: translateX(calc(var(--mm-toggle-size) * -0.75));
  -ms-transform: translateX(calc(var(--mm-toggle-size) * -0.75));
  transform: translateX(calc(var(--mm-toggle-size) * -0.75));
}

.mm-listitem--vertical > .mm-panel {
  position: static;
  width: 100%;
  padding: 10px 0 10px 20px;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.mm-listitem--vertical > .mm-panel:after {
  content: none;
  display: none;
}

.mm-listitem--vertical:not(.mm-listitem--opened) > .mm-panel {
  display: none;
}

.mm-listitem--vertical > .mm-listitem__btn {
  height: var(--mm-listitem-size);
  bottom: auto;
}

.mm-listitem--vertical .mm-listitem:last-child:after {
  border-color: transparent;
}

.mm-listitem--opened > .mm-listitem__btn:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 19px;
}

:root {
  --mm-size:80%;
  --mm-min-size:240px;
  --mm-max-size:440px;
}

.mm-menu--offcanvas {
  position: fixed;
  z-index: 0;
}

.mm-page {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100vh;
  background: inherit;
}

:where(.mm-slideout) {
  position: relative;
  z-index: 1;
  width: 100%;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: width, transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
}

.mm-wrapper--opened, .mm-wrapper--opened body {
  overflow: hidden;
}

.mm-wrapper__blocker {
  background: rgba(0, 0, 0, 0.4);
}

.mm-wrapper--opened .mm-wrapper__blocker {
  --mm-blocker-visibility-delay:0s;
  --mm-blocker-opacity-delay:0.4s;
  bottom: 0;
  opacity: 0.5;
}

.mm-menu {
  --mm-translate-horizontal:0;
  --mm-translate-vertical:0;
}

.mm-menu--position-left, .mm-menu--position-left-front {
  right: auto;
}

.mm-menu--position-right, .mm-menu--position-right-front {
  left: auto;
}

.mm-menu--position-left, .mm-menu--position-left-front, .mm-menu--position-right, .mm-menu--position-right-front {
  width: clamp(var(--mm-min-size), var(--mm-size), var(--mm-max-size));
}

.mm-menu--position-left-front {
  --mm-translate-horizontal:-100%;
}

.mm-menu--position-right-front {
  --mm-translate-horizontal:100%;
}

.mm-menu--position-top {
  bottom: auto;
}

.mm-menu--position-bottom {
  top: auto;
}

.mm-menu--position-bottom, .mm-menu--position-top {
  width: 100%;
  height: clamp(var(--mm-min-size), var(--mm-size), var(--mm-max-size));
}

.mm-menu--position-top {
  --mm-translate-vertical:-100%;
}

.mm-menu--position-bottom {
  --mm-translate-vertical:100%;
}

.mm-menu--position-bottom, .mm-menu--position-left-front, .mm-menu--position-right-front, .mm-menu--position-top {
  z-index: 2;
  -webkit-transform: translate3d(var(--mm-translate-horizontal), var(--mm-translate-vertical), 0);
  transform: translate3d(var(--mm-translate-horizontal), var(--mm-translate-vertical), 0);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mm-menu--position-bottom.mm-menu--opened, .mm-menu--position-left-front.mm-menu--opened, .mm-menu--position-right-front.mm-menu--opened, .mm-menu--position-top.mm-menu--opened {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-wrapper--position-left {
  --mm-translate-horizontal:clamp(
      var(--mm-min-size),
      var(--mm-size),
      var(--mm-max-size)
  );
}

.mm-wrapper--position-right {
  --mm-translate-horizontal:clamp(
      calc(-1 * var(--mm-max-size)),
      calc(-1 * var(--mm-size)),
      calc(-1 * var(--mm-min-size))
  );
}

.mm-wrapper--position-left .mm-slideout, .mm-wrapper--position-right .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-wrapper--position-left.mm-wrapper--opened .mm-slideout, .mm-wrapper--position-right.mm-wrapper--opened .mm-slideout {
  -webkit-transform: translate3d(var(--mm-translate-horizontal), 0, 0);
  transform: translate3d(var(--mm-translate-horizontal), 0, 0);
}

.mm-wrapper--position-bottom .mm-wrapper__blocker, .mm-wrapper--position-left-front .mm-wrapper__blocker, .mm-wrapper--position-right-front .mm-wrapper__blocker, .mm-wrapper--position-top .mm-wrapper__blocker {
  z-index: 1;
}

.mm-menu--theme-light {
  --mm-color-background:#f3f3f3;
  --mm-color-border:rgb(0 0 0 / 0.15);
  --mm-color-icon:rgb(0 0 0 / 0.4);
  --mm-color-text:rgb(0 0 0 / 0.8);
  --mm-color-text-dimmed:rgb(0 0 0 / 0.4);
  --mm-color-background-highlight:rgb(0 0 0 / 0.05);
  --mm-color-background-emphasis:rgb(255 255 255 / 0.75);
  --mm-color-focusring:#06c;
}

.mm-menu--theme-light-contrast {
  --mm-color-background:#f3f3f3;
  --mm-color-border:rgb(0 0 0 / 0.5);
  --mm-color-icon:rgb(0 0 0 / 0.5);
  --mm-color-text:#000;
  --mm-color-text-dimmed:rgb(0 0 0 / 0.7);
  --mm-color-background-highlight:rgb(0 0 0 / 0.05);
  --mm-color-background-emphasis:rgb(255 255 255 / 0.9);
  --mm-color-focusring:#06c;
}

.mm-menu--theme-dark {
  --mm-color-background:#333;
  --mm-color-border:rgb(0, 0, 0, 0.4);
  --mm-color-icon:rgb(255, 255, 255, 0.4);
  --mm-color-text:rgb(255, 255, 255, 0.8);
  --mm-color-text-dimmed:rgb(255, 255, 255, 0.4);
  --mm-color-background-highlight:rgb(255, 255, 255, 0.08);
  --mm-color-background-emphasis:rgb(0, 0, 0, 0.1);
  --mm-color-focusring:#06c;
}

.mm-menu--theme-dark-contrast {
  --mm-color-background:#333;
  --mm-color-border:rgb(255 255 255 / 0.5);
  --mm-color-icon:rgb(255 255 255 / 0.5);
  --mm-color-text:#fff;
  --mm-color-text-dimmed:rgb(255 255 255 / 0.7);
  --mm-color-background-highlight:rgb(255 255 255 / 0.1);
  --mm-color-background-emphasis:rgb(0 0 0 / 0.3);
  --mm-color-focusring:#06c;
}

.mm-menu--theme-white {
  --mm-color-background:#fff;
  --mm-color-border:rgb(0 0 0 / 0.15);
  --mm-color-icon:rgb(0 0 0 / 0.3);
  --mm-color-text:rgb(0 0 0 / 0.8);
  --mm-color-text-dimmed:rgb(0 0 0 / 0.3);
  --mm-color-background-highlight:rgb(0 0 0 / 0.06);
  --mm-color-background-emphasis:rgb(0 0 0 / 0.03);
  --mm-color-focusring:#06c;
}

.mm-menu--theme-white-contrast {
  --mm-color-background:#fff;
  --mm-color-border:rgb(0 0 0 / 0.5);
  --mm-color-icon:rgb(0 0 0 / 0.5);
  --mm-color-text:#000;
  --mm-color-text-dimmed:rgb(0 0 0 / 0.7);
  --mm-color-background-highlight:rgb(0 0 0 / 0.07);
  --mm-color-background-emphasis:rgb(0 0 0 / 0.035);
  --mm-color-focusring:#06c;
}

.mm-menu--theme-black {
  --mm-color-background:#000;
  --mm-color-border:rgb(255 255 255 / 0.2);
  --mm-color-icon:rgb(255 255 255 / 0.4);
  --mm-color-text:rgb(255 255 255 / 0.7);
  --mm-color-text-dimmed:rgb(255 255 255 / 0.4);
  --mm-color-background-highlight:rgb(255 255 255 / 0.1);
  --mm-color-background-emphasis:rgb(255 255 255 / 0.06);
  --mm-color-focusring:#06c;
}

.mm-menu--theme-black-contrast {
  --mm-color-background:#000;
  --mm-color-border:rgb(255 255 255 / 0.5);
  --mm-color-icon:rgb(255 255 255 / 0.5);
  --mm-color-text:#fff;
  --mm-color-text-dimmed:rgb(255 255 255 / 0.6);
  --mm-color-background-highlight:rgb(255 255 255 / 0.125);
  --mm-color-background-emphasis:rgb(255 255 255 / 0.1);
  --mm-color-focusring:#06c;
}

.mm-counter {
  display: block;
  -webkit-padding-start: 20px;
  padding-inline-start: 20px;
  float: right;
  color: var(--mm-color-text-dimmed);
}

[dir=rtl] .mm-counter {
  float: left;
}

:root {
  --mm-iconbar-size:50px;
}

.mm-menu--iconbar-left .mm-navbars, .mm-menu--iconbar-left .mm-panels {
  margin-left: var(--mm-iconbar-size);
}

.mm-menu--iconbar-right .mm-navbars, .mm-menu--iconbar-right .mm-panels {
  margin-right: var(--mm-iconbar-size);
}

.mm-iconbar {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--mm-iconbar-size);
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 solid;
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
}

.mm-menu--iconbar-left .mm-iconbar, .mm-menu--iconbar-right .mm-iconbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mm-menu--iconbar-left .mm-iconbar {
  border-right-width: 1px;
  left: 0;
}

.mm-menu--iconbar-right .mm-iconbar {
  border-left-width: 1px;
  right: 0;
}

.mm-iconbar__bottom, .mm-iconbar__top {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: calc((var(--mm-iconbar-size) - var(--mm-lineheight)) / 2) 0;
}

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none;
}

.mm-iconbar__tab--selected {
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-iconpanel-size:50px;
}

.mm-panel--iconpanel-0 {
  inset-inline-start: calc(0 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-1 {
  inset-inline-start: calc(1 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-2 {
  inset-inline-start: calc(2 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-3 {
  inset-inline-start: calc(3 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-4 {
  inset-inline-start: calc(4 * var(--mm-iconpanel-size));
}

.mm-panel--iconpanel-first ~ .mm-panel {
  inset-inline-start: var(--mm-iconpanel-size);
}

.mm-menu--iconpanel .mm-panel--parent .mm-divider, .mm-menu--iconpanel .mm-panel--parent .mm-navbar {
  opacity: 0;
}

.mm-menu--iconpanel .mm-panels > .mm-panel--parent {
  overflow-y: hidden;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
}

.mm-menu--iconpanel .mm-panels > .mm-panel:not(.mm-panel--iconpanel-first):not(.mm-panel--iconpanel-0) {
  border-inline-start-width: 1px;
  border-inline-start-style: solid;
}

.mm-navbars {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mm-navbars .mm-navbar {
  position: relative;
  padding-top: 0;
  border-bottom: none;
}

.mm-navbars--top {
  border-bottom: 1px solid var(--mm-color-border);
}

.mm-navbars--top .mm-navbar:first-child {
  padding-top: env(safe-area-inset-top);
}

.mm-navbars--bottom {
  border-top: 1px solid var(--mm-color-border);
}

.mm-navbars--bottom .mm-navbar:last-child {
  padding-bottom: env(safe-area-inset-bottom);
}

.mm-navbar__breadcrumbs {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mm-navbar__breadcrumbs > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-padding-end: 6px;
  padding-inline-end: 6px;
}

.mm-navbar__breadcrumbs > a {
  text-decoration: underline;
}

.mm-navbar__breadcrumbs:not(:last-child) {
  -webkit-padding-end: 0;
  padding-inline-end: 0;
}

.mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

.mm-navbar__tab {
  padding: 0 10px;
  border: 1px solid transparent;
}

.mm-navbar__tab--selected {
  background: var(--mm-color-background);
}

.mm-navbar__tab--selected:not(:first-child) {
  border-inline-start-color: var(--mm-color-border);
}

.mm-navbar__tab--selected:not(:last-child) {
  border-inline-end-color: var(--mm-color-border);
}

.mm-navbars--top.mm-navbars--has-tabs {
  border-bottom: none;
}

.mm-navbars--top.mm-navbars--has-tabs .mm-navbar {
  background: var(--mm-color-background-emphasis);
}

.mm-navbars--top.mm-navbars--has-tabs .mm-navbar--tabs ~ .mm-navbar {
  background: var(--mm-color-background);
}

.mm-navbars--top.mm-navbars--has-tabs .mm-navbar:not(.mm-navbar--tabs):last-child {
  border-bottom: 1px solid var(--mm-color-border);
}

.mm-navbars--top .mm-navbar__tab {
  border-bottom-color: var(--mm-color-border);
}

.mm-navbars--top .mm-navbar__tab--selected {
  border-top-color: var(--mm-color-border);
  border-bottom-color: transparent;
}

.mm-navbars--bottom.mm-navbar--has-tabs {
  border-top: none;
}

.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar {
  background: var(--mm-color-background);
}

.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs, .mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs ~ .mm-navbar {
  background: var(--mm-color-background-emphasis);
}

.mm-navbars--bottom .mm-navbar__tab {
  border-top-color: var(--mm-color-border);
}

.mm-navbars--bottom .mm-navbar__tab--selected {
  border-bottom-color: var(--mm-color-border);
  border-top-color: transparent;
}

.mm-searchfield {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: var(--mm-navbar-size);
  padding: 0;
  overflow: hidden;
}

.mm-searchfield__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mm-searchfield__input input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: calc(var(--mm-navbar-size) * 0.7);
  min-height: auto;
  max-height: auto;
  margin: 0;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  line-height: calc(var(--mm-navbar-size) * 0.7);
  font: inherit;
  font-size: inherit;
}

.mm-searchfield__input input, .mm-searchfield__input input:focus, .mm-searchfield__input input:hover {
  background: var(--mm-color-background-highlight);
  color: var(--mm-color-text);
}

.mm-menu[class*=-contrast] .mm-searchfield__input input {
  border: 1px solid var(--mm-color-border);
}

.mm-searchfield__input input::-ms-clear {
  display: none;
}

.mm-searchfield__btn {
  display: none;
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
}

.mm-searchfield--searching .mm-searchfield__btn {
  display: block;
}

.mm-searchfield__cancel {
  display: block;
  position: relative;
  -webkit-margin-end: -100px;
  margin-inline-end: -100px;
  -webkit-padding-start: 5px;
  padding-inline-start: 5px;
  -webkit-padding-end: 20px;
  padding-inline-end: 20px;
  visibility: hidden;
  line-height: var(--mm-navbar-size);
  text-decoration: none;
  -webkit-transition-property: visibility, margin;
  -o-transition-property: visibility, margin;
  transition-property: visibility, margin;
}

.mm-searchfield--cancelable .mm-searchfield__cancel {
  visibility: visible;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}

.mm-panel--search {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border: none !important;
}

.mm-panel__splash {
  padding: 20px;
}

.mm-panel--searching .mm-panel__splash {
  display: none;
}

.mm-panel__noresults {
  display: none;
  padding: 40px 20px;
  color: var(--mm-color-text-dimmed);
  text-align: center;
  font-size: 150%;
  line-height: 1.4;
}

.mm-panel--noresults .mm-panel__noresults {
  display: block;
}

:root {
  --mm-sectionindexer-size:20px;
}

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: var(--mm-sectionindexer-size);
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: calc(-1 * var(--mm-sectionindexer-size));
  z-index: 5;
  -webkit-transition-property: inset-inline-end;
  -o-transition-property: inset-inline-end;
  transition-property: inset-inline-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.mm-sectionindexer a {
  color: var(--mm-color-text-dimmed);
  line-height: 1;
  text-decoration: none;
  display: block;
}

.mm-sectionindexer ~ .mm-panel {
  -webkit-padding-end: 0;
  padding-inline-end: 0;
}

.mm-sectionindexer--active {
  right: 0;
}

.mm-sectionindexer--active ~ .mm-panel {
  -webkit-padding-end: var(--mm-sectionindexer-size);
  padding-inline-end: var(--mm-sectionindexer-size);
}

.mm-menu--selected-hover .mm-listitem__btn, .mm-menu--selected-hover .mm-listitem__text, .mm-menu--selected-parent .mm-listitem__btn, .mm-menu--selected-parent .mm-listitem__text {
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
}

@media (hover: hover) {
  .mm-menu--selected-hover .mm-listview:hover > .mm-listitem--selected:not(:hover) > .mm-listitem__text {
    background: 0 0;
  }
  .mm-menu--selected-hover .mm-listitem__btn:hover, .mm-menu--selected-hover .mm-listitem__text:hover {
    background: var(--mm-color-background-emphasis);
  }
}
.mm-menu--selected-parent .mm-listitem__btn, .mm-menu--selected-parent .mm-listitem__text {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media (hover: hover) {
  .mm-menu--selected-parent .mm-listitem__btn:hover, .mm-menu--selected-parent .mm-listitem__text:hover {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
}
.mm-menu--selected-parent .mm-panel--parent .mm-listitem:not(.mm-listitem--selected-parent) > .mm-listitem__text {
  background: 0 0;
}

.mm-menu--selected-parent .mm-listitem--selected-parent > .mm-listitem__btn, .mm-menu--selected-parent .mm-listitem--selected-parent > .mm-listitem__text {
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-sidebar-collapsed-size:50px;
  --mm-sidebar-expanded-size:var(--mm-max-size);
}

.mm-wrapper--sidebar-collapsed .mm-slideout {
  width: calc(100% - var(--mm-sidebar-collapsed-size));
  -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
}

[dir=rtl] .mm-wrapper--sidebar-collapsed .mm-slideout {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-divider, .mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-navbar {
  opacity: 0;
}

.mm-wrapper--sidebar-expanded .mm-menu--sidebar-expanded {
  width: var(--mm-sidebar-expanded-size);
  border-right-width: 1px;
  border-right-style: solid;
}

.mm-wrapper--sidebar-expanded.mm-wrapper--opened {
  overflow: auto;
}

.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-wrapper__blocker {
  display: none;
}

.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout {
  width: calc(100% - var(--mm-sidebar-expanded-size));
  -webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
}

[dir=rtl] .mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/*--------------------------------------------------------------------------------
General Site Styling
--------------------------------------------------------------------------------*/
@font-face {
  font-family: "OzHandicraft";
  src: url("../fonts/OzHandicraft.woff2") format("woff2"), url("../fonts/OzHandicraft.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../fonts/fa-solid-900.eot");
  src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa, .fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: auto;
  src: url("../fonts/fa-light-300.eot");
  src: url("../fonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-light-300.woff2") format("woff2"), url("../fonts/fa-light-300.woff") format("woff"), url("../fonts/fa-light-300.ttf") format("truetype"), url("../fonts/fa-light-300.svg#fontawesome") format("svg");
}
.fal {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../fonts/fa-regular-400.eot");
  src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

/*--------------------------------------------------------------------------------
General Typography
--------------------------------------------------------------------------------*/
html, body {
  font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.25;
}

h1,
.h1,
.product-single__container .product__summary .product_title {
  font-family: "OzHandicraft", "Arial", sans-serif;
  font-size: 6.25rem;
  font-weight: 400;
  line-height: 1.125em;
  margin: 0 0 0.5em;
}
@media (max-width: 768px) {
  h1,
  .h1,
  .product-single__container .product__summary .product_title {
    font-size: 4.25rem;
  }
}
@media (max-width: 640px) {
  h1,
  .h1,
  .product-single__container .product__summary .product_title {
    font-size: 3.5rem;
  }
}

h2,
.h2 {
  font-family: "OzHandicraft", "Arial", sans-serif;
  font-size: 4.625rem;
  font-weight: 400;
  line-height: 1.125em;
  margin: 0 0 0.5em;
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}

h3,
.h3,
.product-single__container .product__related .related.products > h2 {
  font-family: "OzHandicraft", "Arial", sans-serif;
  font-size: 3.625rem;
  font-weight: 400;
  line-height: 1.125em;
  margin: 0 0 0.5em;
}
@media (max-width: 768px) {
  h3,
  .h3,
  .product-single__container .product__related .related.products > h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 640px) {
  h3,
  .h3,
  .product-single__container .product__related .related.products > h2 {
    font-size: 2.125rem;
  }
}

h4,
.h4,
.product-single__container .product__summary .price {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.125em;
  margin: 0 0 0.5em;
}
@media (max-width: 768px) {
  h4,
  .h4,
  .product-single__container .product__summary .price {
    font-size: 2rem;
  }
}

h5,
.h5 {
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.125em;
  margin: 0 0 0.5em;
}
@media (max-width: 768px) {
  h5,
  .h5 {
    font-size: 1.75rem;
  }
}

h6,
.h6 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.125em;
  margin: 0 0 0.5em;
}
@media (max-width: 768px) {
  h6,
  .h6 {
    font-size: 1.5rem;
  }
}

p,
.p {
  font-size: 1rem;
  font-weight: normal;
}
p:last-child,
.p:last-child {
  margin-bottom: 0;
}

a {
  color: #0c0c0c;
  text-decoration: none;
}

.standard-links a, p a,
.p a {
  color: #0c0c0c;
  text-decoration: underline;
}
.standard-links a:hover, p a:hover,
.p a:hover {
  color: #0B3E69;
}

.site-main .page-content .text--white {
  color: #fff;
}

.button, .woocommerce .button, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  background: #0c0c0c;
  border: none;
  border-radius: 0.625rem;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.25rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-container:hover .button, .hover-container:hover .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .hover-container:hover a, .hover-container:hover .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .hover-container:hover .wc-block-components-checkout-place-order-button, .button:hover, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a:hover, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  background: #0046BF;
}
.button.button--wide, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a.button--wide, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .button--wide.wc-block-components-checkout-place-order-button {
  padding-left: 3rem;
  padding-right: 3rem;
}

.table--alternate tr {
  background: #fff;
}
.table--alternate tr td, .table--alternate tr th {
  background: #fff;
}
.table--alternate tr:nth-child(even) {
  background: #f3f3f3;
}
.table--alternate tr:nth-child(even) td, .table--alternate tr:nth-child(even) th {
  background: #f3f3f3;
}

.textwrap-balance {
  text-wrap: balance;
}

@media (max-width: 640px) {
  .alignleft,
  .alignright {
    display: block;
    float: none;
    margin: 1rem auto;
    width: 100%;
  }
}

address {
  font-style: normal;
}

/*--------------------------------------------------------------------------------
General Form Styling
--------------------------------------------------------------------------------*/
.form--white .gform_required_legend {
  display: none;
}
.form--white label {
  color: #fff;
}
.form--white .gfield_required_asterisk {
  color: #fff !important;
}
.form--white input[type=submit] {
  margin: 0 auto;
}

.inline-input-group {
  align-items: center;
  display: flex;
}
.inline-input-group input[type=email],
.inline-input-group input[type=text] {
  border-radius: 13px 0 0 13px;
  border-right: 0;
}
.inline-input-group .button, .inline-input-group .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .inline-input-group a, .inline-input-group .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .inline-input-group .wc-block-components-checkout-place-order-button, .inline-input-group input[type=submit] {
  border-width: 1px;
  border-radius: 0 13px 13px 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.inline-input-group--narrow {
  align-items: normal;
}
.inline-input-group--narrow input[type=email],
.inline-input-group--narrow input[type=text] {
  font-size: 0.875rem;
}
.inline-input-group--narrow .button, .inline-input-group--narrow .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .inline-input-group--narrow a, .inline-input-group--narrow .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .inline-input-group--narrow .wc-block-components-checkout-place-order-button, .inline-input-group--narrow input[type=submit] {
  font-size: 0.875rem;
  padding-left: 1em;
  padding-right: 1em;
}

.checkbox-display, .site-container input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  border: 0.125em solid #CBCBCB;
  border-radius: 4px;
  color: #0046BF;
  display: inline-grid;
  font: inherit;
  height: 1.4em;
  margin: 0;
  place-content: center;
  transform: translateY(-0.075em);
  transition: border-color 0.075s ease;
  width: 1.4em;
}
.checkbox-display:before, .site-container input[type=checkbox]:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 12 9' style='enable-background:new 0 0 12 9;' xml:space='preserve'%3E%3Cpath fill='%230046BF' d='M10.2,0.5L4,6.6L1.8,4.4c-0.1-0.1-0.3-0.1-0.4,0L0.7,5c-0.1,0.1-0.1,0.3,0,0.4l3.1,3.1c0.1,0.1,0.3,0.1,0.4,0 l7-7c0.1-0.1,0.1-0.3,0-0.4l-0.7-0.7C10.5,0.4,10.3,0.4,10.2,0.5z'/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.8em;
  opacity: 0;
  transform-origin: bottom left;
  transition: opacity 0.075s ease;
  width: 0.8em;
}
.checkbox-display:checked, .site-container input[type=checkbox]:checked {
  border-color: #0046BF;
}
.checkbox-display:checked::before, .site-container input[type=checkbox]:checked::before {
  opacity: 1;
}
.checkbox-display:disabled, .site-container input[type=checkbox]:disabled {
  background: #ddd;
  cursor: not-allowed;
}

.radio-display, .site-container .gform_wrapper.gravity-theme input[type=radio].gfield-choice-input {
  appearance: none;
  background-color: #fff;
  border-radius: 50%;
  border: 0.1em solid #CBCBCB;
  color: currentColor;
  display: inline-grid;
  font: inherit;
  height: 1.15em;
  margin: 0;
  min-width: 1.15em;
  place-content: center;
  transform: translateY(-0.075em);
  width: 1.15em;
}
.radio-display::before, .site-container .gform_wrapper.gravity-theme input[type=radio].gfield-choice-input::before {
  background-color: #0B3E69;
  border-radius: 50%;
  box-shadow: inset 1em 1em #0B3E69;
  content: "";
  height: 0.45em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  width: 0.45em;
}
.radio-display:checked::before, .site-container .gform_wrapper.gravity-theme input[type=radio].gfield-choice-input:checked::before {
  transform: scale(1);
}

.select-display, .site-container .select-container {
  align-items: center;
  background: #fff;
  border-radius: 100em;
  display: flex;
  gap: 1rem;
  padding: 0 1.5rem 0 2rem;
  position: relative;
}
.select-display:after, .site-container .select-container:after {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 8.4 5.2'%3E%3Cpath fill='%239b9b9b' d='M4.2,5.2c-.3,0-.5-.1-.7-.3L.3,1.7C0,1.3-.1.7.3.3c.4-.4,1-.4,1.4,0,0,0,0,0,0,0l2.5,2.5L6.7.3c.4-.4,1-.4,1.4,0,.4.4.4,1,0,1.4l-3.2,3.2c-.2.2-.4.3-.7.3Z'/%3E%3C/svg%3E");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
.select-display:hover:after, .site-container .select-container:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 8.4 5.2'%3E%3Cpath fill='%230046BF' d='M4.2,5.2c-.3,0-.5-.1-.7-.3L.3,1.7C0,1.3-.1.7.3.3c.4-.4,1-.4,1.4,0,0,0,0,0,0,0l2.5,2.5L6.7.3c.4-.4,1-.4,1.4,0,.4.4.4,1,0,1.4l-3.2,3.2c-.2.2-.4.3-.7.3Z'/%3E%3C/svg%3E");
}
.select-display label, .site-container .select-container label {
  display: block;
  white-space: nowrap;
}
.select-display select, .site-container .select-container select {
  background: none !important;
  border: 0 !important;
  color: #0B3E69;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.25;
  padding: 1.25rem;
}
.select-display select option, .site-container .select-container select option {
  color: #0c0c0c;
}

.site-container label {
  font-weight: 600;
}
.site-container select {
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.18262 5.34546C5.3584 5.52124 5.60449 5.52124 5.78027 5.34546L9.8584 1.23218C10.0342 1.0564 10.0342 0.775146 9.8584 0.634521L9.6123 0.388428C9.43652 0.212646 9.19043 0.212646 9.01465 0.388428L5.49902 3.97437L1.94824 0.353271C1.77246 0.212646 1.52637 0.212646 1.35059 0.353271L1.10449 0.634521C0.928711 0.775146 0.928711 1.0564 1.10449 1.23218L5.18262 5.34546Z' fill='%232F2E29'/%3E%3C/svg%3E%0A");
  background-position: calc(100% - 1rem) 50%;
  background-repeat: no-repeat;
  border: 1px solid #0c0c0c;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  outline: none;
  padding: 1em 2.25em 1em 0.75em;
  width: 100%;
  z-index: 1;
}
.site-container select::-ms-expand {
  display: none;
}
.site-container select:hover, .site-container select:active, .site-container select:focus {
  border-color: #0046BF;
}
.site-container .gform_wrapper.gravity-theme .radio--textonly .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-container .gform_wrapper.gravity-theme .radio--textonly .gchoice {
  display: block;
}
.site-container .gform_wrapper.gravity-theme .radio--textonly .gchoice input[type=radio].gfield-choice-input {
  left: -999em;
  position: absolute;
}
.site-container .gform_wrapper.gravity-theme .radio--textonly .gchoice input[type=radio].gfield-choice-input:checked + label {
  color: #0046BF;
  text-decoration: underline;
}
.site-container .gform_wrapper.gravity-theme .radio--textonly .gchoice label {
  cursor: pointer;
  text-wrap: nowrap;
}
.site-container input[type=text], .site-container input[type=date], .site-container input[type=email], .site-container input[type=number], .site-container input[type=password], .site-container input[type=search], .site-container input[type=tel], .site-container input[type=url], .site-container textarea {
  border: 1px solid #0c0c0c;
  border-radius: 4px;
  line-height: 1;
  padding: 0.75rem 1rem;
}
.site-container input[type=text]:active, .site-container input[type=text]:focus, .site-container input[type=date]:active, .site-container input[type=date]:focus, .site-container input[type=email]:active, .site-container input[type=email]:focus, .site-container input[type=number]:active, .site-container input[type=number]:focus, .site-container input[type=password]:active, .site-container input[type=password]:focus, .site-container input[type=search]:active, .site-container input[type=search]:focus, .site-container input[type=tel]:active, .site-container input[type=tel]:focus, .site-container input[type=url]:active, .site-container input[type=url]:focus, .site-container textarea:active, .site-container textarea:focus {
  border-color: #0B3E69;
}
/*--------------------------------------------------------------------------------
Gravity Form Specific Styling
--------------------------------------------------------------------------------*/
.site-container .gform_wrapper.gravity-theme .gform_fields {
  row-gap: 2rem;
}
.site-container .gform_wrapper.gravity-theme .gform_footer {
  margin-top: 2rem;
}

/*--------------------------------------------------------------------------------
Ninja Forms Specific Styling
--------------------------------------------------------------------------------*/
.site-container .nf-multi-cell .nf-cell {
  padding-left: 10px;
  padding-right: 10px;
}
.site-container .nf-form-content {
  padding: 0;
  max-width: 100%;
}
.site-container .nf-response-msg {
  margin-bottom: 2.5rem;
}
.site-container .nf-response-msg p {
  font-size: 1rem;
  border: 1px solid #0B3E69;
  background-color: #0B3E69;
  text-align: center;
  color: #ffffff;
  padding: 0.75rem;
}
.site-container .nf-after-form-content .nf-error-msg {
  border: 1px solid #D71712;
  background-color: #D71712;
  text-align: center;
  color: #ffffff;
  padding: 0.75rem;
  margin-top: 1.875rem;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.site-container .html-wrap {
  font-size: 1.125rem;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}
.site-container .list-radio-wrap .nf-field-element li label, .site-container .list-checkbox-wrap .nf-field-element li label {
  margin-left: 4rem !important;
}
.site-container .nf-form-content label {
  font-weight: 400;
}
.site-container .ninja-forms-req-symbol,
.site-container .nf-form-fields-required {
  display: none;
}
.site-container .nf-form-content .nf-field-element input[type=submit] {
  -webkit-appearance: none;
  background-color: #23a2c4;
  border-color: #23a2c4;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1em;
  min-width: 150px;
  overflow: hidden;
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background 0.25s ease-in-out;
}

/*--------------------------------------------------------------------------------
Plugin-Specific Styling
IMPORTED: Restrict Content Pro / Woo Commerce
--------------------------------------------------------------------------------*/
ul#rcp_subscription_levels {
  text-align: left;
}

div.rcp_gateway_authorizenet_fields {
  text-align: left;
  margin-top: 30px;
}

.rcp_form .rcp_card_fieldset input[type=text] {
  padding: 0.875rem 1rem;
}
.rcp_form input[type=submit] {
  border: 1px solid transparent;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: normal;
  line-height: 1em;
  min-width: 150px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background 0.25s ease-in-out;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: #0B3E69;
  color: #ffffff;
  padding: 0.875rem 1rem;
}
.rcp_form input[type=submit]:hover {
  background-color: #23a2c4;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

p#rcp_submit_wrap {
  text-align: left;
  margin: 1.25rem 0;
}

/*--------------------------------------------------------------------------------
Plugin-Specific Styling
IMPORTED: The Events Calendar
--------------------------------------------------------------------------------*/
:root {
  --tec-color-accent-primary: #0B3E69;
  --tec-color-link-accent-hover: #23A2C4;
  --tec-color-accent-primary-hover: #23A2C4;
  --tec-font-family-sans-serif: "Open Sans", sans-serif;
  --tec-color-link-primary: #0B3E69;
  --tec-color-link-primary-hover: #23A2C4;
}

.tribe-events .tribe-events-c-search__button, .tribe-events button.tribe-events-c-search__button {
  background-color: #0B3E69;
  color: #ffffff;
}
.tribe-events .tribe-events-c-search__button:hover, .tribe-events button.tribe-events-c-search__button:hover {
  background-color: #23a2c4;
}

.entry .entry-content .event-tickets .tribe-tickets__tickets-form, .event-tickets .tribe-tickets__tickets-form {
  max-width: 100%;
}

.class-list .bdt-event-list .bdt-event-title-wrap {
  padding-top: 10px;
}

.event-tickets .tribe-tickets__tickets-item {
  column-gap: 1.5rem;
}

/*--------------------------------------------------------------------------------
Imports
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
General Header Setup
--------------------------------------------------------------------------------*/
.menu,
.menu ul,
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-editor-active header.site-header {
  position: static;
}

@media (min-width: 1025px) {
  .admin-bar .site-header {
    top: 32px !important;
  }
}

/*--------------------------------------------------------------------------------
Navigation
--------------------------------------------------------------------------------*/
.headroom {
  position: sticky;
  transition: transform 200ms linear;
  will-change: transform;
}
.headroom.headroom--not-top .site-header__bottom-decoration {
  transform: translateY(-100%);
}
.headroom.headroom--not-top .site-header__inner .site-header__logo {
  max-width: 11.25rem;
}
.headroom.headroom--not-top .site-header__inner .site-header__subnav {
  margin-bottom: 0.9rem;
  transform: scale(0.875);
  transform-origin: right;
}
.headroom.headroom--pinned {
  transform: translateY(0%);
}
.headroom.headroom--unpinned {
  transform: translateY(-100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
}
.site-header .site-header__container {
  background-color: #0B3E69;
  position: relative;
  width: 100%;
  z-index: 5;
}
.site-header .site-header__inner {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1550px;
  padding: 0 1rem 0.5rem 1rem;
}
@media (max-width: 1024px) {
  .site-header .site-header__inner {
    align-items: center;
  }
}
.site-header .site-header__inner .site-header__logo {
  display: block;
  max-width: 16.25rem;
  transition: max-width 0.4s ease;
  transition-delay: 250ms;
  will-change: max-width;
}
@media (max-width: 1024px) {
  .site-header .site-header__inner .site-header__logo {
    max-width: 11.25rem;
  }
}
.site-header .site-header__inner .site-header__logo img {
  display: block;
  line-height: 1;
  width: 100%;
}
.site-header .site-header__inner .site-header__body {
  margin-left: auto;
}
.site-header .site-header__inner .site-header__nav {
  align-items: center;
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .site-header .site-header__inner .site-header__nav {
    gap: 1rem;
  }
}
.site-header .site-header__inner .site-header__btn {
  cursor: pointer;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  transition: 0.3s ease;
}
.site-header .site-header__inner .site-header__btn i {
  margin-left: 0.5rem;
}
.site-header .site-header__inner .site-header__subnav {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
  margin-left: auto;
  transition: all 0.4s ease;
  transition-delay: 250ms;
  background-color: #1F4E75;
  justify-self: baseline;
  padding: 0.3rem 1.2rem;
}
.site-header .site-header__inner .site-header__subnav .menu li a {
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .site-header .site-header__inner .site-header__subnav {
    display: none;
  }
}
.site-header .site-header__inner .site-header__subnav .subnav__social {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.site-header .site-header__inner .site-header__subnav .subnav__social .social__entry:hover svg path {
  fill: #23a2c4;
}
.site-header .site-header__inner .site-header__subnav .subnav__social svg {
  display: block;
  max-height: 1.5rem;
  width: 100%;
}
.site-header .site-header__inner .site-header__subnav .subnav__social svg path {
  fill: #fff;
  transition: fill 0.25s ease;
}
.site-header .site-header__inner .site-header__cart {
  display: block;
  position: relative;
}
.site-header .site-header__inner .site-header__cart .cart-amount {
  align-items: center;
  background-color: #23a2c4;
  border-radius: 100em;
  color: #fff;
  display: flex;
  font-size: 0.75rem;
  font-weight: 500;
  justify-content: center;
  left: 0;
  min-height: 3ch;
  min-width: 3ch;
  position: absolute;
  top: 0;
  transform: translate(-30%, -50%);
  width: auto;
  line-height: 1.2em;
}
.site-header .site-header__inner .site-header__cart svg {
  display: block;
  width: 2rem;
}
@media (max-width: 1024px) {
  .site-header .site-header__inner .site-header__cart svg {
    max-width: 2rem;
  }
}
.site-header .site-header__inner .site-header__cart svg path {
  fill: #fff;
}
.site-header .site-header__inner .site-header__search--mobile {
  display: none;
}
.site-header .site-header__inner .site-header__search--mobile i {
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .site-header .site-header__inner .site-header__search--mobile {
    display: block;
  }
}
@media (max-width: 1024px) {
  .site-header .site-header__inner .site-header__button {
    display: none;
  }
}
.site-header .site-header__inner .site-header__button .button {
  background: #ffffff;
  color: #0B3E69;
  font-weight: normal;
  text-align: center;
}
.site-header .site-header__inner .site-header__button .button:hover {
  background: #23a2c4;
  color: #ffffff;
}
.site-header .site-header__inner .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: flex-end;
}
@media (max-width: 1280px) {
  .site-header .site-header__inner .menu {
    gap: 1rem 1.5rem;
  }
}
.site-header .site-header__inner .menu li {
  display: block;
}
.site-header .site-header__inner .menu li:hover:after, .site-header .site-header__inner .menu li:hover > a {
  color: rgb(70.2, 189.9428571429, 222);
}
.site-header .site-header__inner .menu li.mobile-item {
  display: none;
}
.site-header .site-header__inner .menu li a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.site-header .site-header__inner .menu li a strong {
  display: block;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 1rem;
}
.site-header .site-header__inner .menu .sub-menu li a {
  font-weight: 400;
}
.site-header .site-header__inner .two-col .sub-menu {
  columns: 2;
}
@media (max-width: 1024px) {
  .site-header .site-header__inner .site-header__menu {
    display: none;
  }
}
.site-header .site-header__inner .site-header__menu .menu-item-has-children {
  position: relative;
}
.site-header .site-header__inner .site-header__menu .menu-item-has-children > a {
  padding: 1rem 0 2rem;
}
.site-header .site-header__inner .site-header__menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  pointer-events: all;
}
.site-header .site-header__inner .site-header__menu .menu-item-has-children:after {
  color: #fff;
  content: "\f078";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-weight: 200;
  margin-left: 0.3125rem;
  right: 0;
  top: 0;
}
.site-header .site-header__inner .site-header__menu .sub-menu {
  background-color: #156495;
  flex-direction: column;
  left: -0.75rem;
  margin: 1rem 0 0;
  min-width: 17.5rem;
  opacity: 0;
  pointer-events: none;
  padding: 0.75rem 0;
  position: absolute;
  text-align: left;
  top: 100%;
  transition: all 0.25s ease;
  z-index: 999;
}
.site-header .site-header__inner .site-header__menu .sub-menu:before {
  position: absolute;
  content: "";
  top: -15px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #156495 transparent;
}
.site-header .site-header__inner .site-header__menu .sub-menu li.current-menu-item a {
  font-weight: 700;
}
.site-header .site-header__inner .site-header__menu .sub-menu li a {
  display: block;
  font-size: 1.125rem;
  padding: 0.5rem 1rem;
}
.site-header .site-header__inner .site-header__menu .sub-menu li a:hover {
  color: #23a2c4;
}
.site-header .site-header__bottom-decoration {
  position: absolute;
  top: calc(100% - 1px);
  transition: transform 0.2s ease;
  width: 100%;
  z-index: 1;
}
.site-header .site-header__bottom-decoration img {
  display: block;
  height: auto;
  line-height: 1;
  width: 100%;
}
.site-header .site-header__mobile-button {
  display: none;
}
.site-header .site-header__mobile-button .hamburger {
  background: #fff;
  border-radius: 100%;
  line-height: 1;
  padding: 0.875rem;
}
@media (max-width: 1024px) {
  .site-header .site-header__mobile-button .hamburger {
    padding: 0.5rem;
  }
}
@media (max-width: 1024px) {
  .site-header .site-header__mobile-button {
    display: block;
  }
}

.site-header__searchform {
  display: flex;
  align-items: baseline;
}
.site-header__searchform .search-feilds-wrapper {
  width: 80%;
  margin-right: 1rem;
}
.site-header__searchform input[type=text] {
  border: 1px solid #AFBAC6;
  margin-right: 0.9375rem;
  min-height: 2.5rem;
  margin-bottom: 1rem;
}
.site-header__searchform input[type=submit] {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  background-color: #0B3E69;
  padding: 0.9375rem 2.5rem;
  color: #fff;
  font-size: 1.0625rem;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #0B3E69;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: 0.3s ease;
}

/*--------------------------------------------------------------------------------
Mobile Header & Navigation
--------------------------------------------------------------------------------*/
:root {
  --mm-max-size: 100%;
  --mm-min-size: 100%;
  --mm-navbar-size: 60px;
  --mm-size: 100%;
}

#mobile-menu:not(.mm-menu) {
  display: none !important;
}

.mm-wrapper--position-left .mm-slideout,
.mm-wrapper--position-right .mm-slideout {
  transform: none;
}

.mm-menu.mm-menu--theme-light {
  background: #0B3E69;
  color: #fff;
}
.mm-menu .mm-navbars--top {
  background: #0B3E69;
  border-bottom: none;
  position: relative;
  z-index: 10;
}
.mm-menu .mm-navbars--top .mm-navbar {
  background: transparent;
  height: auto;
  opacity: 0;
  padding: 0;
  transition: opacity 0.75s ease;
}
.mm-menu .mm-navbars--top .mm-navbar.menu-hidden {
  display: none;
}
.mm-menu .mm-navbars--top .mm-navbar__title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}
.mm-menu .mm-navbars--top .mm-btn--prev:before {
  border-color: #fff;
  height: 12px;
  width: 12px;
}
.mm-menu .mm-navbars--top .mm-btn--close {
  color: #0046BF;
  justify-content: flex-end;
  line-height: 1;
  margin-left: auto;
  padding-right: 1rem;
}
.mm-menu .mm-navbars--top .mm-btn--close:before {
  color: #fff;
  font-size: 52px;
}
.mm-menu .mm-panels {
  background: transparent;
}
.mm-menu .mm-panel--parent {
  transform: translateX(-100%);
}
.mm-menu .mm-panel {
  background: transparent;
  padding: 1.25rem;
  text-align: center;
}
.mm-menu .mm-panel .menu-item a {
  color: #fff;
  display: block;
  font-size: 1.375rem;
  font-weight: 400;
  padding: 1.25rem 0;
}
.mm-menu .mm-listview .mm-listitem:after {
  display: none;
}
.mm-menu .mm-listview .mm-listitem__text {
  color: #0c0c0c;
  font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem;
}
.mm-menu .mm-listview .mm-btn--next {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.mm-menu .mm-listview .mm-btn--next:after {
  border-color: #fff;
}
.mm-menu .mm-listview .mm-listitem__btn:not(.mm-listitem__text) {
  border: 0;
}
.mm-menu .mm-listview .submenu-button {
  align-items: center;
  display: flex;
  padding: 1.25rem;
}
.mm-menu .mm-listview .submenu-button .submenu-button__text {
  margin: 0;
}
.mm-menu .mm-listview .submenu-button svg {
  height: auto;
  margin-left: auto;
  width: 8px;
}
.mm-menu .mm-listview .submenu-button + .mm-btn:after {
  display: none;
}
.mm-menu.mm-home .mm-navbars--top .mm-navbar__title {
  display: none;
}
.mm-menu.mm-menu--opened .mm-navbars--top .mm-navbar {
  opacity: 1;
}
.mm-menu .site-header__button .button {
  background: #fff;
  color: #0B3E69;
  font-size: 1.125rem;
  font-weight: normal;
  margin: 1.5rem auto 3rem;
  text-align: center;
}
.mm-menu .site-header__button .button:hover {
  background: rgb(28.8181818182, 133.387012987, 161.3818181818);
}
.mm-menu .subnav__social {
  align-items: center;
  border-top: 1px solid #23a2c4;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 0 auto;
  padding-top: 3rem;
}
.mm-menu .subnav__social .social__entry:hover svg path {
  fill: #23a2c4;
}
.mm-menu .subnav__social svg {
  display: block;
  max-height: 2rem;
  width: 100%;
}
.mm-menu .subnav__social svg path {
  fill: #fff;
  transition: fill 0.25s ease;
}
.mm-menu .mobile-menu__contact {
  color: #fff;
  margin-top: 2rem;
}
.mm-menu .mobile-menu__contact p {
  display: block;
  font-size: 1.125rem;
  line-height: 1.5;
}

/*--------------------------------------------------------------------------------
Imports
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
General Footer Styling
--------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
  body .footer-menu-wrap.elementor-element {
    display: none;
  }
}

@media (max-width: 1024px) {
  .footer-menu-wrap .menu-item a {
    justify-content: center;
  }
}

/*--------------------------------------------------------------------------------
Site Components
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
Imports
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
General Imports
--------------------------------------------------------------------------------*/
.classes-page-events-container #tribe-events-content {
  margin-bottom: 0;
}
.classes-page-events-container .single-tribe_events .tribe-events-event-meta,
.classes-page-events-container .tribe-events.tribe-common {
  display: none;
}

/*--------------------------------------------------------------------------------
Imports
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
Elementor Widget Modifications
--------------------------------------------------------------------------------*/
.elementor-element .elementor-widget-theme-post-content p,
.elementor-element .elementor-widget-text-editor p {
  font-size: inherit;
  line-height: 1.7;
}
.elementor-element .elementor-widget-theme-post-content p:last-child,
.elementor-element .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}
.elementor-element .elementor-widget-theme-post-content ol,
.elementor-element .elementor-widget-theme-post-content ul,
.elementor-element .elementor-widget-text-editor ol,
.elementor-element .elementor-widget-text-editor ul {
  margin-bottom: 1.75em;
  padding-left: 1.5em;
}
.elementor-element .elementor-widget-theme-post-content ol li,
.elementor-element .elementor-widget-theme-post-content ul li,
.elementor-element .elementor-widget-text-editor ol li,
.elementor-element .elementor-widget-text-editor ul li {
  margin-bottom: 1em;
}

.dialog-widget.elementor-lightbox .elementor-video-container {
  max-width: 1080px;
}

.elementor-element.elementor-widget-button .elementor-button-icon {
  align-items: center;
  display: flex;
  font-size: 1.25em;
  line-height: 1;
  margin-right: 0.25em;
}
.elementor-element.elementor-widget-button .elementor-button-icon + .elementor-button-text {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.elementor-element .elementor-widget-theme-post-featured-image a {
  width: 100%;
}

/*--------------------------------------------------------------------------------
Post Widget: News Block
--------------------------------------------------------------------------------*/
.news-block .elementor-post:nth-child(even) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .news-block .elementor-post:nth-child(even) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .news-block .elementor-post:nth-child(3), .news-block .elementor-post:nth-child(4) {
    display: none;
  }
}
.news-block .elementor-post__card .elementor-post__badge {
  border-radius: 10em 0 0 10em;
  margin-top: 1.5rem;
}
.news-block .elementor-post__read-more:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 200;
  content: "\f178";
  font-size: 1.15em;
  padding-left: 0.625rem;
  position: relative;
  top: 1px;
  transition: padding 0.25s ease;
  padding-right: 4px;
}

.blog-item-big .elementor-loop-container.elementor-grid {
  min-height: 100%;
}

.e-con.blog-hover--big {
  height: 100%;
}
.e-con.blog-hover--big:hover.blog-hover__image:after {
  opacity: 1;
}

.blog-hover__image:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 62, 105, 0.68);
  opacity: 0;
  transition: 0.3s ease;
}
.blog-hover:hover .blog-hover__image:after {
  opacity: 1;
}

.elementor-widget-wp-widget-categories h5 {
  color: #0B3E69;
  border-bottom: 1px solid #23a2c4;
  padding-bottom: 0.5rem;
}
.elementor-widget-wp-widget-categories ul {
  padding: 0;
}
.elementor-widget-wp-widget-categories ul li {
  padding-bottom: 0.5rem;
  list-style: none;
}
.elementor-widget-wp-widget-categories ul li a {
  color: #0B3E69;
}

.blog-cat__heading {
  color: #0B3E69;
  border-bottom: 1px solid #23a2c4;
  padding-bottom: 0.5rem;
}

.cat_wrapper {
  display: flex;
  flex-direction: column;
}
.cat_wrapper .blog-cat {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.cat_wrapper .blog-cat.active-cat {
  font-weight: 700;
}

.hover-btn {
  transition: 0.3s ease;
}
.hover-btn .elementor-heading-title {
  transition: 0.3s ease;
}
.hover-btn:hover .elementor-widget-container {
  border-color: #23a2c4 !important;
}
.hover-btn:hover .elementor-heading-title {
  color: #23a2c4 !important;
}

/*--------------------------------------------------------------------------------
Imports
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
Imports
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
General WC Styling
--------------------------------------------------------------------------------*/
.shoptable--standard, .site-main table.shop_table {
  border: 0;
  text-align: left;
}
.shoptable--standard ul, .site-main table.shop_table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shoptable--clean {
  border: 0;
  text-align: left;
}
.shoptable--clean tbody tr td, .shoptable--clean tbody tr th, .shoptable--clean tbody tr.cart_item td, .shoptable--clean tbody tr.cart_item th, .shoptable--clean thead tr td, .shoptable--clean thead tr th, .shoptable--clean thead tr.cart_item td, .shoptable--clean thead tr.cart_item th {
  border: 0;
  padding: 1rem;
}
.shoptable--clean tbody tr:last-child td, .shoptable--clean tbody tr.cart_item:last-child td, .shoptable--clean thead tr:last-child td, .shoptable--clean thead tr.cart_item:last-child td {
  padding-bottom: 2rem;
}
.shoptable--clean tfoot tr td, .shoptable--clean tfoot tr th {
  border: 0;
  padding: 1rem 1rem 0;
}
.shoptable--clean ul li {
  padding: 0 0 0.5rem;
}
.shoptable--clean ul li label {
  padding-left: 0.25rem;
}

.site-main .woocommerce-breadcrumb {
  color: #0B3E69;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .site-main .woocommerce-breadcrumb {
    font-size: 0.9rem;
    text-align: center;
  }
}
.site-main .woocommerce-breadcrumb .woocommerce-breadcrumb-delimiter {
  display: inline-block;
  margin: 0 0.5rem;
  transform: translateY(0.2em);
}
.site-main .woocommerce-breadcrumb .woocommerce-breadcrumb-delimiter svg {
  display: block;
  line-height: 1;
  width: 7px;
}
.site-main .woocommerce-breadcrumb .woocommerce-breadcrumb-delimiter svg path {
  fill: #0c0c0c;
}
.site-main .woocommerce-breadcrumb a {
  color: #0c0c0c;
}
.site-main .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}
.site-main .woocommerce-notices-wrapper,
.site-main .woocommerce-NoticeGroup {
  overflow: auto;
}
.site-main .woocommerce-notices-wrapper:first-child,
.site-main .woocommerce-NoticeGroup:first-child {
  margin-bottom: 2rem;
}
.site-main .woocommerce-notices-wrapper:first-child:empty,
.site-main .woocommerce-NoticeGroup:first-child:empty {
  margin-bottom: 0;
}
.site-main .woocommerce-notices-wrapper .woocommerce-info,
.site-main .woocommerce-notices-wrapper .woocommerce-message,
.site-main .woocommerce-notices-wrapper .woocommerce-error, .site-main .woocommerce-notices-wrapper ~ .woocommerce-error,
.site-main .woocommerce-NoticeGroup .woocommerce-info,
.site-main .woocommerce-NoticeGroup .woocommerce-message,
.site-main .woocommerce-NoticeGroup .woocommerce-error,
.site-main .woocommerce-NoticeGroup ~ .woocommerce-error {
  border: 2px solid #0c0c0c;
  color: #0c0c0c;
  list-style: none;
  margin: 2rem auto 0;
  max-width: 1280px;
  padding: 0.75rem;
  text-align: center;
  width: 100%;
}
.site-main .woocommerce-notices-wrapper .woocommerce-info:last-child,
.site-main .woocommerce-notices-wrapper .woocommerce-message:last-child,
.site-main .woocommerce-notices-wrapper .woocommerce-error:last-child, .site-main .woocommerce-notices-wrapper ~ .woocommerce-error:last-child,
.site-main .woocommerce-NoticeGroup .woocommerce-info:last-child,
.site-main .woocommerce-NoticeGroup .woocommerce-message:last-child,
.site-main .woocommerce-NoticeGroup .woocommerce-error:last-child,
.site-main .woocommerce-NoticeGroup ~ .woocommerce-error:last-child {
  margin-bottom: 0;
}
.site-main .woocommerce-notices-wrapper .woocommerce-info li,
.site-main .woocommerce-notices-wrapper .woocommerce-message li,
.site-main .woocommerce-notices-wrapper .woocommerce-error li, .site-main .woocommerce-notices-wrapper ~ .woocommerce-error li,
.site-main .woocommerce-NoticeGroup .woocommerce-info li,
.site-main .woocommerce-NoticeGroup .woocommerce-message li,
.site-main .woocommerce-NoticeGroup .woocommerce-error li,
.site-main .woocommerce-NoticeGroup ~ .woocommerce-error li {
  margin-bottom: 1.5rem;
}
.site-main .woocommerce-notices-wrapper .woocommerce-info li:last-child,
.site-main .woocommerce-notices-wrapper .woocommerce-message li:last-child,
.site-main .woocommerce-notices-wrapper .woocommerce-error li:last-child, .site-main .woocommerce-notices-wrapper ~ .woocommerce-error li:last-child,
.site-main .woocommerce-NoticeGroup .woocommerce-info li:last-child,
.site-main .woocommerce-NoticeGroup .woocommerce-message li:last-child,
.site-main .woocommerce-NoticeGroup .woocommerce-error li:last-child,
.site-main .woocommerce-NoticeGroup ~ .woocommerce-error li:last-child {
  margin-bottom: 0;
}
.site-main .woocommerce-notices-wrapper .woocommerce-info .button, .site-main .woocommerce-notices-wrapper .woocommerce-info .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .site-main .woocommerce-notices-wrapper .woocommerce-info .wc-block-components-checkout-place-order-button, .site-main .woocommerce-notices-wrapper .woocommerce-info .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .site-main .woocommerce-notices-wrapper .woocommerce-info a,
.site-main .woocommerce-notices-wrapper .woocommerce-message .button,
.site-main .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .site-main .woocommerce-notices-wrapper .woocommerce-message .wc-block-components-checkout-place-order-button,
.site-main .woocommerce-notices-wrapper .woocommerce-message .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .site-main .woocommerce-notices-wrapper .woocommerce-message a,
.site-main .woocommerce-notices-wrapper .woocommerce-error .button,
.site-main .woocommerce-notices-wrapper .woocommerce-error .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .site-main .woocommerce-notices-wrapper .woocommerce-error .wc-block-components-checkout-place-order-button,
.site-main .woocommerce-notices-wrapper .woocommerce-error .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .site-main .woocommerce-notices-wrapper .woocommerce-error a, .site-main .woocommerce-notices-wrapper ~ .woocommerce-error .button, .site-main .woocommerce-notices-wrapper ~ .woocommerce-error .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .site-main .woocommerce-notices-wrapper ~ .woocommerce-error .wc-block-components-checkout-place-order-button, .site-main .woocommerce-notices-wrapper ~ .woocommerce-error .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .site-main .woocommerce-notices-wrapper ~ .woocommerce-error a,
.site-main .woocommerce-NoticeGroup .woocommerce-info .button,
.site-main .woocommerce-NoticeGroup .woocommerce-info .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .site-main .woocommerce-NoticeGroup .woocommerce-info .wc-block-components-checkout-place-order-button,
.site-main .woocommerce-NoticeGroup .woocommerce-info .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .site-main .woocommerce-NoticeGroup .woocommerce-info a,
.site-main .woocommerce-NoticeGroup .woocommerce-message .button,
.site-main .woocommerce-NoticeGroup .woocommerce-message .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .site-main .woocommerce-NoticeGroup .woocommerce-message .wc-block-components-checkout-place-order-button,
.site-main .woocommerce-NoticeGroup .woocommerce-message .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .site-main .woocommerce-NoticeGroup .woocommerce-message a,
.site-main .woocommerce-NoticeGroup .woocommerce-error .button,
.site-main .woocommerce-NoticeGroup .woocommerce-error .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .site-main .woocommerce-NoticeGroup .woocommerce-error .wc-block-components-checkout-place-order-button,
.site-main .woocommerce-NoticeGroup .woocommerce-error .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .site-main .woocommerce-NoticeGroup .woocommerce-error a,
.site-main .woocommerce-NoticeGroup ~ .woocommerce-error .button,
.site-main .woocommerce-NoticeGroup ~ .woocommerce-error .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .site-main .woocommerce-NoticeGroup ~ .woocommerce-error .wc-block-components-checkout-place-order-button,
.site-main .woocommerce-NoticeGroup ~ .woocommerce-error .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .site-main .woocommerce-NoticeGroup ~ .woocommerce-error a {
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .site-main .woocommerce-notices-wrapper .woocommerce-info,
  .site-main .woocommerce-notices-wrapper .woocommerce-message,
  .site-main .woocommerce-notices-wrapper .woocommerce-error, .site-main .woocommerce-notices-wrapper ~ .woocommerce-error,
  .site-main .woocommerce-NoticeGroup .woocommerce-info,
  .site-main .woocommerce-NoticeGroup .woocommerce-message,
  .site-main .woocommerce-NoticeGroup .woocommerce-error,
  .site-main .woocommerce-NoticeGroup ~ .woocommerce-error {
    margin-top: 1rem;
  }
}
.site-main .woocommerce-notices-wrapper .woocommerce-error,
.site-main .woocommerce-NoticeGroup .woocommerce-error {
  background: #f7f0f1;
  border-color: #D71712;
}
.site-main .woocommerce-notices-wrapper ul,
.site-main .woocommerce-NoticeGroup ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-main .woocommerce-notices-wrapper a,
.site-main .woocommerce-NoticeGroup a {
  text-decoration: underline;
}

/*--------------------------------------------------------------------------------
WC Layout
--------------------------------------------------------------------------------*/
.woocommerce .button, .woocommerce .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .woocommerce .wc-block-components-checkout-place-order-button, .woocommerce .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .woocommerce a {
  user-select: none;
}

.woocommerce-form-fields {
  column-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 0.5rem;
}
.woocommerce-form-fields p {
  margin-bottom: 0;
}
.woocommerce-form-fields p:first-child label {
  margin-top: 0;
}
.woocommerce-form-fields p:first-child + .form-row-last label {
  margin-top: 0;
}
.woocommerce-form-fields p:last-child {
  margin-bottom: 1.5rem;
}
.woocommerce-form-fields .form-row-wide,
.woocommerce-form-fields .notes {
  grid-column: span 2;
}
.woocommerce-form-fields label {
  display: block;
  font-family: "OzHandicraft", "Arial", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  text-transform: capitalize;
}

/*--------------------------------------------------------------------------------
Products - Listing Setup
--------------------------------------------------------------------------------*/
.product-card-styling, .productcard, ul.products .product {
  display: block;
  position: relative;
  text-align: left;
}
.product-card-styling .woocommerce-loop-product__title, .productcard .woocommerce-loop-product__title, ul.products .product .woocommerce-loop-product__title {
  color: #0B3E69;
  font-family: "OzHandicraft", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0.5rem 0 0;
}
@media (max-width: 480px) {
  .product-card-styling .woocommerce-loop-product__title, .productcard .woocommerce-loop-product__title, ul.products .product .woocommerce-loop-product__title {
    font-size: 0.875rem;
  }
}
.product-card-styling .price, .productcard .price, ul.products .product .price {
  color: #0c0c0c;
  display: block;
  font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
}
.product-card-styling .button, .productcard .button, .product-card-styling .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .productcard .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .product-card-styling .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .productcard .wc-block-components-checkout-place-order-button, .product-card-styling .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .productcard .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .product-card-styling a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container .productcard a, ul.products .product .button, ul.products .product .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button, .woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row ul.products .product .wc-block-components-checkout-place-order-button, ul.products .product .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a, .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container ul.products .product a {
  margin-top: 1rem;
}

ul.products {
  column-gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  row-gap: 3rem;
}
h2 + ul.products {
  padding-top: 0;
}
ul.products.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 640px) {
  ul.products.columns-2 {
    row-gap: 1rem;
    grid-template-columns: 1fr;
  }
}
ul.products.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  ul.products.columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  ul.products.columns-3 {
    row-gap: 2rem;
    grid-template-columns: 1fr;
  }
}
ul.products.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  ul.products.columns-4 {
    grid-template-columns: 1fr;
  }
}
ul.products.columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  ul.products.columns-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  ul.products.columns-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  ul.products.columns-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
ul.products.columns-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
@media (max-width: 1280px) {
  ul.products.columns-6 {
    column-gap: 1rem;
    row-gap: 1rem;
  }
}
@media (max-width: 1024px) {
  ul.products.columns-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  ul.products.columns-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  ul.products.columns-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 380px) {
  ul.products.columns-6 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.woocommerce-pagination {
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.woocommerce-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination .page-numbers {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.woocommerce-pagination .page-numbers .page-numbers {
  align-items: center;
  background: transparent;
  color: #0c0c0c;
  display: flex;
  font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  justify-content: center;
  line-height: 1;
  padding: 0.5rem 1rem;
  max-height: 5ch;
  max-width: 5ch;
  min-height: 5ch;
  min-width: 5ch;
  text-align: center;
  transition: background 0.1s ease;
}
.woocommerce-pagination .page-numbers .page-numbers:hover:not(.dots) {
  background: #fff;
}
.woocommerce-pagination .page-numbers .page-numbers.current {
  background: #e3e3e3;
  font-weight: bold;
}
.woocommerce-pagination .page-numbers .page-numbers.next, .woocommerce-pagination .page-numbers .page-numbers.prev {
  font-size: 2rem;
  min-height: 2ch;
  min-width: 2ch;
}

/*--------------------------------------------------------------------------------
Product - Single
--------------------------------------------------------------------------------*/
body.single-product {
  background: #fff;
}

.site-main.product .woocommerce-product-gallery__image img {
  max-width: 100%;
  width: 100%;
}
.site-main.product .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
}
@media (max-width: 640px) {
  .site-main.product .flex-control-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.site-main.product .flex-control-thumbs li {
  cursor: pointer;
  display: block;
  line-height: 1;
  transition: border-color 0.2s ease;
}
.site-main.product .flex-control-thumbs li img {
  display: block;
  line-height: 1;
  width: 100%;
}
.site-main.product .bdt-add-to-cart-qty-minus,
.site-main.product .bdt-add-to-cart-qty-plus {
  display: none !important;
}

.product-single__container {
  padding-bottom: 0;
  /*--------------------------------------------------------------------------------
  Variable Products
  --------------------------------------------------------------------------------*/
}
@media (max-width: 768px) {
  .product-single__container {
    padding-bottom: 0;
  }
}
.product-single__container .product__main {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  margin: 0 auto;
  max-width: 1060px;
  padding: 2rem 2rem 2rem 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .product-single__container .product__main {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .product-single__container .product__main {
    border-radius: 0;
    grid-column: 1/-1;
    grid-template-columns: 100%;
    padding: 1rem;
    text-align: center;
  }
}
.product-single__container .product__summary {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-single__container .product__summary .product_title {
  margin-bottom: 0.75em;
}
.product-single__container .product__summary .price {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0;
}
.product-single__container .product__summary .price del {
  color: #989898;
}
.product-single__container .product__summary .product-content {
  line-height: 1.5;
  margin-top: 2rem;
}
.product-single__container .variations_form {
  margin-top: 2rem;
}
.product-single__container .variations_form .variations {
  margin-top: 1rem;
}
.product-single__container .variations_form .variations tbody {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-single__container form.cart {
  width: 100%;
}
.product-single__container form.cart .quantity-container {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.product-single__container form.cart .quantity-container .quantity-label {
  font-size: 1rem;
  font-weight: bold;
}
.product-single__container form.cart .quantity-container .quantity-input-container {
  align-items: center;
  border: 2px solid #0c0c0c;
  border-radius: 100em;
  display: flex;
  padding: 0 0.75rem;
  text-align: center;
}
.product-single__container form.cart .quantity-container .quantity-input-container svg {
  cursor: pointer;
  display: block;
  height: auto;
  max-width: 12px;
  width: 100%;
}
.product-single__container form.cart .quantity-container .quantity-input-container svg path {
  fill: #0c0c0c;
}
.product-single__container form.cart .quantity-container .quantity-input-container svg:hover path {
  fill: #0B3E69;
}
.product-single__container form.cart .quantity-container .quantity-input-container .qty {
  -moz-appearance: textfield;
  background: none;
  border: none;
  font-weight: 500;
  max-width: 70px;
  padding: 0.25rem 0.5rem;
  text-align: center;
}
.product-single__container form.cart .quantity-container .quantity-input-container .qty::-webkit-inner-spin-button, .product-single__container form.cart .quantity-container .quantity-input-container .qty::-webkit-outer-spin-button {
  display: none;
}
@media (max-width: 1024px) {
  .product-single__container form.cart .quantity-container .quantity-input-container .qty {
    max-width: 100px;
  }
  .product-single__container form.cart .quantity-container .quantity-input-container .qty input {
    min-width: 70px;
  }
}
@media (max-width: 768px) {
  .product-single__container form.cart .quantity-container .quantity-input-container .qty input {
    text-align: center;
  }
}
.product-single__container form.cart .single_add_to_cart_button {
  display: block;
  margin-top: 1.5rem;
  width: 100%;
}
.product-single__container .product__related .related.products > h2 {
  margin-bottom: 2rem;
}
.product-single__container .variations_form {
  column-gap: 2rem;
  display: grid;
  margin-top: 0;
  row-gap: 1rem;
}
.product-single__container table.variations {
  background: none;
  border: 0;
  grid-column: span 1;
  margin: 0;
}
@media (max-width: 768px) {
  .product-single__container table.variations {
    grid-column: 1/-1;
    margin: 0 auto;
    max-width: 400px;
  }
}
.product-single__container table.variations tbody tr th, .product-single__container table.variations tbody tr td {
  background: none;
  border: 0;
  display: block;
  padding: 0;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .product-single__container table.variations tbody tr th, .product-single__container table.variations tbody tr td {
    display: block;
    text-align: center;
  }
}
.product-single__container table.variations tbody tr th label, .product-single__container table.variations tbody tr td label {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.75em;
  margin-right: 1em;
}
@media (max-width: 768px) {
  .product-single__container table.variations tbody tr th label, .product-single__container table.variations tbody tr td label {
    margin-right: 0;
  }
}
.product-single__container .quantity {
  max-width: 80px;
}
@media (max-width: 1024px) {
  .product-single__container .quantity {
    max-width: 100px;
  }
  .product-single__container .quantity input {
    min-width: 70px;
  }
}
@media (max-width: 768px) {
  .product-single__container .quantity input {
    text-align: center;
  }
}
.product-single__container .woocommerce-variation-add-to-cart {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .product-single__container .woocommerce-variation-add-to-cart {
    grid-template-columns: 1fr;
  }
}
.product-single__container .single_variation_wrap > .single_variation {
  margin-bottom: 1.5rem;
}

/*--------------------------------------------------------------------------------
Cart Page
--------------------------------------------------------------------------------*/
body.empty-cart .page-content {
  padding-bottom: 6rem;
  padding-top: 6rem;
}
body.empty-cart .page-content .wc-empty-cart-message {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: center;
}
body.empty-cart .page-content .return-to-shop {
  text-align: center;
}

.wp-block-woocommerce-cart {
  padding-top: 4rem;
}
.wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items {
  background: #fff !important;
  border-bottom: 0;
  border-radius: 13px;
}
.wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items th {
  border-top: 0;
}
.wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-weight: 500;
  font-size: 1rem;
}
.wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-low-stock-badge {
  display: none;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container {
  margin-top: 1rem;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a {
  align-items: center;
  display: flex;
}

/*--------------------------------------------------------------------------------
Checkout Page
--------------------------------------------------------------------------------*/
.woocommerce-checkout .wp-block-woocommerce-checkout {
  padding: 4rem 1rem 6rem;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wc-block-components-address-card {
  background: #fff;
  border: 0;
  padding: 1.25rem;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  text-align: center;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
  justify-content: center;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  background: #fff;
  border: 0;
  border-radius: 13px;
  padding: 0.5rem;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name {
  font-size: 1rem;
  font-weight: 500;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__quantity {
  background: #0B3E69;
  border: 0;
  color: #fff;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-low-stock-badge {
  display: none;
}

/*--------------------------------------------------------------------------------
My Account
--------------------------------------------------------------------------------*/
#customer_login {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
#customer_login .col-1,
#customer_login .col-2 {
  width: 100%;
}
@media (max-width: 768px) {
  #customer_login .col-1,
  #customer_login .col-2 {
    float: none;
    width: 100%;
  }
}
#customer_login .show-password-input {
  display: none !important;
}

/*--------------------------------------------------------------------------------
WC Misc.
--------------------------------------------------------------------------------*/
/*******************
 * Pay For Order Form
 *******************/
.woocommerce .wc-orderpay-content {
  padding: 3rem 0 2rem;
}

#order_review {
  padding-bottom: 6rem;
}

/*******************
 * Woocommerce Reviews
 *******************/
.woocommerce .woocommerce-Reviews label {
  margin-bottom: 0.5rem;
}
.woocommerce .woocommerce-Reviews ol.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce .woocommerce-Reviews ol.commentlist > li {
  margin-top: 2rem;
  position: relative;
}
.woocommerce .woocommerce-Reviews ol.commentlist > li:before {
  content: "";
}
.woocommerce .woocommerce-Reviews ol.commentlist > li .comment-text {
  content: " ";
  display: table;
}
.woocommerce .woocommerce-Reviews ol.commentlist > li .comment-text:before {
  content: " ";
  display: table;
}
.woocommerce .woocommerce-Reviews ol.commentlist > li .comment-text:after {
  clear: both;
  content: " ";
  display: table;
}
.woocommerce .woocommerce-Reviews #comments .children {
  border-left: 6px solid #0046BF;
  padding: 0;
}
.woocommerce .woocommerce-Reviews #comments .children .comment {
  background: rgba(0, 70, 191, 0.08);
  padding: 0.875rem 1.5rem 1rem;
}
.woocommerce .woocommerce-Reviews #comments .children p:last-child {
  margin-bottom: 0;
}
.woocommerce .woocommerce-Reviews .star-rating {
  color: #1F4E75;
  font-family: WooCommerce;
  font-size: 1.2em;
  height: 1em;
  line-height: 1;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  width: 5.4em;
}
.woocommerce .woocommerce-Reviews .star-rating:before {
  color: #cfc8d8;
  content: "\e021\e021\e021\e021\e021";
  float: left;
  left: 0;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
}
.woocommerce .woocommerce-Reviews .star-rating span {
  left: 0;
  overflow: hidden;
  padding-top: 1.5em;
  position: absolute;
  top: 0;
}
.woocommerce .woocommerce-Reviews .star-rating span:before {
  content: "\e020\e020\e020\e020\e020";
  left: 0;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
}
.woocommerce .stars {
  font-size: 1.5rem;
}
.woocommerce .stars:hover a:before {
  content: "\e020";
}
.woocommerce .stars.selected a.active:before {
  content: "\e020";
}
.woocommerce .stars.selected a.active ~ a:before {
  content: "\e021";
}
.woocommerce .stars.selected a:not(.active):before {
  content: "\e020";
}
.woocommerce .stars > span {
  align-items: center;
  display: flex;
}
.woocommerce .stars a {
  color: #1F4E75;
  display: block;
  height: 1em;
  position: relative;
  text-decoration: none;
  text-indent: -999em;
  width: 1.25em;
}
.woocommerce .stars a:before {
  content: "\e021";
  display: block;
  font-family: WooCommerce;
  height: 1em;
  left: 0;
  line-height: 1;
  position: absolute;
  text-indent: 0;
  top: 0;
  width: 1em;
}
.woocommerce .stars a:hover ~ a:before {
  content: "\e021";
}

.elementor-widget-container .widget_product_categories h5 {
  color: #ffffff;
  background-color: #0B3E69;
  padding: 2rem;
  font-size: 2.125rem;
  margin-bottom: 0.188rem;
}
.elementor-widget-container .widget_product_categories .product-categories {
  background-color: #EDF0F2;
  margin: 0;
  padding: 0 2rem;
}
.elementor-widget-container .widget_product_categories .product-categories .cat-item.cat-parent ul.children {
  padding-bottom: 1.5rem;
}
.elementor-widget-container .widget_product_categories .product-categories li {
  list-style: none;
  border-bottom: 1px solid #AFBAC6;
  position: relative;
}
.elementor-widget-container .widget_product_categories .product-categories li:last-child {
  border: none;
}
.elementor-widget-container .widget_product_categories .product-categories li a {
  padding: 2rem 0;
  font-size: 1.125rem;
  color: #0c0c0c;
  display: flex;
  justify-content: space-between;
}
.elementor-widget-container .widget_product_categories .product-categories li a:after {
  content: "\f078";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin: 0 1rem;
}
.elementor-widget-container .widget_product_categories .product-categories li a:hover {
  color: #0B3E69;
}
.elementor-widget-container .widget_product_categories .product-categories li.current-cat > a {
  font-weight: 700;
}
.elementor-widget-container .widget_product_categories .product-categories li.current-cat > a:after {
  transform: rotate(180deg);
}
.elementor-widget-container .widget_product_categories .product-categories .children li {
  border: none;
}
.elementor-widget-container .widget_product_categories .product-categories .children a {
  padding: 0.5rem 0;
  justify-content: flex-start;
}
.elementor-widget-container .widget_product_categories .product-categories .children a:before {
  content: "\f068";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-right: 0.5rem;
  color: #AFBAC6;
}
.elementor-widget-container .widget_product_categories .product-categories .children a:after {
  display: none;
}

.elementor-grid.products .product-category {
  position: relative;
}
.elementor-grid.products .product-category img {
  object-fit: cover;
  height: 360px !important;
}
.elementor-grid.products .product-category .woocommerce-loop-category__title {
  position: absolute;
  bottom: 45px;
  left: 0;
  background-color: #0B3E69;
  width: 80%;
  padding: 1rem 1rem 0.3rem 1rem !important;
  margin: 0;
}
.elementor-grid.products .product-category .woocommerce-loop-category__title:after {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f054";
  font-size: 1.25rem;
  padding: 0.625rem;
  line-height: 1.2em;
  background-color: #23a2c4;
  border-radius: 20px 0 0 0;
}

.woocommerce-result-count {
  font-family: "OzHandicraft", "Arial", sans-serif;
  font-size: 2rem;
  color: #0B3E69;
  position: relative;
  z-index: 1;
  padding: 1rem 0.7rem;
}
@media (max-width: 768px) {
  .woocommerce-result-count {
    max-width: 55%;
    font-size: 1.2rem;
  }
}

.woocommerce-ordering {
  position: relative;
  z-index: 1;
  margin-right: 0.8rem !important;
}
.woocommerce-ordering select {
  background-color: #ffffff;
  margin-right: 0.8rem;
}

table.variations .label {
  display: none;
}

#set {
  border: 1px solid #AFBAC6;
}

table.variations {
  position: relative;
}
table.variations:before {
  display: inline-block;
  content: "Choose an option";
  margin-bottom: 1rem;
  color: #0B3E69;
  font-size: 1rem;
  font-weight: 600;
}

.single_variation_wrap .woocommerce-Price-amount {
  font-size: 2.5rem;
  color: #23a2c4;
  margin-bottom: 3.75rem;
  display: inline-block;
}
.single_variation_wrap .quantity {
  position: relative;
}
.single_variation_wrap .quantity:before {
  display: block;
  content: "Quantity";
  font-size: 1rem;
  color: #0B3E69;
  margin-bottom: 1rem;
  font-weight: 600;
}
.single_variation_wrap .quantity .qty {
  height: 3.125rem;
  padding: 0.5rem !important;
  max-width: 5rem;
}
.single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: flex-end;
}

.variations_form .variations .value {
  background-color: transparent;
  border: none;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  background: #0B3E69;
  z-index: 1;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
  border: 2px solid #ffffff;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
  background: #ffffff;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  background: #0B3E69;
  border: none;
  box-sizing: content-box;
  border-radius: 100%;
  cursor: pointer;
  font-size: 2em;
  height: 36px;
  padding: 0;
  position: absolute;
  right: 0.5em;
  text-indent: -9999px;
  top: 0.5em;
  width: 36px;
  z-index: 1;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
  border: 2px solid #ffffff;
  border-radius: 100%;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 10px;
  left: 9px;
  top: 9px;
  position: absolute;
  width: 10px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
  background: #ffffff;
  border-radius: 6px;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 8px;
  left: 22px;
  position: absolute;
  top: 19px;
  transform: rotate(-45deg);
  width: 2px;
}

.elementor-widget-woocommerce-product-additional-information .woocommerce-product-attributes {
  border: none !important;
}
.elementor-widget-woocommerce-product-additional-information table.shop_attributes td {
  border: none !important;
}
.elementor-widget-woocommerce-product-additional-information .woocommerce-product-attributes-item__label, .elementor-widget-woocommerce-product-additional-information .woocommerce-product-attributes-item__value {
  background: transparent !important;
  border: none !important;
}
.elementor-widget-woocommerce-product-additional-information .woocommerce-product-attributes-item__label {
  text-align: left;
  color: #0B3E69;
}

@media screen and (max-width: 767px) {
  .product-cats .product-categories {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .product-cats h5 {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .product-cats h5:after {
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "\f067";
    font-size: 2rem;
  }
}

.woocommerce-message {
  margin-top: 2rem;
}

.reset_variations i {
  margin-right: 0.8rem;
  color: #D71712;
}

.out-of-stock {
  margin-bottom: 2rem !important;
}

.outofstock-badge {
  position: absolute;
  color: #ffffff;
  background-color: #D71712;
  font-size: 0.8rem;
  height: 3.125rem;
  width: 7.5rem;
  left: -40px;
  top: -8px;
  right: auto;
  padding: 2rem 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.woocommerce-LoopProduct-link {
  overflow: hidden;
}

.eael-woo-product-carousel .outofstock {
  display: none;
}

.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
  float: left;
}

.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
  float: right;
}

.woocommerce-ordering {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .woocommerce-ordering {
    max-width: 40%;
  }
}

.woocommerce .products ul, .woocommerce ul.products {
  clear: both;
}

form.woocommerce-ordering select {
  display: block;
  width: 100%;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 3.438rem;
  padding-left: 1.125rem;
  border-radius: 0;
  border-color: #f1f1f1;
  color: #545B62;
  background-repeat: no-repeat;
  background-color: #ffffff;
  margin-right: 0.625rem;
  line-height: 1.2em;
}

.shop-listing:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: #EDF0F2;
}

.woocommerce .rlc-special-shipping {
  padding: 1rem;
}
.woocommerce .rlc-special-shipping h3 {
  font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.25em;
}
.woocommerce .rlc-special-shipping ul {
  padding: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0 1rem;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
  background-color: #0B3E69;
  color: #ffffff !important;
}

.woocommerce-privacy-policy-text {
  padding-bottom: 1.2rem;
}

@media (max-width: 1024px) {
  .woocommerce form .form-row-last, .woocommerce-page form .form-row-last {
    float: left;
  }
}
@media (max-width: 1024px) {
  .shop_table.cart td.actions button {
    margin-bottom: 1rem;
  }
}

/*--------------------------------------------------------------------------------
Product Card - Standard
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
Imports
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
Posts Widget: Card / Cards
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
Shortcode
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
General Addons
--------------------------------------------------------------------------------*/
.absolute-image {
  pointer-events: none;
}

body.elementor-editor-active .absolute-image {
  pointer-events: all;
}

.processing-ajax {
  opacity: 0.4;
  pointer-events: none;
  position: relative;
}

.embed-responsive {
  display: block;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.embed-responsive iframe {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*--------------------------------------------------------------------------------
Widget & Section Addons
--------------------------------------------------------------------------------*/
h1.underline-blue > span,
h2.underline-blue > span,
h3.underline-blue > span,
h4.underline-blue > span,
h5.underline-blue > span,
h6.underline-blue > span,
p.underline-blue > span,
table.underline-blue > span,
ul.underline-blue > span,
ol.underline-blue > span {
  background-size: 1px 1em;
  box-shadow: inset 0 -17px #23a2c4;
  display: inline;
}

/*--------------------------------------------------------------------------------
Decoration Addons
--------------------------------------------------------------------------------*/
.bottom-decor {
  position: relative;
}
.bottom-decor:after {
  background-image: url("../images/bottom-decor.svg");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -122px;
  content: "";
  left: 0;
  min-height: 125px;
  position: absolute;
  width: 100%;
}

.bottom-decor-blue {
  position: relative;
}
.bottom-decor-blue:after {
  background-image: url("../images/bottom-decor-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -122px;
  content: "";
  left: 0;
  min-height: 125px;
  position: absolute;
  width: 100%;
}
@media (max-width: 768px) {
  .bottom-decor-blue {
    background-repeat: no-repeat;
  }
}

.bottom-decor-blue-2 {
  position: relative;
}
.bottom-decor-blue-2:after {
  background-image: url("../images/bottom-decor 1.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -122px;
  content: "";
  left: 0;
  min-height: 125px;
  position: absolute;
  width: 100%;
}
@media (max-width: 768px) {
  .bottom-decor-blue-2 {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: initial;
  }
}

.bottom-decor-white {
  position: relative;
}
.bottom-decor-white:after {
  background-image: url("../images/white-decor-bottom.svg");
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -67px;
  content: "";
  left: 0;
  min-height: 68px;
  position: absolute;
  transform: rotate(180deg);
  width: 100%;
}

.hero-internal {
  position: relative;
}
.hero-internal:after {
  background-image: url("../images/white-decor-bottom.svg");
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  left: 0;
  min-height: 68px;
  position: absolute;
  width: 100%;
}

/*--------------------------------------------------------------------------------
Page-Specific Templates
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
Template Name
--------------------------------------------------------------------------------*/
