/** Shopify CDN: Minification failed

Line 6359:0 Unexpected "<"
Line 8425:0 Unexpected "<"
Line 9883:0 Unexpected "}"

**/
@charset "UTF-8";
/*!
------------------------------------------------------------------
Author: Fuel Themes
Author URI: https://fuelthemes.net
------------------------------------------------------------------
*/
.teeinblue-theme-modern .tee-customize-main-form {
    border: 6px solid #F6E2B7 !important;
    margin-top: 15px !important;
}
.teeinblue-theme-modern .tee-customize-main-form .tee-form-header {
    background: linear-gradient(180deg, #FDF6EB 0%, #F8ECD6 100%)!important;
    border-radius: 6px 6px 0 0 !important;
}
.teeinblue-theme-modern .tee-customize-main-form .tee-form-inputs {
    background: #FFF9F1 !important;
    margin-bottom: 0 !important;
}
.tee-cart-thumbnail__img{
  width: 96px !important;
}

input#qc-card-number-input {
    height: auto !important;
    color: #000000;
    margin-bottom: 0px !important;
}
input#qc-card-pin-input {
    height: auto !important;
    color: #000000;
    margin-bottom: 0px !important;
}
div#qc-error-container{
      margin-bottom: 25px;
}
.qc__wallet-transactions-history{
  padding: 50px;
}
.qc-add-gift__header{
  padding: 50px;
}
@media (max-width: 767px) {
  .qc__wallet-transactions-history{
  padding: 15px;
}
  .qc-add-gift__header{
  padding: 15px;
}
}

.shop-by-gender {
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
}

.shop-by-gender__tabs {
  margin-bottom: 25px;
}

.shop-by-gender__tab {
  background-color: #f2f2f2;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 25px;
  font-size: 16px;
  margin: 0 5px;
  border-radius: 6px;
  transition: 0.3s;
}

.shop-by-gender__tab.active,
.shop-by-gender__tab:hover {
  background: linear-gradient(90deg,#886200,#bd8e33,#eac952,#bd8e33,#886200)!important;
  color: #fff;
}
.shop-by-gender__content {
  display: none;
  animation: fadeEffect 0.5s ease;
}

.shop-by-gender__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shop-by-gender__item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.shop-by-gender__item img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .shop-by-gender__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hide-mob {
    display: none;
  }

  .show-mob {
    display: inline;
  }
}

@media (min-width: 769px) {
  .show-mob {
    display: none;
  }
  
  .shop-by-gender__grid {
    justify-content: center;
  }
  
  .shop-by-gender__item:nth-last-child(-n+2):nth-child(4n+1) {
    grid-column: 2;
  }
  
  .shop-by-gender__item:nth-last-child(1):nth-child(4n+2) {
    grid-column: 3;
  }
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

#Kids .shop-by-gender__grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#Kids .shop-by-gender__item {
  width: 23%;
}

@media (max-width: 768px) {
  #Kids .shop-by-gender__item {
    width: 48%;
  }
}


@media (min-width: 769px) {

  .shop-by-gender__carousel {
    position: relative;
  }

  /* Override the grid to be a flex track */
  .shop-by-gender__carousel .shop-by-gender__grid {
    display: block !important;
    overflow: hidden;
  }

  .shop-by-gender__track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* Each card: exactly 1/4 width accounting for 3 gaps */
  .shop-by-gender__track .shop-by-gender__item {
    flex: 0 0 calc(25% - 15px) !important;
    width: calc(25% - 15px) !important;
    min-width: 0;
    box-sizing: border-box;
  }

  /* Kids items inside carousel */
  #Kids .shop-by-gender__carousel .shop-by-gender__grid {
    display: block !important;
  }
  #Kids .shop-by-gender__track {
    justify-content: center;
    flex-wrap: nowrap;
  }
  #Kids .shop-by-gender__track .shop-by-gender__item {
    width: calc(25% - 15px) !important;
  }

  .shop-by-gender__arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    background: #f0e2c3;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: background 0.25s;
    padding: 0;
    outline: none;
  }

  .shop-by-gender__arrow:hover {
    background: linear-gradient(90deg,#886200,#bd8e33,#eac952,#bd8e33,#886200);
    border-color: transparent;
  }

  .shop-by-gender__arrow:hover svg path {
    stroke: #fff;
  }

  .shop-by-gender__arrow--prev { left: -22px; }
  .shop-by-gender__arrow--next { right: -22px; }

  .shop-by-gender__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }
  .shop-by-gender__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .shop-by-gender__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4d4d4;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    outline: none;
  }

  .shop-by-gender__dot.active {
    background: linear-gradient(90deg,#886200,#bd8e33,#eac952);
    transform: scale(1.35);
  }
}

@media (max-width: 768px) {
  .shop-by-gender__arrow,
  .shop-by-gender__dots { display: none !important; }

  .shop-by-gender__carousel { overflow: visible; }
  .shop-by-gender__track { display: contents; }
}
.customize-btn-pdp {
  color: #fff;
    display: inline-flex;
    padding: 7px 30px;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-weight: 500;
    width: 100%;
    font-size: 13px;
    border-radius: var(--button-border-radius, 3px);
    border: 1px solid #886200;
     background: linear-gradient(90deg,#886200,#bd8e33,#eac952,#bd8e33,#886200);    margin-bottom: 15px;    text-transform: uppercase;
}
.customize-btn-pdp:hover{
  background: #fff;
  color: #886200;
}
.dhanteras-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 5px;
  justify-content: center;
  align-items: center;
}

