.container {
  max-width: 1720px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.button {
  padding: 12px 24px;
  border-radius: 5px;
  color: #000;
}

.button-image {
  max-width: 248px;
  width: 100%;
  text-align: center;
  background-color: #FFF;
  border-radius: 0;
  padding: 6px 12px;
  text-transform: uppercase;
  color: #313030;
}
@media (min-width: 768px) {
  .button-image {
    padding: 12px;
  }
}

.breadcrumbs__inner {
  padding: 24px;
}
.breadcrumbs__inner span a {
  color: #313030;
}
.breadcrumbs__inner span.breadcrumb_last {
  color: #C5B6A1;
  font-weight: 600;
}

.search-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: #FFF;
  z-index: 1002;
  transform: translateX(-400px);
  overflow: scroll;
  transition: 0.5s;
}
.search-sidebar.open {
  transform: translateX(0);
}
.search-sidebar__top {
  width: 100%;
  border-bottom: 1px solid #313030;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.search-sidebar__top .title {
  width: calc(100% - 48px);
}
.search-sidebar__top .title p {
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
}
.search-sidebar__top .close {
  width: 48px;
  text-align: right;
}
.search-sidebar__top .close svg {
  height: 20px;
  cursor: pointer;
  width: auto;
  vertical-align: middle;
}
.search-sidebar__box form {
  width: 100%;
  position: relative;
  padding: 24px 24px 0 24px;
}
.search-sidebar__box form .wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}
.search-sidebar__box form .wrapper button {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 10;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.search-sidebar__box form .wrapper button .search-icon, .search-sidebar__box form .wrapper button .loading {
  display: none;
}
.search-sidebar__box form .wrapper button .search-icon.visible, .search-sidebar__box form .wrapper button .loading.visible {
  display: block;
}
.search-sidebar__box form .wrapper button .search-icon svg, .search-sidebar__box form .wrapper button .loading svg {
  height: 16px;
  width: auto;
  vertical-align: middle;
}
.search-sidebar__box form .wrapper input[type=text] {
  width: 100%;
  height: 48px;
  border: 1px solid #313030;
  backdrop-filter: blur(6px);
  padding: 0 24px 0 44px;
  font-size: 1rem;
}
.search-sidebar__box form .wrapper input[type=text]::placeholder {
  font-size: 1rem;
}
.search-sidebar__box form .search__results {
  position: absolute;
  width: 100%;
  padding-top: 0;
  top: 100%;
  right: 0;
}
.search-sidebar__box form .search__results.active .results-container {
  opacity: 1;
  visibility: visible;
}
.search-sidebar__box form .search__results .results-container {
  background-color: #FFF;
  width: 100%;
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-top: none;
}
.search-sidebar__box form .search__results .results-container .no-results {
  padding: 24px;
}
.search-sidebar__box form .search__results .results-container .no-results h3 {
  color: #000;
  font-size: 1rem;
}
.search-sidebar__box form .search__results .results-container .top-heading {
  padding: 12px 24px;
  border-bottom: 1px solid #e5e5e5;
}
.search-sidebar__box form .search__results .results-container .top-heading p {
  font-size: 0.875rem;
}
.search-sidebar__box form .search__results .results-container .items .item {
  padding: 12px 24px;
  border-bottom: 1px solid #e5e5e5;
}
.search-sidebar__box form .search__results .results-container .items .item .item__inner {
  display: flex;
  flex-wrap: wrap;
}
.search-sidebar__box form .search__results .results-container .items .item .item__inner--left {
  width: 60px;
}
.search-sidebar__box form .search__results .results-container .items .item .item__inner--left img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: left;
}
.search-sidebar__box form .search__results .results-container .items .item .item__inner--right {
  width: calc(100% - 60px);
  padding-left: 12px;
}
.search-sidebar__box form .search__results .results-container .items .item .item__inner--right p {
  font-size: 0.875rem;
  color: #313030;
}
.search-sidebar__box form .search__results .results-container .items .item .item__inner--right .instock {
  font-weight: 700;
  color: #218c74;
}
.search-sidebar__box form .search__results .results-container .items .item .item__inner--right .outofstock {
  font-weight: 700;
  color: #b33939;
}
.search-sidebar__box form .search__results .results-container .more-items {
  padding: 12px 24px;
}
.search-sidebar__box form .search__results .results-container .more-items a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 0.875rem;
}
.search-sidebar__box form .search__results .results-container .more-items a svg {
  width: 12px;
  height: auto;
  vertical-align: bottom;
  fill: #000;
  margin-left: 12px;
}

