@keyframes slidedown {
  from {
    transform: translateY(-125px);
  }
  to {
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4 {
  font-family: "Fredoka", sans-serif;
}

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

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

body {
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #888;
  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: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media (min-width: 1200px) {
  body:before {
    display: none;
  }
}

div.product {
  list-style: none;
  border: 1px solid #e5e5e5;
  height: 100%;
  background-color: #FFF;
}
div.product .thumbnail-wrapper {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  z-index: 10;
  padding: 12px;
  overflow: hidden;
  background-color: #FFF;
}
div.product .thumbnail-wrapper:hover .image-flip, div.product .thumbnail-wrapper:focus .image-flip {
  opacity: 1;
  visibility: visible;
}
div.product .thumbnail-wrapper:hover .add-to-cart-wrapper, div.product .thumbnail-wrapper:focus .add-to-cart-wrapper {
  transform: translateY(0);
}
div.product .thumbnail-wrapper .add-to-cart-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 10;
  width: 100%;
  transform: translateY(100px);
  transition: 0.5s;
}
div.product .thumbnail-wrapper .add-to-cart-wrapper button {
  border: none;
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  text-align: center;
  padding: 12px;
  cursor: pointer;
}
div.product .thumbnail-wrapper .add-to-cart-wrapper button:hover svg, div.product .thumbnail-wrapper .add-to-cart-wrapper button:focus svg {
  fill: #004e98;
}
div.product .thumbnail-wrapper .add-to-cart-wrapper button svg {
  width: auto;
  height: 20px;
  vertical-align: bottom;
  fill: #000;
  transition: 0.5s;
}
div.product .thumbnail-wrapper .add-to-cart-wrapper button.loading .load-icon {
  display: block;
}
div.product .thumbnail-wrapper .add-to-cart-wrapper button.loading .cart-icon {
  display: none;
}
div.product .thumbnail-wrapper .add-to-cart-wrapper button .load-icon {
  display: none;
}
div.product .thumbnail-wrapper img {
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
div.product .thumbnail-wrapper .image-flip {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
div.product .thumbnail-wrapper .out-of-stock {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px;
  background-color: #FFF;
  border: 1px solid #e5e5e5;
}
div.product .thumbnail-wrapper .out-of-stock p {
  font-size: 0.875rem;
  color: #000;
  font-weight: 500;
}
div.product .thumbnail-wrapper .sale-percentage {
  position: absolute;
  left: 0;
  top: 12px;
  background-color: #ca0815;
  padding: 4px;
  color: #FFF;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.675rem;
}
div.product .thumbnail-wrapper .sale-percentage:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 13px solid #ca0815;
  left: 100%;
  right: auto;
  position: absolute;
  top: 0;
}
div.product .thumbnail-wrapper .sale-percentage:after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 13px solid #ca0815;
  left: 100%;
  right: auto;
  position: absolute;
  top: 0;
}
div.product .thumbnail-wrapper .release-date {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ca0815;
  padding: 6px;
}
div.product .thumbnail-wrapper .release-date p {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 600;
}
div.product .info-wrapper {
  padding: 12px;
  text-align: center;
  background-color: #FFF;
  height: auto;
}
div.product .info-wrapper h3 a {
  color: #323232;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
}
div.product .info-wrapper span.price {
  display: block;
  margin-top: 12px;
  color: #ca0815;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
div.product .info-wrapper span.price del {
  color: #888;
  font-weight: 500;
}
div.product .info-wrapper span.price ins {
  text-decoration: none;
}

body .topbar {
  background-color: #004e98;
  display: none;
}
@media (min-width: 1200px) {
  body .topbar {
    display: block;
  }
}
body .topbar__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
}
body .topbar__inner--left p, body .topbar__inner--left a, body .topbar__inner--right p, body .topbar__inner--right a {
  color: #FFF;
  font-size: 0.875rem;
}
body .topbar__inner--left a:hover, body .topbar__inner--left a:focus, body .topbar__inner--right a:hover, body .topbar__inner--right a:focus {
  color: #f2ce00;
}
body .topbar__inner--left p {
  display: flex;
  align-items: center;
}
body .topbar__inner--left p svg {
  width: 16px;
  height: auto;
  vertical-align: bottom;
  fill: #FFF;
  margin-right: 12px;
}
body .navigation {
  background-color: #FFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
body .navigation__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 768px) {
  body .navigation__inner {
    padding: 0 24px;
  }
}
body .navigation__inner--hamburger {
  width: 33.33333%;
}
@media (min-width: 1200px) {
  body .navigation__inner--hamburger {
    display: none;
  }
}
body .navigation__inner--hamburger svg {
  width: 24px;
  height: auto;
  vertical-align: bottom;
}
body .navigation__inner--logo {
  width: 33.3333%;
  text-align: center;
}
@media (min-width: 1200px) {
  body .navigation__inner--logo {
    width: 16.66666%;
    text-align: left;
  }
}
body .navigation__inner--logo img {
  max-width: 50px;
  height: auto;
  width: 100%;
  vertical-align: bottom;
}
@media (min-width: 1200px) {
  body .navigation__inner--logo img {
    max-width: 100px;
  }
}
body .navigation__inner--nav {
  width: 50%;
  padding: 0 24px;
  display: none;
}
@media (min-width: 1200px) {
  body .navigation__inner--nav {
    display: block;
  }
}
body .navigation__inner--nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
body .navigation__inner--nav ul li {
  margin-right: 24px;
}
body .navigation__inner--nav ul li:last-child {
  margin-right: 0;
}
body .navigation__inner--nav ul li a {
  color: #888;
  font-size: 0.875rem;
}
body .navigation__inner--nav ul li a:hover, body .navigation__inner--nav ul li a:focus {
  color: #004e98;
}
body .navigation__inner--nav ul li.current-menu-item a, body .navigation__inner--nav ul li.current-page-ancestor a {
  color: #004e98;
}
body .navigation__inner--actions {
  width: 33.33333%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
body .navigation__inner--actions .search, body .navigation__inner--actions .account, body .navigation__inner--actions .search-mobile {
  margin-right: 6px;
}
@media (min-width: 768px) {
  body .navigation__inner--actions .search-mobile {
    display: none;
  }
}
body .navigation__inner--actions .search {
  max-width: 300px;
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  body .navigation__inner--actions .search {
    display: block;
  }
}
body .navigation__inner--actions .search .wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
}
body .navigation__inner--actions .search .wrapper input {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 7px;
  padding-left: 14px;
  font-size: 1rem;
}
body .navigation__inner--actions .search .wrapper input:focus {
  outline: 0;
}
body .navigation__inner--actions .search .wrapper button {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
}
body .navigation__inner--actions .search .wrapper button .search-icon, body .navigation__inner--actions .search .wrapper button .loading {
  display: none;
}
body .navigation__inner--actions .search .wrapper button .visible {
  display: block !important;
}
body .navigation__inner--actions .search .wrapper button svg {
  width: 18px;
  height: auto;
  cursor: pointer;
  vertical-align: bottom;
  fill: #000;
}
body .navigation__inner--actions .account {
  display: none;
}
@media (min-width: 1200px) {
  body .navigation__inner--actions .account {
    display: block;
  }
}
body .navigation__inner--actions .account .wrapper, body .navigation__inner--actions .cart .wrapper, body .navigation__inner--actions .search-mobile .wrapper {
  border: 1px solid #ddd;
  border-radius: 7px;
  transition: 0.5s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
body .navigation__inner--actions .account .wrapper:hover, body .navigation__inner--actions .account .wrapper:focus, body .navigation__inner--actions .cart .wrapper:hover, body .navigation__inner--actions .cart .wrapper:focus, body .navigation__inner--actions .search-mobile .wrapper:hover, body .navigation__inner--actions .search-mobile .wrapper:focus {
  background-color: #f2ce00;
}
body .navigation__inner--actions .account .wrapper .count, body .navigation__inner--actions .cart .wrapper .count, body .navigation__inner--actions .search-mobile .wrapper .count {
  position: absolute;
  top: 3px;
  right: 3px;
  border-radius: 5px;
  font-size: 0.675rem;
  width: 16px;
  height: 16px;
  background-color: #ca0815;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  line-height: 1;
}
body .navigation__inner--actions .account .wrapper svg, body .navigation__inner--actions .cart .wrapper svg, body .navigation__inner--actions .search-mobile .wrapper svg {
  width: 18px;
  height: auto;
  vertical-align: bottom;
  fill: #000;
}
body .navigation__inner--actions .search {
  position: relative;
}
body .navigation__inner--actions .search__results {
  position: absolute;
  width: 370px;
  padding-top: 24px;
  top: 100%;
  right: 0;
}
body .navigation__inner--actions .search__results.active .results-container {
  opacity: 1;
  visibility: visible;
}
body .navigation__inner--actions .search__results .results-container {
  background-color: #FFF;
  padding: 0 24px;
  width: 100%;
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body .navigation__inner--actions .search__results .results-container .no-results {
  padding: 24px 0;
}
body .navigation__inner--actions .search__results .results-container .no-results h3 {
  color: #000;
  font-size: 1.125rem;
}
body .navigation__inner--actions .search__results .results-container .top-heading {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .navigation__inner--actions .search__results .results-container .top-heading p {
  font-size: 0.875rem;
}
body .navigation__inner--actions .search__results .results-container .items .item {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .navigation__inner--actions .search__results .results-container .items .item .item__inner {
  display: flex;
  flex-wrap: wrap;
}
body .navigation__inner--actions .search__results .results-container .items .item .item__inner--left {
  width: 60px;
}
body .navigation__inner--actions .search__results .results-container .items .item .item__inner--left img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1/1;
  object-fit: contain;
}
body .navigation__inner--actions .search__results .results-container .items .item .item__inner--right {
  width: calc(100% - 60px);
  padding-left: 12px;
}
body .navigation__inner--actions .search__results .results-container .items .item .item__inner--right p {
  font-size: 0.875rem;
  color: #888;
}
body .navigation__inner--actions .search__results .results-container .items .item .item__inner--right .price {
  display: block;
  color: #ca0815;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Fredoka", sans-serif;
}
body .navigation__inner--actions .search__results .results-container .items .item .item__inner--right .price del {
  color: #888;
  font-weight: 500;
}
body .navigation__inner--actions .search__results .results-container .items .item .item__inner--right .price ins {
  text-decoration: none;
}
body .navigation__inner--actions .search__results .results-container .more-items {
  padding: 12px 0;
}
body .navigation__inner--actions .search__results .results-container .more-items a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 0.875rem;
}
body .navigation__inner--actions .search__results .results-container .more-items a svg {
  width: 12px;
  height: auto;
  vertical-align: bottom;
  fill: #000;
  margin-left: 12px;
}
body .navigation__inner--actions .cart {
  position: relative;
  z-index: 10;
}
body .navigation__inner--actions .cart .window {
  position: absolute;
  top: 100%;
  right: 0;
  width: 370px;
  padding-top: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body .navigation__inner--actions .cart .window.open {
  opacity: 1;
  visibility: visible;
}
body .navigation__inner--actions .cart .window .shopping-cart {
  background-color: #FFF;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 24px;
  position: relative;
}
body .navigation__inner--actions .cart .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 .navigation__inner--actions .cart .window .shopping-cart.loading:before {
  opacity: 1;
  visibility: visible;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner {
  width: 100%;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .top-bar .title h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
}
body .navigation__inner--actions .cart .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 .navigation__inner--actions .cart .window .shopping-cart__inner .top-bar .close svg {
  width: 12px;
  height: auto;
  fill: #000;
}
body .navigation__inner--actions .cart .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 .navigation__inner--actions .cart .window .shopping-cart__inner .items::-webkit-scrollbar {
  display: none;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .no-items {
  padding: 12px 0;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .no-items p {
  font-size: 0.875rem;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .image {
  width: 60px;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: bottom;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .remove {
  width: 18px;
  display: flex;
  align-items: center;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .remove svg {
  width: 18px;
  height: auto;
  cursor: pointer;
  vertical-align: bottom;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content {
  width: calc(100% - 78px);
  padding: 0 12px;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .title a {
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .price {
  margin-left: 12px;
  display: block;
  color: #ca0815;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .price del {
  color: #888;
  font-weight: 500;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .price ins {
  text-decoration: none;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper {
  width: 96px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  height: 34px;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus, body .navigation__inner--actions .cart .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 .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus svg, body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus svg {
  width: 12px;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus {
  border-right: 1px solid #e5e5e5;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus {
  border-left: 1px solid #e5e5e5;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity {
  width: 44px;
  float: none;
  height: 100%;
  margin: 0;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input::-webkit-outer-spin-button,
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  -moz-appearance: textfield;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  color: #000;
  text-align: center;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input:focus {
  outline: 0;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .totals {
  padding: 12px 0 0 0;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .totals p {
  font-size: 0.875rem;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .totals p strong {
  color: #ca0815;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .buttons {
  padding: 0 0 12px 0;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .buttons .button {
  margin-top: 12px;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .buttons .button:last-child a {
  background-color: #f5f5f5;
  border-color: #e5e5e5;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .buttons .button a {
  background-color: #ffd900;
  color: #000;
  border: 1px solid transparent;
  font-weight: 400;
  transition: 0.5s;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  display: block;
  padding: 12px 24px;
}
body .navigation__inner--actions .cart .window .shopping-cart__inner .buttons .button a:hover, body .navigation__inner--actions .cart .window .shopping-cart__inner .buttons .button a:focus {
  color: #FFF;
  background-color: #004e98;
}
body .breadcrumbs {
  background-color: #f5f5f5;
  width: 100%;
}
body .breadcrumbs__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px;
}
body .breadcrumbs__inner p {
  color: #888;
  font-size: 0.875rem;
}
body .breadcrumbs__inner p a {
  color: #000;
}
body .breadcrumbs__inner p a:hover, body .breadcrumbs__inner p a:focus {
  color: #004e98;
}
body .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 320px;
  width: 100%;
  background-color: #FFF;
  z-index: 2147483649;
  height: 100%;
  transition: 0.5s;
  transform: translateX(-320px);
}
@media (min-width: 1200px) {
  body .mobile-menu {
    display: none;
  }
}
body .mobile-menu.open {
  transform: translateX(0);
}
body .mobile-menu__top {
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
body .mobile-menu__top .mobile-menu-close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ddd;
}
body .mobile-menu__top .mobile-menu-close svg {
  width: 24px;
  height: auto;
  vertical-align: bottom;
}
body .mobile-menu__top .search-placeholder {
  width: calc(100% - 48px);
  display: flex;
  flex-wrap: wrap;
}
body .mobile-menu__top .search-placeholder .left {
  width: calc(100% - 48px);
  height: 48px;
  border: none;
  padding: 0 12px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
body .mobile-menu__top .search-placeholder .right {
  width: 48px;
  height: 48px;
  background-color: #ffd900;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .mobile-menu__top .search-placeholder .right svg {
  width: 24px;
  height: auto;
  fill: #000;
}
body .mobile-menu__top .search-placeholder .right .search-icon {
  display: none;
}
body .mobile-menu__top .search-placeholder .right .search-icon.visible {
  display: block;
}
body .mobile-menu__top .search-placeholder .right .loading {
  display: none;
}
body .mobile-menu__top .search-placeholder .right .loading.visible {
  display: block;
}
body .mobile-menu .menu-actions {
  background-color: #f5f5f5;
  padding: 12px 24px 24px 24px;
}
body .mobile-menu .menu-actions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .mobile-menu .menu-actions ul li {
  margin: 12px 0 0 0;
}
body .mobile-menu .menu-actions ul li a {
  display: flex;
  align-items: center;
}
body .mobile-menu .menu-actions ul li a .icon {
  width: 16px;
}
body .mobile-menu .menu-actions ul li a .icon svg {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
body .mobile-menu .menu-actions ul li a .text {
  font-size: 0.875rem;
  color: #000;
  padding-left: 12px;
}
body .mobile-menu .mobile-nav .title {
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
  text-align: center;
  color: #000;
  font-size: 0.875rem;
}
body .mobile-menu .mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .mobile-menu .mobile-nav ul li a {
  text-align: left;
  border-bottom: 1px solid #ddd;
  padding: 12px;
  display: block;
  color: #000;
  font-size: 0.875rem;
}
body .mobile-menu .mobile-nav ul li a:hover, body .mobile-menu .mobile-nav ul li a:focus {
  color: #ffd900;
}
body .mobile-menu .mobile-nav ul li.current_page_item a {
  color: #ffd900;
}

body .banner-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: 0.5s;
}
body .banner-popup.open {
  opacity: 1;
  visibility: visible;
}
body .banner-popup__inner {
  max-width: 720px;
  margin: 0 auto;
  background-color: #ca0815;
  padding: 24px;
  text-align: center;
}
body .banner-popup__inner p {
  color: #FFF;
}
body .footer {
  background-color: #004e98;
}
body .footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 0 48px 0;
}
body .footer__inner .column {
  padding: 0 24px;
}
body .footer__inner .column .block {
  margin-top: 48px;
}
body .footer__inner .column p.title {
  color: #FFF;
  font-weight: 500;
}
body .footer__inner .column form {
  max-width: 300px;
}
body .footer__inner .column form .form-group {
  display: flex;
  flex-wrap: wrap;
}
body .footer__inner .column form .form-group .input-wrapper, body .footer__inner .column form .form-group .button-wrapper {
  height: 48px;
}
body .footer__inner .column form .form-group .input-wrapper input, body .footer__inner .column form .form-group .input-wrapper button, body .footer__inner .column form .form-group .button-wrapper input, body .footer__inner .column form .form-group .button-wrapper button {
  width: 100%;
  border: none;
  height: 100%;
}
body .footer__inner .column form .form-group .input-wrapper input:focus, body .footer__inner .column form .form-group .input-wrapper button:focus, body .footer__inner .column form .form-group .button-wrapper input:focus, body .footer__inner .column form .form-group .button-wrapper button:focus {
  outline: 0;
}
body .footer__inner .column form .form-group .input-wrapper {
  width: calc(100% - 48px);
}
body .footer__inner .column form .form-group .input-wrapper input {
  font-size: 0.875rem;
  padding: 0 12px;
  color: #555;
  border-radius: 5px 0px 0px 5px;
}
body .footer__inner .column form .form-group .input-wrapper input::placeholder {
  font-size: 0.875rem;
}
body .footer__inner .column form .form-group .button-wrapper {
  width: 48px;
}
body .footer__inner .column form .form-group .button-wrapper button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffd900;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 0px 5px 5px 0px;
}
body .footer__inner .column form .form-group .button-wrapper button:hover, body .footer__inner .column form .form-group .button-wrapper button:focus {
  background-color: #f2ce00;
}
body .footer__inner .column form .form-group .button-wrapper button svg {
  width: 18px;
  height: auto;
}
body .footer__inner--top {
  display: flex;
  flex-wrap: wrap;
}
body .footer__inner--top .column {
  width: 100%;
}
@media (min-width: 1024px) {
  body .footer__inner--top .column {
    width: 33.333%;
  }
}
body .footer__inner--top .column form, body .footer__inner--top .column .images, body .footer__inner--top .column .big-image {
  margin-top: 12px;
}
body .footer__inner--top .column .images {
  display: flex;
  flex-wrap: wrap;
}
body .footer__inner--top .column .images .image {
  width: 50%;
}
body .footer__inner--top .column .images .image:first-child {
  padding-right: 24px;
}
body .footer__inner--top .column .images .image img {
  max-width: 125px;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body .footer__inner--top .column .big-image img {
  max-width: 100%;
  height: auto;
}
body .footer__inner--columns {
  display: flex;
  flex-wrap: wrap;
}
body .footer__inner--columns .column {
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 1024px) {
  body .footer__inner--columns .column {
    width: 33.333%;
  }
}
body .footer__inner--columns .column .block {
  width: 100%;
  margin-top: 48px;
}
body .footer__inner--columns .column .block .contact-block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  align-items: center;
}
body .footer__inner--columns .column .block .contact-block .icon {
  width: 12px;
  height: auto;
}
body .footer__inner--columns .column .block .contact-block .icon svg {
  width: 100%;
  height: auto;
  fill: #FFF;
  vertical-align: middle;
}
body .footer__inner--columns .column .block .contact-block .text {
  width: calc(100% - 16px);
  padding-left: 12px;
}
body .footer__inner--columns .column .block .contact-block .text p {
  font-size: 0.875rem;
  color: #8DA3C5;
}
body .footer__inner--columns .column .block .contact-block .text p strong {
  color: #FFF;
}
body .footer__inner--columns .column .block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .footer__inner--columns .column .block ul li {
  font-size: 0.875rem;
  color: #8DA3C5;
  line-height: 1.5;
  margin-top: 12px;
}
body .footer__inner--columns .column .block ul li a {
  font-size: 0.875rem;
  color: #8DA3C5;
}
body .footer__inner--columns .column .block ul li a:hover, body .footer__inner--columns .column .block ul li a:focus {
  color: #FFF;
}
body .footer__inner--columns .column.two-blocks {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body .footer__inner--columns .column.two-blocks .block {
    width: 50%;
  }
}
body .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}
body .footer__bottom--inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 12px 24px;
}
body .footer__bottom--inner p {
  color: #8DA3C5;
  font-size: 0.875rem;
}
body .footer__bottom--inner p a, body .footer__bottom--inner p strong {
  font-weight: 500;
  color: #FFF;
}
body .account-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body .account-popup.open {
  opacity: 1;
  visibility: visible;
}
body .account-popup__inner {
  background-color: #FFF;
  max-width: 470px;
  width: 100%;
  margin: 30px auto;
  padding: 48px 24px 24px 24px;
  position: relative;
  z-index: 10;
}
body .account-popup__inner .account-popup-close {
  position: absolute;
  width: 32px;
  cursor: pointer;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -8px;
  background-color: #FFF;
  top: -8px;
}
body .account-popup__inner .account-popup-close svg {
  width: 12px;
  height: auto;
}
body .account-popup__inner .login-or-register {
  display: flex;
  justify-content: center;
}
body .account-popup__inner .login-or-register .login, body .account-popup__inner .login-or-register .register {
  margin: 0 12px;
}
body .account-popup__inner .login-or-register .login span, body .account-popup__inner .login-or-register .register span {
  font-size: 1.25rem;
  color: #888;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 500;
}
body .account-popup__inner .login-or-register .login.active span, body .account-popup__inner .login-or-register .register.active span {
  color: #000;
}
body .account-popup__inner h2 {
  display: none;
}
body .account-popup__inner form.login, body .account-popup__inner form.register {
  margin: 0;
  border: none;
  padding: 0;
}
body .account-popup__inner form.login label, body .account-popup__inner form.register label {
  font-size: 0.875rem;
}
body .account-popup__inner form.login input[type=text], body .account-popup__inner form.login input[type=email], body .account-popup__inner form.login input[type=password], body .account-popup__inner form.register input[type=text], body .account-popup__inner form.register input[type=email], body .account-popup__inner form.register input[type=password] {
  height: 42px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 12px;
}
body .account-popup__inner form.login .woocommerce-form-login__rememberme, body .account-popup__inner form.register .woocommerce-form-login__rememberme {
  display: none;
}
body .account-popup__inner form.login button, body .account-popup__inner form.register button {
  width: 100%;
  background-color: #ffd900;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  height: 42px;
  font-size: 0.875rem;
  font-weight: 400;
  transition: 0.5s;
}
body .account-popup__inner form.login button:hover, body .account-popup__inner form.login button:focus, body .account-popup__inner form.register button:hover, body .account-popup__inner form.register button:focus {
  background-color: #004e98;
  color: #FFF;
}
body .account-popup__inner form.login p a, body .account-popup__inner form.register p a {
  color: #ffd900;
}
body .account-popup__inner form.login .woocommerce-privacy-policy-text, body .account-popup__inner form.register .woocommerce-privacy-policy-text {
  margin: 12px 0;
}
body .account-popup__inner form.login .woocommerce-privacy-policy-text p, body .account-popup__inner form.register .woocommerce-privacy-policy-text p {
  font-size: 0.875rem;
}
body .account-popup__inner form.login .lost_password, body .account-popup__inner form.register .lost_password {
  text-align: center;
  margin-top: 12px;
}
body .account-popup__inner form.login .lost_password a, body .account-popup__inner form.register .lost_password a {
  font-size: 0.875rem;
  color: #004e98;
}
body .account-popup__inner form.login .lost_password a:hover, body .account-popup__inner form.login .lost_password a:focus, body .account-popup__inner form.register .lost_password a:hover, body .account-popup__inner form.register .lost_password a:focus {
  color: #ffd900;
}
body .account-popup__inner .u-columns {
  margin-top: 24px;
}
body .account-popup__inner .u-columns .u-column1, body .account-popup__inner .u-columns .u-column2 {
  width: 100%;
}
body .account-popup__inner .u-columns .u-column2 {
  display: none;
}
body .mobile-flex-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  display: flex;
  padding: 12px;
  flex-wrap: wrap;
  z-index: 1000000;
}
@media (min-width: 768px) {
  body .mobile-flex-menu {
    display: none;
  }
}
body .mobile-flex-menu__column {
  width: 33.3333%;
}
body .mobile-flex-menu__column a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
body .mobile-flex-menu__column a:hover .icon svg, body .mobile-flex-menu__column a:focus .icon svg {
  fill: #ffd900;
}
body .mobile-flex-menu__column a:hover .text, body .mobile-flex-menu__column a:focus .text {
  color: #ffd900;
}
body .mobile-flex-menu__column a .icon {
  width: 100%;
  text-align: center;
}
body .mobile-flex-menu__column a .icon svg {
  transition: 0.5s;
  height: 20px;
  width: auto;
  vertical-align: bottom;
  fill: #000;
}
body .mobile-flex-menu__column a .text {
  transition: 0.5s;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 0.675rem;
  margin-top: 6px;
}
body .mobile-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: #FFF;
  z-index: 2147483649;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}
body .mobile-search.open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  body .mobile-search {
    display: none;
  }
}
body .mobile-search__top {
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
body .mobile-search__top .close-mobile-search {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ddd;
}
body .mobile-search__top .close-mobile-search svg {
  width: 24px;
  height: auto;
  vertical-align: bottom;
}
body .mobile-search__top .search-form {
  width: calc(100% - 48px);
}
body .mobile-search__top .search-form form .wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
body .mobile-search__top .search-form form .wrapper input {
  width: calc(100% - 48px);
  height: 48px;
  border: none;
  padding: 0 12px;
  font-size: 0.875rem;
}
body .mobile-search__top .search-form form .wrapper button {
  width: 48px;
  height: 48px;
  background-color: #ffd900;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .mobile-search__top .search-form form .wrapper button svg {
  width: 24px;
  height: auto;
  fill: #000;
}
body .mobile-search__top .search-form form .wrapper button .search-icon {
  display: none;
}
body .mobile-search__top .search-form form .wrapper button .search-icon.visible {
  display: block;
}
body .mobile-search__top .search-form form .wrapper button .loading {
  display: none;
}
body .mobile-search__top .search-form form .wrapper button .loading.visible {
  display: block;
}
body .mobile-search__wrapper {
  padding: 24px;
}
body .mobile-search__wrapper .results-container .no-results {
  padding: 24px 0;
}
body .mobile-search__wrapper .results-container .no-results h3 {
  color: #000;
  font-size: 1.125rem;
}
body .mobile-search__wrapper .results-container .top-heading {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .mobile-search__wrapper .results-container .top-heading p {
  font-size: 0.875rem;
}
body .mobile-search__wrapper .results-container .items .item {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .mobile-search__wrapper .results-container .items .item .item__inner {
  display: flex;
  flex-wrap: wrap;
}
body .mobile-search__wrapper .results-container .items .item .item__inner--left {
  width: 60px;
}
body .mobile-search__wrapper .results-container .items .item .item__inner--left img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1/1;
  object-fit: contain;
}
body .mobile-search__wrapper .results-container .items .item .item__inner--right {
  width: calc(100% - 60px);
  padding-left: 12px;
}
body .mobile-search__wrapper .results-container .items .item .item__inner--right p {
  font-size: 0.875rem;
  color: #888;
}
body .mobile-search__wrapper .results-container .items .item .item__inner--right .price {
  display: block;
  color: #ca0815;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Fredoka", sans-serif;
}
body .mobile-search__wrapper .results-container .items .item .item__inner--right .price del {
  color: #888;
  font-weight: 500;
}
body .mobile-search__wrapper .results-container .items .item .item__inner--right .price ins {
  text-decoration: none;
}
body .mobile-search__wrapper .results-container .more-items {
  padding: 12px 0;
}
body .mobile-search__wrapper .results-container .more-items a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 0.875rem;
}
body .mobile-search__wrapper .results-container .more-items a svg {
  width: 12px;
  height: auto;
  vertical-align: bottom;
  fill: #000;
  margin-left: 12px;
}

body.page-template-home .banner {
  width: 100%;
  min-height: 480px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide {
  height: auto;
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  object-position: center bottom;
  filter: blur(15px);
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content .button {
    position: absolute;
    bottom: 36px;
    right: 24px;
    z-index: 10;
  }
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content .button a {
  display: inline-block;
  background-color: #ffd900;
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 5px;
}
@media (min-width: 768px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content .button a {
    font-size: 1.25rem;
  }
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content .button a:hover, body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content .button a:focus {
  background-color: #004e98;
  color: #FFF;
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left {
  width: 60%;
  padding-bottom: 12px;
}
@media (min-width: 1024px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left {
    padding: 48px 0 48px 0;
    padding-right: 124px;
  }
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left h1, body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left h2 {
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left h1, body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left h2 {
    font-size: 2rme;
  }
}
@media (min-width: 1024px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left h1, body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left h2 {
    font-size: 3rem;
  }
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left p {
  color: #FFF;
  margin: 12px 0 0 0;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--left p {
    font-size: 1.125rem;
    margin: 24px 0 0 0;
  }
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right {
  width: 40%;
}
@media (min-width: 1024px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right {
    position: relative;
    z-index: 10;
  }
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right .main-image {
  width: 40%;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right .main-image {
    position: relative;
    z-index: 10;
    width: 100%;
    right: unset;
    bottom: unset;
    display: block;
  }
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right .main-image .small-image {
  position: absolute;
  top: 12px;
  left: -125px;
  z-index: 10;
  display: none;
}
@media (min-width: 1024px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right .main-image .small-image {
    display: block;
  }
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right .main-image .small-image img {
  max-width: 275px;
  height: auto;
  clip-path: none;
}
body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right .main-image img {
  width: 100%;
  clip-path: polygon(0% 100%, 15% 0%, 100% 0%, 85% 100%);
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  max-height: 350px;
}
@media (min-width: 1024px) {
  body.page-template-home .banner .swiper-hero .swiper-wrapper .swiper-slide .inner__content--right .main-image img {
    height: auto;
    max-height: 100%;
  }
}
body.page-template-home .new-sets__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 70px 24px 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  column-gap: 24px;
  row-gap: 24px;
}
@media (min-width: 768px) {
  body.page-template-home .new-sets__inner {
    grid-template-columns: 1fr 1fr;
  }
}
body.page-template-home .new-sets__inner--column {
  width: 100%;
}
body.page-template-home .new-sets__inner--column img {
  border-radius: 10px;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}
body.page-template-home .highlights__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 94px 24px 0 24px;
}
body.page-template-home .highlights__inner--top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
}
body.page-template-home .highlights__inner--top .left {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-template-home .highlights__inner--top .left {
    text-align: left;
    width: auto;
  }
}
body.page-template-home .highlights__inner--top .left h2 {
  color: #000;
  font-size: 2rem;
}
body.page-template-home .highlights__inner--top .right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 768px) {
  body.page-template-home .highlights__inner--top .right {
    width: auto;
    margin-top: 0;
    justify-content: flex-end;
  }
}
body.page-template-home .highlights__inner--top .right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .highlights__inner--top .right ul li {
  margin-right: 32px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.5s;
}
body.page-template-home .highlights__inner--top .right ul li:last-child {
  margin-right: 0;
}
body.page-template-home .highlights__inner--top .right ul li.active {
  color: #ffd900;
}
body.page-template-home .highlights__inner--top .right ul li:hover, body.page-template-home .highlights__inner--top .right ul li:focus {
  color: #ffd900;
}
body.page-template-home .highlights__inner--items {
  margin-top: 24px;
}
body.page-template-home .highlights__inner--items .woocommerce {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  column-gap: 24px;
  row-gap: 24px;
}
@media (min-width: 375px) {
  body.page-template-home .highlights__inner--items .woocommerce {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  body.page-template-home .highlights__inner--items .woocommerce {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  body.page-template-home .highlights__inner--items .woocommerce {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
body.page-template-home .highlights__inner--more {
  margin-top: 24px;
  text-align: center;
}
body.page-template-home .highlights__inner--more .inner {
  display: inline-block;
}
body.page-template-home .highlights__inner--more .inner a {
  display: flex;
  font-size: 0.875rem;
  align-items: center;
  color: #888;
  justify-content: center;
}
body.page-template-home .highlights__inner--more .inner a:hover, body.page-template-home .highlights__inner--more .inner a:focus {
  color: #004e98;
}
body.page-template-home .highlights__inner--more .inner a:hover svg, body.page-template-home .highlights__inner--more .inner a:focus svg {
  fill: #004e98;
}
body.page-template-home .highlights__inner--more .inner a svg {
  width: 16px;
  height: auto;
  fill: #888;
  margin-left: 12px;
  transition: 0.5s;
}
body.page-template-home .series {
  margin-top: 94px;
  background-color: #F5F5F5;
}
body.page-template-home .series__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 94px 24px;
}
body.page-template-home .series__inner--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  body.page-template-home .series__inner--top {
    flex-wrap: wrap;
  }
}
body.page-template-home .series__inner--top .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .series__inner--top .left {
    width: auto;
  }
}
body.page-template-home .series__inner--top .left h2 {
  color: #000;
  font-size: 2rem;
}
body.page-template-home .series__inner--top .right {
  margin-top: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .series__inner--top .right {
    width: auto;
    text-align: right;
    margin-top: 0;
  }
}
body.page-template-home .series__inner--top .right .inner {
  display: inline-block;
}
body.page-template-home .series__inner--top .right .inner a {
  display: flex;
  font-size: 0.875rem;
  align-items: center;
  color: #888;
  justify-content: center;
}
body.page-template-home .series__inner--top .right .inner a:hover, body.page-template-home .series__inner--top .right .inner a:focus {
  color: #004e98;
}
body.page-template-home .series__inner--top .right .inner a:hover svg, body.page-template-home .series__inner--top .right .inner a:focus svg {
  fill: #004e98;
}
body.page-template-home .series__inner--top .right .inner a svg {
  width: 16px;
  height: auto;
  fill: #888;
  margin-left: 12px;
  transition: 0.5s;
}
body.page-template-home .series__inner--items {
  margin-top: 24px;
  position: relative;
  z-index: 10;
}
body.page-template-home .series__inner--items .swiper-series {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 10;
}
body.page-template-home .series__inner--items .swiper-series .swiper-wrapper .swiper-slide .inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 12px;
}
body.page-template-home .series__inner--items .swiper-series .swiper-wrapper .swiper-slide .inner:hover .button span, body.page-template-home .series__inner--items .swiper-series .swiper-wrapper .swiper-slide .inner:focus .button span {
  background-color: #004e98;
  color: #FFF;
}
body.page-template-home .series__inner--items .swiper-series .swiper-wrapper .swiper-slide .inner img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 15px;
}
body.page-template-home .series__inner--items .swiper-series .swiper-wrapper .swiper-slide .inner .button {
  margin-top: -12px;
  width: 100%;
  text-align: center;
  padding: 0 12px;
}
body.page-template-home .series__inner--items .swiper-series .swiper-wrapper .swiper-slide .inner .button span {
  background-color: #ffd900;
  color: #000;
  font-family: "Fredoka", sans-serif;
  display: inline-block;
  transform: matrix3d(1, 0, 0, 0.0014, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  font-weight: 700;
  max-width: 100%;
  border-radius: 7px;
  position: relative;
  padding: 12px 24px;
  left: 10px;
  right: auto;
  transition: 0.5s;
}
body.page-template-home .series__inner--items .swiper-series .swiper-wrapper .swiper-slide .inner .button span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #ca0815;
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: #ca0815;
  bottom: -7px;
  left: -6px;
  border-radius: 4px 0 4px 8px;
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  transition: 0.5s;
}
body.page-template-home .series__inner--items .series-next, body.page-template-home .series__inner--items .series-prev {
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 7px;
  align-items: center;
  background-color: #FFF;
  justify-content: center;
  position: absolute;
  top: calc(50% - 24px);
  z-index: 100;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.5s;
  display: none;
}
@media (min-width: 1200px) {
  body.page-template-home .series__inner--items .series-next, body.page-template-home .series__inner--items .series-prev {
    display: flex;
  }
}
body.page-template-home .series__inner--items .series-next:hover, body.page-template-home .series__inner--items .series-next:focus, body.page-template-home .series__inner--items .series-prev:hover, body.page-template-home .series__inner--items .series-prev:focus {
  background-color: #004e98;
}
body.page-template-home .series__inner--items .series-next:hover svg, body.page-template-home .series__inner--items .series-next:focus svg, body.page-template-home .series__inner--items .series-prev:hover svg, body.page-template-home .series__inner--items .series-prev:focus svg {
  fill: #FFF;
}
body.page-template-home .series__inner--items .series-next svg, body.page-template-home .series__inner--items .series-prev svg {
  width: 18px;
  transition: 0.5s;
  height: auto;
  vertical-align: bottom;
}
body.page-template-home .series__inner--items .series-prev {
  left: -24px;
}
@media (min-width: 1400px) {
  body.page-template-home .series__inner--items .series-prev {
    left: -72px;
  }
}
body.page-template-home .series__inner--items .series-prev svg {
  transform: rotate(180deg);
}
body.page-template-home .series__inner--items .series-next {
  right: -24px;
}
@media (min-width: 1400px) {
  body.page-template-home .series__inner--items .series-next {
    right: -72px;
  }
}
body.page-template-home .series__inner--items .series-pagination {
  text-align: center;
  margin-top: 24px;
}
body.page-template-home .series__inner--items .series-pagination span {
  width: 12px;
  height: 12px;
}
body.page-template-home .series__inner--items .series-pagination span.swiper-pagination-bullet-active {
  background-color: #ffd900;
}
body.page-template-home .seo__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 94px 24px;
}
body.page-template-home .seo__inner a {
  color: #004e98;
}
body.page-template-home .seo__inner a:hover, body.page-template-home .seo__inner a:focus {
  color: #ffd900;
}
body.page-template-home .seo__inner--top h2 {
  font-size: 2rem;
  color: #000;
}
body.page-template-home .seo__inner--top p, body.page-template-home .seo__inner--top ul, body.page-template-home .seo__inner--top ol {
  margin: 24px 0 0 0;
}
body.page-template-home .seo__inner--top p, body.page-template-home .seo__inner--top li {
  line-height: 1.5;
}
body.page-template-home .seo__inner--top p a, body.page-template-home .seo__inner--top li a {
  text-decoration: underline;
}
body.page-template-home .seo__inner--tabs {
  margin-top: 24px;
}
body.page-template-home .seo__inner--tabs .tabs-navigation {
  margin-bottom: -1px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .seo__inner--tabs .tabs-navigation .tab.open span {
  border-color: #d5d8dc;
  border-bottom: 1px solid #FFF;
}
body.page-template-home .seo__inner--tabs .tabs-navigation .tab span {
  cursor: pointer;
  display: inline-block;
  padding: 20px 24px;
  font-weight: 700;
  color: #000;
  border: 1px solid transparent;
}
body.page-template-home .seo__inner--tabs .tabs-content {
  border: 1px solid #d5d8dc;
  padding: 25px 24px 24px 24px;
}
body.page-template-home .seo__inner--tabs .tabs-content .tab-content {
  display: none;
}
body.page-template-home .seo__inner--tabs .tabs-content .tab-content.open {
  display: block;
}
body.page-template-home .seo__inner--tabs .tabs-content .tab-content h1, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h2, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h3, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h4 {
  color: #000;
}
body.page-template-home .seo__inner--tabs .tabs-content .tab-content h1, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h2, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h3, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h4, body.page-template-home .seo__inner--tabs .tabs-content .tab-content p, body.page-template-home .seo__inner--tabs .tabs-content .tab-content ul, body.page-template-home .seo__inner--tabs .tabs-content .tab-content ol {
  margin: 12px 0 0 0;
}
body.page-template-home .seo__inner--tabs .tabs-content .tab-content h1:first-child, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h2:first-child, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h3:first-child, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h4:first-child, body.page-template-home .seo__inner--tabs .tabs-content .tab-content p:first-child, body.page-template-home .seo__inner--tabs .tabs-content .tab-content ul:first-child, body.page-template-home .seo__inner--tabs .tabs-content .tab-content ol:first-child {
  margin-top: 0;
}
body.page-template-home .seo__inner--tabs .tabs-content .tab-content h1 strong, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h2 strong, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h3 strong, body.page-template-home .seo__inner--tabs .tabs-content .tab-content h4 strong, body.page-template-home .seo__inner--tabs .tabs-content .tab-content p strong, body.page-template-home .seo__inner--tabs .tabs-content .tab-content ul strong, body.page-template-home .seo__inner--tabs .tabs-content .tab-content ol strong {
  color: #000;
}

body.woocommerce-shop .woocommerce-wrapper, body.tax-product_cat .woocommerce-wrapper, body.tax-product_tag .woocommerce-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 24px;
}
body.woocommerce-shop .woocommerce-wrapper__inner, body.tax-product_cat .woocommerce-wrapper__inner, body.tax-product_tag .woocommerce-wrapper__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-shop .woocommerce-wrapper__inner .open-filter, body.tax-product_cat .woocommerce-wrapper__inner .open-filter, body.tax-product_tag .woocommerce-wrapper__inner .open-filter {
  position: fixed;
  bottom: 24px;
  left: 0;
  background-color: #ffd900;
  width: 48px;
  height: 48px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .open-filter, body.tax-product_cat .woocommerce-wrapper__inner .open-filter, body.tax-product_tag .woocommerce-wrapper__inner .open-filter {
    display: none;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .open-filter svg, body.tax-product_cat .woocommerce-wrapper__inner .open-filter svg, body.tax-product_tag .woocommerce-wrapper__inner .open-filter svg {
  width: 24px;
  height: auto;
  vertical-align: bottom;
  fill: #333;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar, body.tax-product_tag .woocommerce-wrapper__inner .sidebar {
  background-color: #FFF;
  width: 100%;
}
@media (max-width: 767px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar, body.tax-product_tag .woocommerce-wrapper__inner .sidebar {
    position: fixed;
    padding: 24px;
    z-index: 2147483648;
    overflow-y: scroll;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.5s;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar.open, body.tax-product_cat .woocommerce-wrapper__inner .sidebar.open, body.tax-product_tag .woocommerce-wrapper__inner .sidebar.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar, body.tax-product_tag .woocommerce-wrapper__inner .sidebar {
    width: 25%;
    padding-right: 24px;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .close-filter, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .close-filter, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .close-filter {
  background-color: #ffd900;
  color: #333;
  text-align: center;
  padding: 12px 24px;
  font-size: 1rem;
  transition: 0.5s;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .close-filter:hover, body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .close-filter:focus, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .close-filter:hover, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .close-filter:focus, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .close-filter:hover, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .close-filter:focus {
  color: #FFF;
  background-color: #004e98;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module:nth-child(6), body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module:nth-child(6), body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module:nth-child(6) {
  border-bottom: 0;
  margin: 0;
  padding: 0;
  display: none;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module:nth-child(6), body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module:nth-child(6), body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module:nth-child(6) {
    display: block;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module img, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module img, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet {
  margin-bottom: 0;
  width: 100%;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-reset, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-reset, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-reset {
  display: none !important;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-wrap .noUi-target, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-wrap .noUi-target, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-wrap .noUi-target {
  border: 1px solid #ddd;
  background-color: transparent;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-wrap .noUi-target .noUi-base .noUi-connects .noUi-connect, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-wrap .noUi-target .noUi-base .noUi-connects .noUi-connect, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-wrap .noUi-target .noUi-base .noUi-connects .noUi-connect {
  background-color: #ffd900;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-label, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-label, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-slider-label {
  color: #000;
  font-size: 0.875rem;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet select, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet select, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet select {
  width: 100%;
  border: none;
  padding-right: 12px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet select:focus, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet select:focus, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet select:focus {
  outline: 0;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox {
  padding-left: 24px;
  background: none;
  position: relative;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox.checked:before, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox.checked:before, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox.checked:before {
  background-color: #004e98;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox:before, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox:before, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox span, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox span, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-checkbox span {
  color: #000;
  font-size: 0.875rem;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-toggle, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-toggle, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .facetwp-facet .facetwp-toggle {
  color: #004e98;
  font-weight: 700;
  font-size: 0.875rem;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .sidebar-module .wp-block-heading, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .sidebar-module .wp-block-heading, body.tax-product_tag .woocommerce-wrapper__inner .sidebar .sidebar-module .wp-block-heading {
  font-size: 1.25rem;
  color: #000;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content, body.tax-product_cat .woocommerce-wrapper__inner .content, body.tax-product_tag .woocommerce-wrapper__inner .content {
  width: 100%;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content, body.tax-product_cat .woocommerce-wrapper__inner .content, body.tax-product_tag .woocommerce-wrapper__inner .content {
    width: 75%;
    padding-left: 24px;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .woocommerce-notices-wrapper, body.tax-product_cat .woocommerce-wrapper__inner .content .woocommerce-notices-wrapper, body.tax-product_tag .woocommerce-wrapper__inner .content .woocommerce-notices-wrapper {
  width: 100%;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .content .facetwp-facet, body.tax-product_tag .woocommerce-wrapper__inner .content .facetwp-facet {
  margin: 0 0 24px 0;
  font-size: 0.875rem;
  color: #000;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .woocommerce-ordering, body.tax-product_cat .woocommerce-wrapper__inner .content .woocommerce-ordering, body.tax-product_tag .woocommerce-wrapper__inner .content .woocommerce-ordering {
  display: none;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .products, body.tax-product_cat .woocommerce-wrapper__inner .content .products, body.tax-product_tag .woocommerce-wrapper__inner .content .products {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  column-gap: 24px;
  row-gap: 24px;
}
@media (min-width: 375px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .products, body.tax-product_cat .woocommerce-wrapper__inner .content .products, body.tax-product_tag .woocommerce-wrapper__inner .content .products {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .products, body.tax-product_cat .woocommerce-wrapper__inner .content .products, body.tax-product_tag .woocommerce-wrapper__inner .content .products {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .products .product, body.tax-product_cat .woocommerce-wrapper__inner .content .products .product, body.tax-product_tag .woocommerce-wrapper__inner .content .products .product {
  width: 100%;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .pagination .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .content .pagination .facetwp-facet, body.tax-product_tag .woocommerce-wrapper__inner .content .pagination .facetwp-facet {
  margin: 24px 0 0 0;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .pagination .facetwp-facet .facetwp-pager, body.tax-product_cat .woocommerce-wrapper__inner .content .pagination .facetwp-facet .facetwp-pager, body.tax-product_tag .woocommerce-wrapper__inner .content .pagination .facetwp-facet .facetwp-pager {
  display: flex;
  justify-content: center;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .woocommerce-pagination, body.tax-product_cat .woocommerce-wrapper__inner .content .woocommerce-pagination, body.tax-product_tag .woocommerce-wrapper__inner .content .woocommerce-pagination {
  display: none;
}

body.single-product .navigation {
  position: relative;
}
body.single-product .woocommerce-wrapper__inner .content > .product {
  border: none;
  height: auto;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  z-index: 100000;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product.sticky {
  transform: translateY(0);
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 6px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--left .image {
  width: 70px;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--left .content {
  width: calc(100% - 70px);
  padding-left: 24px;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--left .content h2 {
  color: #000;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--left .content .in-stock {
  color: #07930b;
  font-size: 0.875rem;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right {
  display: flex;
  align-items: center;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right .price {
  display: block;
  color: #ca0815;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right .price del {
  color: #888;
  font-weight: 500;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right .price ins {
  text-decoration: none;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right .button {
  margin-left: 12px;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right .button .out-of-stock {
  color: #ca0815;
  font-weight: 400;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right .button .add-to-cart {
  background-color: #ffd900;
  color: #000;
  border: none;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 12px;
  transition: 0.5s;
  cursor: pointer;
}
body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right .button .add-to-cart:hover, body.single-product .woocommerce-wrapper__inner .content .sticky-product__inner--right .button .add-to-cart:focus {
  color: #FFF;
  background-color: #004e98;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 24px;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 480px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery {
    width: 50%;
    max-width: 100%;
  }
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .gallery-navigation {
  width: 100%;
  order: 2;
}
@media (min-width: 1200px) {
  body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .gallery-navigation {
    width: 85px;
    padding-right: 16px;
    order: 1;
  }
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .gallery-navigation .thumbnail-pagination {
  display: flex;
  flex-wrap: wrap;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .gallery-navigation .swiper-pagination-bullet {
  width: 100%;
  border-radius: 0;
  background-color: transparent;
  margin-right: 4px;
  margin-top: 16px;
  height: auto;
  opacity: 1;
  position: relative;
  z-index: 10;
  border: 1px solid transparent;
}
@media (min-width: 375px) {
  body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .gallery-navigation .swiper-pagination-bullet {
    margin-right: 16px;
  }
}
@media (min-width: 1200px) {
  body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .gallery-navigation .swiper-pagination-bullet {
    margin: 0 0 16px 0;
  }
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .gallery-navigation .swiper-pagination-bullet-active {
  border-color: #004e98;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .gallery-navigation .swiper-pagination-bullet img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: contain;
  object-position: center center;
  vertical-align: bottom;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .swiper-productgallery {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
  z-index: 10;
  order: 1;
  border: 1px solid #004e98;
}
@media (min-width: 1200px) {
  body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .swiper-productgallery {
    order: 2;
    width: calc(100% - 85px);
  }
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .swiper-productgallery .swiper-wrapper .swiper-slide {
  width: 100%;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .gallery .swiper-productgallery .swiper-wrapper .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center center;
  vertical-align: bottom;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary {
  margin: 50px 0 0 0;
  width: 100%;
  float: none;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary {
    width: 50%;
    padding-left: 40px;
    margin-top: 0;
  }
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary h1 {
  color: #000;
  font-weight: 500;
  font-size: 1.4375rem;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary p.price {
  display: block;
  color: #ca0815;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Fredoka", sans-serif;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary p.price del {
  color: #888;
  font-weight: 500;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary p.price ins {
  text-decoration: none;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .woocommerce-product-details__short-description p {
  font-size: 0.93rem;
  line-height: 1.7;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .woocommerce-product-details__short-description p, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .woocommerce-product-details__short-description ul, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .woocommerce-product-details__short-description ol {
  margin: 12px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .woocommerce-product-details__short-description ul {
  padding: 0;
  list-style: none;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .woocommerce-product-details__short-description ul li {
  line-height: 1.7;
  font-size: 0.93rem;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .stock {
  font-size: 0.93rem;
  margin: 12px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .stock.in-stock {
  color: #07930b;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart {
  margin: 24px 0 0 0;
  display: flex;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper {
  width: 96px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  height: 42px;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .minus, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .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 .content-wrapper__inner .summary .cart .number-wrapper .minus svg, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .plus svg {
  width: 12px;
  height: auto;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .minus {
  border-right: 1px solid #e5e5e5;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .plus {
  border-left: 1px solid #e5e5e5;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .quantity {
  width: 44px;
  float: none;
  height: 100%;
  margin: 0;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .quantity input::-webkit-outer-spin-button,
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  -moz-appearance: textfield;
  font-family: "Fredoka", sans-serif;
  font-size: 1.125rem;
  color: #000;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .number-wrapper .quantity input:focus {
  outline: 0;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .button {
  margin-left: 10px;
  background-color: #ffd900;
  color: #000;
  border: none;
  height: 42px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 0 24px;
  transition: 0.5s;
  cursor: pointer;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .button:hover, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .cart .button:focus {
  color: #FFF;
  background-color: #004e98;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta {
  border-top: 1px solid #e5e5e5;
  padding-top: 24px;
  margin-top: 24px;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .posted_in, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .tagged_as {
  display: block;
  font-weight: 500;
  color: #000;
  font-size: 0.875rem;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .posted_in a, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .tagged_as a {
  font-weight: 400;
  color: #888;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .posted_in a:hover, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .posted_in a:focus, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .tagged_as a:hover, body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .tagged_as a:focus {
  color: #ffd900;
}
body.single-product .woocommerce-wrapper__inner .content-wrapper__inner .summary .product_meta .tagged_as {
  margin-top: 12px;
}
body.single-product .woocommerce-wrapper__inner .product-description {
  max-width: 1320px;
  margin: 0 auto 48px auto;
  width: 100%;
  padding: 0 24px;
}
body.single-product .woocommerce-wrapper__inner .product-description .inner {
  border-top: 1px solid #e5e5e5;
  padding-top: 48px;
}
body.single-product .woocommerce-wrapper__inner .product-description .inner ul, body.single-product .woocommerce-wrapper__inner .product-description .inner ol, body.single-product .woocommerce-wrapper__inner .product-description .inner p, body.single-product .woocommerce-wrapper__inner .product-description .inner h1, body.single-product .woocommerce-wrapper__inner .product-description .inner h2, body.single-product .woocommerce-wrapper__inner .product-description .inner h3, body.single-product .woocommerce-wrapper__inner .product-description .inner h4 {
  margin: 12px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner .product-description .inner ul:first-child, body.single-product .woocommerce-wrapper__inner .product-description .inner ol:first-child, body.single-product .woocommerce-wrapper__inner .product-description .inner p:first-child, body.single-product .woocommerce-wrapper__inner .product-description .inner h1:first-child, body.single-product .woocommerce-wrapper__inner .product-description .inner h2:first-child, body.single-product .woocommerce-wrapper__inner .product-description .inner h3:first-child, body.single-product .woocommerce-wrapper__inner .product-description .inner h4:first-child {
  margin-top: 0;
}
body.single-product .woocommerce-wrapper__inner .product-description .inner a {
  color: #888;
  text-decoration: underline;
}
body.single-product .woocommerce-wrapper__inner .product-description .inner a:hover, body.single-product .woocommerce-wrapper__inner .product-description .inner a:focus {
  color: #ffd900;
}
body.single-product .woocommerce-wrapper__inner .product-description .inner p, body.single-product .woocommerce-wrapper__inner .product-description .inner li {
  line-height: 1.5;
}
body.single-product .woocommerce-wrapper__inner .related {
  background-color: #f5f5f5;
  padding: 48px 0;
  overflow: hidden;
}
body.single-product .woocommerce-wrapper__inner .related__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
body.single-product .woocommerce-wrapper__inner .related__inner > h2 {
  font-size: 2rem;
  color: #000;
  margin: 0 0 24px 0;
  font-weight: 600;
}
body.single-product .woocommerce-wrapper__inner .related__inner .swiper-products {
  overflow: hidden;
  width: 100%;
  position: relative;
}
body.single-product .woocommerce-wrapper__inner .related__inner .swiper-products .swiper-wrapper .swiper-slide {
  height: auto;
}
body.single-product .woocommerce-wrapper__inner .related__inner .product-next, body.single-product .woocommerce-wrapper__inner .related__inner .product-prev {
  position: absolute;
  top: 50%;
  trasnform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #FFF;
  border: 1px solid #e5e5e5;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body.single-product .woocommerce-wrapper__inner .related__inner .product-next svg, body.single-product .woocommerce-wrapper__inner .related__inner .product-prev svg {
  width: 24px;
  height: auto;
  color: #000;
}
body.single-product .woocommerce-wrapper__inner .related__inner .product-next {
  right: -48px;
}
body.single-product .woocommerce-wrapper__inner .related__inner .product-prev {
  left: -48px;
}
body.single-product .woocommerce-wrapper__inner .related__inner .products-pagination {
  display: flex;
  justify-content: center;
  margin: 24px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner .related__inner .products-pagination span {
  width: 14px;
  height: 14px;
}
body.single-product .woocommerce-wrapper__inner .related__inner .products-pagination span.swiper-pagination-bullet-active {
  background-color: #ffd900;
}

body.page-template-cardlist .banner {
  width: 100%;
  height: 250px;
}
body.page-template-cardlist .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
body.page-template-cardlist .series__items {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px 0 24px;
}
body.page-template-cardlist .series__items:last-child {
  padding-bottom: 48px;
}
body.page-template-cardlist .series__items .top-bar-title h2 {
  color: #000;
  font-size: 2rem;
}
body.page-template-cardlist .series__items .description p, body.page-template-cardlist .series__items .description ol, body.page-template-cardlist .series__items .description ul {
  margin: 12px 0 0 0;
}
body.page-template-cardlist .series__items .description p, body.page-template-cardlist .series__items .description li {
  line-height: 1.5;
}
body.page-template-cardlist .series__items--logos {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 12px;
  row-gap: 12px;
  margin-top: 24px;
}
@media (min-width: 375px) {
  body.page-template-cardlist .series__items--logos {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  body.page-template-cardlist .series__items--logos {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  body.page-template-cardlist .series__items--logos {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
body.page-template-cardlist .series__items--logos .logo {
  border: 1px solid #ddd;
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-cardlist .series__items--logos .logo:hover img, body.page-template-cardlist .series__items--logos .logo:focus img {
  transform: scale(1.1);
}
body.page-template-cardlist .series__items--logos .logo img {
  transition: 0.5s;
  width: 100%;
  max-height: 200px;
  height: auto;
  object-fit: contain;
}

body.page-template-cards .banner {
  width: 100%;
  height: 250px;
}
body.page-template-cards .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
body.page-template-cards .intro__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px 0 24px;
}
body.page-template-cards .intro__inner p, body.page-template-cards .intro__inner ul, body.page-template-cards .intro__inner ol {
  margin: 24px 0 0 0;
}
body.page-template-cards .intro__inner p:first-child, body.page-template-cards .intro__inner ul:first-child, body.page-template-cards .intro__inner ol:first-child {
  margin-top: 0;
}
body.page-template-cards .intro__inner p strong, body.page-template-cards .intro__inner ul strong, body.page-template-cards .intro__inner ol strong {
  color: #000;
}
body.page-template-cards .intro__inner p a, body.page-template-cards .intro__inner ul a, body.page-template-cards .intro__inner ol a {
  color: #ffd900;
}
body.page-template-cards .cards__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
  display: grid;
  column-gap: 12px;
  row-gap: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 400px) {
  body.page-template-cards .cards__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  body.page-template-cards .cards__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  body.page-template-cards .cards__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  body.page-template-cards .cards__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
body.page-template-cards .cards__inner--card img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body.page-template-cards .cards__inner--card p {
  text-align: center;
  font-size: 0.875rem;
  color: #000;
  margin: 12px 0 0 0;
}

body.page-template-contact .banner {
  width: 100%;
  height: 250px;
}
body.page-template-contact .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
body.page-template-contact .content__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-contact .content__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-contact .content__inner--left {
    width: 40%;
    padding-right: 24px;
  }
}
body.page-template-contact .content__inner--left h1, body.page-template-contact .content__inner--left h2, body.page-template-contact .content__inner--left h3, body.page-template-contact .content__inner--left h4 {
  margin: 32px 0 0 0;
  color: #000;
}
body.page-template-contact .content__inner--left h1:first-child, body.page-template-contact .content__inner--left h2:first-child, body.page-template-contact .content__inner--left h3:first-child, body.page-template-contact .content__inner--left h4:first-child {
  margin-top: 0;
}
body.page-template-contact .content__inner--left h1 {
  font-size: 2.5rem;
}
body.page-template-contact .content__inner--left h2 {
  font-size: 2.25rem;
}
body.page-template-contact .content__inner--left h3 {
  font-size: 2rem;
}
body.page-template-contact .content__inner--left h4 {
  font-size: 1.75rem;
}
body.page-template-contact .content__inner--left p {
  margin: 12px 0 0 0;
}
body.page-template-contact .content__inner--left p a {
  color: #ffd900;
}
body.page-template-contact .content__inner--left strong {
  color: #000;
}
body.page-template-contact .content__inner--left .opening-times ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 400px;
  width: 100%;
}
body.page-template-contact .content__inner--left .opening-times ul li {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
body.page-template-contact .content__inner--left .opening-times ul li .left p {
  color: #000;
}
body.page-template-contact .content__inner--left .socials {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-contact .content__inner--left .socials__social {
  margin-right: 12px;
}
body.page-template-contact .content__inner--left .socials__social:first-child a {
  background-color: #E4405F;
}
body.page-template-contact .content__inner--left .socials__social:nth-child(2) a {
  background-color: #000000;
}
body.page-template-contact .content__inner--left .socials__social:nth-child(3) a {
  background-color: #004E98;
}
body.page-template-contact .content__inner--left .socials__social:nth-child(4) {
  margin-left: 0;
}
body.page-template-contact .content__inner--left .socials__social:nth-child(4) a {
  background-color: #25D366;
}
body.page-template-contact .content__inner--left .socials__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ca0815;
}
body.page-template-contact .content__inner--left .socials__social a svg {
  height: 24px;
  width: auto;
  fill: #FFF;
}
body.page-template-contact .content__inner--right {
  margin-top: 48px;
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-contact .content__inner--right {
    width: 60%;
    padding-left: 24px;
    margin-top: 0;
  }
}
body.page-template-contact .content__inner--right form .form-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
body.page-template-contact .content__inner--right form .form-group:last-child {
  margin-bottom: 0;
}
body.page-template-contact .content__inner--right form .form-group .column {
  width: 100%;
  position: relative;
  margin-bottom: 12px;
}
body.page-template-contact .content__inner--right form .form-group .column:last-child {
  margin-bottom: 0;
}
body.page-template-contact .content__inner--right form .form-group input, body.page-template-contact .content__inner--right form .form-group textarea {
  width: 100%;
}
body.page-template-contact .content__inner--right form .form-group input[type=text], body.page-template-contact .content__inner--right form .form-group input[type=email], body.page-template-contact .content__inner--right form .form-group input[type=password] {
  height: 42px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 12px;
}
body.page-template-contact .content__inner--right form .form-group textarea {
  height: 100px;
  max-width: 100%;
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px;
}
body.page-template-contact .content__inner--right form .form-group input[type=submit] {
  width: 100%;
  background-color: #ffd900;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  height: 42px;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  transition: 0.5s;
}
body.page-template-contact .content__inner--right form .form-group input[type=submit]:hover, body.page-template-contact .content__inner--right form .form-group input[type=submit]:focus {
  background-color: #004e98;
  color: #FFF;
}
@media (min-width: 1024px) {
  body.page-template-contact .content__inner--right form .form-group.two .column {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  body.page-template-contact .content__inner--right form .form-group.two .column:first-child {
    padding-right: 6px;
  }
}
@media (min-width: 1024px) {
  body.page-template-contact .content__inner--right form .form-group.two .column:nth-child(2) {
    padding-left: 6px;
  }
}
body.page-template-contact .content__inner--right form .form-group .wpcf7-spinner {
  position: absolute;
  bottom: -24px;
  left: 0;
}
body.page-template-contact .maps__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px 48px 24px;
}
body.page-template-contact .maps__inner iframe {
  width: 100%;
  border: none;
  height: 300px;
}

body.woocommerce-cart .wrapper__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items thead tr th {
  color: #000;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items tbody tr .price {
  display: block;
  color: #ca0815;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items tbody tr .price del {
  color: #888;
  font-weight: 500;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items tbody tr .price ins {
  text-decoration: none;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items tbody tr td.wc-block-cart-item__product a {
  color: #000;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wc-block-components-totals-item__label {
  color: #000;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wc-block-components-totals-item__value {
  display: block;
  color: #ca0815;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wc-block-components-totals-item__value del {
  color: #888;
  font-weight: 500;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wc-block-components-totals-item__value ins {
  text-decoration: none;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
  color: #000;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-block form button {
  background-color: #ffd900;
  color: #000;
  border: none;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 12px;
  transition: 0.5s;
  cursor: pointer;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-block form button:hover, body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-block form button:focus {
  color: #FFF;
  background-color: #004e98;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container a {
  display: block;
  background-color: #ffd900;
  color: #000;
  border: none;
  width: 100%;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 12px;
  transition: 0.5s;
  cursor: pointer;
}
body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container a:hover, body.woocommerce-cart .wrapper__inner--content .wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container a:focus {
  color: #FFF;
  background-color: #004e98;
}

body.woocommerce-checkout .navigation {
  position: relative;
}
body.woocommerce-checkout .wrapper__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 24px 24px 48px 24px;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-fields-block form .screen-reader-text {
  color: #000;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-fields-block form h1, body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-fields-block form h2, body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-fields-block form h3 {
  color: #000;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-fields-block form .wc-block-components-checkout-place-order-button {
  background-color: #ffd900;
  color: #000;
  border: none;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 12px;
  transition: 0.5s;
  text-align: center;
  cursor: pointer;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-fields-block form .wc-block-components-checkout-place-order-button:hover, body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-fields-block form .wc-block-components-checkout-place-order-button:focus {
  color: #FFF;
  background-color: #004e98;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-fields-block form .wc-block-components-checkout-place-order-button .wc-block-components-button__text {
  display: flex;
  justify-content: center;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title p {
  color: #000;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name {
  color: #000;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon form button {
  background-color: #ffd900;
  color: #000;
  border: none;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 12px;
  transition: 0.5s;
  cursor: pointer;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon form button:hover, body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon form button:focus {
  color: #FFF;
  background-color: #004e98;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__label {
  color: #000;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__value {
  display: block;
  color: #ca0815;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__value del {
  color: #888;
  font-weight: 500;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__value ins {
  text-decoration: none;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .price {
  display: block;
  color: #ca0815;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .price del {
  color: #888;
  font-weight: 500;
}
body.woocommerce-checkout .wrapper__inner .wc-block-checkout .wp-block-woocommerce-checkout-totals-block .wp-block-woocommerce-checkout-order-summary-block .price ins {
  text-decoration: none;
}

body.woocommerce-account .wrapper__inner {
  border-top: 1px solid #ebebeb;
}
body.woocommerce-account .wrapper__inner .woocommerce {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
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;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 {
    width: 50%;
  }
}
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;
  margin: 0 0 24px 0;
  color: #000;
  font-size: 2rem;
}
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;
  padding-bottom: 0;
  border-radius: 0;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p.lost_password a, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.lost_password 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-column2 form p.lost_password a:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p.lost_password a:focus {
  text-decoration: none;
}
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 button, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p button {
  width: 100%;
  float: none;
  max-width: 100%;
  margin-right: 0;
  color: #FFF;
  transition: 0.5s;
  height: 42px;
  font-weight: 500;
  border-radius: 0;
  background-color: #004e98;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p button:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form p button:focus, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p button:hover, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form p button:focus {
  color: #000;
  background-color: #ffd900;
  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;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form label, body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form label {
  font-size: 0.875rem;
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form input[type=text], body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form input[type=email], body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 form input[type=password], body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form input[type=text], body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form input[type=email], body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 form input[type=password] {
  height: 42px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 12px;
}
@media (min-width: 768px) {
  body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column1 {
    padding-right: 12px;
  }
}
body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 {
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.woocommerce-account .wrapper__inner .woocommerce #customer_login .u-column2 {
    margin-top: 0;
    padding-left: 12px;
  }
}
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 {
  background-color: #FFF;
  padding: 25px;
  margin-bottom: 25px;
}
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: #ffd900;
}
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: #ffd900;
}
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;
  color: #000;
  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: #004e98;
  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: #ffd900;
  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: #ffd900;
  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;
  color: #ca0815;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .right del {
  color: #888;
  font-weight: 500;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .right ins {
  text-decoration: none;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item {
  padding: 10px 0;
  border-top: 1px solid #888;
  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: #004e98;
  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: #004e98;
  font-weight: 500;
  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, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price p {
  color: #ca0815;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .sale-price p del, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price p del {
  color: #888;
  font-weight: 500;
}
body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .sale-price p ins, body.woocommerce-account .wrapper__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price p ins {
  text-decoration: none;
}
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: #888;
  font-weight: 500;
}
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 #888;
  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 #888;
  border-bottom: 1px solid #888;
  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.page-template-default .wrapper__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 36px 24px 48px 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-default .wrapper__inner--content {
  width: 100%;
}
body.page-template-default .wrapper__inner--content.default-page .woocommerce {
  margin-top: 12px;
}
body.page-template-default .wrapper__inner--content.default-page .woocommerce form {
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(229, 229, 229);
  padding: 24px;
}
body.page-template-default .wrapper__inner--content.default-page .woocommerce form > p {
  color: #000;
  font-size: 0.875rem;
}
body.page-template-default .wrapper__inner--content.default-page .woocommerce form .form-row {
  margin-bottom: 0;
  width: 100%;
  padding: 0;
  margin: 12px 0 0 0;
}
@media (min-width: 768px) {
  body.page-template-default .wrapper__inner--content.default-page .woocommerce form .form-row.form-row-first {
    width: 50%;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  body.page-template-default .wrapper__inner--content.default-page .woocommerce form .form-row.form-row-last {
    width: 50%;
    padding-left: 12px;
  }
}
body.page-template-default .wrapper__inner--content.default-page .woocommerce form .form-row input {
  border: 1px solid rgb(221, 221, 221);
  background-color: #FFF;
  padding: 0 12px;
  height: 42px;
  font-size: 0.875rem;
}
body.page-template-default .wrapper__inner--content.default-page .woocommerce form .form-row input::placeholder {
  font-size: 0.875rem;
}
body.page-template-default .wrapper__inner--content.default-page .woocommerce form .form-row button {
  float: right;
  background-color: #ffd900;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 24px;
}
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 {
  margin: 12px 0 0 0;
  color: #000;
}
body.page-template-default .wrapper__inner--content.default-page h1:first-child, body.page-template-default .wrapper__inner--content.default-page h2:first-child, body.page-template-default .wrapper__inner--content.default-page h3:first-child, body.page-template-default .wrapper__inner--content.default-page h4:first-child {
  margin-top: 0;
}
body.page-template-default .wrapper__inner--content.default-page h1 {
  font-size: 2.5rem;
}
body.page-template-default .wrapper__inner--content.default-page h2 {
  font-size: 2.25rem;
}
body.page-template-default .wrapper__inner--content.default-page h3 {
  font-size: 2rem;
}
body.page-template-default .wrapper__inner--content.default-page h4 {
  font-size: 1.75rem;
}
body.page-template-default .wrapper__inner--content.default-page p {
  margin: 12px 0 0 0;
}
body.page-template-default .wrapper__inner--content.default-page p a {
  color: #ffd900;
}
body.page-template-default .wrapper__inner--content.default-page strong {
  color: #000;
}

body.page-template-sale .items, body.page-template-trending .items {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 24px;
}
@media (min-width: 375px) {
  body.page-template-sale .items, body.page-template-trending .items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  body.page-template-sale .items, body.page-template-trending .items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  body.page-template-sale .items, body.page-template-trending .items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
body.page-template-sale .items .product, body.page-template-trending .items .product {
  width: 100%;
}

body.page-template-faq .faq {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
}
body.page-template-faq .faq__items {
  border: 1px solid #ddd;
  border-top: 0;
  border-bottom: 0;
}
body.page-template-faq .faq__items--item:nth-child(1) .answer {
  display: block;
}
body.page-template-faq .faq__items--item:last-child .answer {
  border-bottom: 1px solid #ddd;
}
body.page-template-faq .faq__items--item .question {
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 12px;
  cursor: pointer;
  border-top: 1px solid #ddd;
}
body.page-template-faq .faq__items--item .question:hover p, body.page-template-faq .faq__items--item .question:focus p {
  color: #ffd900;
}
body.page-template-faq .faq__items--item .question p {
  transition: 0.5s;
  color: #000;
  font-size: 0.875rem;
  line-height: 1;
}
body.page-template-faq .faq__items--item .answer {
  display: none;
  background-color: #F5F5F5;
  padding: 12px 24px 24px 24px;
}
body.page-template-faq .faq__items--item .answer p {
  margin: 12px 0 0 0;
  color: #000;
  font-size: 0.875rem;
}

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