/** Shopify CDN: Minification failed

Line 591:23 Expected identifier but found "."
Line 597:23 Expected identifier but found "."
Line 602:27 Expected identifier but found "."
Line 650:60 Expected identifier but found "."
Line 1362:25 Expected ":"

**/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=block");

:root {
  --drawer-gutter: 20px;
}

@media only screen and (min-width: 769px) {
  :root {
    --drawer-gutter: 30px;
  }
}

html {
  scroll-behavior: smooth;
}

.small--hide,
.medium-up--hide {
  display: none !important;
}

@media (max-width: 749px) {
  .small--hide {
    display: block !important;
  }
}

@media (min-width: 750px) {
  .medium-up--hide {
    display: block !important;
  }
}

.modal {
  display: none;
  bottom: 0;
  left: 0;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  color: #fff;
  align-items: center;
  justify-content: center;
}

.modal.modal--quick-shop {
  align-items: flex-start;
}

.modal a,
.modal a:hover {
  color: inherit;
}

.modal .btn:not([disabled]):not(.btn--secondary):not(.btn--body),
.modal .btn:not([disabled]):not(.btn--secondary):not(.btn--body):hover {
  color: #fff;
}

.modal-open .modal .modal__inner {
  animation: modal-open 0.5s forwards;
}

.modal-open .modal:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  animation: overlay-on 0.5s forwards;
  cursor: pointer;
}

.modal-closing .modal .modal__inner {
  animation: modal-closing 0.5s forwards;
}

.modal-closing .modal:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  animation: overlay-off 0.5s forwards;
}

.modal-open--solid .modal:before {
  background-color: #000;
}

.modal-open .modal--solid:before {
  background-color: #000;
  animation: full-overlay-on 0.5s forwards;
}

.modal-closing .modal--solid:before {
  background-color: #000;
  animation: full-overlay-off 0.5s forwards;
}

.modal--is-closing {
  display: flex !important;
  overflow: hidden;
}

.modal--is-active {
  display: flex !important;
  overflow: hidden;
}

@media only screen and (min-width: 769px) {
  .modal-open {
    overflow: hidden;
  }
}

.modal__inner {
  transform-style: preserve-3d;
  flex: 0 1 auto;
  margin: 15px;
  max-width: calc(100% - 15px);
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 769px) {
  .modal__inner {
    margin: 40px;
    max-width: calc(100% - 80px);
  }
}

.modal--square .modal__inner {
  background-color: #fff;
  color: #1c1d1d;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.modal__inner img {
  display: block;
  max-height: 90vh;
}

.modal .grid {
  margin-bottom: 0;
}

.modal__inner .image-wrap img {
  max-height: none;
}

.modal__centered {
  position: relative;
  flex: 0 1 auto;
  min-width: 1px;
  max-width: 100%;
}

.modal--square .modal__centered-content {
  max-height: 80vh;
  padding: 22.5px;
  min-width: 200px;
  min-height: 200px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 769px) {
  .modal--square .modal__centered-content {
    padding: 45px;
    max-height: 90vh;
    max-width: 1200px;
  }
}

.modal__close {
  cursor: pointer;
  border: 0;
  padding: 15px;
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .modal__close {
    padding: 30px;
  }
}

.modal__close .icon {
  width: 28px;
  height: 28px;
}

.modal__close:focus,
.modal__close:hover {
  color: #fff;
}

.modal--square .modal__close {
  position: absolute;
  font-size: 20px;
  padding: 10px;
  background-color: transparent;
  color: #000;
  font-weight: bold;
}

.modal--square .modal__close:focus,
.modal--square .modal__close:hover {
  color: #1c1d1d;
}

.modal .page-content,
.modal .page-width {
  padding: 0;
}