.woocommerce-info {
  border-top-color: #C5B6A1;
}
.woocommerce-info:before {
  color: #C5B6A1;
}
.woocommerce-info a {
  color: #313030;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

input, textarea {
  color: #1D1D1B;
}
input::placeholder, textarea::placeholder {
  font-size: 1rem;
  color: #1D1D1B;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: 0;
}

select {
  font-family: "Raleway", sans-serif;
}

body {
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  background-color: #fff;
  color: #1D1D1B;
  position: relative;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media (min-width: 1200px) {
  body:before {
    display: none;
  }
}

.product .thumbnail-wrapper {
  position: relative;
  z-index: 10;
  background-color: #F1F1F1;
}
.product .thumbnail-wrapper .banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 0;
}
.product .thumbnail-wrapper .banner.sale .banner__inner {
  background-color: #b33939;
}
.product .thumbnail-wrapper .banner__inner {
  width: 100%;
  background-color: #313030;
  text-align: center;
  padding: 6px 24px;
}
.product .thumbnail-wrapper .banner__inner p {
  color: #FFF;
  font-weight: 500;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
.product .thumbnail-wrapper button[name=add-to-cart] {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C5B6A1;
  transition: 0.5s;
  cursor: pointer;
  border: none;
}
.product .thumbnail-wrapper button[name=add-to-cart]:hover, .product .thumbnail-wrapper button[name=add-to-cart]:focus {
  background-color: #313030;
}
.product .thumbnail-wrapper button[name=add-to-cart]:hover svg path, .product .thumbnail-wrapper button[name=add-to-cart]:hover svg g, .product .thumbnail-wrapper button[name=add-to-cart]:focus svg path, .product .thumbnail-wrapper button[name=add-to-cart]:focus svg g {
  fill: #FFF;
}
.product .thumbnail-wrapper button[name=add-to-cart].banner-enabled {
  bottom: 48px;
}
.product .thumbnail-wrapper button[name=add-to-cart] svg {
  height: 20px;
  vertical-align: middle;
  width: auto;
}
.product .thumbnail-wrapper button[name=add-to-cart] svg path, .product .thumbnail-wrapper button[name=add-to-cart] svg g {
  transition: 0.5s;
  fill: #313030;
}
.product .thumbnail-wrapper button[name=add-to-cart].loading .load-icon {
  display: block;
}
.product .thumbnail-wrapper button[name=add-to-cart].loading .cart-icon {
  display: none;
}
.product .thumbnail-wrapper button[name=add-to-cart] .load-icon {
  display: none;
}
.product .thumbnail-wrapper .badge, .product .thumbnail-wrapper .sale-percentage {
  position: absolute;
  left: 12px;
  top: 12px;
  background-color: #FFF;
  border-radius: 8px;
  padding: 6px;
  display: inline-block;
  color: #000;
}
.product .thumbnail-wrapper .badge p, .product .thumbnail-wrapper .sale-percentage p {
  font-size: 0.875rem;
  line-height: 1;
  color: #000;
}
.product .thumbnail-wrapper .sale-percentage {
  background-color: #b33939;
  right: 12px;
  left: unset;
}
.product .thumbnail-wrapper .sale-percentage p {
  color: #FFF;
}
.product .thumbnail-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 100/125;
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
}
.product .info-wrapper {
  margin: 16px 0 0 0;
}
.product .info-wrapper span {
  font-size: 0.875rem;
  line-height: 1.4;
}
.product .info-wrapper .price {
  width: 100%;
  display: block;
  font-weight: 500;
  color: #313030 !important;
  font-size: 1rem !important;
}
.product .info-wrapper .price span {
  font-size: 1rem !important;
}
.product .info-wrapper h3 {
  font-size: 1rem;
}
.product .wvs-archive-variations-wrapper {
  display: none;
}

body .usps {
  background-color: #C5B6A1;
}
body .usps__inner {
  width: 100%;
  padding: 12px 0;
}
body .usps__inner .usps-swiper {
  overflow: hidden;
  width: 100%;
}
body .usps__inner .usps-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
body .usps__inner .usps-swiper .swiper-wrapper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
}
body .usps__inner .usps-swiper .swiper-wrapper .swiper-slide .icon {
  margin-right: 24px;
}
body .usps__inner .usps-swiper .swiper-wrapper .swiper-slide .icon svg {
  width: 16px;
  height: auto;
  vertical-align: middle;
  margin-top: -3px;
}
body .usps__inner .usps-swiper .swiper-wrapper .swiper-slide .text {
  line-height: 1;
  font-size: 0.875rem;
}
body .header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 1001;
}
body .header__top--wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  padding: 12px 24px;
  align-items: center;
}
body .header__top--left, body .header__top--right {
  width: 25%;
}
body .header__top--left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
body .header__top--left .search, body .header__top--left .hamburger {
  cursor: pointer;
}
body .header__top--left .search svg, body .header__top--left .hamburger svg {
  height: 26px;
  width: auto;
  vertical-align: middle;
}
body .header__top--left .hamburger {
  margin-left: 12px;
}
@media (min-width: 1024px) {
  body .header__top--left .hamburger {
    display: none;
  }
}
body .header__top--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
body .header__top--right .action {
  margin-right: 12px;
  position: relative;
  z-index: 101;
}
body .header__top--right .action:last-child {
  margin-right: 0;
}
body .header__top--right .action.cart .icon {
  cursor: pointer;
}
body .header__top--right .action .icon {
  position: relative;
  z-index: 10;
}
body .header__top--right .action .icon .count {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #C5B6A1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .header__top--right .action .icon svg {
  height: 26px;
  width: auto;
  vertical-align: middle;
}
body .header__top--right .action .window {
  position: absolute;
  top: 100%;
  right: 0;
  width: 275px;
  padding-top: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media (min-width: 400px) {
  body .header__top--right .action .window {
    width: 370px;
  }
}
body .header__top--right .action .window.open {
  opacity: 1;
  visibility: visible;
}
body .header__top--right .action .window .shopping-cart {
  background-color: #FFF;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 12px;
  position: relative;
}
@media (min-width: 400px) {
  body .header__top--right .action .window .shopping-cart {
    padding: 0 24px;
  }
}
body .header__top--right .action .window .shopping-cart:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 10;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
body .header__top--right .action .window .shopping-cart.loading:before {
  opacity: 1;
  visibility: visible;
}
body .header__top--right .action .window .shopping-cart__inner {
  width: 100%;
}
body .header__top--right .action .window .shopping-cart__inner .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .header__top--right .action .window .shopping-cart__inner .top-bar .title h3 {
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
  font-weight: 500;
  color: #000;
}
body .header__top--right .action .window .shopping-cart__inner .top-bar .close {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body .header__top--right .action .window .shopping-cart__inner .top-bar .close svg {
  width: 12px;
  height: auto;
  fill: #000;
}
body .header__top--right .action .window .shopping-cart__inner .items {
  max-height: 400px;
  overflow-y: scroll;
  width: 100%;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body .header__top--right .action .window .shopping-cart__inner .items::-webkit-scrollbar {
  display: none;
}
body .header__top--right .action .window .shopping-cart__inner .items .no-items {
  padding: 12px 0;
}
body .header__top--right .action .window .shopping-cart__inner .items .no-items p {
  font-size: 0.875rem;
}
body .header__top--right .action .window .shopping-cart__inner .items .item {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .image {
  width: 60px;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: bottom;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .remove {
  width: 18px;
  display: flex;
}
@media (min-width: 400px) {
  body .header__top--right .action .window .shopping-cart__inner .items .item .remove {
    align-items: center;
  }
}
body .header__top--right .action .window .shopping-cart__inner .items .item .remove svg {
  width: 18px;
  height: auto;
  cursor: pointer;
  vertical-align: bottom;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content {
  width: calc(100% - 78px);
  padding: 0 12px;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .title a {
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .price {
  margin-left: 12px;
  display: block;
  font-size: 0.875rem;
  width: calc(100% - 96px);
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .price ins {
  text-decoration: none;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper {
  width: 96px;
  display: flex;
  flex-wrap: nowrap;
  border: 1px solid #ddd;
  height: 34px;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus, body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus {
  height: 100%;
  text-align: center;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  cursor: pointer;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus svg, body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus svg {
  width: 12px;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus {
  border-right: 1px solid #e5e5e5;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus {
  border-left: 1px solid #e5e5e5;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity {
  width: 44px;
  float: none;
  height: 100%;
  margin: 0;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input::-webkit-outer-spin-button,
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  -moz-appearance: textfield;
  font-size: 1rem;
  color: #000;
  text-align: center;
}
body .header__top--right .action .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input:focus {
  outline: 0;
}
body .header__top--right .action .window .shopping-cart__inner .totals {
  padding: 12px 0 0 0;
}
body .header__top--right .action .window .shopping-cart__inner .totals p {
  font-size: 0.875rem;
}
body .header__top--right .action .window .shopping-cart__inner .totals p strong {
  font-size: 1rem;
}
body .header__top--right .action .window .shopping-cart__inner .buttons {
  padding: 0 0 12px 0;
}
body .header__top--right .action .window .shopping-cart__inner .buttons .button {
  margin-top: 12px;
  padding: 0;
}
body .header__top--right .action .window .shopping-cart__inner .buttons .button a {
  background-color: #313030;
  color: #FFF;
  border: 1px solid transparent;
  font-weight: 400;
  transition: 0.5s;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  width: 100%;
  display: block;
  padding: 12px 24px;
}
body .header__top--right .action .window .shopping-cart__inner .buttons .button a:hover, body .header__top--right .action .window .shopping-cart__inner .buttons .button a:focus {
  background-color: #C5B6A1;
}
body .header__top--middle {
  width: 50%;
  display: flex;
  justify-content: center;
}
body .header__top--middle .text {
  text-align: center;
}
body .header__top--middle .text h1, body .header__top--middle .text span {
  color: #313030;
}
body .header__top--middle .text h1 {
  font-family: "Bebas Neue", sans-serif;
  margin: 0;
  line-height: 1;
  font-size: 2rem;
}
@media (min-width: 768px) {
  body .header__top--middle .text h1 {
    font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
  }
}
body .header__top--middle .text span {
  margin: 0;
  display: block;
  line-height: 1;
  font-size: 0.675rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  body .header__top--middle .text span {
    font-size: 0.875rem;
  }
}
body nav.main {
  position: relative;
  z-index: 1000;
  display: none;
  width: 100%;
}
@media (min-width: 1024px) {
  body nav.main {
    display: block;
  }
}
body nav.main ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body nav.main ul li {
  margin-right: 24px;
  padding: 12px 0;
}
body nav.main ul li:last-child {
  margin-right: 0;
}
body nav.main ul li a {
  color: #313030;
}
body nav.main ul li:hover .sub-menu, body nav.main ul li:focus .sub-menu {
  display: block;
}
body nav.main ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #FFF;
  z-index: 100;
  display: none;
}
body nav.main ul li .sub-menu__inner {
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
}
body nav.main ul li .sub-menu__inner .items {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 24px;
  column-gap: 24px;
}
body nav.main ul li .sub-menu__inner .items > .menu-item {
  width: 100%;
}
body nav.main ul li .sub-menu__inner .items > .menu-item > a {
  font-weight: 700;
}
body nav.main ul li .sub-menu__inner .featured-banners {
  width: 40%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
}
body nav.main ul li .sub-menu__inner .featured-banners .featured-banner {
  width: 100%;
}
body nav.main ul li .sub-menu__inner .featured-banners .featured-banner img {
  width: 100%;
  aspect-ratio: 300/400;
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
  height: auto;
}
body nav.main ul li .sub-menu__inner .featured-banners .featured-banner p {
  text-align: center;
  margin: 12px 0 0 0;
}
body .notification-banner__inner .container {
  padding: 12px 24px;
  text-align: center;
}
body .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10005;
  transform: translateX(-100%);
  transition: 0.5s;
}
@media (min-width: 1024px) {
  body .mobile-menu {
    display: none;
  }
}
body .mobile-menu.open {
  transform: translateX(0);
}
body .mobile-menu__inner {
  max-width: 400px;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: #FFF;
}
body .mobile-menu__inner--top {
  border-bottom: 1px solid #313030;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}
body .mobile-menu__inner--top span {
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
  line-height: 1;
  display: block;
  margin-top: 5px;
}
body .mobile-menu__inner--top .close-mobile-menu {
  cursor: pointer;
}
body .mobile-menu__inner--top .close-mobile-menu svg {
  width: 24px;
  height: auto;
  vertical-align: middle;
}
body .mobile-menu__inner--items {
  padding-top: 24px;
}
body .mobile-menu__inner--items .sub-menu {
  display: none;
}
body .mobile-menu__inner--items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .mobile-menu__inner--items ul li a {
  padding: 6px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #313030;
}
body .mobile-menu__inner--items ul li a.active svg {
  transform: rotate(-180deg);
}
body .mobile-menu__inner--items ul li a svg {
  width: 12px;
  height: auto;
  vertical-align: middle;
  transition: 0.5s;
}
body .mobile-menu__inner--items ul li .sub-menu {
  padding-left: 20px;
}

.footer {
  border-top: 1px solid #313030;
}
.footer__top {
  padding: 48px 0 48px 0;
}
.footer__top .container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 24px;
  column-gap: 24px;
}
@media (min-width: 768px) {
  .footer__top .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__top .container .column {
  width: 100%;
}
.footer__top .container .column .socials {
  display: flex;
  margin-top: 24px;
}
.footer__top .container .column .socials__social {
  margin-left: 12px;
}
.footer__top .container .column .socials__social:first-child {
  margin-left: 0;
}
.footer__top .container .column .socials__social svg {
  height: 32px;
  width: auto;
  vertical-align: middle;
}
.footer__top .container .column .socials__social svg path, .footer__top .container .column .socials__social svg g {
  fill: #313030;
}
.footer__top .container .column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__top .container .column ul li {
  line-height: 1.5;
}
.footer__top .container .column ul li a {
  color: #313030;
}
.footer__top .container .column ul.actions {
  margin-top: 12px;
}
.footer__top .container .column ul.actions li a {
  display: flex;
  align-items: center;
}
.footer__top .container .column ul.actions li a .icon {
  width: 32px;
  padding-right: 8px;
}
.footer__top .container .column ul.actions li a .icon svg {
  width: 24px;
  height: auto;
}
.footer__top .container .column ul.actions li a .text {
  width: calc(100% - 32px);
  color: #313030;
}
.footer__top .container .column p, .footer__top .container .column ul {
  margin: 12px 0 0 0;
}
.footer__bottom {
  border-top: 1px solid #313030;
  padding: 24px 0;
}
.footer__bottom .container p {
  font-size: 0.875rem;
}

body.page-template-home .stories__inner {
  max-width: 1366px;
  padding-top: 24px;
}
body.page-template-home .stories__inner .swiper-brands {
  overflow: hidden;
  width: 100%;
}
body.page-template-home .stories__inner .swiper-brands .swiper-wrapper .swiper-slide {
  width: auto;
  height: auto;
}
body.page-template-home .stories__inner .swiper-brands .swiper-wrapper .swiper-slide .inner {
  width: 64px;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-template-home .stories__inner .swiper-brands .swiper-wrapper .swiper-slide .inner {
    width: 96px;
  }
}
body.page-template-home .stories__inner .swiper-brands .swiper-wrapper .swiper-slide .inner .circle {
  width: 100%;
  height: 64px;
}
@media (min-width: 768px) {
  body.page-template-home .stories__inner .swiper-brands .swiper-wrapper .swiper-slide .inner .circle {
    height: 96px;
  }
}
body.page-template-home .stories__inner .swiper-brands .swiper-wrapper .swiper-slide .inner .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #C5B6A1;
}
body.page-template-home .stories__inner .swiper-brands .swiper-wrapper .swiper-slide .inner span {
  color: #313030;
  display: block;
  margin-top: 6px;
  font-size: 0.675rem;
}
@media (min-width: 768px) {
  body.page-template-home .stories__inner .swiper-brands .swiper-wrapper .swiper-slide .inner span {
    font-size: 0.875rem;
  }
}
body.page-template-home .hero {
  padding: 24px 0 0 0;
}
body.page-template-home .hero__inner {
  padding: 0;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner {
    padding: 0 24px;
  }
}
body.page-template-home .hero__inner .swiper-hero {
  width: 100%;
  overflow: hidden;
}
body.page-template-home .hero__inner .swiper-hero .swiper-wrapper .swiper-slide {
  height: auto;
  position: relative;
}
body.page-template-home .hero__inner .swiper-hero .swiper-wrapper .swiper-slide img {
  width: 100%;
  aspect-ratio: 2856/530;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  min-height: 150px;
}
body.page-template-home .hero__inner .swiper-hero .swiper-wrapper .swiper-slide .button-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 24px 24px;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner .swiper-hero .swiper-wrapper .swiper-slide .button-wrapper {
    padding: 24px 24px 48px 24px;
  }
}
body.page-template-home .hero__inner .swiper-hero .swiper-wrapper .swiper-slide .button-wrapper span {
  display: inline-block;
  background: #FFF;
  transition: 0.5s;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.page-template-home .hero__inner .swiper-hero .swiper-wrapper .swiper-slide .button-wrapper span:hover, body.page-template-home .hero__inner .swiper-hero .swiper-wrapper .swiper-slide .button-wrapper span:focus {
  color: #FFF;
  background: #313030;
}
body.page-template-home .brands {
  margin: 24px 0 0 0;
}
body.page-template-home .brands__inner {
  display: grid;
  row-gap: 12px;
  column-gap: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  body.page-template-home .brands__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  body.page-template-home .brands__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
body.page-template-home .brands__inner--item {
  width: 100%;
  position: relative;
  z-index: 10;
}
body.page-template-home .brands__inner--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  aspect-ratio: 350/530;
}
body.page-template-home .brands__inner--item .button-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 12px 12px 24px 12px;
}
@media (min-width: 1200px) {
  body.page-template-home .brands__inner--item .button-wrapper {
    padding: 24px 24px 48px 24px;
  }
}
body.page-template-home .brands__inner--item .button-wrapper span {
  font-size: 0.875rem;
  display: inline-block;
}
@media (min-width: 768px) {
  body.page-template-home .brands__inner--item .button-wrapper span {
    font-size: 1rem;
  }
}
body.page-template-home .new-in {
  margin: 24px 0 0 0;
}
body.page-template-home .new-in__inner .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
body.page-template-home .new-in__inner .top__left h2 {
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
}
body.page-template-home .new-in__inner .top__left p {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.page-template-home .new-in__inner .top__left h6 {
  font-size: 0.875rem;
}
body.page-template-home .new-in__inner .top__right {
  margin-top: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .new-in__inner .top__right {
    margin-top: 0;
    width: auto;
  }
}
body.page-template-home .new-in__inner .top__right .navigation-actions {
  display: flex;
}
body.page-template-home .new-in__inner .top__right .navigation-actions .new-left, body.page-template-home .new-in__inner .top__right .navigation-actions .new-right {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #313030;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body.page-template-home .new-in__inner .top__right .navigation-actions .new-left, body.page-template-home .new-in__inner .top__right .navigation-actions .new-right {
    width: 48px;
    height: 48px;
  }
}
body.page-template-home .new-in__inner .top__right .navigation-actions .new-left svg, body.page-template-home .new-in__inner .top__right .navigation-actions .new-right svg {
  height: 24px;
  width: auto;
  vertical-align: middle;
}
body.page-template-home .new-in__inner .top__right .navigation-actions .new-left svg path, body.page-template-home .new-in__inner .top__right .navigation-actions .new-left svg g, body.page-template-home .new-in__inner .top__right .navigation-actions .new-right svg path, body.page-template-home .new-in__inner .top__right .navigation-actions .new-right svg g {
  fill: #313030;
}
body.page-template-home .new-in__inner .top__right .navigation-actions .new-right {
  margin-left: 6px;
}
body.page-template-home .new-in__inner .items {
  margin-top: 24px;
}
body.page-template-home .new-in__inner .items .products-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
body.page-template-home .new-in__inner .items .products-swiper .swiper-wrapper .swiper-slide {
  width: 45%;
}
@media (min-width: 768px) {
  body.page-template-home .new-in__inner .items .products-swiper .swiper-wrapper .swiper-slide {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  body.page-template-home .new-in__inner .items .products-swiper .swiper-wrapper .swiper-slide {
    width: 20%;
  }
}
body.page-template-home .shop-the-look {
  margin: 24px 0 0 0;
}
body.page-template-home .shop-the-look__inner .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
body.page-template-home .shop-the-look__inner .top__left h2 {
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
}
body.page-template-home .shop-the-look__inner .top__left p {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.page-template-home .shop-the-look__inner .top__left h6 {
  font-size: 0.875rem;
}
body.page-template-home .shop-the-look__inner .top__right .navigation-actions {
  display: flex;
}
body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-left, body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-right {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #313030;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-left svg, body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-right svg {
  height: 24px;
  width: auto;
  vertical-align: middle;
}
body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-left svg path, body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-left svg g, body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-right svg path, body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-right svg g {
  fill: #313030;
}
body.page-template-home .shop-the-look__inner .top__right .navigation-actions .look-right {
  margin-left: 6px;
}
body.page-template-home .shop-the-look__inner .items {
  margin-top: 24px;
}
body.page-template-home .shop-the-look__inner .items .look-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner:hover .inner__icon, body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner:focus .inner__icon {
  background: #313030;
}
body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner:hover .inner__icon svg path, body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner:hover .inner__icon svg g, body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner:focus .inner__icon svg path, body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner:focus .inner__icon svg g {
  fill: #FFF;
}
body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  aspect-ratio: 100/150;
}
body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #FFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner__icon svg {
  height: 24px;
  width: auto;
}
body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner__icon svg path, body.page-template-home .shop-the-look__inner .items .look-swiper .swiper-wrapper .swiper-slide .inner__icon svg g {
  transition: 0.5s;
  fill: #313030;
}
body.page-template-home .shop-the-look__inner .items__popup {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  background: #FFF;
  box-shadow: 0px 0 15px 0px rgba(49, 48, 48, 0.2);
  padding: 24px 0;
  transform: translateY(100%);
  overflow: scroll;
  transition: 0.5s;
  height: 100%;
}
@media (min-width: 1024px) {
  body.page-template-home .shop-the-look__inner .items__popup {
    height: auto;
  }
}
body.page-template-home .shop-the-look__inner .items__popup.active {
  transform: translateY(0);
}
body.page-template-home .shop-the-look__inner .items__popup--content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 12px;
  row-gap: 12px;
  position: relative;
}
@media (min-width: 375px) {
  body.page-template-home .shop-the-look__inner .items__popup--content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  body.page-template-home .shop-the-look__inner .items__popup--content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  body.page-template-home .shop-the-look__inner .items__popup--content {
    grid-template-columns: repeat(5, 1fr);
  }
}
body.page-template-home .shop-the-look__inner .items__popup--content .popup-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
body.page-template-home .shop-the-look__inner .items__popup--content .popup-close svg {
  height: 24px;
  width: auto;
  vertical-align: middle;
}
body.page-template-home .shop-the-look__inner .items__popup--content .popup-close svg path, body.page-template-home .shop-the-look__inner .items__popup--content .popup-close svg g {
  fill: #313030;
}
body.page-template-home .shop-the-look__inner .items__popup--content .product {
  width: 100%;
}
body.page-template-home .categories {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 12px;
  column-gap: 12px;
  margin: 24px auto 0 auto;
}
@media (min-width: 768px) {
  body.page-template-home .categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
body.page-template-home .categories__category {
  width: 100%;
  position: relative;
  z-index: 10;
}
body.page-template-home .categories__category img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 1/1;
}
body.page-template-home .categories__category--title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
body.page-template-home .categories__category--title p {
  color: #FFF;
  font-weight: 700;
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.page-template-home .location {
  margin: 24px 0 0 0;
  padding-bottom: 24px;
}
body.page-template-home .location .top {
  text-align: center;
}
body.page-template-home .location .top h2 {
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
}
body.page-template-home .location .top p, body.page-template-home .location .top h6 {
  margin: 6px 0 0 0;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.page-template-home .location .top h6 {
  font-size: 0.875rem;
}
body.page-template-home .location .images {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 768px) {
  body.page-template-home .location .images {
    grid-template-columns: repeat(12, 1fr);
  }
}
body.page-template-home .location .images__image {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .location .images__image:first-child {
    grid-column: span 6;
  }
}
@media (min-width: 768px) {
  body.page-template-home .location .images__image:nth-child(2), body.page-template-home .location .images__image:nth-child(3) {
    grid-column: span 3;
  }
}
body.page-template-home .location .images__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
body.page-template-home .seo {
  margin: 24px 0 0 0;
  background: #C5B6A1;
}
body.page-template-home .seo__inner {
  padding: 24px 24px 48px 24px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-home .seo__inner {
    padding: 48px 24px;
  }
}
body.page-template-home .seo__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .seo__inner--left {
    width: 60%;
    padding-right: 24px;
  }
}
body.page-template-home .seo__inner--left h1, body.page-template-home .seo__inner--left h2, body.page-template-home .seo__inner--left h3, body.page-template-home .seo__inner--left h4, body.page-template-home .seo__inner--left p, body.page-template-home .seo__inner--left ul, body.page-template-home .seo__inner--left ol {
  margin: 24px 0 0 0;
}
body.page-template-home .seo__inner--left h1 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
}
body.page-template-home .seo__inner--left h2 {
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
}
body.page-template-home .seo__inner--left h3 {
  font-size: clamp(1.25rem, 0.9643rem + 0.5952vw, 1.5rem);
}
body.page-template-home .seo__inner--left h4 {
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
}
body.page-template-home .seo__inner--left p {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
  line-height: 1.5;
}
body.page-template-home .seo__inner--left p a {
  color: #313030;
  font-weight: 700;
}
body.page-template-home .seo__inner--right {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.page-template-home .seo__inner--right {
    width: 40%;
    margin-top: 0;
    padding-left: 24px;
  }
}
body.page-template-home .seo__inner--right img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body.woocommerce-account .wrapper__inner .woocommerce {
  border-top: 1px solid #ebebeb;
  padding: 24px 0;
  width: 100%;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 {
  width: 100%;
  float: none;
  max-width: 100%;
  flex: none;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 h2, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 h2 {
  text-align: center;
  font-weight: 400;
  margin: 0 0 24px 0;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form {
  background-color: #FFF;
  margin: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.lost_password, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.lost_password, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap {
    float: left;
    width: 50%;
  }
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.lost_password a, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.lost_password a, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a {
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.lost_password a:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.lost_password a:focus, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a:focus, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.lost_password a:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.lost_password a:focus, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a:focus {
  text-decoration: none;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a {
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a:focus, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.lost_password, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.lost_password {
    padding-right: 7.5px;
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap {
    padding-left: 7.5px;
  }
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p {
  margin-bottom: 15px;
  padding: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p .woocommerce-button, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p .woocommerce-button {
  width: 100%;
  float: none;
  max-width: 100%;
  margin-right: 0;
  color: #FFF;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 0;
  background-color: #313030;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p .woocommerce-button:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p .woocommerce-button:focus, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p .woocommerce-button:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p .woocommerce-button:focus {
  color: #313030;
  background-color: #C5B6A1;
  text-decoration: none;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p a, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p a {
  color: #000;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p label, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p label {
  display: block;
  width: 100%;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p span.password-input, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p span.password-input {
  width: 100%;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p span.password-input .show-password-input, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p span.password-input .show-password-input {
  top: 1em !important;
  background-color: transparent;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 {
  display: none;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form {
  padding-bottom: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form span.password-input {
  width: 100%;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form span.password-input .show-password-input {
  top: 1em !important;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-navigation {
  padding: 24px;
  margin-bottom: 24px;
  background-color: #f1f1f1;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 15px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #C5B6A1;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-navigation ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-navigation ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-navigation ul li a:hover, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-navigation ul li a:focus {
  color: #C5B6A1;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content {
  background-color: #FFF;
  padding: 25px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content h2, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content h3 {
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 10px 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table {
  border: none;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table thead th {
  padding: 10px 0;
  font-weight: 600;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr td {
  padding: 10px 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-number a {
  color: #313030;
  font-weight: 700;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
  margin: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content p.form-row {
  padding: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .button {
  background-color: #C5B6A1;
  color: #FFF;
  border-radius: 2px;
  font-weight: 600;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
  margin-top: 15px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .edit {
  background-color: #C5B6A1;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 10px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
  font-style: normal;
  line-height: 1.5;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .order-information, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .shipping-information, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .shipping-address {
  margin-bottom: 25px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .order-information ul, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .shipping-information ul, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .shipping-address ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .order-information ul li, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .shipping-information ul li, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .shipping-address ul li {
  margin-bottom: 5px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals {
  margin-top: 25px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li:last-child .left {
  font-size: 18px;
  font-weight: 700;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left {
  width: 125px;
  margin-right: 10px;
}
@media (min-width: 375px) {
  body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left {
    width: 175px;
    margin-right: 15px;
  }
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .right {
  width: 80px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item {
  padding: 10px 0;
  border-top: 1px solid #313030;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item:first-child {
  border-top: none;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__image {
  width: 80px;
  height: auto;
  position: relative;
  z-index: 10;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__image .count {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #313030;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 14px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__image img {
  object-fit: contain;
  object-position: center center;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data {
  width: calc(100% - 80px);
  padding-left: 20px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .title a {
  margin: 0;
  font-size: 15px;
  color: #313030;
  font-weight: 400;
  line-height: 1.5;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .sale-price p {
  font-size: 16px;
  color: #313030;
  font-weight: 500;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price {
  margin-left: 10px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price p {
  color: #000;
  font-weight: 400;
  font-size: 13px;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity {
  width: calc(100% - 80px);
  padding-left: 20px;
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity {
    padding-left: 0;
    margin: 0;
    width: 120px;
  }
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper {
  height: 42px;
  display: flex;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .minus, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .plus {
  height: 100%;
  width: 42px;
  border: 1px solid #313030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity {
  width: 62px;
  height: 100%;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  border-top: 1px solid #313030;
  border-bottom: 1px solid #313030;
  text-align: center;
  -moz-appearance: textfield;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input:focus {
  outline: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input::-webkit-outer-spin-button, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
}

body.product-archive .woocommerce-wrapper {
  width: 100%;
}
body.product-archive .woocommerce-wrapper__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 0 24px 24px 24px;
  align-items: flex-start;
}
body.product-archive .woocommerce-wrapper__inner .open-filter {
  position: fixed;
  bottom: 24px;
  left: 0;
  background-color: #313030;
  width: 48px;
  height: 48px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  body.product-archive .woocommerce-wrapper__inner .open-filter {
    display: none;
  }
}
body.product-archive .woocommerce-wrapper__inner .open-filter svg {
  width: 24px;
  height: auto;
  vertical-align: bottom;
  fill: #FFF;
}
body.product-archive .woocommerce-wrapper__inner--sidebar {
  width: 225px;
  background-color: #FFF;
  border-right: 1px solid #313030;
}
@media (max-width: 1023px) {
  body.product-archive .woocommerce-wrapper__inner--sidebar {
    position: fixed;
    padding: 24px;
    border: none;
    z-index: 100000;
    overflow-y: scroll;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-225px);
    transition: 0.5s;
  }
}
body.product-archive .woocommerce-wrapper__inner--sidebar.open {
  transform: translateX(0);
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .close-filter {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  body.product-archive .woocommerce-wrapper__inner--sidebar .inner .close-filter {
    display: none;
  }
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .close-filter span {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  text-align: center;
  background-color: #C5B6A1;
  color: #313030;
  font-weight: 600;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner h3 {
  font-size: clamp(1.25rem, 0.9643rem + 0.5952vw, 1.5rem);
  color: #313030;
  font-weight: 400;
  margin: 0;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group {
  margin-top: 24px;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facet-label {
  color: #313030;
  font-weight: 500;
  margin: 0 0 12px 0;
  font-size: 1rem;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facetwp-facet {
  margin-bottom: 0;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox {
  background: none;
  padding-left: 24px;
  position: relative;
  z-index: 10;
  padding-top: 0;
  margin-bottom: 12px;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox.checked:before {
  background-color: #313030;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #313030;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-slider {
  background-color: #313030;
  border: none;
  height: 4px;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-slider .noUi-base .noUi-connects .noUi-connect {
  background-color: #313030;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-slider .noUi-base .noUi-origin .noUi-handle {
  width: 20px;
  top: -8px;
  height: 20px;
  background-color: #313030;
  border-radius: 50%;
  border: 1px solid #FFF;
}
body.product-archive .woocommerce-wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-slider-reset {
  display: none;
}
body.product-archive .woocommerce-wrapper__inner--products {
  width: 100%;
}
@media (min-width: 1024px) {
  body.product-archive .woocommerce-wrapper__inner--products {
    width: calc(100% - 225px);
    padding-left: 24px;
  }
}
body.product-archive .woocommerce-wrapper__inner--products .load-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
body.product-archive .woocommerce-wrapper__inner--products .load-more .facetwp-facet {
  margin: 0;
}
body.product-archive .woocommerce-wrapper__inner--products .inner {
  background-color: #FFF;
  border-bottom: none;
}
body.product-archive .woocommerce-wrapper__inner--products .inner .facetwp-facet {
  margin: 0 0 12px 0;
}
body.product-archive .woocommerce-wrapper__inner--products .inner h1 {
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
  font-weight: 400;
  color: #313030;
  padding: 0 0 12px 0;
}
body.product-archive .woocommerce-wrapper__inner--products .inner header.woocommerce-products-header {
  padding: 24px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #313030;
}
@media (min-width: 768px) {
  body.product-archive .woocommerce-wrapper__inner--products .inner header.woocommerce-products-header {
    padding: 12px 24px;
  }
}
body.product-archive .woocommerce-wrapper__inner--products .inner header.woocommerce-products-header .woocommerce-result-count {
  float: none;
  margin: 5px 0 0 0;
}
body.product-archive .woocommerce-wrapper__inner--products .inner header.woocommerce-products-header .description p {
  margin: 12px 0 0 0;
  line-height: 1.7;
}
body.product-archive .woocommerce-wrapper__inner--products .inner .woocommerce-ordering {
  margin: 12px 0;
  float: none;
  padding: 0 30px;
}
body.product-archive .woocommerce-wrapper__inner--products .inner .woocommerce-ordering select {
  border: 1px solid #313030;
  padding: 10px;
  border-radius: 0;
  max-width: 100%;
}
body.product-archive .woocommerce-wrapper__inner--products .inner .woocommerce-ordering select:focus {
  outline: 0;
}
body.product-archive .woocommerce-wrapper__inner--products .inner .products {
  border-top: 1px solid #313030;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 24px;
}
@media (min-width: 375px) {
  body.product-archive .woocommerce-wrapper__inner--products .inner .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  body.product-archive .woocommerce-wrapper__inner--products .inner .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  body.product-archive .woocommerce-wrapper__inner--products .inner .products {
    grid-template-columns: repeat(4, 1fr);
  }
}
body.product-archive .woocommerce-wrapper__inner--products .inner .products .product {
  width: 100%;
  margin: 0;
}
@media (max-width: 374px) {
  body.product-archive .woocommerce-wrapper__inner--products .inner .products .product {
    border-right: none;
  }
}
@media (max-width: 767px) {
  body.product-archive .woocommerce-wrapper__inner--products .inner .products .product:nth-child(2n) {
    border-right: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body.product-archive .woocommerce-wrapper__inner--products .inner .products .product:nth-child(3n) {
    border-right: none;
  }
}
@media (min-width: 1200px) {
  body.product-archive .woocommerce-wrapper__inner--products .inner .products .product:nth-child(4n) {
    border-right: none;
  }
}
body.product-archive .woocommerce-wrapper__inner--products .woocommerce-pagination {
  display: none !important;
}
body.product-archive .woocommerce-wrapper__inner--pagination {
  width: 100%;
  margin: 0 0 0 auto;
  text-align: center;
}
@media (min-width: 1024px) {
  body.product-archive .woocommerce-wrapper__inner--pagination {
    width: calc(100% - 290px);
  }
}
body.product-archive .woocommerce-wrapper__inner--pagination .facetwp-facet {
  margin: 0;
  width: 100%;
  text-align: center;
}
body.product-archive .woocommerce-wrapper__inner--pagination .facetwp-facet button {
  margin: 25px 0;
  font-size: 18px;
  color: #FFF;
  font-weight: 600;
  padding: 10px 25px;
  background-color: #313030;
  border: none;
  cursor: pointer;
}

body.single-product .woocommerce-wrapper__inner {
  padding: 0 24px 0 24px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner {
    padding: 0 24px 24px 24px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product {
  position: relative;
  z-index: 10;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper {
  display: block;
  width: 100%;
  position: relative;
  z-index: 10;
  transition: 0.5s;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper {
    display: grid;
    column-gap: 24px;
    row-gap: 24px;
    grid-template-columns: repeat(8, 1fr);
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper.loading {
  opacity: 0.5;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .onsale {
  display: none;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery {
  float: none;
  margin: 0;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery {
    grid-column: span 5;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery__wrapper .gallery-swiper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery__wrapper .gallery-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 12px;
    column-gap: 12px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery__wrapper .gallery-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery__wrapper .gallery-swiper .swiper-wrapper .swiper-slide img {
  aspect-ratio: 278/370;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary {
  float: none;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary {
    grid-column: span 3;
    margin-top: 0;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper {
  position: sticky;
  top: 78px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper {
    padding: 0 24px 24px 24px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper h1 {
  font-weight: 400;
  font-size: clamp(1.25rem, 0.9643rem + 0.5952vw, 1.5rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .price {
  color: #313030;
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
  margin: 12px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart {
  margin: 12px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table {
  margin: 0 0 12px 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr {
  width: 100%;
  display: block;
  margin-top: 12px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr th.label {
  display: none;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul {
  padding: 0;
  list-style: none;
  display: flex;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li {
  margin: 0;
  margin-right: 6px;
  position: relative;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li.disabled .variable-item-contents .variable-item-span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li.selected .variable-item-contents .variable-item-span {
  border-color: #313030;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li .variable-item-contents {
  cursor: pointer;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li .variable-item-contents .variable-item-span {
  width: auto;
  height: 32px;
  display: block;
  font-size: 0.875rem;
  text-align: center;
  border-radius: 4px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .reset_variations {
  display: none !important;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .single_variation_wrap {
  margin-top: 24px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .single_variation_wrap .woocommerce-variation {
  margin: 0 0 12px 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price {
  color: #313030;
  font-size: 0.875rem;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability .stock {
  background: #FFF;
  border: 1px solid #CCC;
  display: inline-block;
  padding: 6px;
  border-radius: 4px;
  font-size: 0.875rem;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability .stock.in-stock {
  color: #218c74;
  border-color: #218c74;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability .stock.outofstock {
  color: #b33939;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper {
  width: 96px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  height: 42px;
  margin-right: 12px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .minus, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .plus {
  height: 100%;
  text-align: center;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  cursor: pointer;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .minus svg, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .plus svg {
  width: 12px;
  height: auto;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .minus {
  border-right: 1px solid #e5e5e5;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .plus {
  border-left: 1px solid #e5e5e5;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .quantity {
  width: 44px;
  float: none;
  height: 100%;
  margin: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .quantity input::-webkit-outer-spin-button,
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  -moz-appearance: textfield;
  font-size: 1.125rem;
  color: #000;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .number-wrapper .quantity input:focus {
  outline: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .button {
  color: #000;
  border: none;
  height: 42px;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 0 24px;
  transition: 0.5s;
  cursor: pointer;
  background: #C5B6A1;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .button:hover, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper form.cart .button:focus {
  color: #FFF;
  background: #313030;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper {
  max-width: 480px;
  margin-top: 24px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item {
  padding: 12px;
  border-top: 1px solid rgba(49, 48, 48, 0.3);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item:last-child {
  border-bottom: 1px solid rgba(49, 48, 48, 0.3);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .top {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .top.open .top__icon svg {
  transform: rotate(180deg);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .top__text {
  font-size: 0.875rem;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .top__icon svg {
  height: 20px;
  width: auto;
  transition: 0.5s;
  vertical-align: middle;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content {
  display: none;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h1, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h2, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h3, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h4, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content ol, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content ul, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content p {
  margin: 12px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h1, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h2, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h3, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h4 {
  font-weight: 400;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h1 {
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h2 {
  font-size: clamp(1.25rem, 0.9643rem + 0.5952vw, 1.5rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h3 {
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .summary-wrapper .collapse-wrapper .collapse-item .content h4 {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery {
  width: 100%;
}
body.single-product .other {
  overflow: hidden;
}
body.single-product .other__inner {
  padding: 0 24px 24px 24px;
}
body.single-product .other__inner h2 {
  font-weight: 400;
  margin: 0 0 24px 0;
}
body.single-product .other__inner .products-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
body.single-product .other__inner .products-swiper .swiper-wrapper .swiper-slide {
  width: 45%;
}
@media (min-width: 768px) {
  body.single-product .other__inner .products-swiper .swiper-wrapper .swiper-slide {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  body.single-product .other__inner .products-swiper .swiper-wrapper .swiper-slide {
    width: 20%;
  }
}

body.woocommerce-checkout .wrapper {
  margin-bottom: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .woocommerce-NoticeGroup-checkout {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .woocommerce-NoticeGroup-checkout a {
  color: #313030;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .woocommerce-form-coupon-toggle {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout {
  width: 100%;
  display: grid;
  padding: 24px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left, body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right {
  border: 1px solid #C5B6A1;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left {
  padding: 24px;
  width: 100%;
  order: 2;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left {
    width: 70%;
    order: 1;
  }
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left h3:not(#ship-to-different-address) {
  display: none;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-1, body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-2 {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-2 {
  margin-top: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-2 h3 {
  font-weight: 400;
  font-size: 1rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-2 .woocommerce-additional-fields {
  margin-top: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .delivery {
  margin-top: 20px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .delivery #shipping_method li {
  display: flex;
  align-items: center;
  margin: 12px 0 0 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .delivery #shipping_method li input {
  width: 15px;
  margin-top: 0;
  height: 15px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left #payment {
  margin-top: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right {
  width: 100%;
  height: 100%;
  order: 1;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right {
    margin-bottom: 0;
    order: 2;
    width: calc(30% - 24px);
    margin-left: 24px;
    position: sticky;
    top: 86px;
    right: 0;
  }
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item {
  border-bottom: 1px solid #C5B6A1;
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item.open .dropdown {
  display: block;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .title {
  cursor: pointer;
  padding: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .title h3 {
  font-size: 1rem;
  font-weight: 400;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item:first-child {
  padding-top: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item:last-child {
  padding-bottom: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image {
  width: 25%;
  padding-right: 12px;
  position: relative;
  z-index: 10;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image img {
  width: 100%;
  height: auto;
  margin: 0;
  max-width: 150px;
  aspect-ratio: 1/1;
  vertical-align: bottom;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image .quantity {
  background-color: #C5B6A1;
  color: #313030;
  width: 20px;
  height: 20px;
  font-size: 0.875rem;
  position: absolute;
  left: -10px;
  top: -10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info {
  width: 50%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p {
  font-size: 0.875rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.price {
  margin-top: 8px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.preorder {
  color: #F35046;
  font-weight: 700;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.marge {
  font-weight: 700;
  color: #F35046;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__total {
  padding-left: 12px;
  text-align: right;
  width: 25%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__total p {
  font-weight: 700;
  font-size: 0.875rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form {
  padding: 0 24px 24px 24px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1200px) {
  body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form {
    grid-template-columns: 60% 40%;
  }
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input, body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input:focus, body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button:focus {
  outline: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input {
  height: 42px;
  padding-left: 12px;
  font-size: 1rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button {
  height: 42px;
  background-color: #C5B6A1;
  color: #313030;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .totals {
  padding: 12px 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .totals__item {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
}

body.page-template-default .wrapper__inner {
  padding: 0 24px 24px 24px;
}
body.page-template-default .wrapper__inner--content.default-page {
  max-width: 1240px;
}
body.page-template-default .wrapper__inner--content.default-page h1, body.page-template-default .wrapper__inner--content.default-page h2, body.page-template-default .wrapper__inner--content.default-page h3, body.page-template-default .wrapper__inner--content.default-page h4, body.page-template-default .wrapper__inner--content.default-page h5, body.page-template-default .wrapper__inner--content.default-page p, body.page-template-default .wrapper__inner--content.default-page ul, body.page-template-default .wrapper__inner--content.default-page ol, body.page-template-default .wrapper__inner--content.default-page img {
  margin: 24px 0 0 0;
}
body.page-template-default .wrapper__inner--content.default-page h1, body.page-template-default .wrapper__inner--content.default-page h2, body.page-template-default .wrapper__inner--content.default-page h3, body.page-template-default .wrapper__inner--content.default-page h4, body.page-template-default .wrapper__inner--content.default-page h5 {
  font-weight: 500;
}
body.page-template-default .wrapper__inner--content.default-page img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product a.wc-block-components-product-name {
  color: #313030;
}
@media (max-width: 767px) {
  body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
    padding-bottom: 38px;
    display: flex;
    align-items: flex-end;
  }
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-sale-badge {
  display: none;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-cart__submit a {
  display: inline-block;
  text-align: center;
  background-color: #C5B6A1;
  color: #313030;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*# sourceMappingURL=app.css.map */