.dhanteras-badge {
  color: #000;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(194, 161, 77, .45);
  background: rgba(194, 161, 77, .12);
  animation: glowPulse 2s infinite ease-in-out;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.dhanteras-badge.lmt-stk {
  background: rgba(181, 29, 29, .10) !important;
  border-color: rgba(181, 29, 29, .45) !important;
  color: #7a2222 !important;
  animation: glowRed 2s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0px rgba(194, 161, 77, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 8px rgba(194, 161, 77, 0.6);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0px rgba(194, 161, 77, 0.2);
    transform: scale(1);
  }
}

@keyframes glowRed {
  0% {
    box-shadow: 0 0 0px rgba(181, 29, 29, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 8px rgba(181, 29, 29, 0.6);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0px rgba(181, 29, 29, 0.2);
    transform: scale(1);
  }
}

@media (min-width: 769px) {
  .dhanteras-badge-container {
    justify-content: flex-start;
    gap: 8px;
  }
  .dhanteras-badge {
    font-size: 12px;
    padding: 5px 10px;
  }
}

@media (max-width: 768px) {
  .dhanteras-badge-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .dhanteras-badge {
    font-size: 11px !important;
    padding: 4px 8px;
    width: fit-content;
  }
}

a,
#wrapper .click-capture,
.side-panel,
.back-to-top,
.back-to-top path,
.header:after,
.header.transparent--true:before,
.header .logolink .logoimg,
.thb-secondary-area-item.thb-secondary-myaccount span:after,
.thb-secondary-area-item svg path,
.thb-secondary-area .thb-item-count,
.mobile-toggle span,
.thb-full-menu a:after,
.thb-full-menu li.menu-item-has-children > a svg path,
.thb-full-menu .sub-menu,
.thb-localization-forms.inside-header .select-arrow svg path,
.shopify-payment-button__more-options:after,
.spr-summary-actions-newreview:after,
.text-button:after,
.button:before,
input[type="submit"]:before,
.button span,
input[type="submit"] span,
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select,
input[type="checkbox"],
input[type="radio"],
.field label,
.custom-checkbox[type="checkbox"],
.custom-checkbox[type="checkbox"]:after,
.quantity .minus svg,
.quantity .plus svg,
.cart-drawer .free-shipping--percentage,
.cart-drawer .order-note-toggle__content,
.cart-drawer .order-note-toggle__content-overlay,
.flickity-page-dots .dot,
.flickity-nav,
.flickity-nav svg {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.no-js .quantity .minus,
.quantity .no-js .minus,
.no-js .quantity .plus,
.quantity .no-js .plus,
.no-js .flickity-nav {
  display: none !important;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[data-whatintent="mouse"] *,
[data-whatintent="mouse"] *:focus,
[data-whatintent="touch"] *,
[data-whatintent="touch"] *:focus,
[data-whatinput="mouse"] *,
[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *,
[data-whatinput="touch"] *:focus {
  outline: none;
}

[draggable="false"] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.foundation-mq {
  font-family: "small=0em&medium=48em&large=66.75em&xlarge=75em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-body);
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
    helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  font-weight: normal;
  line-height: 1.6;
  color: var(--color-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}

[data-whatinput="mouse"] button {
  outline: 0;
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

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

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1.25rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: var(--font-body-bold-weight, 600);
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1,
.h1,
.h1-large,
.h1-xlarge,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
    helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--color-body);
  text-rendering: optimizeLegibility;
}

h1 small,
.h1 small,
.h1-large small,
.h1-xlarge small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small {
  line-height: 0;
  color: #cacaca;
}

h1,
.h1,
.h1-large,
.h1-xlarge {
  font-size: 2.875rem;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

h2,
.h2 {
  font-size: 2.5rem;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

h3,
.h3 {
  font-size: 2.125rem;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

h4,
.h4 {
  font-size: 1.75rem;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

h5,
.h5 {
  font-size: 1.5rem;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

h6,
.h6 {
  font-size: 1.125rem;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

@media print, screen and (min-width: 48em) {
  h1,
  .h1,
  .h1-large,
  .h1-xlarge {
    font-size: 3.375rem;
  }

  h2,
  .h2 {
    font-size: 2.875rem;
  }

  h3,
  .h3 {
    font-size: 2.25rem;
  }

  h4,
  .h4 {
    font-size: 1.75rem;
  }

  h5,
  .h5 {
    font-size: 1.5rem;
  }

  h6,
  .h6 {
    font-size: 1.125rem;
  }
}

@media print, screen and (min-width: 66.75em) {
  h1,
  .h1,
  .h1-large,
  .h1-xlarge {
    font-size: 4rem;
  }

  h2,
  .h2 {
    font-size: 3.375rem;
  }

  h3,
  .h3 {
    font-size: 2.5rem;
  }

  h4,
  .h4 {
    font-size: 1.875rem;
  }

  h5,
  .h5 {
    font-size: 1.5rem;
  }

  h6,
  .h6 {
    font-size: 1.125rem;
  }
}

a {
  line-height: inherit;
  color: var(--color-accent);
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus {
  color: var(--color-accent);
}

a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 1440px;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1.25rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}

dl dt {
  margin-bottom: 0.3rem;
  font-weight: var(--font-body-bold-weight, 600);
}

blockquote {
  margin: 0 0 1.25rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

abbr,
abbr[title] {
  border-bottom: 1px dotted #151515;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #151515;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}

p + .stat {
  margin-top: -1rem;
}

ul.no-bullet,
ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

cite,
.cite-block {
  display: block;
  color: #8a8a8a;
  font-size: 0.8125rem;
}

cite:before,
.cite-block:before {
  content: "— ";
}

code,
.code-inline {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #151515;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

.code-block {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #151515;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

@media print, screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left;
  }

  .medium-text-right {
    text-align: right;
  }

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

  .medium-text-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width: 66.75em) {
  .large-text-left {
    text-align: left;
  }

  .large-text-right {
    text-align: right;
  }

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

  .large-text-justify {
    text-align: justify;
  }
}

.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    print-color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .show-for-print {
    display: block !important;
  }

  .hide-for-print {
    display: none !important;
  }

  table.show-for-print {
    display: table !important;
  }

  thead.show-for-print {
    display: table-header-group !important;
  }

  tbody.show-for-print {
    display: table-row-group !important;
  }

  tr.show-for-print {
    display: table-row !important;
  }

  td.show-for-print {
    display: table-cell !important;
  }

  th.show-for-print {
    display: table-cell !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .print-break-inside {
    page-break-inside: auto;
  }
}

.row {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}

.row .row {
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}

@media print, screen and (min-width: 48em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

@media print, screen and (min-width: 66.75em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}

.row.expanded {
  max-width: none;
}

.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}

.row:not(.expanded) .row {
  max-width: none;
}

.row.collapse > .column,
.row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.row.is-collapse-child,
.row.collapse > .column > .row,
.row.collapse > .columns > .row {
  margin-right: 0;
  margin-left: 0;
}

.column,
.columns {
  flex: 1 1 0px;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
  min-width: 0;
}

@media print, screen and (min-width: 48em) {
  .column,
  .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.column.row.row,
.row.row.columns {
  float: none;
  display: block;
}

.row .column.row.row,
.row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

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

.small-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

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

.small-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

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

.small-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

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

.small-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

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

.small-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

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

.small-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

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

.small-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

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

.small-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

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

.small-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

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

.small-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

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

.small-up-1 {
  flex-wrap: wrap;
}

.small-up-1 > .column,
.small-up-1 > .columns {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-up-2 {
  flex-wrap: wrap;
}

.small-up-2 > .column,
.small-up-2 > .columns {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-up-3 {
  flex-wrap: wrap;
}

.small-up-3 > .column,
.small-up-3 > .columns {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.small-up-4 {
  flex-wrap: wrap;
}

.small-up-4 > .column,
.small-up-4 > .columns {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-up-5 {
  flex-wrap: wrap;
}

.small-up-5 > .column,
.small-up-5 > .columns {
  flex: 0 0 20%;
  max-width: 20%;
}

.small-up-6 {
  flex-wrap: wrap;
}

.small-up-6 > .column,
.small-up-6 > .columns {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.small-up-7 {
  flex-wrap: wrap;
}

.small-up-7 > .column,
.small-up-7 > .columns {
  flex: 0 0 14.28571%;
  max-width: 14.28571%;
}

.small-up-8 {
  flex-wrap: wrap;
}

.small-up-8 > .column,
.small-up-8 > .columns {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-collapse > .column,
.small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.small-uncollapse > .column,
.small-uncollapse > .columns {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

@media print, screen and (min-width: 48em) {
  .medium-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .medium-offset-0 {
    margin-left: 0%;
  }

  .medium-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

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

  .medium-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

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

  .medium-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

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

  .medium-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

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

  .medium-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

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

  .medium-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

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

  .medium-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

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

  .medium-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

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

  .medium-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

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

  .medium-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

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

  .medium-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

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

  .medium-up-1 {
    flex-wrap: wrap;
  }

  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .medium-up-2 {
    flex-wrap: wrap;
  }

  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .medium-up-3 {
    flex-wrap: wrap;
  }

  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .medium-up-4 {
    flex-wrap: wrap;
  }

  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .medium-up-5 {
    flex-wrap: wrap;
  }

  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .medium-up-6 {
    flex-wrap: wrap;
  }

  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .medium-up-7 {
    flex-wrap: wrap;
  }

  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }

  .medium-up-8 {
    flex-wrap: wrap;
  }

  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media print, screen and (min-width: 48em) and (min-width: 48em) {
  .medium-expand {
    flex: 1 1 0px;
  }
}

.row.medium-unstack > .column,
.row.medium-unstack > .columns {
  flex: 0 0 100%;
}

@media print, screen and (min-width: 48em) {
  .row.medium-unstack > .column,
  .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 48em) {
  .medium-collapse > .column,
  .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .medium-uncollapse > .column,
  .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

@media print, screen and (min-width: 66.75em) {
  .large-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .large-offset-0 {
    margin-left: 0%;
  }

  .large-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

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

  .large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

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

  .large-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

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

  .large-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

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

  .large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

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

  .large-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

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

  .large-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

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

  .large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

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

  .large-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

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

  .large-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

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

  .large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

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

  .large-up-1 {
    flex-wrap: wrap;
  }

  .large-up-1 > .column,
  .large-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .large-up-2 {
    flex-wrap: wrap;
  }

  .large-up-2 > .column,
  .large-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .large-up-3 {
    flex-wrap: wrap;
  }

  .large-up-3 > .column,
  .large-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .large-up-4 {
    flex-wrap: wrap;
  }

  .large-up-4 > .column,
  .large-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .large-up-5 {
    flex-wrap: wrap;
  }

  .large-up-5 > .column,
  .large-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .large-up-6 {
    flex-wrap: wrap;
  }

  .large-up-6 > .column,
  .large-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .large-up-7 {
    flex-wrap: wrap;
  }

  .large-up-7 > .column,
  .large-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }

  .large-up-8 {
    flex-wrap: wrap;
  }

  .large-up-8 > .column,
  .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media print, screen and (min-width: 66.75em) and (min-width: 66.75em) {
  .large-expand {
    flex: 1 1 0px;
  }
}

.row.large-unstack > .column,
.row.large-unstack > .columns {
  flex: 0 0 100%;
}

@media print, screen and (min-width: 66.75em) {
  .row.large-unstack > .column,
  .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 66.75em) {
  .large-collapse > .column,
  .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .large-uncollapse > .column,
  .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.shrink {
  flex: 0 0 auto;
  max-width: 100%;
}

.column-block {
  margin-bottom: 0.5rem;
}

.column-block > :last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 48em) {
  .column-block {
    margin-bottom: 1.875rem;
  }

  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

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

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

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

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

.align-self-middle {
  align-self: center;
}

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

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 48em) {
  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }
}

@media print, screen and (min-width: 66.75em) {
  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }
}

.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 48em) {
  .medium-flex-container {
    display: flex;
  }

  .medium-flex-child-auto {
    flex: 1 1 auto;
  }

  .medium-flex-child-grow {
    flex: 1 0 auto;
  }

  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }

  .medium-flex-dir-row {
    flex-direction: row;
  }

  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }

  .medium-flex-dir-column {
    flex-direction: column;
  }

  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}

@media print, screen and (min-width: 66.75em) {
  .large-flex-container {
    display: flex;
  }

  .large-flex-child-auto {
    flex: 1 1 auto;
  }

  .large-flex-child-grow {
    flex: 1 0 auto;
  }

  .large-flex-child-shrink {
    flex: 0 1 auto;
  }

  .large-flex-dir-row {
    flex-direction: row;
  }

  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }

  .large-flex-dir-column {
    flex-direction: column;
  }

  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--logo-height-mobile) + 106px);
  font-size: calc(var(--font-body-scale) * 16px);
}

@media only screen and (min-width: 768px) {
  html {
    scroll-padding-top: calc(var(--logo-height) + 106px);
  }
}

body {
  overflow-wrap: break-word;
  font-size: 1.0625rem;
  line-height: calc(var(--font-body-line-height-scale) * 1.6);
  letter-spacing: var(--font-body-letter-spacing, normal);
  background: var(--bg-body, #fff);
}

body.open-cc #wrapper .click-capture {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

body.open-cc--product #wrapper .click-capture--product {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

body.open-cc #shopify-chat {
  display: none;
}

* {
  box-sizing: border-box;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
summary {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

p {
  word-spacing: 0.001em;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  line-height: calc(var(--font-body-line-height-scale) * 1.6);
}

figure {
  margin: 0;
  padding: 0;
}

summary {
  display: inline-block;
}

#wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

#wrapper > [role="main"] {
  display: flex;
  flex: 1;
  flex-direction: column;
}

#wrapper > [role="main"] > .row {
  width: 100%;
}

#wrapper .click-capture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 52;
  opacity: 0;
  visibility: hidden;
  background: rgba(var(--color-overlay-rgb), 0.7);
  backdrop-filter: blur(3px);
}

#wrapper .click-capture--product {
  z-index: 91;
}

.template-product-quick-view #wrapper .click-capture--product {
  opacity: 1 !important;
  visibility: visible !important;
}

.row {
  padding: 0 11px;
}

@media only screen and (min-width: 768px) {
  .row {
    padding: 0 35px;
  }
}

.row .columns {
  padding: 0 4px;
}

@media only screen and (min-width: 768px) {
  .row .columns {
    padding: 0 15px;
  }
}

.row.no-padding {
  padding: 0;
}

.row.full-width-row {
  max-width: none;
}

.row.full-width-row-full {
  padding: 0;
  max-width: none;
}

.row.full-width-row-full > .columns {
  padding: 0;
}

.text-size-large {
  font-size: 1.25rem;
}

.text-size-small {
  font-size: 0.9375rem;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.overflow-hidden {
  overflow: hidden;
}

blockquote {
  position: relative;
  text-align: center;
  padding: 75px 5% 45px;
  border-left: 0;
  color: var(--color-accent);
  color: inherit;
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  blockquote {
    font-size: 1.875rem;
  }
}

@media only screen and (min-width: 768px) {
  blockquote {
    padding: 100px 10% 65px;
  }
}

blockquote:before {
  content: "“";
  position: absolute;
  top: -30px;
  font-size: 9rem;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

@media only screen and (min-width: 768px) {
  blockquote:before {
    top: -20px;
  }
}

blockquote p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  blockquote p {
    font-size: inherit;
  }
}

.thb-placeholder {
  background: rgba(var(--color-body-rgb), 0.03);
  display: flex;
}

.thb-placeholder svg {
  width: 100%;
  height: 100%;
  fill: var(--color-accent);
}

.rte a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rte p + h1,
.rte p + h2,
.rte p + h3,
.rte p + h4,
.rte p + h5,
.rte p + h6 {
  margin-top: 30px;
}

.rte iframe {
  max-width: 100%;
}

.no-js .no-js-hidden,
.no-js img.lazyload {
  display: none !important;
}

.screen-reader-shortcut {
  position: fixed;
  top: -1000em;
}

.screen-reader-shortcut:focus {
  left: 6px;
  top: 7px;
  height: auto;
  width: auto;
  display: block;
  font-size: 14px;
  font-weight: var(--font-body-bold-weight, 600);
  padding: 15px 23px 14px;
  background-color: #54cdcd;
  color: #fff;
  z-index: 100000;
  line-height: normal;
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

table {
  width: 100%;
  text-align: left;
  border-spacing: 0;
  border-collapse: separate;
  margin-bottom: 30px;
  font-size: 15px;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
}

[dir="rtl"] table {
  text-align: right;
}

table thead {
  line-height: 1;
}

table thead th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--font-body-bold-weight, 600);
}

table th,
table td {
  padding: 10px 15px;
  border: 1px solid var(--color-border);
}

@media only screen and (min-width: 768px) {
  table th,
  table td {
    padding: 15px 25px;
  }
}

table.no-borders {
  border: 0;
}

table.no-borders thead {
  line-height: 1;
}

table.no-borders thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

table.no-borders thead th:last-child {
  /* text-align: center; */
  text-align: left;
}

table.no-borders th,
table.no-borders td {
  padding: 10px 15px;
  border: 0;
}

@media only screen and (min-width: 768px) {
  table.no-borders th,
  table.no-borders td {
    padding: 15px 25px;
  }
}

table.no-borders tbody tr th,
table.no-borders tbody tr td {
  padding: 20px 15px 20px 0;
  border-bottom: 1px solid var(--color-border);
}

table.no-borders tbody tr th:last-child,
table.no-borders tbody tr td:last-child {
  text-align: left;
  padding-right: 0;
}

@media only screen and (min-width: 768px) {
  table.no-borders tbody tr th,
  table.no-borders tbody tr td {
    padding: 20px 20px 20px 8px;
  }
}

table.no-borders tbody tr:last-child td {
  border-bottom: 0;
}

table.no-borders tfoot {
  text-align: right;
}

table.no-borders tfoot td {
  padding: 0;
  border-top: 1px solid var(--color-border);
}

table.no-borders tfoot td:first-child {
  text-align: left;
}

[dir="rtl"] table.no-borders tfoot td:first-child {
  text-align: right;
}

.shopify-challenge__container {
  padding: 40px 0;
}

@media only screen and (min-width: 768px) {
  .shopify-challenge__container {
    padding: 70px 0;
  }
}

@media only screen and (min-width: 1068px) {
  .shopify-challenge__container {
    padding: 100px 0;
  }
}

.discounts {
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
  font-size: 12px;
}

.discounts__discount {
  margin-bottom: 5px;
}

.discounts__discount svg {
  vertical-align: middle;
  margin-right: 6px;
  width: 10px;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: calc(100vw - 30px);
  background: var(--bg-body, #fff);
  max-width: 570px;
  overflow-x: hidden;
  transform: translateX(100%);
  will-change: transform;
   overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.side-panel.active {
  transform: translateX(0%);
  overscroll-behavior: none !important;
}
 html:has(.side-panel.search-drawer.active),
  body:has(.side-panel.search-drawer.active) {
      overflow: hidden !important;
  }
.side-panel.facet-drawer {
  transform: translateX(-100%);
  right: auto;
  left: 0;
}

.side-panel.facet-drawer.active {
  transform: translateX(0%);
}

.side-panel.search-drawer .side-panel-inner {
  height: 100%;
}

.side-panel.search-drawer .searchform {
  width: 100%;
  padding-right: 20px;
}

.product-cart-item-info {
  width: 260px;
}

.side-panel.search-drawer .searchform input {
  border: 0;
  padding: 0;
  font-size: 1rem;
  outline: 0;
}

.side-panel.search-drawer .searchform input::-webkit-search-decoration,
.side-panel.search-drawer .searchform input::-webkit-search-cancel-button,
.side-panel.search-drawer .searchform input::-webkit-search-results-button,
.side-panel.search-drawer .searchform input::-webkit-search-results-decoration {
  display: none;
}

.side-panel.search-drawer .searchform label {
  display: none;
}

.side-panel.search-drawer .side-panel-content--has-tabs {
  display: none;
  position: relative;
  flex: 1;
  height: calc(100% - 72px);
}

.side-panel.search-drawer .side-panel-content--has-tabs.active {
  display: flex;
  flex-direction: column;
}

.side-panel.search-drawer
  .side-panel-content--has-tabs.active
  + .side-panel-content--initial {
  display: none;
}

.side-panel.search-drawer
  .side-panel-content--has-tabs
  .thb-predictive-search--popular {
  padding: 25px 30px;
  margin-bottom: 0;
}

.side-panel.search-drawer
  .side-panel-content--has-tabs
  .thb-predictive-search--popular
  + .side-panel-content--tabs {
  border-top: 1px solid var(--color-border);
}

.side-panel.search-drawer .side-panel-content--has-tabs scroll-shadow {
  flex: 1;
  overflow: hidden;
}

.side-panel.product-drawer {
  overflow: visible;
  z-index: 92;
}

.side-panel.product-drawer .thb-product-detail {
  margin: 0;
}

.side-panel.product-drawer .side-panel-inner {
  position: relative;
  height: 100%;
  z-index: 5;
}

.side-panel.product-drawer .side-panel-content {
  padding: 0 30px 25px 30px;
  height: calc(100% - 72px);
  background: var(--bg-body, #fff);
  overflow-y: scroll;
}

@media only screen and (min-width: 1068px) {
  .side-panel.product-drawer .side-panel-content {
    padding: 25px 30px;
  }
}

.side-panel-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 35;
  background: var(--bg-body, #fff);
  border-bottom: 1px solid var(--color-border);
  padding: 17px 30px;
  height: 72px;
}

.side-panel-header h4 {
  margin: 0;
  line-height: 1;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  font-weight: var(--font-body-bold-weight, 600);
  color: var(--color-body);
  text-transform: uppercase;
}

.side-panel-header h4 > span {
  display: block;
}

.side-panel-header h4 .facets__label {
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}

.side-panel-header div {
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.side-panel-close {
  cursor: pointer;
}

.side-panel-content {
  padding: 25px 30px;
}

.side-panel-content.side-panel-content--has-tabs {
  padding: 0;
}

.side-panel-content.side-panel-content--has-tabs .side-panel-content--inner {
  padding: 25px 30px;
  overflow-y: scroll;
  height: 100%;
}

.side-panel-content--tabs {
  display: flex;
}

.side-panel-content--tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: var(--font-body-bold-weight, 600);
  padding: 0 15px;
  height: 50px;
  flex: 1;
  background: rgba(var(--color-body-rgb), 0.05);
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  color: var(--color-body);
}

.side-panel-content--tabs button.tab-active {
  background: var(--bg-body);
  border-bottom-color: transparent;
}

.side-panel-content--tabs button:last-child {
  border-right: 0;
}

.side-panel-content--tab-panel {
  display: none;
}

.side-panel-content--tab-panel.tab-active {
  display: block;
}

.side-panel-content--search-footer {
  padding: 25px 30px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.side-panel-content .button {
  flex-shrink: 0;
}

.loading {
  position: relative;
}

.loading:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.loading .loading-overlay {
  display: block;
}

.loading-overlay {
  display: none;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  line-height: 0;
  transform: translate3d(-50%, -50%, 0);
}

.spinner {
  animation: rotator 1.4s infinite linear;
}

.spinner-path {
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s infinite ease;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(270deg);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 280;
  }

  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 280;
    transform: rotate(450deg);
  }
}

.mobile-menu-drawer {
  display: none;
}

.lazyload,
.lazyloading {
  opacity: 0.75;
  will-change: opacity, filter;
  filter: blur(5px);
}

.lazyload.no-blur,
.lazyloading.no-blur {
  filter: none;
  opacity: 1;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.104, 0.204, 0.492, 1),
    filter 0.2s cubic-bezier(0.104, 0.204, 0.492, 1);
}

@media only screen and (min-width: 768px) {
  .medium-1\/5 {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media only screen and (min-width: 1068px) {
  .large-1\/5 {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

scroll-shadow {
  display: inline-block;
  --scroll-shadow-size: 60;
  --scroll-shadow-top: linear-gradient(
    rgba(var(--bg-body-rgb), 1),
    rgba(var(--bg-body-rgb), 0)
  );
  --scroll-shadow-bottom: linear-gradient(
    rgba(var(--bg-body-rgb), 0),
    rgba(var(--bg-body-rgb), 1)
  );
  --scroll-shadow-left: linear-gradient(
    90deg,
    rgba(var(--bg-body-rgb), 1),
    rgba(var(--bg-body-rgb), 0)
  );
  --scroll-shadow-right: linear-gradient(
    90deg,
    rgba(var(--bg-body-rgb), 0),
    rgba(var(--bg-body-rgb), 1)
  );
}

@media only screen and (max-width: 767px) {
  .mobile-height-full {
    height: calc(100vh - var(--announcement-height, 0px));
  }

  @supports (height: 100svh) {
    .mobile-height-full {
      height: calc(100svh - var(--announcement-height, 0px));
    }
  }
}

@media only screen and (max-width: 767px) {
  .mobile-height-auto {
    min-height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-height-300 {
    min-height: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-height-350 {
    min-height: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-height-400 {
    min-height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-height-450 {
    min-height: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-height-500 {
    min-height: 500px;
  }
}

@media only screen and (min-width: 768px) {
  .desktop-height-full {
    height: calc(100vh - var(--announcement-height, 0px));
  }

  @supports (height: 100dvh) {
    .desktop-height-full {
      height: calc(100dvh - var(--announcement-height, 0px));
    }
  }
}

@media only screen and (min-width: 768px) {
  .desktop-height-auto {
    min-height: auto;
  }
}

@media only screen and (min-width: 768px) {
  .desktop-height-450 {
    min-height: 450px;
  }
}

@media only screen and (min-width: 768px) {
  .desktop-height-550 {
    min-height: 550px;
  }
}

@media only screen and (min-width: 768px) {
  .desktop-height-650 {
    min-height: 650px;
  }
}

@media only screen and (min-width: 768px) {
  .desktop-height-750 {
    min-height: 750px;
  }
}

.height-full {
  min-height: 100vh;
}

.height-auto {
  min-height: auto;
}

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

.height-350 {
  min-height: 350px;
}

.height-400 {
  min-height: 400px;
}

.height-450 {
  min-height: 450px;
}

.page-content-width {
  font-family: Inter;
  max-width: 1050px;
  padding-left: 275px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .page-content-width {
    padding-left: 0;
  }
}

.subheading {
  font-size: 0.8125rem;
  letter-spacing: 0.4em;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: var(--font-body-medium-weight, 500);
}

@media only screen and (min-width: 768px) {
  .subheading {
    font-size: 0.9375rem;
  }
}

.section-spacing {
  margin-top: var(--section-spacing-mobile, 0);
  margin-bottom: var(--section-spacing-mobile, 0);
}

@media only screen and (min-width: 768px) {
  .section-spacing {
    margin-top: var(--section-spacing-desktop, 0);
    margin-bottom: var(--section-spacing-desktop, 0);
  }
}

.section-spacing.section-spacing--disable-top {
  margin-top: 0;
}

.section-spacing.section-spacing--disable-bottom {
  margin-bottom: 0;
}

.section-spacing-bottom {
  margin-bottom: var(--section-spacing-mobile, 0);
}

@media only screen and (min-width: 768px) {
  .section-spacing-bottom {
    margin-bottom: var(--section-spacing-desktop, 0);
  }
}

.section-spacing-bottom.section-spacing--disable-bottom {
  margin-bottom: 0;
}

.section-spacing-padding {
  padding-top: var(--section-spacing-mobile, 0);
  padding-bottom: var(--section-spacing-mobile, 0);
}

@media only screen and (min-width: 768px) {
  .section-spacing-padding {
    padding-top: var(--section-spacing-desktop, 0);
    padding-bottom: var(--section-spacing-desktop, 0);
  }
}

.section-spacing-padding.section-spacing--disable-top {
  padding-top: 0;
}

.section-spacing-padding.section-spacing--disable-bottom {
  padding-bottom: 0;
}

.visibility-hidden {
  visibility: hidden;
}

.thb-parallax-image {
  pointer-events: none;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-body);
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 30;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(70px);
}

@media only screen and (min-width: 1068px) {
  .back-to-top {
    bottom: 30px;
    right: 30px;
  }
}

.back-to-top.back-to-top--active {
  transform: translateY(0px);
}

.back-to-top svg {
  overflow: visible;
  transform: translateY(1px);
}

.back-to-top--handle {
  transform: translateY(4px);
}

.back-to-top--bar {
  opacity: 0;
  transform-origin: bottom center;
  transform: scale(1, 0) translateY(8px);
}

.back-to-top:hover .back-to-top--handle,
.back-to-top:focus .back-to-top--handle {
  transform: translateY(0px);
}

.back-to-top:hover .back-to-top--bar,
.back-to-top:focus .back-to-top--bar {
  opacity: 1;
  transform-origin: top center;
  transform: scale(1, 1) translateY(0);
}

h1,
.h1,
.h1-large,
.h1-xlarge {
  font-size: calc(var(--font-heading-scale) * 40px);
  line-height: calc(
    var(--font-heading-line-height-scale) *
      calc(var(--font-heading-scale) * 48px)
  );
}

@media only screen and (min-width: 768px) {
  h1,
  .h1,
  .h1-large,
  .h1-xlarge {
    font-size: calc(var(--font-heading-scale) * 48px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 56px)
    );
  }
}

@media only screen and (min-width: 1068px) {
  h1,
  .h1,
  .h1-large,
  .h1-xlarge {
    font-size: calc(var(--font-heading-scale) * 52px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 60px)
    );
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 28px);
  line-height: calc(
    var(--font-heading-line-height-scale) *
      calc(var(--font-heading-scale) * 36px)
  );
}

@media only screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 36px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 44px)
    );
  }
}

@media only screen and (min-width: 1068px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 40px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 48px)
    );
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 26px);
  line-height: calc(
    var(--font-heading-line-height-scale) *
      calc(var(--font-heading-scale) * 30px)
  );
}

@media only screen and (min-width: 768px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 30px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 38px)
    );
  }
}

@media only screen and (min-width: 1068px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 34px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 42px)
    );
  }
}

h4,
.h4 {
  font-size: calc(var(--font-heading-scale) * 20px);
  line-height: calc(
    var(--font-heading-line-height-scale) *
      calc(var(--font-heading-scale) * 28px)
  );
}

@media only screen and (min-width: 1068px) {
  h4,
  .h4 {
    font-size: calc(var(--font-heading-scale) * 28px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 36px)
    );
  }
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 24px);
  line-height: calc(
    var(--font-heading-line-height-scale) *
      calc(var(--font-heading-scale) * 32px)
  );
}

h6,
.h6 {
  font-size: calc(var(--font-heading-scale) * 20px);
  line-height: calc(
    var(--font-heading-line-height-scale) *
      calc(var(--font-heading-scale) * 26px)
  );
}

@media only screen and (min-width: 768px) {
  .h1-large {
    font-size: calc(var(--font-heading-scale) * 52px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 60px)
    );
  }
}

@media only screen and (min-width: 1068px) {
  .h1-large {
    font-size: calc(var(--font-heading-scale) * 60px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 68px)
    );
  }
}

@media only screen and (min-width: 768px) {
  .h1-xlarge {
    font-size: calc(var(--font-heading-scale) * 60px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 68px)
    );
  }
}

@media only screen and (min-width: 1068px) {
  .h1-xlarge {
    font-size: calc(var(--font-heading-scale) * 72px);
    line-height: calc(
      var(--font-heading-line-height-scale) *
        calc(var(--font-heading-scale) * 80px)
    );
  }
}

h1,
.h1,
.h1-large,
.h1-xlarge,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 .h1-large,
.h1-xlarge {
  letter-spacing: var(--font-heading-letter-spacing, normal);
}

@media only screen and (min-width: 1068px) {
  .heading-size--small {
    font-size: 2.125rem;
    line-height: 2.625rem;
  }
}