.popup-cta {
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .modal--mobile-friendly {
    top: auto;
    bottom: 0;
    overflow: auto;
  }

  .modal--mobile-friendly.modal--square .modal__centered-content {
    padding: 20px 20px 0;
  }

  .modal--mobile-friendly.modal--is-active {
    overflow: auto;
  }
  .modal-open .modal--mobile-friendly:before {
    display: none;
  }

  .modal--mobile-friendly .modal__inner {
    margin: 0;
    border: 2px solid;
    border-color: #1c1d1d;
  }

  .modal--mobile-friendly .h1 {
    padding-right: 25px;
  }

  .modal--mobile-friendly input {
    font-size: 16px !important;
  }

  .modal--mobile-friendly .text-close {
    display: none;
  }
}
@keyframes overlay-on {
  0% {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}

@keyframes overlay-off {
  0% {
    opacity: 0.6;
  }
  to {
    opacity: 0;
  }
}

@keyframes full-overlay-on {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes full-overlay-off {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modal-open {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modal-closing {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}

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

.product-count {
  display: none;
}
.collection__title {
  font-weight: 500;
}
.product-form__submit {
  background-color: #9db3a6;
}
.shopify-payment-button__button {
  background: transparent !important;
  border: 1px solid #9db3a6 !important;
  color: #000 !important;
}

#AlterLength {
  display: none;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 2px;
  width: 100%;
  margin: 20px 0;
}
.toggleLength {
  margin-bottom: 10px;
}
.alter-length {
  max-width: 440px;
  width: 100%;
}
.toggleLength label {
  font-size: 13px;
}

.alter-length.active #AlterLength {
  display: block;
}

.image-with-text__media {
  border: 0 !important;
}

.contact__button button {
  background: #9db3a6;
  width: 100%;
}

.button.button--primary {
  background: #9db3a6;
  opacity: 1;
}

.cart-count-bubble,
.cart__checkout-button {
  background: #9db3a6;
}

@media (min-width: 750px) {
  .product__media-wrapper media-gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .product__media-wrapper .thumbnail-list {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .product__media-wrapper .GalleryViewer {
    width: 80%;
  }
  .product__media-wrapper .thumbnail-slider {
    width: 15%;
    order: -1;
  }
  .thumbnail-list .thumbnail-list__item {
    width: calc(100% - 0.8rem) !important;
  }
  .thumbnail-list__item:before {
    padding-bottom: 130% !important;
  }
  .thumbnail {
    border-radius: 5px;
  }
}

@media (max-width: 768px) {
  .slideshow__text {
    background: #9db3a6;
  }
}

@media screen and (min-width: 990px) {
  .header--middle-left {
    grid-template-areas: "heading navigation icons";
    grid-template-columns: 1fr auto 1fr;
    column-gap: 2rem;
  }
  header.header {
    padding-top: 0;
    padding-bottom: 0;
  }
  header .header__heading-link {
    padding-bottom: 0;
  }
}

.media-grid .media img {
  width: 100% !important;
}
.media-grid .multicolumn-card-spacing {
  padding: 0 !important;
  margin: 0 !important;
}
.media-grid .multicolumn-list {
  display: grid;
}
.media-grid .multicolumn-list .media {
  padding: 0 !important;
}
.media-grid .multicolumn-list .media img {
  position: static !important;
}
.grid-3 .multicolumn-list {
  grid-template-columns: 25% 50% 25%;
}
.grid-6 .multicolumn-list {
  grid-template-columns: 25% 25% 25% 25%;
}
.media-grid .multicolumn-list .multicolumn-list__item {
  width: unset;
  max-width: unset;
}
.media-grid .multicolumn-list .multicolumn-list__item:first-child .media,
.media-grid .multicolumn-list .multicolumn-list__item:last-child .media {
  padding-bottom: 103% !important;
}

.media-grid {
  align-items: start;
  gap: calc(var(--grid-gutter) / 2);
  grid: auto-flow dense var(--media-grid-row-height) / repeat(2, minmax(0, 1fr));
  display: grid;
}

.media-grid__item {
  grid-area: span min(2, var(--media-grid-row-span)) / span
    min(2, var(--media-grid-column-span));
  text-decoration: none;
  height: 100%;
}

.media-grid__item > * {
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .media-grid {
    --calculated-row-height: max(
      150px,
      min(100vw / 5, var(--media-grid-row-height))
    );
    grid: auto-flow dense var(--calculated-row-height) / repeat(
        4,
        minmax(0, 1fr)
      );
  }

  .media-grid__item {
    grid-area: span var(--media-grid-row-span) / span
      var(--media-grid-column-span);
  }
}

@media screen and (min-width: 1000px) {
  .media-grid {
    gap: var(--grid-gutter);
  }
}

.content-over-media {
  grid-template:
    0 minmax(0, 1fr) 0 / minmax(0, 1fr) minmax(
      0,
      min(
        var(--container-max-width),
        100% -
          var(
            --content-over-media-gap,
            var(--content-over-media-column-gap, var(--container-gutter))
          ) *
          2
      )
    )
    minmax(0, 1fr);
  gap: var(
      --content-over-media-row-gap,
      var(--content-over-media-gap, var(--container-gutter))
    )
    var(
      --content-over-media-column-gap,
      var(--content-over-media-gap, var(--container-gutter))
    );
  place-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.content-over-media:before {
  content: "";
  background: rgb(var(--content-over-media-overlay));
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  transition: background 0.2s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.content-over-media > :is(img, video, iframe, svg, .video-media) {
  height: var(--content-over-media-height, auto);
  overflow-wrap: anywhere;
  object-fit: cover;
  object-position: center;
  transform-origin: bottom;
  border-radius: inherit;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  grid-area: 1 / 1 / span 3 / span 3;
  width: 100%;
  min-height: 100%;
  max-height: 100%;
  position: relative;
}

.content-over-media > :is(img, video, iframe, svg, .video-media) > * {
  border-radius: inherit;
}

.content-over-media > :not(img, video, iframe, svg, .video-media) {
  max-width: var(--content-over-media-content-max-width, 780px);
  z-index: 1;
  grid-area: 1 / 1 / span 3 / span 3;
  position: relative;
}

.content-over-media > ..video-media:not([autoplay]) ~ * {
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
}

.content-over-media > ..video-media:not([autoplay])[loaded] ~ * {
  opacity: 0;
  visibility: hidden;
}

.content-over-media:has(> ..video-media[loaded]:not([autoplay])):before {
  background: none;
  transition-delay: 0.1s;
}

.content-over-media--sm {
  --content-over-media-height: 375px;
}

.content-over-media--md {
  --content-over-media-height: 480px;
}

.content-over-media--lg {
  --content-over-media-height: 560px;
}

.content-over-media--fill {
  --content-over-media-height: calc(100vh - var(--sticky-area-height));
}

@media screen and (min-width: 1024px) {
  .content-over-media--sm {
    --content-over-media-height: 400px;
  }

  .content-over-media--md {
    --content-over-media-height: 460px;
  }

  .content-over-media--lg {
    --content-over-media-height: 560px;
  }
}

@media screen and (min-width: 1400px) {
  .content-over-media--sm {
    --content-over-media-height: 440px;
  }

  .content-over-media--md {
    --content-over-media-height: 500px;
  }

  .content-over-media--lg {
    --content-over-media-height: 640px;
  }

  .content-over-media--fill > :is(img, video, iframe, svg, ..video-media) {
    max-height: 1200px;
  }
}

@media screen and (min-width: 1600px) {
  .content-over-media--md {
    --content-over-media-height: 560px;
  }

  .content-over-media--lg {
    --content-over-media-height: 720px;
  }
}
.media-grid__item > * {
  height: 100%;
}
.media-grid img,
.media-grid video {
  max-width: min(var(--image-max-width, 100%), 100%);
}
.text-start {
  text-align: start;
}

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

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

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

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

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

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

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

.justify-self-start {
  justify-self: start;
}

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

.justify-self-end {
  justify-self: end;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-center {
  justify-items: safe center;
}

.justify-items-end {
  justify-items: end;
}

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

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

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

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

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

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

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

.place-self-start {
  place-self: start;
}

.place-self-start-center {
  place-self: start center;
}

.place-self-start-end {
  place-self: start end;
}

.place-self-center {
  place-self: center;
}

.place-self-center-start {
  place-self: center start;
}

.place-self-center-end {
  place-self: center end;
}

.place-self-end {
  place-self: end;
}

.place-self-end-start {
  place-self: end start;
}

.place-self-end-center {
  place-self: end center;
}

@media screen and (max-width: 768px) {
  .sm\:text-start {
    text-align: start;
  }

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

  .sm\:text-end {
    text-align: end;
  }

  .sm\:place-self-start {
    place-self: start;
  }

  .sm\:place-self-start-center {
    place-self: start center;
  }

  .sm\:place-self-start-end {
    place-self: start end;
  }

  .sm\:place-self-center {
    place-self: center;
  }

  .sm\:place-self-center-start {
    place-self: center start;
  }

  .sm\:place-self-center-end {
    place-self: center end;
  }

  .sm\:place-self-end {
    place-self: end;
  }

  .sm\:place-self-end-start {
    place-self: end start;
  }

  .sm\:place-self-end-center {
    place-self: end center;
  }

  .sm\:justify-items-center {
    justify-items: safe center;
  }
}

.align-top {
  vertical-align: top;
}

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

.align-bottom {
  vertical-align: bottom;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-0 {
  width: 0;
}

.min-w-full {
  min-width: 100%;
}

.min-h-full {
  min-height: 100%;
}

.mx-auto {
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.my-auto {
  margin-block-start: auto;
  margin-block-end: auto;
}

.aspect-short {
  aspect-ratio: 4 / 3;
}

.aspect-tall {
  aspect-ratio: 2 / 3;
}

.aspect-square {
  aspect-ratio: 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-video iframe {
  width: 100%;
  height: 100%;
}

.block-image,
.block-video {
  color: #fff;
}
.block-text {
  display: grid;
}

.shadow {
  box-shadow: 0 5px 15px rgb(25 17 12 / 0.1);
}
.rte-wrapper span.btn {
  max-width: max-content;
}
.video-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-media video {
  display: block;
  width: 100%;
}
.media-grid-text {
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .hotspots-section .index-section {
    margin-bottom: 10px;
  }
}

.hotspots-section .hotspots-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.hotspots-section .hotspots-wrapper.is-reverse {
  flex-direction: row-reverse;
}

.hotspots__title {
  padding-top: 1.5rem;
  width: 100%;
}

.hotspots {
  position: relative;
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .hotspots {
    width: 100%;
  }
}

.hotspots .grid__image-ratio img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
}

[data-animate_images="true"] .hotspots .grid__image-ratio img {
  opacity: 1;
}

.hotspots__buttons {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hotspot__button {
  border-radius: 50%;
  line-height: 0;
  padding: 10px;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .hotspot__button {
    padding: 6px;
  }
}

.hotspot__button:hover .hotspot__button-content {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hotspot__button-content {
  background-color: var(--colorBody);
  border-radius: 5px;
  box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.2);
  color: var(--colorTextBody);
  left: 50%;
  min-width: 5rem;
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 1rem);
  transform: translateX(-50%);
  transition: opacity 0.3s ease-in-out;
  visibility: hidden;
}

.hotspot__button-content p,
.hotspot__button-content span {
  margin-bottom: 0;
  white-space: nowrap;
}

.hotspot__button-content:before {
  border-color: transparent transparent var(--colorBody) transparent;
  border-style: solid;
  border-width: 0 5px 10px 5px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  width: 0;
}

.hotspot__button-content .content__prices {
  display: flex;
  flex-wrap: nowrap;
}

.hotspots__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding: 24px;
  width: 30%;
  margin: auto;
}

.page-width .hotspots__content {
  padding-left: 40px;
  padding-right: 0;
}

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

.page-width.is-reverse .hotspots__content {
  padding-left: 0;
  padding-right: 40px;
}

@media only screen and (max-width: 768px) {
  .page-width.is-reverse .hotspots__content {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .hotspots__content {
    padding: 1rem 20px 0;
    width: 100%;
  }
}

.hotspot-content__block {
  animation: fade-in 0.5s ease 0s forwards;
  /* display: none;
  max-height: 0;
  position: sticky;
  top: 0; */
  width: 100%;
}

.modal-closing .hotspot-content__block,
.modal-open .hotspot-content__block {
  animation: none;
  position: static;
}

@media only screen and (max-width: 768px) {
  .hotspot-content__block {
    align-items: center;
    padding-top: 0;
    position: relative;
  }
}

.hotspot-content__block.is-active {
  display: block;
  /* max-height: none; */
}

.hotspot-sticky--section {
  position: sticky;
  top: 0;
}

.hotspot-content__block .grid-product__image-wrap {
  margin: 0;
}

.hotspot-content__block .grid__item {
  display: block;
  float: none;
  padding: 0;
}

.hotspot-content__block .grid-product__tags {
  margin-left: 0;
}

@media only screen and (max-width: 768px) {
  .hotspot-content__block .grid-product__tag {
    left: 0;
    right: auto;
  }
}

.hotspot-content__block .grid-item__meta,
.hotspot-content__block .grid-product__meta {
  padding-top: 10px;
}

@media only screen and (max-width: 768px) {
  .hotspot-content__block .grid-item__meta,
  .hotspot-content__block .grid-product__meta {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 10px;
    padding-top: 0;
    text-align: left;
  }

  .hotspot-content__block .grid-item__meta .grid-item__meta-main,
  .hotspot-content__block .grid-item__meta .grid-item__meta-secondary,
  .hotspot-content__block .grid-product__meta .grid-item__meta-main,
  .hotspot-content__block .grid-product__meta .grid-item__meta-secondary {
    flex: none;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .hotspot-content__block .grid-product {
    padding-left: 0;
    padding-right: 0;
  }

  .hotspot-content__block .quick-add-btn {
    display: none;
  }
  .hotspot-content__block .grid__item-image-wrapper {
    display: flex;
  }

  .hotspot-content__block .grid__item-image-wrapper .grid-product__image-mask {
    flex: 0 0 30%;
  }

  .hotspot-content__block .grid-item__link,
  .hotspot-content__block .grid-product__link {
    display: flex;
    flex-wrap: nowrap;
  }
  [data-grid-style="grey-round"] .hotspot-content__block .grid-item__link {
    border-radius: 10px 0 0 10px;
  }
  [data-grid-style="white-round"] .hotspot-content__block .grid-item__link {
    border-radius: 10px 0 0 10px;
  }

  .hotspot-content__block .grid-product__image-mask,
  .hotspot-content__block .grid-product__image-wrap,
  .hotspot-content__block .product-slider {
    width: 30%;
  }

  .hotspot-content__block .grid-product__actions {
    left: 10px;
    right: auto;
    top: 10px;
  }
}

.hotspot-content__block .modal .grid__item {
  float: left;
}

.hotspot__button svg {
  display: inline-block;
  height: 20px;
  vertical-align: middle;
  width: 20px;
}

.hotspot-content__block,
.hotspot-content__block .card-information,
.hotspot-content__block .card__information {
  text-align: center;
}

.hotspot-content__block .button {
  background-color: #9cb3a5;
}

.button:after,
.shopify-challenge__button:after,
.customer button:after,
.shopify-payment-button__button--unbranded:after {
  content: none !important;
}

#shopify-section-template--16693736800431__newsletter_dndyWR {
  margin: 100px 0;
}

.button--secondary {
  border: 1px solid currentcolor !important;
  background: transparent !important;
}

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

.color-swatch--black {
  background: black;
}
.color-swatch--yellow {
  background: #a6953f;
}
.color-swatch--blue {
  background: #021841;
}

.swatch-input__label .swatch {
  border: 0;
}

@media (max-width: 768px) {
  .hotspot-content__block .card {
    flex-direction: row !important;
    align-items: center;
  }
  .hotspot-content__block .button {
    display: none;
  }
  #shopify-section-template--16693736800431__newsletter_dndyWR {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .footer__blocks-wrapper {
    display: flex !important;
  }
  /* .footer-block--menu {
    width: 48% !important;
    max-width: unset !important;
  } */
  .footer-block.grid__item {
    margin: 0 !important;
  }
  html .footer-block-image {
    margin-bottom: 0;
  }
}
section#shopify-section-template--16815022735535__main
  h1.main-page-title.page-title.h0.scroll-trigger.animate--fade-in {
  font-size: 4rem;
  text-align: center;
}

.calmp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-block--newsletter {
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  margin-top: 0 !important;
}

.thumbnail-slider .slider-button {
  display: none !important;
}

#ajaxinate a {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #9db3a6;
}

.footer-block__newsletter .footer-block__heading {
  text-transform: uppercase;
  margin-bottom: 0;
}
img.footer-icon {
  width: 20px !important;
  margin-right: 10px;
  max-width: unset !important;
}
p.footer-texticon {
  display: flex;
  align-items: center;
}

html .thumbnail-list__item:before {
  padding-bottom: 150%;
}

@media (max-width: 749px) {
  html .footer__content-top {
    padding: 0 20px;
  }
  html .footer-block__newsletter {
    text-align: left;
  }
}
.footer-block__image-text {
  font-size: 1.4rem;
}
.section-sections--16693737750703__custom_liquid_6MBdL8-padding .grid__item {
  max-width: 100%;
}
.section-sections--16693737750703__custom_liquid_6MBdL8-padding
  button#Subscribe {
  margin-top: 10px;
}
section#shopify-section-sections--16693737750703__custom_liquid_6MBdL8
  input#NewsletterForm {f.product-grid-collection-slider .card__content
  border: 1px solid;
}

.slideshow__autoplay {
  display: none !important;
}

html .slideshow__controls {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  border: 0;
}

.slideshow__controls .slider-counter__link {
  padding: 8px;
}

@media screen and (max-width: 989px) {
  html .footer-block__details-content .list-menu__item--link {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
}

.layer_anchor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: block !important;
}

#shopify-section-template--16693736800431__featured_collection_rHyMUU a.button {
  background: #9db3a6;
}

.contact.page-width.section-template--16693736898735__form-padding ul {
  list-style: none;
}

.offer {
  font-family: arial;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: bold;
}

.offer .copy-code {
  display: inline-flex;
  align-items: center;
  border: 1px dashed #ccc;
  padding: 0px 10px;
  border-radius: 1000px;
  font-size: 12px;
  font-weight: normal;
  background: #9db3a6;
  color: #fff;
  cursor: pointer;
}
.offer .copy-code img {
  margin-left: 5px;
}
.present__offers .offer:last-child {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.present__offers .offer:not(:last-child) {
  margin-bottom: 10px;
}
#wa-optin-widget-main {
  display: none;
}

#currentOffers {
  max-width: 44rem;
  width: 100%;
  padding: 0;
}

#currentOffers .icon.icon-accordion {
  display: none;
}

p.offer-description {
  font-weight: bold;
  font-size: 14px;
}
p.offer-code {
  font-size: 12px;
  font-weight: 500;
}

.spotlight-collection__names button a {
    text-decoration: none;
    color: currentColor;
}

.discount_code-copy {
  border: 1px dashed #000 !important;
  text-align: center;
  margin: 0 10px;
  padding: 2px 0;
  max-width: 100px;
  width: 100%;
}

.card__content .card__badge {
  gap: 2px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  z-index: 9;
}

.card__content .card__badge .badge {
  border-radius: 9999px;
  letter-spacing: 0;
  font-weight: 500;
  padding: 5px 12px;
}

@media (max-width: 768px) {
  .card__content .card__badge {
    padding: 0;
    gap: 0;
  }

  .card__content .card__badge .badge {
    padding: 4px;
    font-size: 9px;
    border-radius: 0;
  }

  .card__content .card__badge .badge:last-child {
    border-bottom-left-radius: 8px;
  }
}

media-gallery slider-component .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 9999px;
}

.newsletter.with-background-image {
  position: relative;
  margin-bottom: 0;
}

.newsletter.with-background-image .newsletter__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.newsletter__background-image img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  opacity: 0.8;
}

.tax-info {
  font-size: 12px;
  letter-spacing: 0;
  color: #707070;
  margin-left: 10px;
}

.price.info--main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.price.info--main .price__container {
  margin-bottom: 0;
}

.variant-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#ProductPopup-sizeChart {
  min-height: unset;
  font-size: 1.2rem;
  font-weight: bold;
}

product-info .product__title {
  margin-bottom: 0;
}

product-info .product__title + div {
  margin-top: 0;
}

.product__info-container variant-selects {
  margin-top: 25px;
}

.custom-design {
  font-size: 13px;
}

@media (max-width: 768px) {
  .newsletter.with-background-image .newsletter__wrapper {
    padding: 25px;
    width: 90%;
  }
  .newsletter__background-image img {
    height: 280px;
  }
}

.announcement-bar__message {
  min-height: unset;
  padding: 6px 0;
}

.header__icon .icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
}

header.header {
    max-width: unset;
}

/* 
==========================================================
  Custom Sections Css Start
==========================================================
*/

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.c-button {
    -webkit-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 8px 15px;
    border: 1px solid #8aac96;
    background-color: #8aac96;
    font-family: var(--font-body-family);
    font-size: 14px;
    line-height: 1.375;
    color: fff;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    transition: .25s ease-out;
    transition-property: color, background, border;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-wrap: anywhere;
    overflow: hidden;
    cursor: pointer;
}