@media only screen and (min-width: 1068px) {
  .heading-size--medium {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

@media only screen and (min-width: 1068px) {
  .heading-size--large {
    font-size: 3.75rem;
    line-height: 4.25rem;
  }
}

@media only screen and (min-width: 1068px) {
  .heading-size--xlarge {
    font-size: 4.5rem;
    line-height: 5rem;
  }
}

.header-section {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
}

.header {
  position: relative;
  background: linear-gradient(90deg, #ff7070 0%, #e52c2c 49.5%, #ff5454 100%);
  z-index: 30;
  width: 100%;
}

.header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

.header.header--shadow-small:after {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.header.header--shadow-medium:after {
  box-shadow: 0 9px 38px rgba(0, 0, 0, 0.05), 0 5px 12px rgba(0, 0, 0, 0.1);
}

.header.header--shadow-large:after {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 5px 22px rgba(0, 0, 0, 0.15);
}

.header.is-sticky:after {
  opacity: 1;
}

.header.transparent--true {
  position: absolute;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.header.transparent--true:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: -1;
  background: var(--color-header-bg, #fff);
  transform: translateY(-100%);
}

.header.transparent--true:hover:before,
.header.transparent--true.is-sticky:before {
  transform: translateY(0%);
}

.header.transparent--true:not(:hover):not(.is-sticky) .logolink.text-logo {
  color: var(--color-header-transparent-text, #fff);
}

.header.transparent--true:not(:hover):not(.is-sticky) .logolink .logoimg {
  opacity: 0;
}

.header.transparent--true:not(:hover):not(.is-sticky)
  .logolink
  .logoimg--light {
  opacity: 1;
}

.header.transparent--true:not(:hover):not(.is-sticky) .thb-full-menu > li > a {
  color: var(--color-header-transparent-text, #fff);
}

.header.transparent--true:not(:hover):not(.is-sticky)
  .thb-full-menu
  > li
  > a:after {
  background: var(--color-header-transparent-text, #fff);
}

.header.transparent--true:not(:hover):not(.is-sticky)
  .thb-localization-forms.inside-header
  .select-arrow
  svg
  path {
  stroke: var(--color-header-transparent-text, #fff);
}

.header.transparent--true:not(:hover):not(.is-sticky)
  .thb-localization-forms.inside-header
  .select
  select {
  color: var(--color-header-transparent-text, #fff);
}

.header.transparent--true:not(:hover):not(.is-sticky)
  .thb-secondary-area
  .thb-item-count {
  background-color: var(--color-header-transparent-text, #fff);
  color: var(--color-header-icons, --color-accent);
}

.header.transparent--true:not(:hover):not(.is-sticky)
  .thb-secondary-area-item.thb-secondary-myaccount {
  color: var(--color-header-transparent-text, #fff);
}

.header.transparent--true:not(:hover):not(.is-sticky) svg path {
  stroke: var(--color-header-transparent-text, #fff);
}

.header.transparent--true:not(:hover):not(.is-sticky) .mobile-toggle span {
  background: var(--color-header-transparent-text, #fff);
}

.header > .row > .columns {
  display: flex;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  min-height: 60px;
  justify-content: space-between;
}

@media only screen and (min-width: 1068px) {
  .header > .row > .columns {
    min-height: 49px;
  }
}

.header .logolink .logoimg--light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

.header.style1 .logolink {
  text-align: center;
  justify-content: center;
}

.header.style1 .logolink,
.cart_icon-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .header.style1 .logolink,
  .cart_icon-mobile {
    display: block !important;
  }
}

.cart_icon-mobile,
.locator-store-mobile {
  width: 15.976px;
  height: 14.645px;
}

@media only screen and (min-width: 1068px) {
  .header.style1 .logolink {
    text-align: left;
    margin-right: auto;
    justify-content: flex-start;
  }
}

@media only screen and (min-width: 1068px) {
  .header.style1 > .row > .columns {
    grid-template-columns: auto minmax(auto, 70%) auto;
  }
}

.header.style2 .logolink {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  flex-shrink: 0;
}

@media only screen and (min-width: 1068px) {
  .header.style2 .logolink {
    margin-left: 0;
  }
}

@media only screen and (min-width: 1068px) {
  .header.style2 > .row > .columns {
    grid-template-columns: auto 1fr;
  }
}

.header.style2 .full-menu {
  margin-left: 25px;
}

@media only screen and (min-width: 1068px) {
  .header.style2 .logolink {
    text-align: left;
  }
}

.header.style3 .logolink {
  text-align: center;
  justify-content: center;
}

.header.style3 {
  object-position: center;
}

.header.style3 .full-menu {
  margin-left: 0;
}

.header.style3 .thb-full-menu {
  text-align: left;
}

.header.style3 .thb-full-menu > li:first-child {
  padding-left: 0;
}

.header.style4 .full-menu {
  width: 100%;
  grid-column: span 3;
  justify-content: center;
}

@media only screen and (min-width: 1068px) {
  .header.style4 .logolink {
    margin: 15px 0;
  }
}

@media only screen and (min-width: 1068px) {
  .header.style4 > .row > .columns {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.header .menu-logo-container {
  display: flex;
  align-items: center;
}

.thb-secondary-area {
  font-family: Inter;
  line-height: 1;
  height: 100%;
  white-space: nowrap;
  justify-content: end;
  display: inline-flex;
}

@media only screen and (min-width: 768px) {
  .thb-secondary-area {
    min-width: 135px;
    align-items: center;
  }
}

[dir="rtl"] .thb-secondary-area {
  margin-left: 0;
}

.thb-secondary-area .no-js-hidden {
  align-items: center;
  display: none;
}

@media only screen and (min-width: 1068px) {
  .thb-secondary-area .no-js-hidden {
    display: inline-flex;
  }
}

.thb-secondary-area-item {
  padding: 0 7px;
  align-items: center;
  display: inline-flex;
}

@media only screen and (min-width: 1068px) {
  .thb-secondary-area-item {
    padding: 0 15px;
  }
}

.thb-secondary-area-item:last-child {
  padding-right: 0;
}

[dir="rtl"] .thb-secondary-area-item:last-child {
  padding: 0 7px;
}

@media only screen and (min-width: 1068px) {
  [dir="rtl"] .thb-secondary-area-item:last-child {
    padding: 0 10px;
  }
}

.thb-secondary-area-item.thb-secondary-myaccount {
  font-weight: var(--font-body-medium-weight, 500);
  font-size: calc(var(--font-navigation-scale, 1) * 15px);
  color: var(--color-header-links, --color-accent);
}

.thb-secondary-area-item.thb-secondary-myaccount:hover {
  color: var(--color-header-links-hover, --color-accent2);
}

.navigation-uppercase-true .thb-secondary-area-item.thb-secondary-myaccount {
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .thb-secondary-area-item.thb-secondary-myaccount {
    display: inline-flex;
  }
}

.thb-secondary-area-item.thb-secondary-myaccount span {
  position: relative;
  line-height: 1.7;
}

.thb-secondary-area-item.thb-secondary-myaccount span:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  will-change: transform;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left center;
  background: var(--color-header-links-hover, --color-accent);
}

.thb-secondary-area-item.thb-secondary-myaccount:hover,
.thb-secondary-area-item.thb-secondary-myaccount:focus {
  color: var(--color-header-links-hover, --color-accent2);
}

.thb-secondary-area-item.thb-secondary-myaccount:hover span:after,
.thb-secondary-area-item.thb-secondary-myaccount:focus span:after {
  transform: scale(1, 1);
}

.thb-secondary-area-item.thb-secondary-cart .thb-item-count svg {
  fill: var(--color-header-bg, #fff);
  width: 8px;
}

.thb-secondary-area-item svg {
  pointer-events: none;
}

.thb-secondary-area .thb-secondary-item-icon {
  position: relative;
}

.thb-secondary-area .thb-item-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.625rem;
  font-weight: var(--font-body-bold-weight, 600);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--color-header-icons, --color-accent);
  color: var(--color-header-bg, #fff);
  position: absolute;
  top: -8px;
  right: -12px;
}

@media only screen and (max-width: 768px) {
  .thb-secondary-area .thb-item-count {
    background: #886200;
    color: #fff;
    width: 14px;
    height: 14px;
    top: -6px;
    right: -8px;
  }
}

.logolink {
  display: inline-flex;
  margin: 20px 0;
}

.logolink.text-logo {
  font-size: 1.125rem;
  font-weight: var(--font-body-bold-weight, 600);
  line-height: 1;
  word-break: break-all;
  color: var(--color-header-links, --color-accent);
}

.logolink.text-logo:hover,
.logolink.text-logo:focus {
  color: var(--color-header-links-hover, --color-accent2);
}

@media only screen and (min-width: 768px) {
  .logolink.text-logo {
    font-size: 1.5rem;
  }
}

.logolink .logoimg {
  width: 80px;
  height: var(--logo-height-mobile, 30px);
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
  .logolink .logoimg {
    height: var(--logo-height, 30px);
  }
}

.thb-header-mobile-left {
  display: inline-flex;
}

@media only screen and (min-width: 1068px) {
  .thb-header-mobile-left {
    display: none;
  }
}

[dir="rtl"] .thb-header-mobile-left {
  margin-right: 0;
}

.thb-header-desktop-left {
  display: none;
  line-height: 1;
}

@media only screen and (min-width: 1068px) {
  .thb-header-desktop-left {
    display: inline-flex;
    margin-right: auto;
  }

  [dir="rtl"] .thb-header-desktop-left {
    margin-right: 0;
  }
}

.mobile-toggle-wrapper {
  display: inline-flex;
}

.no-js .mobile-toggle-wrapper[open] .mobile-menu-drawer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.no-js .mobile-toggle-wrapper[open] .mobile-toggle span:nth-child(1) {
  transform: rotateZ(45deg) translateY(-1px);
}

.no-js .mobile-toggle-wrapper[open] .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.no-js .mobile-toggle-wrapper[open] .mobile-toggle span:nth-child(3) {
  transform: rotateZ(-45deg);
}

.js .mobile-toggle-wrapper[open].active .mobile-menu-drawer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-toggle-wrapper summary::-webkit-details-marker {
  display: none;
}

.mobile-toggle {
  display: inline-flex;
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  width: 18px;
  height: 1.5px;
  background: #886200;
  position: absolute;
  border-radius: 1px;
  top: 18px;
  left: 15px;
}

.mobile-toggle span:nth-child(1) {
  transform-origin: top left;
}

.mobile-toggle span:nth-child(2) {
  top: 23px;
}

.mobile-toggle span:nth-child(3) {
  transform-origin: top left;
  top: 28px;
}

.mobile-menu-drawer {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.full-menu {
  display: none;
  max-width: 100%;
}

@media only screen and (min-width: 1068px) {
  .full-menu {
    display: inline-flex;
  }
}

.thb-full-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 0.9375rem;
}

.thb-full-menu a {
  color: var(--color-header-links, --color-accent);
  position: relative;
  font-size: 12px;
  font-family: Inter;
}

.navigation-uppercase-true .thb-full-menu a {
  text-transform: uppercase;
}

.thb-full-menu a:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  will-change: transform;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left center;
  background: var(--color-header-links-hover, --color-accent);
}

.thb-full-menu a:hover,
.thb-full-menu a:focus {
  color: var(--color-header-links-hover, --color-accent2);
  font-weight: 700;
  display: flex;
  align-items: center;
}

.thb-full-menu a:hover svg path,
.thb-full-menu a:focus svg path {
  stroke: var(--color-header-links-hover, --color-accent2);
}

.thb-full-menu > li {
  display: inline-flex;
  padding: 0 12px;
  align-items: center;
}

@media only screen and (min-width: 1440px) {
  .thb-full-menu > li {
    padding: 0 13px;
  }
}

.thb-full-menu > li > a {
  margin: 10px 0;
  font-weight: 400;
}

.thb-full-menu li.menu-item-has-children {
  position: relative;
  z-index: 1;
}

.thb-full-menu li.menu-item-has-children:hover {
  z-index: 2;
}

.thb-full-menu li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}

.thb-full-menu li.menu-item-has-children:hover:before {
  content: attr(data-item-title);
  position: absolute;
  height: 100%;
  top: 0;
  margin-left: -30px;
  padding-left: 30px;
  padding-right: 30px;
  opacity: 0;
}

.thb-full-menu li.menu-item-has-children.left-submenu .sub-menu {
  left: auto;
  right: calc(100% + 35px);
}

.thb-full-menu li.menu-item-has-children.menu-item-has-megamenu {
  position: static;
}

.thb-full-menu li.menu-item-has-children.menu-item-has-megamenu .sub-menu {
  left: 0;
  right: 0;
  border-top: 1px solid var(--color-header-border, var(--color-border));
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.thb-full-menu
  li.menu-item-has-children.menu-item-has-megamenu
  .sub-menu.mega-menu-container
  .mega-menu-promotion
  img {
  transform: scale(1);
}

.thb-full-menu
  li.menu-item-has-children.menu-item-has-megamenu
  .sub-menu.mega-menu-container
  .mega-menu-promotion:hover
  img {
  transform: scale(1.05);
}

.thb-full-menu li.menu-item-has-children > a {
  padding-right: 15px;
  position: relative;
}

.thb-full-menu li.menu-item-has-children > a:focus + .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.thb-full-menu li.menu-item-has-children > a svg {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
}

.thb-full-menu li.menu-item-has-children:focus-within {
  z-index: 2;
}

.thb-full-menu li.menu-item-has-children:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.thb-full-menu
  li.menu-item-has-children:focus-within
  > .sub-menu.mega-menu-container {
  display: flex;
}

.thb-full-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  font-size: calc(var(--font-navigation-scale, 1) * 14px);
  line-height: 1;
  padding: 22px 30px;
  background: var(--color-header-bg, #fff);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  text-align: left;
  white-space: nowrap;
  line-height: 1.1;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
}

.thb-full-menu .sub-menu a:not(.text-button):after {
  top: calc(100% - 3px);
}

.thb-full-menu .sub-menu ul {
  line-height: inherit;
}

.thb-full-menu .sub-menu li a {
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
}

.thb-full-menu .sub-menu .sub-menu {
  top: -22px;
  left: calc(100% + 35px);
}

.thb-full-menu .sub-menu li.menu-item-has-children:hover:before {
  width: calc(100% + 65px);
}

.thb-full-menu .sub-menu.mega-menu-container {
  padding: 0;
  display: flex;
}

.thb-full-menu .mega-menu-columns {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  grid-column-gap: 20px;
  list-style: none;
  padding: 50px;
  margin: 0;
  white-space: initial;
  flex: 1;
}

@media only screen and (min-width: 1200px) {
  .thb-full-menu .mega-menu-columns {
    grid-column-gap: 30px;
  }
}

.thb-full-menu .mega-menu-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.thb-full-menu .mega-menu-columns__heading {
  font-size: calc(var(--font-navigation-scale, 1) * 12px);
  text-transform: uppercase;
  font-weight: var(--font-body-bold-weight, 600);
  letter-spacing: 0.1em;
  padding: 0;
  margin-bottom: 10px;
}

.mega-menu-promotion {
  width: 25vw;
  position: relative;
  overflow: hidden;
}

.mega-menu-promotion > a {
  display: block;
  height: 100%;
}

.mega-menu-promotion > a:after {
  content: none;
}

.mega-menu-promotion img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.mega-menu-promotion--cover {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  color: #fff;
  white-space: normal;
  padding: 0 50px 50px 50px;
}

.mega-menu-promotion--cover p {
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.1em;
  font-weight: var(--font-body-bold-weight, 600);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.mega-menu-promotion--cover .text-button:before,
.mega-menu-promotion--cover .text-button:after {
  top: calc(100% + 2px);
}

.mega-menu-promotion--cover .text-button:hover {
  color: #fff;
}

.mega-menu-promotion:hover img {
  transform: scale(1.05);
}

.animations-true .animate-fade {
  opacity: 0;
}

.animations-true .line-child {
  overflow: hidden;
}

.thb-localization-forms {
  text-align: right;
}

.thb-localization-forms .shopify-localization-form {
  display: inline-flex;
}

.thb-localization-forms .shopify-localization-form > div {
  margin-left: 15px;
}

.thb-localization-forms .select select {
  background: none;
  border: none;
  padding: 0;
  height: auto;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1;
}

.thb-localization-forms.inside-header .select {
  margin: 0 15px 0 0;
  padding-right: 12px;
}

.thb-localization-forms.inside-header .select-arrow {
  right: 0;
}

.thb-localization-forms.inside-header .select-arrow svg path {
  stroke: var(--color-header-text, --color-body);
}

.thb-localization-forms.inside-header .select select {
  font-weight: var(--font-body-medium-weight, 500);
  font-size: calc(var(--font-navigation-scale, 1) * 15px);
  color: var(--color-header-text, --color-body);
}

.navigation-uppercase-true
  .thb-localization-forms.inside-header
  .select
  select {
  text-transform: uppercase;
}

.shopify-payment-button__more-options,
.spr-summary-actions-newreview,
.text-button {
  display: inline-flex;
  font-size: 13px;
  color: #d93d3d;
  height: 1.0625rem;
  line-height: 1.0625rem;
  margin-right: 15px;
  font-weight: 600;
  letter-spacing: var(--button-letter-spacing, 0.02em);
  cursor: pointer;
  position: relative;
}

.shopify-payment-button__more-options:after,
.shopify-payment-button__more-options:before,
.spr-summary-actions-newreview:after,
.spr-summary-actions-newreview:before,
.text-button:after,
.text-button:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  pointer-events: none;
}

.shopify-payment-button__more-options:before,
.spr-summary-actions-newreview:before,
.text-button:before {
  background: rgba(var(--color-accent-rgb), 0.4);
}

.shopify-payment-button__more-options:after,
.spr-summary-actions-newreview:after,
.text-button:after {
  background: var(--color-accent);
  transform-origin: left center;
  transform: scale(0, 1);
}

@media (hover: hover) {
  .shopify-payment-button__more-options:hover:after,
  .spr-summary-actions-newreview:hover:after,
  .text-button:hover:after {
    transform: scale(1, 1);
  }
}

.shopify-payment-button__more-options.white,
.spr-summary-actions-newreview.white,
.text-button.white {
  color: #fff;
}

.shopify-payment-button__more-options.white:before,
.spr-summary-actions-newreview.white:before,
.text-button.white:before {
  background: rgba(255, 255, 255, 0.2);
}

.shopify-payment-button__more-options.white:after,
.spr-summary-actions-newreview.white:after,
.text-button.white:after {
  background: #fff;
}

button {
  color: var(--color-accent);
  cursor: pointer;
}

.button,
input[type="submit"] {
  font-family: Inter;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 0.875rem;
  font-weight: var(--font-body-bold-weight, 600);
  letter-spacing: var(--button-letter-spacing, 0.02em);
  border: 1px solid var(--solid-button-background, var(--color-accent));
  background: var(--solid-button-background, var(--color-accent));
  color: var(--solid-button-label, #fff);
  border-radius: var(--button-border-radius, 0px);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: color 0.25s cubic-bezier(0.104, 0.204, 0.492, 1),
    background-color 0.25s cubic-bezier(0.104, 0.204, 0.492, 1),
    border-color 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.button-uppercase-true .button,
.button-uppercase-true input[type="submit"] {
  text-transform: uppercase;
}

.button:before,
input[type="submit"]:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5%;
  width: 125%;
  height: 100%;
  background: var(--bg-body);
  opacity: 0;
  z-index: 5;
  opacity: 1;
  border-radius: var(--button-border-radius, 0px);
  transform-origin: bottom left;
  backface-visibility: hidden;
  transform: rotate3d(0, 0, 1, 6deg) translate3d(-1.2em, 110%, 0);
  will-change: transform;
}

@media screen and (hover: hover) {
  .button:hover,
  .button:focus,
  .button.loading,
  [loading="true"] .button,
  input[type="submit"]:hover,
  input[type="submit"]:focus,
  input[type="submit"].loading,
  [loading="true"] input[type="submit"] {
    color: var(--outline-button-label, var(--color-accent));
  }

  .button:hover:before,
  .button:focus:before,
  .button.loading:before,
  [loading="true"] .button:before,
  input[type="submit"]:hover:before,
  input[type="submit"]:focus:before,
  input[type="submit"].loading:before,
  [loading="true"] input[type="submit"]:before {
    transform: rotate3d(0, 0, 1, 0) translateZ(0);
  }
}

.button.loading span,
[loading="true"] .button span,
input[type="submit"].loading span,
[loading="true"] input[type="submit"] span {
  opacity: 0;
}

.button.loading .loading-overlay,
[loading="true"] .button .loading-overlay,
input[type="submit"].loading .loading-overlay,
[loading="true"] input[type="submit"] .loading-overlay {
  opacity: 1;
}

.button span,
input[type="submit"] span {
  position: relative;
  z-index: 8;
}

.button .loading-overlay,
input[type="submit"] .loading-overlay {
  opacity: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.button .loading-overlay svg,
input[type="submit"] .loading-overlay svg {
  width: 20px;
  height: 20px;
}

.button.full,
input[type="submit"].full {
  width: 100%;
}

.button.pill,
input[type="submit"].pill {
  border-radius: 500px;
}

.button.small,
input[type="submit"].small {
  height: 32px;
  letter-spacing: 0.02em;
  font-weight: var(--font-body-medium-weight, 500);
  text-transform: none;
}

.button.medium,
input[type="submit"].medium {
  height: 40px;
  font-size: 0.75rem;
}

.button.white,
input[type="submit"].white {
  border-color: #fff;
  color: var(--color-body);
}

.button.white:before,
input[type="submit"].white:before {
  background: var(--color-body);
}

@media screen and (hover: hover) {
  .button.white:hover,
  input[type="submit"].white:hover {
    color: #fff;
    border-color: var(--color-body);
  }
}

.button.outline,
input[type="submit"].outline {
  border: 1px solid var(--outline-button-label, var(--color-accent));
  color: var(--outline-button-label, var(--color-accent));
  background: transparent;
}

.button.outline:before,
input[type="submit"].outline:before {
  background: var(--outline-button-label, var(--color-accent));
}

@media screen and (hover: hover) {
  .button.outline:hover,
  input[type="submit"].outline:hover {
    background: transparent;
    color: var(--solid-button-label, #fff);
  }
}

.button.outline:focus,
input[type="submit"].outline:focus {
  background: transparent;
  color: var(--solid-button-label, #fff);
}

@media screen and (hover: hover) {
  .button.outline .loading-overlay .spinner-path,
  input[type="submit"].outline .loading-overlay .spinner-path {
    stroke: #fff;
  }
}

.button.outline.white,
input[type="submit"].outline.white {
  border-color: #fff;
  color: #fff;
}

.button.outline.white:before,
input[type="submit"].outline.white:before {
  background: #fff;
}

.button.outline.white:focus,
input[type="submit"].outline.white:focus {
  color: var(--color-body);
}

@media screen and (hover: hover) {
  .button.outline.white:hover,
  input[type="submit"].outline.white:hover {
    color: var(--color-body);
  }
}

.button[disabled],
input[type="submit"][disabled] {
  background: transparent;
  color: #fff;
  border: 1px solid var(--color-border);
  cursor: not-allowed;
  pointer-events: none;
}

input[type="submit"][disabled] span:not(.loading-overlay) {
  opacity: 1;
}

.button[disabled] span:not(.loading-overlay) {
  opacity: 1;
  color: var(--color-accent);
}

form {
  margin: 0;
}

form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"].loading,
[loading="true"] input[type="submit"] {
  color: var(--solid-button-label, #fff);
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  border: 1px solid var(--color-form-border);
  padding: 12px 17px;
  height: 48px;
  margin-bottom: 10px;
  color: var(--color-body);
  font-size: 0.75rem;
  font-weight: 400;
  background: transparent;
  max-width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  border-color: var(--color-accent);
}

input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="date"]:-moz-placeholder,
input[type="datetime"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="time"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: rgba(var(--color-body-rgb), 0);
}

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: rgba(var(--color-body-rgb), 0);
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: rgba(var(--color-body-rgb), 0);
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(var(--color-body-rgb), 0);
}

input[type="text"].full,
input[type="password"].full,
input[type="date"].full,
input[type="datetime"].full,
input[type="email"].full,
input[type="number"].full,
input[type="search"].full,
input[type="tel"].full,
input[type="time"].full,
input[type="url"].full,
textarea.full,
select.full {
  width: 100%;
}

input[type="text"].invalid,
input[type="password"].invalid,
input[type="date"].invalid,
input[type="datetime"].invalid,
input[type="email"].invalid,
input[type="number"].invalid,
input[type="search"].invalid,
input[type="tel"].invalid,
input[type="time"].invalid,
input[type="url"].invalid,
textarea.invalid,
select.invalid {
  border-color: #e93636;
}

input[type="checkbox"],
input[type="radio"] {
  border: 1px solid var(--color-form-border);
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 200px;
}

label {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--color-body);
}

select {
  width: auto;
}

select.resize-select {
  width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition-property: color;
}

@media only screen and (min-width: 1068px) {
  .fields {
    font-family: Inter;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
  }
}

.field {
  font-family: Inter;
  position: relative;
}

.field label {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  padding: 14px 17px;
  height: 48px;
  pointer-events: none;
  color: rgba(var(--color-body-rgb), 0.6);
}

[dir="rtl"] .field label {
  left: auto;
  right: 0;
}

.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field input[type="text"]:focus + label,
.field input[type="text"]:not(:placeholder-shown) + label,
.field input[type="password"]:focus + label,
.field input[type="password"]:not(:placeholder-shown) + label,
.field input[type="date"]:focus + label,
.field input[type="date"]:not(:placeholder-shown) + label,
.field input[type="datetime"]:focus + label,
.field input[type="datetime"]:not(:placeholder-shown) + label,
.field input[type="email"]:focus + label,
.field input[type="email"]:not(:placeholder-shown) + label,
.field input[type="number"]:focus + label,
.field input[type="number"]:not(:placeholder-shown) + label,
.field input[type="search"]:focus + label,
.field input[type="search"]:not(:placeholder-shown) + label,
.field input[type="tel"]:focus + label,
.field input[type="tel"]:not(:placeholder-shown) + label,
.field input[type="time"]:focus + label,
.field input[type="time"]:not(:placeholder-shown) + label,
.field input[type="url"]:focus + label,
.field input[type="url"]:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:not(:placeholder-shown) + label {
  background-color: var(--bg-body, #fff);
  font-size: 0.6875rem;
  padding: 0 6px;
  height: auto;
  left: 11px;
  transform: translateY(-50%);
}

[dir="rtl"] .field textarea:focus + label,
[dir="rtl"] .field textarea:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="text"]:focus + label,
[dir="rtl"] .field input[type="text"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="password"]:focus + label,
[dir="rtl"] .field input[type="password"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="date"]:focus + label,
[dir="rtl"] .field input[type="date"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="datetime"]:focus + label,
[dir="rtl"] .field input[type="datetime"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="email"]:focus + label,
[dir="rtl"] .field input[type="email"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="number"]:focus + label,
[dir="rtl"] .field input[type="number"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="search"]:focus + label,
[dir="rtl"] .field input[type="search"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="tel"]:focus + label,
[dir="rtl"] .field input[type="tel"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="time"]:focus + label,
[dir="rtl"] .field input[type="time"]:not(:placeholder-shown) + label,
[dir="rtl"] .field input[type="url"]:focus + label,
[dir="rtl"] .field input[type="url"]:not(:placeholder-shown) + label,
[dir="rtl"] .field select:focus + label,
[dir="rtl"] .field select:not(:placeholder-shown) + label {
  left: auto;
  right: 11px;
}

.field textarea.invalid + label,
.field input[type="text"].invalid + label,
.field input[type="password"].invalid + label,
.field input[type="date"].invalid + label,
.field input[type="datetime"].invalid + label,
.field input[type="email"].invalid + label,
.field input[type="number"].invalid + label,
.field input[type="search"].invalid + label,
.field input[type="tel"].invalid + label,
.field input[type="time"].invalid + label,
.field input[type="url"].invalid + label,
.field select.invalid + label {
  color: #e93636;
}

.searchform fieldset {
  position: relative;
  width: 100%;
}

.searchform fieldset input {
  width: 100%;
  margin: 0;
  padding-right: 50px;
}

.searchform fieldset input:-moz-placeholder {
  color: rgba(var(--color-body-rgb), 0.6);
}

.searchform fieldset input::-moz-placeholder {
  color: rgba(var(--color-body-rgb), 0.6);
}

.searchform fieldset input:-ms-input-placeholder {
  color: rgba(var(--color-body-rgb), 0.6);
}

.searchform fieldset input::-webkit-input-placeholder {
  color: rgba(var(--color-body-rgb), 0.6);
}

@media only screen and (max-width: 768px) {
input#side-panel-search-input {
  width: auto;
}
  .searchform fieldset {
    width:70%
  }
}

.searchform fieldset .thb-search-submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
}

.searchform fieldset .thb-search-submit svg {
  height: 16px;
}

.custom-checkbox[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 48px;
  height: 24px;
  border-radius: 12px;
  border: 0;
  background: var(--color-border);
  position: relative;
  cursor: pointer;
}

.custom-checkbox[type="checkbox"]:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

.custom-checkbox[type="checkbox"]:checked {
  background: var(--color-accent);
}

.custom-checkbox[type="checkbox"]:checked:after {
  transform: translateX(24px);
}

.select {
  position: relative;
  margin-bottom: 20px;
}

.select select {
  padding-right: 24px;
  margin-bottom: 0;
}

.select-arrow {
  display: flex;
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -3.5px;
  pointer-events: none;
  line-height: 0;
}

.form-notification {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
}

.form-notification svg {
  margin-right: 10px;
}

.form-notification[hidden] {
  display: none;
}

.form-notification .errors ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-notification ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quantity {
  display: inline-flex;
  position: relative;
  border: 1px solid var(--color-form-border);
  padding: 0 30px;
  border-radius: var(--button-border-radius, 0px);
}

.quantity .qty {
  display: inline-flex;
  padding: 0;
  width: 25px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border: 0;
  justify-content: center;
  background: transparent;
  font-size: 0.875rem;
  font-weight: var(--font-body-bold-weight, 600);
  margin: 0;
  outline: 0;
}

.no-js .quantity .qty {
  width: 50px;
}

.quantity.buttons_added .qty {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

.quantity.buttons_added .qty::-webkit-inner-spin-button,
.quantity.buttons_added .qty::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.quantity.small-qty {
  padding: 0 25px;
}

.quantity.small-qty .qty {
  height: 34px;
  line-height: 1;
}

.quantity.small-qty .minus,
.quantity.small-qty .plus {
  width: 25px;
  height: 34px;
}

.quantity .minus,
.quantity .plus {
  display: flex;
  padding: 0;
  margin: 0;
  border: 0;
  height: 46px;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 30px;
  cursor: pointer;
  background: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.quantity .minus svg,
.quantity .plus svg {
  opacity: 0.6;
}

.quantity .minus:hover svg,
.quantity .plus:hover svg {
  opacity: 1;
}

.quantity .minus.disabled,
.quantity .plus.disabled {
  cursor: not-allowed;
}

.quantity .minus.disabled svg,
.quantity .plus.disabled svg {
  opacity: 0.3;
}

.no-js .quantity .minus,
.no-js .quantity .plus {
  display: none;
}

.quantity .plus {
  top: 0;
  left: auto;
  right: 0;
}

.quantity + .remove {
  margin-left: 13px;
}

[dir="rtl"] .quantity + .remove {
  margin-left: 0;
  margin-right: 13px;
}

.remove svg {
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-badge-sale, #ee3a45);
  color: var(--color-badge-text, #fff);
  border-radius: var(--badge-corner-radius, 50px);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.05em;
  font-weight: var(--font-body-bold-weight, 600);
  height: 23px;
  padding: 0 10px;
  line-height: 0;
}

.badge.out-of-stock {
  background: var(--color-badge-sold-out, #acacac);
}

.badge.pre-order {
  background: var(--color-badge-preorder, #666666);
}

.price {
  display: block;
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: var(--color-price, --color-accent);
}

.price > span {
  display: inline-flex;
  vertical-align: middle;
}

.price del .amount {
  opacity: 0.4;
}

.price del + ins {
  margin-left: 10px;
}

.price .from {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

.price > .amount,
.price ins {
  text-decoration: none;
}

.price .unit-price {
  margin-left: 5px;
  font-size: 0.75rem;
  color: rgba(var(--color-accent-rgb), 0.55);
}

.price .unit-price:before {
  content: "(";
}

.price .unit-price:after {
  content: ")";
}

.product-cart-item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  max-width: 400px;
  margin-bottom: 20px;
}

.product-cart-item-image {
  position: relative;
  flex-shrink: 0;
  margin-right: 15px;
}

@media only screen and (min-width: 768px) {
  .product-cart-item-image {
    margin-right: 25px;
  }
}

[dir="rtl"] .product-cart-item-image {
  margin-right: 0;
  margin-left: 15px;
}

@media only screen and (min-width: 768px) {
  [dir="rtl"] .product-cart-item-image {
    margin-left: 25px;
  }
}

.product-cart-item-image .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  transform: none;
  background: rgba(var(--bg-body-rgb), 0.5);
  backdrop-filter: blur(3px);
}

.product-cart-item-image .loading-overlay svg {
  width: 24px;
}

.product-cart-item-info .price {
  display: block;
}

@media only screen and (min-width: 1068px) {
  .product-cart-item-info .price {
    display: none;
  }
}

.product-cart-item-price {
  margin-left: auto;
  padding-left: 15px;
  text-align: right;
}

.product-cart-item-price .price {
  display: none;
}

@media only screen and (min-width: 1068px) {
  .product-cart-item-price .price {
    display: block;
  }
}

.product-cart-item-price .price .unit-price {
  display: block;
}

.product-cart-item img,
.product-cart-item .thb-placeholder {
  width: 75px;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .product-cart-item img,
  .product-cart-item .thb-placeholder {
    width: 96px;
  }
}

.product-cart-item .text-button {
  margin-top: 5px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.product-cart-item .product-card-quickview.loading span {
  opacity: 0;
}

.product-cart-item .product-card-quickview.loading:before,
.product-cart-item .product-card-quickview.loading:after {
  display: none;
}

.product-cart-item .product-card-quickview .loading-overlay {
  width: 18px;
  height: 18px;
  top: calc(50% + 2px);
}

.product-cart-item .cart-product-link {
  display: block;
  font-size: calc(var(--font-product-title-scale, 1) * 0.9375rem);
  line-height: calc(var(--font-product-title-line-height-scale, 1) * 1.5);
  font-weight: var(--font-body-medium-weight, 500);
  display: block;
}

.product-title-uppercase-true .product-cart-item .cart-product-link {
  text-transform: uppercase;
}

.product-cart-item.thb-loading {
  pointer-events: none;
}

.product-cart-item.thb-loading .loading-overlay {
  display: flex;
}

.product-cart-item-options {
  font-size: 0.6875rem;
  opacity: 0.8;
  margin-top: 5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-cart-item .small-qty {
  margin-top: 8px;
}

.product-cart-item .form-notification {
  margin-top: 8px;
}

.cart-drawer {
  overflow: visible;
}

.cart-drawer .side-panel-inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  position: relative;
  z-index: 5;
}

.cart-drawer .side-panel-content {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  background: var(--bg-body, #fff);
}

.cart-drawer .side-panel-footer {
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  position: relative;
  background: var(--bg-body, #fff);
}

.cart-drawer .side-panel-footer .cart-policy-text {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-top: 5px;
  margin-bottom: 10px;
}

.cart-drawer .side-panel-footer .button {
  display: inline-block;
  padding: 12px 20px;
}

.cart-drawer-footer {
  padding: 0 30px 80px 30px;
}

@media only screen and (min-width: 768px) {
  .cart-drawer-footer {
    padding: 0 30px 30px 30px;
  }
}

.cart-drawer .product-cart-item {
  max-width: 100%;
}

.cart-drawer .product-cart-item--container {
  margin-bottom: 30px;
}

.cart-drawer--recommendations {
  display: block;
  padding: 15px;
}

@media only screen and (min-width: 1068px) {
  .cart-drawer--recommendations {
    padding: 15px 0;
  }
}

.cart-drawer--recommendations--products {
  padding: 0 15px;
  margin: 0 -15px;
  width: calc(100% + 30px);
  overflow-x: scroll;
  overflow-y: hidden;
  display: grid;
  grid-gap: 30px;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.cart-drawer--recommendations--products::-webkit-scrollbar {
  display: none;
}

@media only screen and (min-width: 1068px) {
  .cart-drawer--recommendations--products {
    padding: 10px 0;
    grid-gap: 20px;
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
    overflow: hidden;
    align-content: start;
    margin: 0 auto;
    width: 100%;
  }
}

.cart-drawer--recommendations--heading {
  letter-spacing: 0.02em;
  position: relative;
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: var(--font-body-bold-weight, 600);
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1068px) {
  .cart-drawer--recommendations--heading {
    margin-bottom: 5px;
    text-align: center;
  }
}

.cart-drawer--recommendations--container {
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-bottom: 0;
  margin-top: auto;
  background: var(--bg-body-darken, #f8f8f8);
  transition: transform 0.3s cubic-bezier(0.104, 0.204, 0.492, 1);
}

@media only screen and (min-width: 1068px) {
  .cart-drawer--recommendations--container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 180px;
    padding: 0 15px;
    margin: 0;
    height: auto;
    z-index: -1;
    transition-delay: 0.25s;
    transform: translateX(0%);
    box-shadow: inset 0px 4px 40px rgba(0, 0, 0, 0.15);
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
  }
}

[dir="rtl"] .cart-drawer--recommendations--container {
  margin-right: -30px;
  margin-left: 0;
}

@media only screen and (min-width: 1068px) {
  [dir="rtl"] .cart-drawer--recommendations--container {
    margin: 0;
  }
}

@media only screen and (min-width: 1068px) {
  .cart-drawer--recommendations--container.active {
    transform: translateX(-100%);
  }
}

.cart-drawer--recommendations .product-cart-item {
  margin-bottom: 0;
  max-width: 320px;
}

@media only screen and (min-width: 1068px) {
  .cart-drawer--recommendations .product-cart-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cart-drawer--recommendations .product-cart-item-image {
    margin: 0 0 15px 0;
  }
}

.cart-drawer--recommendations .product-cart-item .cart-product-link {
  font-size: calc(var(--font-product-title-scale, 1) * 0.8125rem);
}

.cart-drawer .free-shipping {
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 25px;
}

.cart-drawer .free-shipping--text {
  margin-bottom: 10px;
}

.cart-drawer .free-shipping--bar {
  background: var(--color-border);
  height: 4px;
  width: 100%;
  position: relative;
}

.cart-drawer .free-shipping--percentage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(var(--percentage, 0), 1);
  transform-origin: center left;
  background: var(--color-body);
}

.cart-drawer__empty-cart {
  height: 100%;
  padding: 10vh 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.cart-drawer__empty-cart svg {
  margin-bottom: 45px;
}

.cart-drawer__empty-cart + .cart-drawer--recommendations--container {
  display: none;
}

.cart-drawer-terms {
  margin-bottom: 15px;
}

.cart-drawer-terms a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-drawer-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-drawer-buttons form {
  width: 100%;
}

.cart-drawer-buttons .checkout b {
  font-weight: var(--font-body-bold-weight, 600);
  margin: 0 5px;
}

.cart-drawer .text-button {
  margin-top: 15px;
  margin-right: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-drawer .mini-cart__row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  line-height: 1;
}

.cart-drawer .mini-cart__row span {
  font-weight: var(--font-body-medium-weight, 500);
}

.cart-drawer .mini-cart__row.total {
  border-bottom: 0;
}

.cart-drawer .order-note-toggle {
  padding: 14px 30px;
  align-items: center;
  background: var(--bg-body);
  color: var(--color-body);
}

.cart-drawer .order-note-toggle span {
  width: 10px;
  height: 10px;
  position: relative;
}

.cart-drawer .order-note-toggle span:before,
.cart-drawer .order-note-toggle span:after {
  content: "";
  display: block;
  position: absolute;
  background: var(--color-body);
}

.cart-drawer .order-note-toggle span:before {
  top: 0;
  width: 1px;
  left: 4.5px;
  height: 10px;
}

.cart-drawer .order-note-toggle span:after {
  top: 4.5px;
  left: 0;
  width: 10px;
  height: 1px;
}

.cart-drawer .order-note-toggle__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 40;
  background: var(--bg-body);
  box-shadow: 0px -8px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(100%);
}

.cart-drawer .order-note-toggle__content-overlay {
  content: "";
  position: absolute;
  height: calc(100vh + 100%);
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  left: 0;
  opacity: 0;
  z-index: 30;
  pointer-events: none;
}

.cart-drawer .order-note-toggle__content label {
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  font-weight: var(--font-body-medium-weight, 500);
}

.cart-drawer .order-note-toggle__content textarea {
  width: 100%;
  min-height: 0;
}

.cart-drawer .order-note-toggle__content.active {
  transform: translateY(0);
}

.cart-drawer
  .order-note-toggle__content.active
  .order-note-toggle__content-overlay {
  pointer-events: all;
  opacity: 1;
}

[role="main"] .shopify-policy__title {
  text-align: center;
  min-height: 250px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) {
  [role="main"] .shopify-policy__title {
    padding: 60px;
  }
}

[role="main"] .shopify-policy__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12.5px;
}

@media only screen and (min-width: 768px) {
  [role="main"] .shopify-policy__container {
    padding: 0 40px;
  }
}

@media only screen and (min-width: 1068px) {
  [role="main"] .shopify-policy__container {
    max-width: 1140px;
  }
}

[role="main"] .shopify-policy__container .rte {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  [role="main"] .shopify-policy__container .rte {
    margin-bottom: 60px;
  }
}

a,
#wrapper .click-capture,
.side-panel,
.back-to-top,
.back-to-top path,
.header:after,
.header.transparent--true:before,
.header .logolink .logoimg,
.thb-secondary-area-item.thb-secondary-myaccount span:after,
.thb-secondary-area-item svg path,
.thb-secondary-area .thb-item-count,
.mobile-toggle span,
.thb-full-menu a:after,
.thb-full-menu li.menu-item-has-children > a svg path,
.thb-full-menu .sub-menu,
.thb-localization-forms.inside-header .select-arrow svg path,
.shopify-payment-button__more-options:after,
.spr-summary-actions-newreview:after,
.text-button:after,
.button:before,
input[type="submit"]:before,
.button span,
input[type="submit"] span,
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select,
input[type="checkbox"],
input[type="radio"],
.field label,
.custom-checkbox[type="checkbox"],
.custom-checkbox[type="checkbox"]:after,
.quantity .minus svg,
.quantity .plus svg,
.cart-drawer .free-shipping--percentage,
.cart-drawer .order-note-toggle__content,
.cart-drawer .order-note-toggle__content-overlay,
.flickity-page-dots .dot,
.flickity-nav,
.flickity-nav svg {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.no-js .quantity .minus,
.quantity .no-js .minus,
.no-js .quantity .plus,
.quantity .no-js .plus,
.no-js .flickity-nav {
  display: none !important;
}

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  min-width: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

@media only screen 
and (device-width: 375px) 
and (device-height: 812px) 
and (-webkit-device-pixel-ratio: 3) {
 .flickity-enabled.is-draggable .flickity-viewport {
  min-height: 320px;
}
}

@media only screen and (min-width: 390px) and (max-width: 393px) {
  .flickity-enabled.is-draggable .flickity-viewport {
  min-height: 340px;
}
}
@media only screen and (min-width: 428px) and (max-width: 430px) {
  .flickity-enabled.is-draggable .flickity-viewport {
  min-height: 380px;
}
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 10;
}

.flickity-enabled.is-fade .flickity-slider .carousel__slide {
  will-change: opacity, z-index;
}

.flickity-enabled.is-fade.main-slideshow.transition--swipe
  .flickity-slider
  > * {
  opacity: 1 !important;
}

.flickity-enabled.is-fade.main-slideshow.transition--swipe .slideshow__slide {
  will-change: clip-path, z-index;
}

.flickity-enabled.is-fade.main-slideshow.transition--swipe
  .slideshow__slide-bg {
  transform: scale(1.1);
}

.flickity-page-dots {
  display: block;
  list-style: none;
  margin: 0;
  padding: 15px;
  text-align: center;
  line-height: 0;
}

.flickity-page-dots .dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  opacity: 0.6;
  border-radius: 4px;
  margin: 0 2.98px;
  background: var(--color-text, #fff);
  cursor: pointer;
  position: relative;
}

.flickity-page-dots .dot:hover {
  opacity: 1;
}

.flickity-page-dots .dot .thb-pagination-svg {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  transform: rotateZ(-90deg);
  visibility: hidden;
}

.flickity-page-dots .dot .thb-pagination-svg circle {
  stroke-dasharray: 58 58;
  stroke-dashoffset: 58;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.flickity-page-dots .dot.is-selected .thb-pagination-svg {
  visibility: none;
}

.flickity-page-dots .dot.is-selected .thb-pagination-svg circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset var(--dot-speed) linear;
}

.flickity-page-dots.dot-style--logos {
  display: inline-flex;
  align-items: center;
  overflow: scroll;
  scrollbar-width: none;
}

.flickity-page-dots.dot-style--logos::-webkit-scrollbar {
  display: none;
}

.flickity-page-dots.dot-style--logos .dot {
  width: auto;
  height: 100px;
  background: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.flickity-page-dots.dot-style--logos .dot img {
  object-fit: contain;
  max-height: 100%;
  width: auto;
}

.flickity-nav {
  background: #efdeb8bf;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  z-index: 30;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0px 3px 4px 0px #8b826e66;
}

.flickity-nav svg {
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .flickity-nav {
    width: 30px;
    height: 30px;
  }
}

@media only screen and (min-width: 768px) {
  .flickity-enabled .flickity-nav {
    display: flex;
  }
}

.flickity-nav.flickity-prev {
  left: -24px;
}

.flickity-nav.flickity-next {
  right: -24px;
}

.flickity-nav:focus-visible {
  opacity: 1;
}

.flickity-nav:hover svg {
  transform: scale(1.2);
}

.flickity-enabled:hover .flickity-nav {
  opacity: 1;
}

.flickity-enabled.row .flickity-prev {
  opacity: 1;
  left: -9px;
  z-index:1;
}

.flickity-enabled.row .flickity-next {
  opacity: 1;
  right: -9px;
  z-index:1;
}

.flickity-progress {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  border-radius: 0.5px;
  position: relative;
  margin-top: 20px;
}

.flickity-progress--bar {
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  background: var(--color-body);
  width: 0%;
  border-radius: 1.5px;
}

a,
#wrapper .click-capture,
.side-panel,
.back-to-top,
.back-to-top path,
.header:after,
.header.transparent--true:before,
.header .logolink .logoimg,
.thb-secondary-area-item.thb-secondary-myaccount span:after,
.thb-secondary-area-item svg path,
.thb-secondary-area .thb-item-count,
.mobile-toggle span,
.thb-full-menu a:after,
.thb-full-menu li.menu-item-has-children > a svg path,
.thb-full-menu .sub-menu,
.thb-localization-forms.inside-header .select-arrow svg path,
.shopify-payment-button__more-options:after,
.spr-summary-actions-newreview:after,
.text-button:after,
.button:before,
input[type="submit"]:before,
.button span,
input[type="submit"] span,
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select,
input[type="checkbox"],
input[type="radio"],
.field label,
.custom-checkbox[type="checkbox"],
.custom-checkbox[type="checkbox"]:after,
.quantity .minus svg,
.quantity .plus svg,
.cart-drawer .free-shipping--percentage,
.cart-drawer .order-note-toggle__content,
.cart-drawer .order-note-toggle__content-overlay,
.flickity-page-dots .dot,
.flickity-nav,
.flickity-nav svg {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.no-js .quantity .minus,
.quantity .no-js .minus,
.no-js .quantity .plus,
.quantity .no-js .plus,
.no-js .flickity-nav {
  display: none !important;
}

.section-header {
  font-family: Inter;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.section-header--content {
  font-family: Inter;
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .section-header--content {
    max-width: 70%;
  }
}

.section-header--content .rte {
  margin-top: 5px;
}

.section-header--content p:last-child {
  margin-bottom: 0;
}

.section-header scroll-shadow {
  max-width: 100%;
}

.section-header--button {
  width: 100%;
  display: flex;
  align-items: flex-end;
  margin-top: 15px;
}

@media only screen and (min-width: 768px) {
  .section-header--button {
    justify-content: flex-end;
  }
}

.section-header--button .text-button {
  margin-right: 0;
}

.section-header--button.has--tabs .linked-to-tab {
  display: none;
}

.section-header--button.has--tabs .linked-to-tab.active {
  display: contents;
}

.section-header-left--true .collection-tabs__list-link:first-child {
  margin-left: 0;
}

@media only screen and (min-width: 768px) {
  .section-header-left--true {
    flex-direction: row;
  }
}

.section-header-left--false {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .section-header-left--false {
    flex-direction: column;
  }
}

.section-header-left--false .section-header--content {
  margin: 0 auto;
  align-items: center;
}

.section-header-left--false .section-header--button {
  justify-content: center;
}

.section-header h2 {
  font-weight: var(--font-body-bold-weight, 600);
  margin-bottom: 0px;
}

<
  !---for
  wishlist
  icon
  color--
  > a.site-header__icon.site-header__link.wishlist-hero-header-icon.wishlist-hero-header-show-count-only.thb-secondary-area-item {
  color: #fff !important;
}

svg.wlh-svg-Icon.wlh-svg-icon-heart-empty {
  color: #fff !important;
  margin-top: -2px;
}

@media only screen and (max-width: 768px) {
  .wishlist-hero-items-count {
    top: 30px !important;
  }

  svg.wlh-svg-Icon.wlh-svg-icon-heart-empty {
    color: #886200 !important;
    margin-top: 2px;
    width: 14.6px !important;
  }

  .cart_icon-dsk {
    display: none;
  }
}

.get-in-touch-header {
  width: 100%;
}

.get-in-touch-form-border {
  border: 1px solid #e3e3e3;
  padding: 15px !important;
}

@media only screen and (min-width: 768px) {
  .get-in-touch-header {
    max-width: none;
  }

  .product-cart-custom {
    max-width: 320px !important;
  }

  table.no-borders thead th {
    padding: 18px 10px !important;
  }

  table.no-borders thead th:first-child {
    text-align: center;
  }

  td#Row14423870439646 {
    width: 300px;
  }
}

._19gi7yt14 {
  display: none;
}

button.ctnshop {
  width: 200px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}

a.back_to_shop.text-button.txt-btn {
  padding: 1rem;
}

table.no-borders thead {
  line-height: 1;
  background: #e52c2c;
  color: #ffffff;
}

.txt-btn {
  display: inline-flex;
  height: 3rem;
  margin-right: 0px;
  font-weight: 400;
  letter-spacing: var(--button-letter-spacing, 0.02em);
  cursor: pointer;
  margin-top: 22px;
  background: #575757;
  border-radius: 5px;
  color: #ffffff !important;
}

@media only screen and (max-width: 768px) {
  table.cart-items.no-borders {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  .product-cart-item.product-cart-custom {
    display: block;
  }

  table.no-borders thead th {
    padding: 8px 15px;
  }

  a.cart-product-link {
    width: 150px;
  }

  .product-cart-item-image.cartitemadjust {
    width: 50%;
  }
}

a.back_to_shop.text-button.txt-btn:before {
  background: none;
}

a.back_to_shop.text-button.txt-btn:hover {
  background: #fd6675;
}

button.myact-btn {
  padding: 5px;
  background: #575757;
  border-radius: 5px;
}

button.myact-btn a {
  color: #fff;
  font-weight: 600;
  font-size: medium;
}

button.myact-btn:hover {
  background: #fd6675;
}

.small-12.columns.myact {
  display: inline-flex;
}

.myaccount--header {
  margin-bottom: 40px;
  width: 50%;
  text-align: left;
}

.my-right {
  width: 50%;
  text-align: end;
}

.collection-banner--title {
  padding-right: 25px;
  padding-top: 5px;
}

@media only screen and (max-width: 768px) {
  .collection-banner--title {
    padding-right: 15px;
    font-size: 20px;
    font-weight: 700;
  }

  .searchform fieldset {
    width: 50%;
  }
}

p.spec {
  justify-content: space-between;
  display: flex;
  width: 100%;
}

span.s-left {
  max-width: 50%;
  display: block;
}

span.s-right {
  display: block;
  width: 50%;
}

p.spec.total-border {
  border-bottom: 1px solid;
  border-top: 1px solid;
  line-height: 35px;
}

.b-seller {
  left: -20px;
  top: 90px;
  transform: rotate(-90deg);
  border-radius: 4px;
  padding: 5px 10px;
}

.share-button {
  display: block;
  position: relative;
  top: -75px;
  left: 425px;
  width: 0;
  height: 0;
  z-index: 0 !important;
}

.share-button details {
  width: fit-content;
}

.share-button__button {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  color: rgb(var(--color-link));
  padding-top: 20px;
  margin-left: 75px;
  padding-left: 0;
  min-height: 4.4rem;
}

details[open] > .share-button__fallback {
  animation: animateMenuOpen var(--duration-default) ease;
}

.share-button__button:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.share-button__button,
.share-button__fallback button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.share-button__button .icon-share {
  height: 1.2rem;
  margin-right: 1rem;
  min-width: 1.3rem;
}

.share-button__fallback {
  display: flex;
  align-items: center;
  position: absolute;
  top: 3rem;
  left: 0.1rem;
  z-index: 3;
  width: 100%;
  min-width: max-content;
  border-radius: var(--inputs-radius);
  border: 0;
}

.share-button__fallback:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width)
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.share-button__fallback:before {
  background: rgb(var(--color-background));
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius)
    rgba(var(--color-shadow), var(--inputs-shadow-opacity));
  z-index: -1;
}

.share-button__fallback button {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: var(--inputs-border-width);
}

.share-button__fallback button:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.share-button__fallback button:hover svg {
  transform: scale(1.07);
}

.share-button__close:not(.hidden) + .share-button__copy {
  display: none;
}

.share-button__close,
.share-button__copy {
  background-color: transparent;
  color: rgb(var(--color-foreground));
}

.share-button__copy:focus-visible,
.share-button__close:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.share-button__copy:focus,
.share-button__close:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.field:not(:focus-visible):not(.focused)
  + .share-button__copy:not(:focus-visible):not(.focused),
.field:not(:focus-visible):not(.focused)
  + .share-button__close:not(:focus-visible):not(.focused) {
  background-color: inherit;
}

.share-button__fallback .field:after,
.share-button__fallback .field:before {
  content: none;
}

.share-button__fallback .field {
  border-radius: 0;
  min-width: auto;
  min-height: auto;
  transition: none;
}

.share-button__fallback .field__input:focus,
.share-button__fallback .field__input:-webkit-autofill {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.1rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.share-button__fallback .field__input {
  box-shadow: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  filter: none;
  min-width: auto;
  min-height: auto;
}

.share-button__fallback .field__input:hover {
  box-shadow: none;
}

.share-button__fallback .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.share-button__message:not(:empty) {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 0.8rem 0 0.8rem 1.5rem;
  margin: var(--inputs-border-width);
}

.share-button__message:not(:empty):not(.hidden) ~ * {
  display: none;
}

@media only screen and (max-width: 768px) {
  .share-button {
    left: 230px;
    top: -475px;
    z-index: 1;
  }

  .share-button__button .icon-share {
    fill: gray;
  }
}

a.review-css {
  color: #000;
  text-decoration: underline;
  padding: 5px;
}

.top-logolist {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px 25px 0px 0px;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .top-logolist {
    display: none;
  }
}

.pc-jewl,
.main-pc-logo {
  width: 180px;
      aspect-ratio: auto;
    height: auto;
    object-fit: contain;
}

.ef-years {
  width: 85px;
  height: 85px;
      aspect-ratio: auto;
    object-fit: cover;
}

.delivery-date-msg {
  margin-bottom: -15px;
  margin-top: -10px;
  padding-left: 15px;
  font-size: 14px !important;
  font-family: Inter !important;
}

.wishlist-hero-list-card-footer-delete-all,
.wishlist-hero-footer-share-btn {
  background-color: #ccc !important;
  border-radius: 5px !important;
}

.thb-quick-search {
  width: 140px;
  height: 31px;
  justify-content: end;
  border: 1px solid #fff6ed;
  border-radius: 45px;
  align-items: center;
  margin-right: 25px;
}

.thb-quick-search-mobile {
  width: 100%;
  height: 27px;
  justify-content: space-between;
  color: #c0a661;
  font-size: 13px;
  font-family: "Font Awesome 5 Free";
  border-radius: 27.227px;
  border: 1.5px solid #886200;
  padding: 7.26px 6.655px !important;
  align-items: center;
  margin-top: -15px;
}

.log_mobile-text {
  display: inline-flex;
  gap: 5px;
  left: -10px;
}

@media print, screen and (min-width: 1130px) and (max-width: 1218px) {
  .thb-quick-search {
    width: 135px;
    margin-right: 15px;
  }
}

@media print, screen and (min-width: 1219px) and (max-width: 1228px) {
  .thb-quick-search {
    width: 215px;
    margin-right: 15px;
  }
}

@media print, screen and (min-width: 1230px) and (max-width: 1238px) {
  .thb-quick-search {
    width: 220px;
  }
}

@media print, screen and (max-width: 768px) {
  .thb-quick-search {
    display: none;
  }

  .locator-store,
  .dsk_login,
  .log_mobile-text,
  .log_desk-text {
    display: none;
  }

  .locator-store-mobile {
    display: block !important;
    margin-top: 12px;
    min-height: 44px;
    min-width: 44px;
    padding: 6px 14px;
  }

  .wishlist-hero-items-count {
    top: 23px !important;
    right: -1px !important;
    background: #886200 !important;
    color: #fff !important;
  }

  .site-header__icon
    span.wishlist-hero-items-count.wishlist-hero-items-count-exists {
    width: 14px !important;
    height: 14px !important;
  }

  .header {
    background: #fff;
  }

  .mob-span {
    display: none;
  }

  .small-12.columns.myact {
    margin-top: 65px;
  }

  .jdgm-carousel-wrapper .jdgm-carousel__right-arrow {
    margin-right: 0px !important;
  }

  .dsk_logo {
    display: none;
  }
}

.locator-store-mobile {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .thb-quick-search-mobile,
  .mobile_login,
  .log-mobile {
    display: none !important;
  }

  .wishlist-hero-items-count {
    top: -9px !important;
    right: 1px !important;
  }
}

.parent-link-back {
  display: none;
}

@media print, screen and (min-width: 1440px) {
  .thb-quick-search {
    width: 305px;
  }

  .thb-secondary-area-item {
    padding: 0 17px;
  }

  .locator-store {
    padding: 2px 10px 3px 35px;
  }
}

.locator-store {
  width: 100%;
  height: auto;
  padding: 2px 10px 3px 5px;
}

.mobile-menu li {
  list-style: none !important;
  color: #000;
  font-family: Inter;
  font-size: 7px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 10px 10px 15px 10px;
}
a.button.white {
  display: inline-flex;
  height: 32px;
  padding: 13.172px 28.226px;
  justify-content: center;
  align-items: center;
  gap: 9.409px;
  flex-shrink: 0;
  border-radius: 11.429px;
}

a.button.white span {
  color: red !important;
  text-align: center;
  font-family: Inter;
  font-size: 13.714px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.371px;
}

.button.white:before {
  display: inline-flex;
  height: 28px;
  padding: 11.526px 24.698px;
  justify-content: center;
  align-items: center;
  gap: 8.233px;
  flex-shrink: 0;
  border-radius: 8.233px;
  border: 1.647px solid var(--Gold, #886200);
}

.button.white:visited {
  display: inline-flex;
  height: 28px;
  padding: 11.526px 24.698px;
  justify-content: center;
  align-items: center;
  gap: 8.233px;
  flex-shrink: 0;
  border-radius: 8.233px;
  border: 1.647px solid var(--Gold, #886200);
  color: #fff;
}

td#Row14410689151198 {
  width: 300px;
}

@media only screen and (min-width: 768px) {
  td#Row14445157417182 {
    width: 15%;
  }

  .wrap-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }
}

a.track-btn,
button.detail-btn {
  border-bottom: 1px solid;
}

.mainContainerAstro {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
  font-family: "Inter";
}

.pcc-AllMedia .formlocator {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.pcc-astrolgyvew .innerContainerAstro .astrocontainer {
  width: 100%;
  float: left;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pcc-astrolgyvew .innerContainerAstro .astrocontainer #astro-carousel {
  float: left;
  width: 100%;
}

.pcc-astrolgyvew .innerContainerAstro .astrocontainer .item {
  float: left;
  width: 50%;
  padding: 0 10px 0;
  display: flex;
  justify-content: center;
}

.pcc-astrolgyvew .innerContainerAstro .astrocontainer .item .astrobox {
  border: 1px solid #dbdbdb;
  padding: 30px;
  margin-bottom: 25px;
  height: 315px;
  overflow: auto;
}

.pcc-astrolgyvew
  .innerContainerAstro
  .astrocontainer
  .item
  .astrobox
  .astro_title {
  width: 100%;
  font-family: "Inter";
  font-weight: 700;
  color: #bc0832;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.pcc-astrolgyvew
  .innerContainerAstro
  .astrocontainer
  .item
  .astrobox
  .astro_container
  ul {
  width: 100%;
  float: left;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pcc-astrolgyvew
  .innerContainerAstro
  .astrocontainer
  .item
  .astrobox
  .astro_container
  ul
  li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #bc0832;
  position: absolute;
  top: 11px;
  left: 1px;
  transform: rotate(50deg);
}

.pcc-astrolgyvew
  .innerContainerAstro
  .astrocontainer
  .item
  .astrobox
  .astro_container
  ul
  li {
  float: left;
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  font-family: "Inter";
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}

.contact_number {
  font-size: 14px;
  margin-bottom: 6px;
  font-family: "Inter";
  color: #000;
}

.day_title {
  color: #000;
  font-size: 18px;
  font-family: "Inter";
  font-weight: 400;
  margin-bottom: auto;
}

.day_comment {
  width: 100%;
  float: left;
  color: #bc0832;
  font-size: 16px;
  font-family: "Inter";
  line-height: 1.4;
  margin: 15px 0;
  font-weight: 400;
}

.no-record {
  color: #bc0832;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
  font-family: "Inter";
}

.select-field-astro {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>')
    no-repeat right 15px center;
  background-color: #fff;
  padding-right: 40px;
  border: 1px solid #ccc;
  padding: -1px;
  width: 100%;
  max-width: 230px;
  min-width: 350px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selectTvCommercial,
.selectPrintMedia {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>')
    no-repeat right 15px center;
  background-color: #fff;
  padding-right: 40px;
  border: 1px solid #ccc;
  padding: -1px;
  width: 100%;
  max-width: 230px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thb-full-menu > li.active > a {
  color: white !important;
  font-weight: 400 !important;
}
.bookSoltButton {
    background: #d93d3d;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #d93d3d;
    margin-right: 10px;
}
.bookSoltButton:hover{
   background: #fff;
   color:#d93d3d;

}

@media (max-width: 760px) {
  .pcc-astrolgyvew .innerContainerAstro .astrocontainer .item {
    width: 100%;
    float: left;
  }

  .select-field-astro {
    min-width: 265px;
  }
  .bookSoltButton {
    margin-bottom: 10px;
    font-size: 12px;
    margin-right: 0px;
  }
}

@media (max-width: 760px) {
  .pcc-astrolgyvew .innerContainerAstro .astrocontainer .item .astrobox {
    height: auto;
  }

  table.no-borders tbody tr th,
  table.no-borders tbody tr td {
    padding: 10px 0px 10px 0;
    border-bottom: 1px solid var(--color-border);
  }
}

a.button.accent2 {
  padding: 10px;
}

button#AddToCart {
  border: 1px solid var(--outline-button-label, var(--color-accent));
}

.jdgm-carousel-item {
  display: inline-block;
  height: 100%;
  width: 32.3% !important;
  vertical-align: middle;
  padding: 10px 24px !important;
  overflow: hidden;
  border: 1px solid !important;
  margin-left: 10px !important;
  border-radius: 10px !important;
}

.jdgm-carousel-wrapper .jdgm-widget.jdgm-carousel {
  margin: 0 auto;
  width: 95% !important;
}

.jdgm-carousel-title {
  color: #886200 !important;
  text-align: center;
}

.jdgm-carousel-wrapper .jdgm-all-reviews-rating-wrapper {
  display: none !important;
}

.slick-prev {
  z-index: 9 !important;
}

button.checkout-button.button.full[name="checkout"] {
  background-color: #eb3333;
}

button.checkout-button.button.full[name="checkout"]:disabled {
  background-color: #ee5c59;
}

back-to-top.back-to-top.back-to-top--active {
  margin-bottom: 60px;
  border: 2px solid #eb3333;
}

th#ColumnTotal {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  back-to-top.back-to-top.back-to-top--active {
    margin-bottom: 67px !important;
  }

  .template-product .back-to-top {
    bottom: 60px;
  }

  .template-product .Avada-Faqs_Button {
    bottom: 50px;
  }
}

@media only screen and (max-width: 768px) {
  a.view-collection-button:active {
    background: linear-gradient(
      90deg,
      #886200,
      #bd8e33,
      #eac952,
      #bd8e33,
      #886200
    ) !important;
    color: #fff !important;
  }

  button.myact-btn {
    margin-top: 10px;
  }

  div#Cart-Drawer {
    z-index: 9999;
  }

  @keyframes backgroundChange {
    0% {
      background-color: #d2d2d2;
    }

    50% {
      background-color: #d2d2d2;
    }

    100% {
      background-color: initial;
    }
  }

  summary.mobile-toggle:active {
    animation: backgroundChange 3s;
  }

  button.share-button__button:active {
    animation: backgroundChange 3s;
    width: 30px;
    min-height: 30px !important;
    border-radius: 30px;
    padding-top: 2px;
  }

  a.thb-secondary-area-item.thb-secondary-myaccount.log-mobile:active {
    animation: backgroundChange 3s;
    height: 30px;
    border-radius: 30px;
  }

  a.site-header__icon.site-header__link.wishlist-hero-header-icon.wishlist-hero-header-show-count-only.thb-secondary-area-item {
    margin-top: 19px;
    height: 30px;
    border-radius: 30px;
    width: 30px;
  }

  a.site-header__icon.site-header__link.wishlist-hero-header-icon.wishlist-hero-header-show-count-only.thb-secondary-area-item:active {
    margin-top: 19px;
    animation: backgroundChange 3s;
    height: 30px;
    border-radius: 30px;
    width: 30px;
  }

  a#cart-drawer-toggle {
    margin-top: 20px;
    height: 30px;
    border-radius: 30px;
    width: 30px;
  }

  a#cart-drawer-toggle:active {
    margin-top: 20px;
    animation: backgroundChange 3s;
    height: 30px;
    border-radius: 30px;
    width: 30px;
  }

  span.wishlist-hero-items-count.wishlist-hero-items-count-text-plain.cart-count-bubble.wishlist-hero-header-show-count-only.wishlist-hero-items-count-exists {
    margin-top: -22px;
  }

  @keyframes product_image_change {
    0% {
      transform: scale(1.05);
      opacity: 0.5;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  img.exc-mob-view:active,
  img.single-image--mobile.lazyautosizes.lazyloaded:active,
  img.single-image--mobile.lazyautosizes.ls-is-cached.lazyloaded:active,
  img.mugdhaa-mob-view:active,
  img.eter-mob-view:active,
  img.little-mob-view:active,
  img.single-image--mobile.lazyautosizes.ls-is-cached.lazyloaded:active,
  img.single-image--mobile.lazyautosizes.ls-is-cached.lazyloaded:active,
  img.slideshow-image--mobile.lazyautosizes.ls-is-cached.lazyloaded:active,
  img.single-image--mobile.lazyautosizes.ls-is-cached.lazyloaded:active,
  .block:active,
  a.button:active,
  .gallery__item:active,
  .gallery__item-content.content-bottom-center:active {
    animation: product_image_change 3s;
  }

  img.slideshow-image--mobile:active {
    animation: product_image_change 3s;
  }
}

@keyframes product_image_change {
  0% {
    transform: scale(1.05);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

a.button:active {
  animation: product_image_change 3s;
}

.flickity-nav.flickity-next {
  display: block;
}

.zipcode_entered svg {
  display: none !important;
}

.button.loading .loading-overlay {
  opacity: 0;
}

.size_icon-scale {
  fill: #3d332f;
  transition: fill 0.3s ease;
}

.ringSizeChart img:active {
  fill: var(--solid-button-background, var(--color-accent));
}

.logo-list.logo-list--centered-true.section-spacing.section-spacing--disable-top
  .section-header {
  align-items: center;
}

.logo-list.logo-list--centered-true.section-spacing.section-spacing--disable-top
  .section-header--content {
  background: none;
}
#tryonButton {
  z-index: 40;
}
a.star-rating-container {
  display: none !important;
}

@media (min-width: 769px) {
  .mobile-filters {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide-mob {
    display: none !important;
  }
  .facets--bar .facets-toggle .mobile-filters {
    display: flex;
  }

  .facets-toggle--mobile {
    padding: 10px;
    font-size: 14px;
    color: red;
  }

  select#SortByMobile1 {
    position: absolute;
    opacity: 0;
    left: 8%;
    width: 100px;
  }
}

.shopify-email-marketing-confirmation__container {
  margin-top: 35px;
  height: 55vh;
  text-align: center;
}

.shopify-email-marketing-confirmation__container > h1 {
  font-size: 40px;
  margin: 0 auto;
}

.shopify-email-marketing-confirmation__container > p {
  text-align: center;
}

.shopify-email-marketing-confirmation__container > a {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  border: 2px solid red;
  border-radius: 5px;
  padding: 5px;
  background-color: red;
  color: white;
}

@media only screen and (max-width: 767px) {
  .shopify-email-marketing-confirmation__container > h1 {
    font-size: 25px;
    margin-top: 5rem;
  }

  .shopify-email-marketing-confirmation__container > a {
    margin: 0 auto;
  }
}

::-webkit-scrollbar-thumb {
  height: 0;
}

a.navigation-prev img {
  transform: rotate(180deg);
}

.nev_sub_men-items {
  display: flex;
  transition: transform 0.5s ease;
}

.nev_sub_men-item {
  width: 52.615px;
  margin-right: 4.38px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nev_sub_men-item img {
  width: 52.615px;
  height: 52.615px;
  aspect-ratio: 1;
      object-fit: cover;
}

.caption {
  display: flex;
  margin: 0 0 5.5px 0;
  padding: 0;
  height: 5.4px;
  flex-direction: column;
  justify-content: center;
  color: #886200;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 5px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 1px;
}
.nev_sub_men {
  scrollbar-width: none;
  display: flex;
  overflow-x: auto;
  /* Enable horizontal scroll */
  scroll-behavior: smooth;
  /* Smooth scrolling */
  padding-top: 7px;
  align-items: center;
  gap: 5px;
  background: #fff;
}

.navigation-next,
.navigation-prev {
  width: 12px;
  height: 14px;
  background: rgba(239, 222, 184, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  bottom: 31px;
  box-shadow: 0px 3px 4px 0px rgba(139, 130, 110, 0.4);
}

.navigation-next {
  right: 14px;
}

.navigation-prev {
  left: 0;
}

.navigation-next img,
.navigation-prev img {
  min-height: 44px;
  min-width: 44px;
  padding: 6px 18px;
}

@media (max-width: 767px) {
  .desktop_sub_men {
    display: none;
  }

  .sub_men_mobi_head {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .desktop_sub_men {
    display: block;
  }

  .sub_men_mobi_head {
    display: none;
  }
}
.nev_sub_men-item {
  width: 60.615px;
}
.nev_sub_men {
  border-bottom: 4px solid var(--Gold, #886200);
}

.earring-img_replace_banner,
.ring-img_replace_banner,
.neckles-img_replace_banner,
.braceletBangle-img_replace_banner,
.pendant-img_replace_banner,
.jewelleryart-img_replace_banner,
.chains-img_replace_banner,
.mangalsutra-img_replace_banner,
.coins-img_replace_banner {
  display: flex;
  width: 100%;
  height: 165px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
}

.earring-image_replace_head,
.ring-image_replace_head,
.neckles-image_replace_head,
.braceletBangle-image_replace_head,
.pendant-image_replace_head,
.jewelleryart-image_replace_head,
.chains-image_replace_head,
.mangalsutra-image_replace_head,
.coins-image_replace_head {
  margin: 0;
  align-self: stretch;
  color: #fff;
  text-align: center;
  font-family: Prata;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.earring-subm-subhea,
.ring-subm-subhea,
.neckles-subm-subhea,
.braceletBangle-subm-subhea,
.pendant-subm-subhea,
.jewelleryart-subm-subhea,
.chains-subm-subhea,
.mangalsutra-subm-subhea,
.coins-subm-subhea {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: Prata;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.earring-shop_but_col,
.ring-shop_but_col,
.neckles-shop_but_col,
.braceletBangle-shop_but_col,
.pendant-shop_but_col,
.jewelleryart-shop_but_col,
.chains-shop_but_col,
.mangalsutra-shop_but_col,
.coins-shop_but_col {
  background: #e2b185; 
  margin: 0;
  display: flex;
  height: 31px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #fff;
}

.earring-shop_par_coll,
.ring-shop_par_coll,
.neckles-shop_par_coll,
.braceletBangle-shop_par_coll,
.pendant-shop_par_coll,
.jewelleryart-shop_par_coll,
.chains-shop_par_coll,
.mangalsutra-shop_par_coll,
.coins-shop_par_coll {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
}

.earring-tenthcl,
.ring-tenthcl,
.neckles-tenthcl,
.braceletBangle-tenthcl,
.pendant-tenthcl,
.jewelleryart-tenthcl,
.chains-tenthcl,
.mangalsutra-tenthcl,
.coins-tenthcl {
  margin-left: -16px;
}

.earring-block_top_10,
.ring-block_top_10,
.neckles-block_top_10,
.braceletBangle-block_top_10,
.pendant-block_top_10,
.jewelleryart-block_top_10,
.chains-block_top_10,
.mangalsutra-block_top_10,
.coins-block_top_10 {
  display: flex;
  width: 880px;
  height: 200px;
  padding: 22px 0px 0px 0px;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 14px 87px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.earring-top10_elem,
.ring-top10_elem,
.neckles-top10_elem,
.braceletBangle-top10_elem,
.pendant-top10_elem,
.jewelleryart-top10_elem,
.chains-top10_elem,
.mangalsutra-top10_elem,
.coins-top10_elem {
  display: flex;
  width: 106px;
  gap: -0.312px;
  flex-shrink: 0;
}

.earring-imgtop10,
.ring-imgtop10,
.neckles-imgtop10,
.braceletBangle-imgtop10,
.pendant-imgtop10,
.jewelleryart-imgtop10,
.chains-imgtop10,
.mangalsutra-imgtop10,
.coins-imgtop10 {
  width: 84.953px;
  height: 80.269px;
  aspect-ratio: 84 / 80;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 3.123px 3.123px 0px 0px;
  box-shadow: 0px 1.874px 12.025px 0px rgba(194, 179, 150, 0.4);
}

.earring-text_numb_to,
.ring-text_numb_to,
.neckles-text_numb_to,
.braceletBangle-text_numb_to,
.pendant-text_numb_to,
.jewelleryart-text_numb_to,
.chains-text_numb_to,
.mangalsutra-text_numb_to,
.coins-text_numb_to {
  margin-top: 0px;
  color: #8b826e;
  text-align: center;
  text-shadow: 0px 1.249px 1.249px rgba(194, 179, 150, 0.4);
  font-family: Inter, sans-serif;
  font-size: 31.233px;
  font-weight: 600;
  line-height: normal;
}

.earring-top_te_be_sell,
.ring-top_te_be_sell,
.neckles-top_te_be_sell,
.braceletBangle-top_te_be_sell,
.pendant-top_te_be_sell,
.jewelleryart-top_te_be_sell,
.chains-top_te_be_sell,
.mangalsutra-top_te_be_sell,
.coins-top_te_be_sell {
  margin-bottom: 18px;
  margin-top: 30px;
  text-align: center;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.earring-rwo1,
.ring-rwo1,
.neckles-rwo1,
.braceletBangle-rwo1,
.pendant-rwo1,
.jewelleryart-rwo1,
.chains-rwo1,
.mangalsutra-rwo1,
.coins-rwo1,
.earring-rwo2,
.ring-rwo2,
.neckles-rwo2,
.braceletBangle-rwo2,
.pendant-rwo2,
.jewelleryart-rwo2,
.chains-rwo2,
.mangalsutra-rwo2,
.coins-rwo2,
.earring-rwo3,
.ring-rwo3,
.neckles-rwo3,
.braceletBangle-rwo3,
.pendant-rwo3,
.jewelleryart-rwo3,
.chains-rwo3,
.mangalsutra-rwo3,
.coins-rwo3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.earring-row-3dev,
.ring-row-3dev,
.neckles-row-3dev,
.braceletBangle-row-3dev,
.pendant-row-3dev,
.jewelleryart-row-3dev,
.chains-row-3dev,
.mangalsutra-row-3dev,
.coins-row-3dev,
.diamond-row-3dev{
  padding: 0;
  display: flex;
  width: 166.156px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
  padding-left: 0px;
  margin-right: 76.79px;
  margin: 0;
}

.earring-row-4dev,
.ring-row-4dev,
.neckles-row-4dev,
.braceletBangle-row-4dev,
.pendant-row-4dev,
.jewelleryart-row-4dev,
.chains-row-4dev,
.mangalsutra-row-4dev,
.coins-row-4dev,
.diamond-row-4dev {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
  padding-left: 0px;
  margin: 0;
}

.earring-row-2dev,
.ring-row-2dev,
.neckles-row-2dev,
.braceletBangle-row-2dev,
.pendant-row-2dev,
.jewelleryart-row-2dev,
.chains-row-2dev,
.mangalsutra-row-2dev,
.coins-row-2dev {
  margin-top: 0;
  padding: 0;
  display: flex;
  width: 313px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  margin-right: 146px;
  padding-left: 0px;
  margin-left: 0;
}

.earring-row-2devinte,
.ring-row-2devinte,
.neckles-row-2devinte,
.braceletBangle-row-2devinte,
.pendant-row-2devinte,
.jewelleryart-row-2devinte,
.chains-row-2devinte,
.mangalsutra-row-2devinte,
.coins-row-2devinte {
  display: flex;
  gap: 34px;
}

#earring-new-neck-id,
#new-neck-id,
#neck,
#braceletBangle-new-neck-id,
#pendant-new-neck-id,
#jewelleryart-new-neck-id,
#chains-new-neck-id,
#diamond-new-neck-id {
  width: 78%;
  margin-left: 100px;
  position: absolute;
  z-index: 49;
  top: 180px;
  left: 0;
  right: 0;

  background: white;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#mangalsutra-new-neck-id,
#coins-new-neck-id,
#silver-new-neck-id,
#gemstone-new-neck-id{
  width: 78%;
  margin-left: 220px;
  position: absolute;
  z-index: 49;
  top: 180px;
  left: 0;
  right: 0;

  background: white;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1400px) {
  #earring-new-neck-id,
  #new-neck-id,
  #neck,
  #braceletBangle-new-neck-id,
  #pendant-new-neck-id,
  #jewelleryart-new-neck-id,
  #chains-new-neck-id,
  #diamond-new-neck-id {
    width: 68%;
    margin-left: 100px;
  }
  #mangalsutra-new-neck-id,
  #coins-new-neck-id,
  #silver-new-neck-id,
  #gemstone-new-neck-id{
    width: 68%;
    margin-left: 400px;
  }
}

@media screen and (max-width: 600px) {
  .earring-column,
  .ring-column,
  .neckles-column,
  .braceletBangle-column,
  .pendant-column,
  .jewelleryart-column,
  .chains-column,
  .mangalsutra-column,
  .coins-column,
  .diamond-column {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1256px) {
  .image-row {
    padding: 0px 0px 0px 7px;
  }
}

.earring-pc-contents,
.ring-pc-contents,
.neckles-pc-contents,
.braceletBangle-pc-contents,
.pendant-pc-contents,
.jewelleryart-pc-contents,
.chains-pc-contents,
.mangalsutra-pc-contents,
.coins-pc-contents {
  width: 100%;
  max-height: 749px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.earring-pc-contents::-webkit-scrollbar,
.ring-pc-contents::-webkit-scrollbar,
.neckles-pc-contents::-webkit-scrollbar,
.braceletBangle-pc-contents::-webkit-scrollbar,
.pendant-pc-contents::-webkit-scrollbar,
.jewelleryart-pc-contents::-webkit-scrollbar,
.chains-pc-contents::-webkit-scrollbar,
.mangalsutra-pc-contents::-webkit-scrollbar,
.coins-pc-contents::-webkit-scrollbar,
.diamond-pc-contents::-webkit-scrollbar{
  display: none;
}

.earring-column,
.ring-column,
.neckles-column,
.braceletBangle-column,
.pendant-column,
.jewelleryart-column,
.chains-column,
.mangalsutra-column,
.coins-column,
.diamond-column{
  float: left;
  padding: 10px;
}

.earring-subcat,
.ring-subcat,
.neckles-subcat,
.braceletBangle-subcat,
.pendant-subcat,
.jewelleryart-subcat,
.chains-subcat,
.mangalsutra-subcat,
.coins-subcat,
.diamond-subcat{
  width: 100%;
  padding: 40px 38px 46px 38px;
}

.earring-subcat a,
.ring-subcat a,
.neckles-subcat a,
.braceletBangle-subcat a,
.pendant-subcat a,
.jewelleryart-subcat a,
.chains-subcat a,
.mangalsutra-subcat a,
.coins-subcat a,
.diamond-subcat a{
  float: none;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 21px;
  text-transform: capitalize !important;
}

.earring-subcat a:hover,
.ring-subcat a:hover,
.neckles-subcat a:hover,
.braceletBangle-subcat a:hover,
.pendant-subcat a:hover,
.jewelleryart-subcat a:hover,
.chains-subcat a:hover,
.mangalsutra-subcat a:hover,
.coins-subcat a:hover,
.diamond-subcat a:hover {
  color: red;
}

.earring-sub-img,
.ring-sub-img,
.neckles-sub-img,
.braceletBangle-sub-img,
.pendant-sub-img,
.jewelleryart-sub-img,
.chains-sub-img,
.mangalsutra-sub-img,
.coins-sub-img {
  width: 100%;
  margin-bottom: 35px;
}

.earring-subcat-menu,
.ring-subcat-menu,
.neckles-subcat-menu,
.braceletBangle-subcat-menu,
.pendant-subcat-menu,
.jewelleryart-subcat-menu,
.chains-subcat-menu,
.mangalsutra-subcat-menu,
.coins-subcat-menu {
  margin-top: 34px;
  display: flex;
  max-width: 885px;
  align-items: flex-start;
  padding: 0 0 !important;
  flex-shrink: 0;
}

.earring-mega-menu_subcat,
.ring-mega-menu_subcat,
.neckles-mega-menu_subcat,
.braceletBangle-mega-menu_subcat,
.pendant-mega-menu_subcat,
.jewelleryart-mega-menu_subcat,
.chains-mega-menu_subcat,
.mangalsutra-mega-menu_subcat,
.coins-mega-menu_subcat {
  list-style: none;
}

.earring-subm-head,
.ring-subm-head,
.neckles-subm-head,
.braceletBangle-subm-head,
.pendant-subm-head,
.jewelleryart-subm-head,
.chains-subm-head,
.mangalsutra-subm-head,
.coins-subm-head {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.earring-top10_elem:nth-child(10),
.ring-top10_elem:nth-child(10),
.neckles-top10_elem:nth-child(10),
.braceletBangle-top10_elem:nth-child(10),
.pendant-top10_elem:nth-child(10),
.jewelleryart-top10_elem:nth-child(10),
.chains-top10_elem:nth-child(10),
.mangalsutra-top10_elem:nth-child(10),
.coins-top10_elem:nth-child(10) {
  margin-left: -2px;
}

/* Specific Overrides */
.ring-img_replace_banner {
  background: #ba9639;
}

.neckles-img_replace_banner {
  background: #e2b185;
}
.earring-img_replace_banner,
.earring-shop_but_col {
  background: #e52c2c;
}
.ring-shop_but_col {
  background: #ba9639;
}
.braceletBangle-img_replace_banner,
.braceletBangle-shop_but_col {
  background: #41299f;
}
.pendant-img_replace_banner,
.pendant-shop_but_col {
  background: #108e70;
}
.jewelleryart-img_replace_banner,
.jewelleryart-shop_but_col {
  background: #8e3d10;
}
.chains-img_replace_banner,
.chains-shop_but_col {
  background: #612ba6;
}
.mangalsutra-img_replace_banner,
.mangalsutra-shop_but_col {
  background: #3d100d;
}
.coins-img_replace_banner,
.coins-shop_but_col {
  background: #bd8e33;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .earring-row-2dev,
  .ring-row-2dev,
  .neckles-row-2dev,
  .braceletBangle-row-2dev,
  .pendant-row-2dev,
  .jewelleryart-row-2dev,
  .chains-row-2dev,
  .mangalsutra-row-2dev,
  .coins-row-2dev {
    font-family: Inter;
    margin-right: 6px !important;
    width: 293px !important;
    gap: 18px !important;
  }
  #earring-new-neck-id,
  #new-neck-id,
  #neck,
  #braceletBangle-new-neck-id,
  #pendant-new-neck-id,
  #jewelleryart-new-neck-id,
  #chains-new-neck-id,
  #mangalsutra-new-neck-id,
  #coins-new-neck-id,
  #silver-new-neck-id{
    top: 210px !important;
  }
  .earring-row-2devinte,
  .ring-row-2devinte,
  .neckles-row-2devinte,
  .braceletBangle-row-2devinte,
  .pendant-row-2devinte,
  .jewelleryart-row-2devinte,
  .chains-row-2devinte,
  .mangalsutra-row-2devinte,
  .coins-row-2devinte {
    gap: 20px !important;
  }
  .earring-row-3dev,
  .ring-row-3dev,
  .neckles-row-3dev,
  .braceletBangle-row-3dev,
  .pendant-row-3dev,
  .jewelleryart-row-3dev,
  .chains-row-3dev,
  .mangalsutra-row-3dev,
  .coins-row-3dev,
  .diamond-row-3dev{
    width: 113.156px !important;
    gap: 18px !important;
    margin-right: 32.79px !important;
  }
  .earring-row-4dev,
  .ring-row-4dev,
  .neckles-row-4dev,
  .braceletBangle-row-4dev,
  .pendant-row-4dev,
  .jewelleryart-row-4dev,
  .chains-row-4dev,
  .mangalsutra-row-4dev,
  .coins-row-4dev,
  .diamond-row-4dev {
    width: 113px !important;
    gap: 18px !important;
  }
  .earring-top_te_be_sell,
  .ring-top_te_be_sell,
  .neckles-top_te_be_sell,
  .braceletBangle-top_te_be_sell,
  .pendant-top_te_be_sell,
  .jewelleryart-top_te_be_sell,
  .chains-top_te_be_sell,
  .mangalsutra-top_te_be_sell,
  .coins-top_te_be_sell {
    margin-bottom: 18px !important;
    margin-top: 90px !important;
  }
  .earring-block_top_10,
  .ring-block_top_10,
  .neckles-block_top_10,
  .braceletBangle-block_top_10,
  .pendant-block_top_10,
  .jewelleryart-block_top_10,
  .chains-block_top_10,
  .mangalsutra-block_top_10,
  .coins-block_top_10 {
    width: 551px !important;
    height: 200px !important;
    padding: 22px 0px 0px 0px !important;
    gap: 12px 3px !important;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  #earring-new-neck-id,
  #new-neck-id,
  #neck,
  #braceletBangle-new-neck-id,
  #pendant-new-neck-id,
  #jewelleryart-new-neck-id,
  #chains-new-neck-id,
  #mangalsutra-new-neck-id,
  #coins-new-neck-id,
  #silver-new-neck-id {
    top: 229px !important;
  }
  .earring-row-2dev,
  .ring-row-2dev,
  .neckles-row-2dev,
  .braceletBangle-row-2dev,
  .pendant-row-2dev,
  .jewelleryart-row-2dev,
  .chains-row-2dev,
  .mangalsutra-row-2dev,
  .coins-row-2dev {
    margin-right: 80px !important;
  }
  .earring-block_top_10,
  .ring-block_top_10,
  .neckles-block_top_10,
  .braceletBangle-block_top_10,
  .pendant-block_top_10,
  .jewelleryart-block_top_10,
  .chains-block_top_10,
  .mangalsutra-block_top_10,
  .coins-block_top_10 {
    width: 720px !important;
    padding: 22px 0px 0px 0px !important;
    gap: 14px 47px !important;
  }
}
</style > <style > body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.image-row {
  display: flex;
  height: 49px;
  padding: 0px 0px 0px 0px;
  border: 2px solid var(--Gold, #886200);
}

.image-container {
  display: flex;
  position: relative;
  height: 49px;
  overflow: hidden;
      align-items: center;
  margin-right: 5px;
}

.image-container img {
  height: 30px;
      aspect-ratio: 1;
    object-fit: cover;
}

.text {
  position: absolute;
  top: 0%;
  color: #7d7d7d;
  font-family: 'Inter';
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 149.82%;
  text-transform: uppercase;
}
.img1 {
  width: 30px;
  height: 30px;
}
.img11 {
  width: 30px;
  height: 30px;
}

.img2 {
  width: 30px;
  height: 30px;
}

.img3 {
  width: 30px;
  height: 30px;
}

.img4 {
  width: 30px;
  height: 30px;
}

.img5 {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.img6 {
  width: 30px;
  height: 30px;
}

.img7 {
  width: 30px;
  height: 30px;
}

.img8 {
  width: 30px;
  height: 30px;
}

.img9 {
  width: 30px;
  height: 30px;
}
.img10 {
  width: 30px;
  height: 30px;
}
.image11 {
  width: 90px;
  flex-shrink: 0;
  align-self: stretch;
}
.image1 {
  width: 108px;
  flex-shrink: 0;
  align-self: stretch;
}

.image2 {
  width: 70px;
  flex-shrink: 0;
  align-self: stretch;
}

.image3 {
  width: 95px;
  flex-shrink: 0;
  align-self: stretch;
}

.image4 {
  width: 105px;
  flex-shrink: 0;
  align-self: stretch;
}

.image5 {
  width: 95px;
  height: 49px;
  flex-shrink: 0;
}

.image6 {
  width: 100px;
  flex-shrink: 0;
  align-self: stretch;
  text-align: center;
}

.image7 {
  width: 115px;
  flex-shrink: 0;
  align-self: stretch;
}

.image8 {
  width: 120px;
  flex-shrink: 0;
  align-self: stretch;
}

.image9 {
  width: 98px;
  align-items: center;
  align-self: stretch;
}
.text1 {
  color: #7d7d7d;
  font-size: 12px;
  font-weight: 400;
  font-family:'Inter';
  line-height: 149.82%;
  text-transform: uppercase;
}

.text.text1 {
  margin-top: 15px;
  margin-left: 32px;
}

.text.text2 {
  margin-top: 15px;
  margin-left: 30px;
}

.text.text3 {
  margin-top: 15px;
  margin-left: 30px;
}

.text.text4 {
  margin-top: 9px;
  margin-left: 32px;
}

.text.text5 {
  margin-top: 15px;
  margin-left: 27px;
}

.text.text6 {
  margin-top: 9px;
  margin-left: 30px;
}

.text.text7 {
  margin-top: 9px;
  margin-left: 30px;
}

.text.text8 {
  margin-top: 15px;
  margin-left: 25px;
}

.text.text9 {
  margin-left: 32px;
  margin-top: 9px;
}
.text10 {
  margin-top: 15px !important;
}
.text.text11{
   margin-top: 15px;
  margin-left: 32px;
}
.text.text1:hover, 
.text.text2:hover,
.text.text3:hover,
.text.text4:hover,
.text.text5:hover,
.text.text6:hover,
.text.text7:hover,
.text.text8:hover,
.text.text9:hover,
.text.text10:hover,
.text.text11:hover,
.text.hover-active {
    color: #fd5c63;
    font-weight: bold;
}

.hover-active {
    color: #fd5c63 !important;
    font-weight: bold !important;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .image-row {
    display: flex;
    height: 47px;
    padding: 0px 0px 0px 0px;
    border: 4px solid var(--Gold, #886200);
  }

  .image-container {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-right: 5px;
  }

  .image-container img {
    object-fit: contain;
    height: 41px;
  }

  .text {
    position: absolute;
    top: 0%;
    color: #7d7d7d;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: 149.82%;
    text-transform: capitalize;
  }
  .img1 {
    width: 65px;
    height: 80px;
  }
  .img11 {
    width: 65px;
    height: 80px;
  }
  .img2 {
    width: 39px;
    height: 80px;
  }

  .img3 {
    width: 53px;
    height: 80px;
  }

  .img4 {
    width: 49px;
    height: 80px;
  }

  .img5 {
    width: 22px;
    height: 80px;
    flex-shrink: 0;
  }

  .img6 {
    width: 37px;
    height: 80px;
  }

  .img7 {
    width: 35px;
    height: 80px;
  }

  .img8 {
    width: 45px;
    height: 76px;
  }

  .img9 {
    width: 36px;
    height: 66px;
  }
   .img10 {
    width: 36px;
    height: 66px;
  }

  .image1 {
    width: 90px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image2 {
    width: 57px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image3 {
    width: 80px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image4 {
    width: 83px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image5 {
    width: 56px;
    height: 90px;
    flex-shrink: 0;
  }

  .image6 {
    width: 76px;
    flex-shrink: 0;
    align-self: stretch;
    text-align: center;
  }

  .image7 {
    width: 69px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image8 {
    width: 90px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image9 {
    width: 50px;
    align-items: center;
    align-self: stretch;
  }
  .image10 {
    width: 70px;
  }
  .text1 {
    color: #7d7d7d;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 149.82%;
    text-transform: capitalize;
  }

  .text.text1 {
    margin-top: 16.23px;
    margin-left: 40.84px;
  }

  .text.text2 {
    margin-top: 16px;
    margin-left: 30px;
  }

  .text.text3 {
    margin-top: 17px;
    margin-left: 40px;
  }

  .text.text4 {
    margin-top: 4px;
    margin-left: 35px;
  }

  .text.text5 {
    margin-top: 3.75px;
    margin-left: 13.74px;
  }

  .text.text6 {
    margin-top: 4px;
    margin-left: 31px;
  }

  .text.text7 {
    margin-top: 5px;
    margin-left: 16px;
  }

  .text.text8 {
    margin-top: 13px;
    margin-left: 34px;
  }

  .text.text9 {
    margin-left: 10px;
    margin-top: 3px;
    font-size: 10px;
  }
  .text10 {
    margin-left: 31px;
    margin-top: 12px;
    font-size: 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  image-row {
    height: 86px !important ;
  }
}
@media (min-width: 1024px) and (max-width: 1256px) {
  .image-row {
    display: flex;
    height: 67px;
    padding: 0px 0px 0px 0px;
    border: 4px solid var(--Gold, #886200);
  }

  .image-container {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-right: 5px;
  }

  .image-container img {
    object-fit: contain;
    height: 60px;
  }

  .text {
    position: absolute;
    top: 0%;
    color: #7d7d7d;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 149.82%;
    text-transform: capitalize;
  }
  .img1 {
    width: 85px;
    height: 80px;
  }
  .img11 {
    width: 85px;
    height: 80px;
  }

  .img2 {
    width: 55px;
    height: 80px;
  }

  .img3 {
    width: 80px;
    height: 80px;
  }

  .img4 {
    width: 80px;
    height: 80px;
  }

  .img5 {
    width: 42px;
    height: 80px;
    flex-shrink: 0;
  }

  .img6 {
    width: 55px;
    height: 80px;
  }

  .img7 {
    width: 60px;
    height: 80px;
  }

  .img8 {
    width: 55px;
    height: 76px;
  }

  .img9 {
    width: 56px;
    height: 66px;
  }
   .img10 {
    width: 56px;
    height: 66px;
  }

  .image1 {
    width: 100px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image2 {
    width: 70px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image3 {
    width: 100px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image4 {
    width: 106px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image5 {
    width: 68px;
    height: 90px;
    flex-shrink: 0;
  }

  .image6 {
    width: 88px;
    flex-shrink: 0;
    align-self: stretch;
    text-align: center;
  }

  .image7 {
    width: 90px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image8 {
    width: 120px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image9 {
    width: 127px;
    align-items: center;
    align-self: stretch;
  }
  .text1 {
    color: #7d7d7d;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 149.82%;
    text-transform: capitalize;
  }

  .text.text1 {
    margin-top: 24.23px;
    margin-left: 50.84px;
  }

  .text.text2 {
    margin-top: 31px;
    margin-left: 40px;
  }

  .text.text3 {
    margin-top: 30px;
    margin-left: 55px;
  }

  .text.text4 {
    margin-top: 27px;
    margin-left: 55px;
  }

  .text.text5 {
    margin-top: 15.75px;
    margin-left: 23.74px;
  }

  .text.text6 {
    margin-top: 5px;
    margin-left: 40px;
  }

  .text.text7 {
    margin-top: 28px;
    margin-left: 32px;
  }

  .text.text8 {
    margin-top: 28px;
    margin-left: 88px;
  }

  .text.text9 {
    margin-left: 58px;
    margin-top: 22px;
  }
}

@media (min-width: 1400px) {
  .img1 {
    width: 30px;
    height: 30px;
  }
    .img11 {
    width: 30px;
    height: 30px;
  }

  .img2 {
    width: 30px;
    height: 30px;
  }

  .img3 {
    width: 30px;
    height: 30px;
  }

  .img4 {
    width: 30px;
    height: 30px;
  }

  .img5 {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }

  .img6 {
    width: 30px;
    height: 30px;
  }

  .img7 {
    width: 30px;
    height: 30px;
  }

  .img8 {
    width: 30px;
    height: 30px;
  }

  .img9 {
    width: 30px;
    height: 30px;
  }
  
  .img10 {
    width: 30px;
    height: 30px;
  }
.image11 {
    width: 100px;
    flex-shrink: 0;
    align-self: stretch;
}
  .image1 {
    width: 115px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image2 {
    width: 85px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image3 {
    width: 110px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image4 {
    width: 125px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image5 {
    width: 110px;
    height: 49px;
    flex-shrink: 0;
  }

  .image6 {
    width: 115px;
    flex-shrink: 0;
    align-self: stretch;
    text-align: center;
  }

  .image7 {
    width: 120px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image8 {
    width: 120px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .image9 {
    width: 110px;
    align-items: center;
    align-self: stretch;
  }
  .text1 {
    color: #7d7d7d;
    font-family: 'Inter';
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 149.82%;
    text-transform: uppercase;
  }

  .text.text1 {
    margin-top: 15px;
    margin-left: 35.84px;
  }
.text.text11 {
    margin-top: 15px;
    margin-left: 35.84px;
  }
  .text.text2 {
    margin-top: 15px;
    margin-left: 40px;
  }

  .text.text3 {
    margin-top:15px;
    margin-left: 40px;
  }

  .text.text4 {
    margin-top: 5px;
    margin-left: 40px;
  }

  .text.text5 {
    margin-top: 15px;
    margin-left: 30px;
  }

  .text.text6 {
    margin-top: 5px;
    margin-left: 38px;
  }

  .text.text7 {
    margin-top: 5px;
    margin-left: 35px;
  }

  .text.text8 {
    margin-top: 15px;
    margin-left: 25px;
  }

  .text.text9 {
    margin-left: 40px;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .image-row {
    display: none;
  }
}

.pcc-text-with-icons__inner {
  display: grid;
  grid-template-columns: repeat(var(--icon-columns, 2), 1fr);
  gap: 41px;
  margin: 50px 100px 60px;
}

.pcc-text-with-icons__block {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 235px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid #f8f2e4;
  border-radius: 10px;
  background-color: #f8f2e4;
  box-shadow: 0px 4px 5.3px 1px rgba(194, 179, 150, 0.4);
  transition: all 0.2s;
}

.pcc-text-with-icons__block:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 8.6px 2px rgba(209, 181, 80, 0.49);
  border-color: #886200;
  cursor: pointer;
}

.pcc-text-with-icons__icon img {
  height: 183px;
  width: 209px;
  display: block;
  aspect-ratio: auto 4/4;
}

.pcc-text-with-icons__block-content {
  padding: 0 25px;
  text-align: center;
}

.pcc-body-font {
  font-size: 32px;
  font-weight: 400;
  line-height: 38.73px;
  color: #886200;
  margin-bottom: 5px;
  text-align: left;
  font-family: inter;
}

.pcc-p {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  color: #886200;
  text-align: left;
  font-family: inter;
}

.pcc-p-1 {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  color: #886200;
  text-align: left;
  font-family: inter;
  padding-right: 64px;
}

@media only screen and (min-width: 1440px) {
  .pcc-text-with-icons__block-content {
    padding: 0px 64px !important;
  }
}

@media (max-width: 768px) {
  .pcc-text-with-icons__inner {
    grid-template-columns: 1fr;
    margin: 20px 20px 30px;
  }
  .pcc-text-with-icons__inner {
    gap: 20px;
  }

  .pcc-text-with-icons__block {
    height: 129px;
    padding: 0.55px 0 0.55px 20.38px !important;
    gap: 5.51px;
  }

  .pcc-text-with-icons__block-content {
    padding: 0;
    margin-left: 25px;
  }

  .pcc-text-with-icons__icon img {
    height: 100.813px;
    width: 115.136px;
  }

  .pcc-p {
    font-size: 7px;
    line-height: 8.47px;
  }

  .pcc-p-1 {
    font-size: 7px;
    line-height: 8.47px;
    padding-right: 0;
  }

  .pcc-body-font {
    font-size: 12px;
    line-height: 14.52px;
  }

  .pcc-text-with-icons__icon {
    width: 115.14px;
  }
}
.main-swarna {
  background: linear-gradient(
    270deg,
    #ab831a 0%,
    #edc742 25%,
    #eac952 50%,
    #edc742 75%,
    #ab831a 99%
  );
  padding: 1px;
}

.swarna_m {
  color: #886200;
  text-align: center;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 11px;
  margin-bottom: 5px;
}

.swarna_m_dis {
  margin-bottom: 16px;
  color: #886200;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .g_guide {
    color: #5b4200;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.75);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .g_guide_dis {
    color: #5b4200;
    text-align: center;
    font-family: Inter;
    font-size: 7px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

@media (max-width: 768px) {
  .swarna_m_dis {
    display: none;
  }

  .swarna_m {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.dis-mob {
  display: none;
  color: rgba(91, 66, 0, 1);
  font-size: 6.5px;
  font-weight: 400;
  margin-top: 13px;
}

@media (max-width: 768px) {
  .dis-mob {
    display: block;
  }
}
h3.heading-shop {
  margin-top: 68.51px;
  margin-bottom: 11.52px;
}
.gift-head {
  color: #5b4200;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  h3.heading-shop {
    margin-top: 23px;
    margin-bottom: 11.52px;
    font-size: 12px !important;
  }
}
@media (min-width: 768px) {
  .gldclr {
    margin-top: 6px;
  }
  p.gold_legacy_inner.gguide_go {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .parah_below {
    color: #886200;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .gldclr {
    margin-top: -2.6px;
  }
  .gold_legacy_outer.gldclr {
    /* display: flex; */
    /* width: 360px; */
    height: 48px;
    /* padding: 35px 634px; */

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }
  p.gold_legacy_inner.gguide_go {
    color: #5b4200;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  p.gold_legacy_inner.gguide_go {
    padding: 0px;
    margin-top: 23px;
    margin-bottom: 0px;
  }
  .parah_below {
    color: #5b4200;
    text-align: center;
    font-family: Inter;
    font-size: 7px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.gift_guide {
  margin-top: 67px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.gift_guide .block {
  max-width: calc(25% - 24px);
}

.gift_guide .block-content {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.gift_guide .block-image {
  width: 212.747px;
  height: 212.747px;
  border-radius: 10px;
  aspect-ratio: auto 4 / 4;
}

.gift_guide .block-text {
  margin-bottom: 0px;
  margin-top: 10px;
  color: #000;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.gift_guide .block-large {
  max-width: 447.782px;
}

.gift_guide .block-large .block-image {
  width: 447.782px;
}

@media (min-width: 1340px) {
  .gift_guide {
    padding: 0 131px;
    gap: 65px;
  }
}

@media (max-width: 768px) {
  .gift_guide .block-text {
    font-size: 8px;
    margin-top: 5px;
    letter-spacing: 0.8px;
  }

  .gift_guide .block-image {
    width: 105px;
    height: 105px;
    border-radius: 6px;
  }

  .gift_guide .block-large .block-image {
    width: 221px;
  }

  .gift_guide {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
  }

  .gift_guide .block {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }

  .gift_guide .block-large {
    max-width: 221px;
  }
}
.sub-hea-shop {
  color: #5b4200;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 30.48px;
  line-height: normal;
}

@media (max-width: 768px) {
  .sub-hea-shop {
    font-size: 7px !important;
    margin-bottom: 14px;
  }
}
span.shop-under {
  color: #c0b087;
  text-align: center;
  font-family: Inter;
  font-size: 16.209px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.621px;
  text-transform: uppercase;
  margin-right: 5px;
}

span.numb {
  color: #ae9964;
  text-align: center;
  font-family: Inter;
  font-size: 28.366px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (min-width: 1440px) {
  span.shop-under {
    margin-right: 58px;
  }
}

@media (max-width: 768px) {
  span.shop-under {
    color: #c0b087;
    text-align: center;
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-right: 131px;
  }

  span.numb {
    color: #ae9964;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.outer_p_si {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

p.inner_p_si {
  height: 180px;
  text-align: justify;
  color: #886200;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 49px 100px 8px 100px;
  padding: 0;
}

@media (min-width: 768px) {
  .ten12 {
    margin-top: 73px;
  }

  .gold_legacy_outer {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    height: 85px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    background: var(
      --Gold-BG,
      linear-gradient(
        270deg,
        #ab831a 0%,
        #edc742 25%,
        #eac952 50%,
        #edc742 75%,
        #ab831a 99%
      )
    );
  }

  .gold_legacy_inner {
    color: #886200;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

@media (min-width: 1400px) {
  p.inner_p_si {
    margin: 49px 197px 8px 197px;
  }
}

.mehroon_page {
  width: 100%;
  height: 712px;
  flex-shrink: 0;
  background: #7d1f1f;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .ten12 {
    margin-top: -10px;
  }

  .gold_legacy_outer {
    display: flex;
    width: 100%;
    height: 25px;
    background: var(
      --Gold-BG,
      linear-gradient(
        270deg,
        #ab831a 0%,
        #edc742 25%,
        #eac952 50%,
        #edc742 75%,
        #ab831a 99%
      )
    );
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }

  .gold_legacy_inner {
    margin: 5px 0;
    color: #5b4200;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  p.inner_p_si {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    color: #886200;
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-size: 12px;
    transform: scale(0.667);
    margin: 0;
  }

  .mehroon_page {
    width: 100%;
    height: 205px;

    flex-shrink: 0;
    background: #7d1f1f;
    background-image: url("/cdn/shop/files/Mobile_1_BLO_8110_1532aa9a-1a5b-43cd-a53d-c2470957d0bd.webp?v=1737540786");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.zipcode_bar_inputbox_1528 {
  margin-bottom: 0px !important;
  padding: 0px !important;
  border: none !important;
}
#map{
  left: 0;
}

.valetines_spc {
        display: grid;
        grid-template-columns: repeat(2, 0fr);
        gap: 40px;
        justify-content: center;
        margin: 40px auto;
    }

    .valetines_block {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .valetines_content_block {
        display: block;
        width: 500px;
        height: 200px;
        text-decoration: none;
    }

    .valetines_block_image-desk {
        width: 100%;
        height: 100%;
        border-radius: 25px;
    }

    .valetines_block_image-mob {
        display: none;
    }

    /* Mobile Styles */
    @media screen and (max-width: 480px) {
        .valetines_block_image-desk {
            display: none;
        }

        .valetines_block_image-mob {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

        .valetines_spc {
            gap: 10px;
            padding: 10px;
            margin: 10px auto;
        }

        .valetines_content_block {
            width: 165px;
            height: 66px;
        }
    }
}
@media screen and (max-width: 480px) {
    .getdirectionstore {
        float: right !important;
    }
}
.top_ten_outer_box [data-category="ring"] {
        margin-top: -40px !important;
      }
       .top_ten_outer_box [data-category="bangles"] {
        margin-top: -80px !important;
      }

      .top_ten_outer_box [data-category="earring"],
    .top_ten_outer_box [data-category="pendents"],
    .top_ten_outer_box [data-category="chain"] {
       margin-top: -40px !important;
    }
       .top_ten_outer_box [data-category="bracelets"],
.top_ten_outer_box [data-category="nosepins"],
.top_ten_extrtop [data-category="accessories"],
.top_ten_outer_box [data-category="necklaces"] {
         margin-top: -120px !important;
       }
    .top_ten_outer_box [data-category="bodyJewellery"],
    .top_ten_outer_box [data-category="mens"] {
       margin-top: -70px !important;
    }
       
       .top_ten_outer_box [data-category="mangalsutras"],
    .top_ten_outer_box [data-category="jewellery"] {
        margin-top: -40px !important;
      }
  .top_ten_extrtop [data-category="kids"] {
       margin-top: -50px !important;
    }

/* store locatore */
#store-list {
        display: grid;
        gap: 20px;
        padding: 20px;
        justify-content: center !important;
    }

    .item-content {
        padding: 15px;
        border: 1px solid #ddd;
        text-align: left;
        background: #f9f9f9;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        min-height: 170px;
    }

    .store-name {
        color: #886200;
        display: block;
        margin-bottom: 10px;
        min-height: 20px;
    }

    .address {
        font-size: 14px;
        min-height: 60px;
        margin-bottom: 5px;
        display: flex;
        align-items: flex-start;
        gap: 5px;
    }

    .address .material-icons-outlined {
        flex-shrink: 0;
        padding-top: 3px;
    }

    .address a {
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
    }

    #store-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
        justify-content: center !important;
        max-width: 1200px;
        margin: 0 auto;
    }

    .store-list .item-content {
        width: 100%;
        height: 280px;
        padding: 20px;
        border: 1px solid #ddd;
        text-align: left;
        background: #f9f9f9;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .store-list .store-name {
        height: 24px;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.5;
        overflow: hidden;
        color: #886200;
    }

    .store-list .address {
        height: 70px;
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.4;
        display: flex;
        align-items: flex-start;
        gap: 5px;
    }

    .store-list .address .material-icons-outlined {
        flex-shrink: 0;
        width: 20px;
    }

    .store-list .address a {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-decoration: none;
    }

    .store-list .item-phone {
        height: 45px;
        margin: 15px 0;
        padding: 0 10px;
        background: linear-gradient(90deg, #886200, #bd8e33, #eac952, #bd8e33, #886200) !important;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .store-list .item-phone .phone-no {
        color: white !important;
        text-decoration: none;
        font-size: 12px;
        font-weight: bold;
    }

    .store-list .view-btn {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: center;
        gap: 40px;
        height: 36px;
    }

    .store-list .linkdetailstore,
    .store-list .getdirectionstore {
        width: calc(50% - 20px) !important;
        height: 36px;
        padding: 8px 0;
        border: 1px solid #886200;
        border-radius: 5px;
        color: #886200 !important;
        text-decoration: none;
        text-align: center;
        font-size: 14px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .store-list .linkdetailstore:hover,
    .store-list .getdirectionstore:hover {
        background: linear-gradient(90deg, #886200, #bd8e33, #eac952, #bd8e33, #886200) !important;
        color: #fff !important;
    }

    @media (min-width: 768px) {
        .store-list .item-content {
            width: calc((100% - 40px) / 3);
            min-width: 300px;
        }
    }

    a.linkdetailstore {
        text-decoration: none !important;
    }

    a.getdirectionstore {
        text-decoration: none;
    }

    .item-phone {
        text-align: center;
        background: linear-gradient(90deg, #886200, #bd8e33, #eac952, #bd8e33, #886200) !important;
        padding: 10px;
        color: white;
        margin: 15px 0;
        font-size: 12px;
        border-radius: 5px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .item-phone .material-icons-outlined {
        display: inline-flex;
        align-items: center;
    }

    .phone-no {
        color: white !important;
        text-decoration: none !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .view-btn {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 20px;
    }

    .linkdetailstore,
    .getdirectionstore {
        text-decoration: none;
        border: 1px solid #886200;
        color: #886200 !important;
        border-radius: 5px;
        padding: 5px 22px;
        text-align: center;
        transition: all 0.3s ease;
        width: 40% !important;
    }

    a.linkdetailstore:hover,
    a.getdirectionstore:hover {
        background: linear-gradient(90deg, #886200, #bd8e33, #eac952, #bd8e33, #886200) !important;
        color: #fff !important;
    }

    @media (min-width: 768px) {
        #store-list {
            grid-template-columns: repeat(3, 1fr);
        }

        .item-content {
            width: 350px;
        }
    }

    @media (max-width: 767px) {
        #store-list {
            grid-template-columns: repeat(1, 1fr);
        }

        .address {
            font-size: 10px;
            min-height: 35px;
        }

        .item-content {
            min-height: 170px;
        }

        .item-phone {
            margin: 10px 0;
        }

        .view-btn {
            flex-direction: row;
            gap: 30px;
        }
    }

    #searchBox::placeholder {
        color: #886200 !important;
        opacity: 1;
    }

    input#searchBox::placeholder {
        color: #886200 !important;
    }

    #searchBox {
        color: #886200 !important;
        padding: 5px 35px 5px 10px;
        border: 1px solid #886200;
        width: 250px;
        height: 41px;
        border-radius: 10px;
        background-color: transparent;
    }

    .item-phone {
        text-align: center;
        background: linear-gradient(90deg, #886200, #bd8e33, #eac952, #bd8e33, #886200) !important;
        padding: 10px;
        color: white;
        margin: 5px 15px;
        font-size: 12px;
        border-radius: 5px;
        font-weight: bold;
        bottom: auto;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .item-phone .material-icons-outlined {
        display: inline-flex;
        align-items: center;
    }

    .phone-no {
        color: white !important;
        text-decoration: none !important;
        margin-left: 5px;
        display: inline-block;
    }

    @media (max-width: 767px) {
        #store-list {
            grid-template-columns: repeat(1, 1fr);
        }

        .item-phone {
            flex-direction: row;
            flex-wrap: wrap;
        }
    }

    @media (min-width: 768px) {
        #store-list {
            grid-template-columns: repeat(3, 1fr);
        }

        .item-phone {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }

    .phone-no {
        color: white !important;
        text-decoration: none !important;
        margin-left: 5px;
    }

    .stateField {
        text-align: center;
        margin: 20px;
    }

    .storeSelect {
        width: 170px;
        height: 41px;
        padding: 0 17px;
        border: 1px solid #886200;
        border-radius: 10px;
        background: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' viewBox='0 0 24 24' fill='none' stroke='%23886200' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 15px center;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        color: #886200;
        background-color: white;
    }

    @media (min-width: 768px) {
        #store-list {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 20px;
            justify-content: center !important;
        }
       
    }

    @media (max-width: 767px) {
        #store-list {
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            padding: 20px 15px;
        }

        .address {
            font-size: 10px;
            min-height: 35px;
        }

        .item-content {
            min-height: 170px;
            width: 310px;
        }

        .item-phone {
            margin: 10px 0;
        }

        .view-btn {
            flex-direction: row;
            gap: 30px;
        }
    }

    .item-content {
        padding: 15px;
        border: 1px solid #ddd;
        text-align: left;
        background: #f9f9f9;
        border-radius: 5px;
    }

    .view-btn {
        display: flex;
        position: relative;
    }
    @media screen and (min-width: 767px) {
    .sk-form-main {
              padding-left: 65px !important;
    }
    }

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

.trust-badge__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 35px;
}

.trust-badge__card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trust-badge__image img {
  max-width: 80px;
  margin: 0 auto 1rem auto;
  display: block;
}

.trust-badge__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #000;
}

.trust-badge__text {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

@media (max-width: 992px) {
  .trust-badge__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-badge__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

div#shopify-section-template--19736103026910__trustbadge_EFJ6Qq {
    padding: 0 35px;
}

    .call-icon {
    transition: all 0.3s ease;
  }

  .call-icon:hover {
    background: #886200 !important;
    color: #fff !important;
    border-color: #886200 !important;
  }

  .call-icon:hover i {
    color: #fff !important;
  }

  .call-popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
  }

  .call-popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #886200;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s;
    text-align: center;
  }

  .call-popup-close {
    color: #886200;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
  }

  .call-popup-close:hover {
    color: #000;
  }

  .call-popup-content h3 {
    color: #886200;
    margin-bottom: 15px;
    font-size: 22px;
  }

  .call-popup-content p {
    margin: 10px 0;
    color: #333;
    line-height: 1.6;
  }

  .call-popup-info {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
  }

  .call-popup-number {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #886200;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
  }

  .call-popup-number:hover {
    background: #6b4d00;
    transform: scale(1.05);
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideIn {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .call-popup-content {
      margin: 25% auto;
      padding: 45px 20px 20px;
    }
    
    .call-popup-content h3 {
      font-size: 18px;
    }
  }

 p.ringsize-note {
    font-size: 13px;
    margin-bottom: 0px;
    font-weight: 600;
}