.c-button--primary {
  background-color: #8aac96;
  color: #fff;
}

.c-button--secondary {
  background-color: transparent;
  border: 1px solid #8aac96;
  color: #fff;
}

.c-button--outline:after, .c-button--primary:after, .c-button--secondary:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgb(27, 27, 27);
    opacity: .05;
    transform: translate3d(0, 100%, 0);
    transition: transform .5s cubic-bezier(.33, 0, 0, 1);
}

.c-button--secondary:after {
  opacity: 1;
  background-color: #8aac96;
}

.c-button span {
  position: relative;
  z-index: 2;
}

.c-button--link {
  color: #fff;
  background: transparent;
  border: 0;
  padding: 0;
}

.c-buttons {
    display: flex;
    gap: 20px;
}

.c-button--link span {
    --main-color: rgb(255, 255, 255);
    --hover-color: rgba(138, 172, 150, .5);
    position: relative;
    display: inline-block;
    color: var(--main-color);
    transition: background-position .3s cubic-bezier(.39, .575, .565, 1);
}

.c-button--link:not(.btn--text-no-underline) span:after {
    --main-color: rgb(255, 255, 255);
    --hover-color: rgba(138, 172, 150, .5);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, var(--hover-color) 0% 50%, var(--main-color) 50% 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position .3s cubic-bezier(.39, .575, .565, 1);
    pointer-events: none;
}

.product-grid-collection-slider .card__content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.product-grid-collection-slider {
    width: 100% !important;
}

.product-grid-collection-slider .icon-wrap {
  display: none;
}

.product-grid-collection-slider .card__content {
  padding: 0 20px !important;
}


.product-grid-collection-slider .card__heading {
  font-family: var(--font-heading-family);
  font-size: 52px;
  text-transform: uppercase;
  color: #fff;
}

.product-grid-collection-slider .card__inner {
  height: 100%;
}

.card__inner .quick-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 20px 10px;
  text-align: right;
}

.card__inner .quick-add .quick-add__submit {
  min-width: unset;
  padding: 10px 20px;
}

.card__heading a::after {
  content: none !important;
}

.card--media .card__inner .card__content {
  position: static !important;
}

.card__heading {
  font-family: var(--font-body-family);
  font-size: 15px;
  color: #000;
  opacity: .7;
}

.card__content,
.card__content .price {
  text-align: center;
}

.card__content .price {
  color: #5e5e5e !important;
}

.product-grid-collection-slider .card__content,
.product-grid-collection-slider .card__content .price {
  text-align: left;
  opacity: 1;
}

.collection .slider-button {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, .1);
}

.collection .slider-button--next {
  left: auto;
  right: 10px;
}

.collection .slider-counter {
  display: none;
}

.quick-add-modal__content .love-this,
.alter-length {
    display: none;
}

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

.quick-add-modal__content .toggleLength label {
    letter-spacing: 0;
    font-size: 10px;
} 

.quick-add-modal__content product-info > .product__text {
    display: none;
}

.featured-collection-section .collection__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collection-tabs > button span:first-of-type:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width .3s cubic-bezier(.39, .575, .565, 1);
}

.collection-tabs {
  display: flex;
  gap: 20px;
}

.collection-tabs button {
  position: relative;
  background: transparent;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Space Grotesk';
  color: #000;
  padding: 0;
  cursor: pointer;
}

.collection .slider-button[disabled="disabled"] {
    display: none;
}


.collection a {
  text-decoration: none;
}

.collection-tabs>button.active span:first-of-type:after {
    width: 100%;
}

.collection-tab-section slider-component:not(.is-selected) {
  display: none !important;
}

.seperate-banner-content {
  top: auto !important;
  left: 40px !important;
  bottom: 40px !important;
  width: auto !important;
  height: auto !important;

}

.seperate-banner-content .c-button--link span,
.seperate-banner-content .c-button--link:not(.btn--text-no-underline) span:after {
   --main-color: #fff;
}

.collection-description p {
    margin: 4px 0;
}

.image-with-text__text {
  max-width: 720px;
  width: 100%;
  margin: 20px 0;
}

.card__information .c-button--link span,
.card__information .c-button--link:not(.btn--text-no-underline) span:after {
  --main-color: rgba(0, 0, 0, .75);
}

.collection-list .card__information a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
} 

.seperate-banner-content h2 {
  margin-bottom: 0;
}

.section-full .page-width {
   max-width: unset !important;
}

.spotlight-collection {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.spotlight-collection__names,
.spotlight-collection__image {
  flex: 0 0 50%;
}

.spotlight-collection__image .image__hero__frame:not(.is-selected) {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spotlight-collection__names {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 80px;
}

.spotlight-collection__names button {
  position: relative;
  background: transparent;
  border: 0;
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  text-align: left;
  color: #000;
}

.spotlight-collection__names button:not(.active) {
  opacity: .5;
}

.spotlight-collection__names button sup {
  position: absolute;
  top: 0;
  font-size: 28px;
}

.spotlight-collection__names {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 700px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.spotlight-collection__image {
  position: relative;
  overflow: hidden;
  transition: 300ms ease;
}

.spotlight-collection__image img {
  display: block;
  width: 100%;
  height: auto;
}

#FacetsWrapperDesktop .collection__title {
  display: none;
}

.product-grid-collection-slider {
  background-color: #fff;
  padding: 10px !important;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
  border: 1px solid #8aac96;
  border-radius: 12px;
}

.product-grid-collection-slider img {
  border-radius: 12px;
}

.product-grid-collection-slider .card__media::after,
.splits-banner .image__hero__scale::after {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: .1;
  z-index: 3;
}

.product-grid-collection-slider .card__information p,
.product-grid-collection-slider .card__information span,
.product-grid-collection-slider .card__information a,
.seperate-banner-content * {
  color: #fff;
}

.product-grid-collection-slider .card__information,
.product-grid-collection-slider .card__heading {
  text-align: center;
}

.quick-add.bottom {
  width: auto;
  margin: 0 auto;
}

.quick-add.bottom .quick-add__submit {
  padding: 10px 35px;
}

.product-row .image-with-text__content .image-with-text__text+.button {
  margin-top: 0;
}

.product-row .image-with-text__text {
  margin-bottom: 10px;
}

.product-row .image-with-text__content {
    padding-bottom: 0;
}

#menu-drawer {
  width: 90%;
}

@media (max-width: 749px) {

  .spotlight-collection__names,
  .spotlight-collection__image {
    flex: 0 0 100%;
  }

  .spotlight-collection {
    flex-direction: column-reverse;
  }

  .spotlight-collection__names {
    margin-top: 30px;
  }

  .template-index .title,
  .template-index .collection-list-title {
    font-size: 26px !important;
  }

  .seperate-banner-content {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .product-grid-collection-slider .card__heading {
    font-size: 24px;
  }
  .product-grid-collection-slider  .card__inner {
    height: 100%;
  }
  .product-grid-collection-slider .card__content {
    padding: 0 !important;
  }
  .product-grid-collection-slider .c-button {
    padding: 6px 10px;
    font-size: 10px;
  }
  .card__inner .quick-add {
    padding-bottom: 0;
  }
  .featured-collection-section .collection__title {
    flex-direction: column;
  }
  .spotlight-collection__names button {
    font-size: 20px;
  }
  .spotlight-collection__names button sup {
    font-size: 15px;
  }
  html .scrolling__text h2 {
    font-size: 40px;
  }

  .quick-add .add-cart-text {
    display: none;
  }

  .hotspots__content .quick-add .add-cart-text {
    display: block;
  }

  quick-add:not(.bottom) .add-cart-text {
    display: none;
  }
  .quick-add.bottom .quick-add__submit {
    padding: 6px 20px;
    margin-top: 10px;
  }
  .card__inner .quick-add .quick-add__submit {
    padding: 2px 5px;
    border-radius: 4px;
  }
  .mobile-icon img {
    filter: invert(1);
  }
  .collection .slider-button {
    top: 32%;
  }
  .collection .slider-button--next ,
   .collection .slider-button--prev{
  height: auto;
  width: auto;
  padding: 13px 10px;
  }

  .card__inner .quick-add {
    padding: 20px 10px 0;
  }

  html .card__information {
    padding-bottom: 0;
  }

  .header__icon .icon {
    width: 2rem !important;
    height: 2rem !important;
  }

  .header__icon, .header__icon--cart .icon {
    height: 3.4rem;
    width: 3.4rem;
  }
  .header__heading-logo {
    width: 70%;
  }
  html .slideshow__controls {
    border: 0;
    background: transparent;
  }

  .slideshow__controls .slider-button {
    display: none;
  }

  .slideshow__control-wrapper {
    flex-direction: column;
  }

  html .slideshow__controls {
    transform: none;
    left: auto;
    right: 0;
  }
  .splits-banner img {
    height: auto;
  }
  .hotspots__title {
    padding-top: 0;
  }
  .title-wrapper-with-link {
    justify-content: center;
  }
}

@media screen and (min-width: 990px) {
    html .quick-add-modal__content {
        max-width: 920px;
        width: 100%;
    }
    .product-grid-collection-slider {
      margin-left: 40px !important;
    }
}

@media (min-width: 750px) {
    .quick-add-modal__content .product__media-wrapper .GalleryViewer {
        width: 100%;
    }
}

@media (hover: hover) {
    .c-button--outline:hover:after, .c-button--primary:hover:after, .c-button--secondary:hover:after {
      transform: translateZ(0);
    }

    .c-button--link span:hover:after, .c-button--link:not(.btn--text-no-underline) span:hover:after {
        background-position: 0 0;
    }

    .collection-tabs>button:hover span:first-of-type:after {
        width: 100%;
    }
    .mobile-icon {
      display: none;
    }
}

/* 
==========================================================
  Custom Sections Css End
==========================================================
*/


/* Hide arrows */
.menu-drawer .icon-arrow,
.menu-drawer .icon-caret {
  display: none;
}

/* Accordion submenu */
.menu-drawer__submenu {
  position: static !important;
  transform: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  overflow: hidden;
}

/* Hide close button */
.menu-drawer__close-button {
  display: none !important;
}

/* Plus/Minus */
.menu-drawer__menu summary {
  position: relative;
}

.menu-drawer__menu summary::before,
.menu-drawer__menu summary::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  background: currentColor;
  transition: .3s;
}

.menu-drawer__menu summary::before {
  width: 14px;
  height: 1px;
  transform: translateY(-50%);
}

.menu-drawer__menu summary::after {
  width: 1px;
  height: 14px;
  right: 27px;
  transform: translateY(-50%);
}

details[open] > summary.menu-drawer__menu-item::after {
  transform: translateY(-50%) scaleY(0);
}

.js .menu-drawer__navigation .submenu-open {
  visibility: visible !important;
}

.menu-drawer__submenu ul {
    padding-left: 20px;
}

.menu-drawer__navigation > ul > li {
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
}

.trisara-product-video + modal-opener,
.trisara-product-video + modal-opener + deferred-media {
  display: none !important;
}