/*!
Theme Name: Boony Theme Template
Theme URI: https://www.boony.co.uk/
Author: Danny Freeman
Author URI: https://dannyfreeman.dev/
Description: Wordpress Theme created by Danny Freeman
Version: 1.2.2
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "DIN Alternate", sans-serif;
}

.post-edit-link {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: black;
  color: white;
  padding: 1em 1.5em;
  z-index: 99;
  transition: all 0.2s ease-in-out 0s;
}
.post-edit-link:hover {
  background-color: #1a1a1a;
  color: white;
}

h1 {
  font-size: 55px;
  line-height: 66px;
  font-weight: 700;
}
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }
}

h2 {
  font-size: 44px;
  line-height: 54px;
  font-weight: 700;
}
@media (max-width: 768px) {
  h2 {
    font-size: 38px;
    line-height: 44px;
  }
}

h3 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
}
@media (max-width: 768px) {
  h3 {
    font-size: 30px;
    line-height: 36px;
  }
}

h4 {
  font-size: 33px;
  line-height: 40px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 24px;
    line-height: 30px;
  }
}

h5 {
  font-size: 26px;
  line-height: 32px;
}
@media (max-width: 768px) {
  h5 {
    font-size: 20px;
    line-height: 24px;
  }
}

p {
  font-size: 18px;
  line-height: 25px;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

.txt--green {
  color: #ABD844;
}
.txt--aqua {
  color: #00BFD6;
}

.account {
  width: 100%;
  margin-bottom: 70px;
}
.account-wrap {
  display: flex;
  gap: 40px;
}
@media all and (max-width: 980px) {
  .account-wrap {
    flex-direction: column;
  }
}
.account-sidebar {
  width: 30%;
  background-color: #FAF7F2;
  display: flex;
  flex-direction: column;
  max-width: 350px;
  border-radius: 12px;
  padding: 40px 20px;
  min-height: 560px;
}
@media all and (max-width: 980px) {
  .account-sidebar {
    width: 100%;
    min-height: unset;
    max-width: unset;
    padding: 20px;
    margin-top: 10px;
  }
}
@media all and (max-width: 980px) {
  .account-sidebar ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.account-sidebar ul li {
  padding: 20px 0;
  font-size: 18px;
}
@media all and (max-width: 980px) {
  .account-sidebar ul li {
    padding: 10px 0;
  }
}
.account-sidebar ul li a {
  text-decoration: none;
  color: black;
}
.account-sidebar ul li a:hover {
  color: #FF6B40;
}
.account-sidebar ul li i {
  font-size: 18px;
  color: #FF6B40;
  margin-right: 10px;
}
.account-content {
  width: 68%;
}
@media all and (max-width: 980px) {
  .account-content {
    width: 100%;
  }
}
.account-details {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.account-details h2 {
  text-transform: capitalize;
  width: 100%;
}
.account-details-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 25px;
}
.account-details-item {
  width: 49%;
  background-color: #FAF7F2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 400px;
}
.account-details-content {
  display: flex;
  align-items: center;
}
.account-details-content i {
  color: #FF6B40;
  font-size: 33px;
  margin-right: 10px;
}
.account-details .fa-chevron-right {
  color: #FF6B40;
  font-size: 18px;
  margin-right: 10px;
}

.banner {
  width: 100%;
  display: flex;
  padding: 65px 0 45px 0;
}
.banner-wrap {
  display: flex;
  flex-direction: column;
}
.banner-wrap p {
  font-size: 33px;
  line-height: 38px;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 980px) {
  .banner-wrap p {
    font-size: 24px;
    line-height: 28px;
  }
}
.banner-links {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media all and (max-width: 650px) {
  .banner-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.banner-links a {
  text-decoration: none;
  color: black;
  font-size: 30px;
}
@media (max-width: 980px) {
  .banner-links a {
    font-size: 24px;
  }
}
.banner-links a i {
  color: #FF6B40;
  margin-right: 10px;
}

.bg--lime {
  background-color: #DCE561;
}
.bg--white {
  background-color: white;
}
.bg--aqua {
  background-color: #00BFD6;
}
.bg--offWhite {
  background-color: #FAF7F2;
}
.bg--navy {
  background-color: #003E51;
}
.bg--yellow {
  background-color: #C8D308;
}
.bg--coral {
  background-color: #FF637D;
}
.bg--orange {
  background-color: #FF6B40;
}

.breadcrumbs-partial {
  display: flex;
  font-size: 14px;
  line-height: 28px;
  color: #808080;
  margin-bottom: 10px;
}
.breadcrumbs-partial a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #808080;
}

.btn--orange, .woocommerce .checkout-order .woocommerce-checkout-payment .button, .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  display: inline-block;
  background-color: #FF6B40;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  padding: 15px 30px;
}
.btn--orange:hover, .woocommerce .checkout-order .woocommerce-checkout-payment .button:hover, .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout:hover {
  background-color: #ff430d;
}
.btn--navy, .woocommerce .woocommerce-cart-form .shop_table .button {
  display: inline-block;
  background-color: #003E51;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  padding: 15px 30px;
  text-align: center;
}
.btn--navy:hover, .woocommerce .woocommerce-cart-form .shop_table .button:hover {
  background-color: #00171e;
}

.categoryIcons {
  display: flex;
  width: 100%;
  padding: 20px 0 30px 0;
}
.categoryIcons-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.categoryIcons-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (max-width: 890px) {
  .categoryIcons-item {
    flex: unset;
    width: 25%;
  }
}
@media all and (max-width: 500px) {
  .categoryIcons-item {
    width: 45%;
  }
}
.categoryIcons-icon i {
  color: #C8D308;
  font-size: 40px;
  margin-bottom: 20px;
}
.categoryIcons a {
  color: black;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
}

.contentBlock {
  width: 100%;
}
.contentBlock-wrap {
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media all and (max-width: 980px) {
  .contentBlock-wrap {
    flex-direction: column-reverse;
    padding: 50px 0;
  }
}
.contentBlock-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media all and (max-width: 980px) {
  .contentBlock-content {
    width: 100%;
  }
}
.contentBlock-content h2 {
  margin-bottom: 20px;
}
.contentBlock-content p {
  margin-bottom: 10px;
}
.contentBlock-content p:first-of-type {
  font-size: 24px;
  line-height: 33px;
}
@media all and (max-width: 980px) {
  .contentBlock-content p:first-of-type {
    font-size: 20px;
    line-height: 28px;
  }
}
.contentBlock-content a {
  margin-top: 20px;
}
.contentBlock-image {
  width: 50%;
}
@media all and (max-width: 980px) {
  .contentBlock-image {
    width: 80%;
  }
}
@media all and (max-width: 600px) {
  .contentBlock-image {
    width: 100%;
    padding: 0;
  }
}
.contentBlock-image img {
  width: 100%;
}
.contentBlock-grid {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media all and (max-width: 980px) {
  .contentBlock-grid {
    width: 100%;
  }
}
.contentBlock-grid-item {
  width: 48%;
  height: 270px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media all and (max-width: 500px) {
  .contentBlock-grid-item {
    height: 250px;
  }
}
.contentBlock-grid-item:hover .contentBlock-grid-content {
  transition: all 0.3s ease;
  opacity: 1;
}
.contentBlock-grid-content {
  opacity: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}
.contentBlock-grid-content h3, .contentBlock-grid-content p, .contentBlock-grid-content a {
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
  color: white;
}
.contentBlock-grid-content h3 {
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 20px;
}
.contentBlock-grid-content p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 400;
}
.contentBlock-grid-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background-color: #003E51;
  z-index: 1;
  opacity: 0.7;
}
.contentBlock--imageRight .contentBlock-wrap {
  flex-direction: row;
}
@media all and (max-width: 980px) {
  .contentBlock--imageRight .contentBlock-wrap {
    flex-direction: column-reverse;
  }
}
.contentBlock--imageLeft .contentBlock-wrap {
  flex-direction: row-reverse;
}
@media all and (max-width: 980px) {
  .contentBlock--imageLeft .contentBlock-wrap {
    flex-direction: column-reverse;
  }
}
.contentBlock--noImage .contentBlock-image {
  display: none;
}
.contentBlock--noImage .contentBlock-content {
  width: 100%;
}
.contentBlock--gridLeft .contentBlock-wrap {
  flex-direction: row;
}
@media all and (max-width: 980px) {
  .contentBlock--gridLeft .contentBlock-wrap {
    flex-direction: column-reverse;
  }
}
.contentBlock--gridRight .contentBlock-wrap {
  flex-direction: row-reverse;
}
@media all and (max-width: 980px) {
  .contentBlock--gridRight .contentBlock-wrap {
    flex-direction: column-reverse;
  }
}
.contentBlock--backgroundImage {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.faqs {
  margin-top: 50px;
  margin-bottom: 100px;
}
.faqs-questions {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faqs-item {
  margin-bottom: 10px;
}
.faqs-item span {
  padding-right: 20px;
}
.faqs-item i {
  color: #FF6B40;
  font-size: 28px;
}
.faqs-button {
  width: 100%;
  padding: 15px;
  background-color: #FAF7F2;
  border: 1px solid #979797;
  border-radius: 6px;
  text-align: left;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faqs-button:hover {
  background: #e9e9e9;
}
.faqs-icon {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}
.faqs-content {
  padding: 15px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #979797;
}
.faqs [x-cloak] {
  display: none !important;
}

.featuredProducts {
  background-color: #FAF7F2;
  width: 100%;
  padding: 70px 0 60px 0;
}
@media all and (max-width: 500px) {
  .featuredProducts {
    padding: 40px 0 30px 0;
  }
}
.featuredProducts-content {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.featuredProducts-content h2 {
  font-size: 33px;
  line-height: 77px;
  margin-right: 30px;
}
@media all and (max-width: 500px) {
  .featuredProducts-content h2 {
    font-size: 28px;
    line-height: 40px;
    margin-right: 0;
  }
}
.featuredProducts-content p {
  font-size: 20px;
  line-height: 28px;
}
@media all and (max-width: 500px) {
  .featuredProducts-content p {
    font-size: 18px;
    line-height: 24px;
  }
}
.featuredProducts-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.featuredProducts-item a {
  margin-top: 20px;
}
.featuredProducts-slide-image {
  margin-bottom: 20px;
  border-radius: 12px;
  width: 100%;
  padding-bottom: 60%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.featuredProducts-slide-image button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
}
.featuredProducts-slide-image button:hover {
  color: #FF6B40;
  cursor: pointer;
}
.featuredProducts-slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.featuredProducts-slide-content h3 {
  font-size: 28px;
  line-height: 77px;
}
.featuredProducts-slide-content .price {
  margin-top: 20px;
}
.featuredProducts-slide-content .price p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}
.featuredProducts-slide-content .price p:last-of-type {
  font-size: 33px;
}
.featuredProducts .swiper-slide {
  width: 30%;
}
.featuredProducts .swiper-slide:first-of-type {
  width: 40%;
}
.featuredProducts .swiper-pagination {
  position: relative;
  bottom: unset;
  text-align: left;
  margin-top: 60px;
}
.featuredProducts .swiper-pagination-bullet {
  width: 70px;
  height: 10px;
  border-radius: 12px;
}
.featuredProducts .swiper-pagination-bullet-active {
  background-color: #FF6B40;
}

.footer {
  background-color: #F7F7F7;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 900px) {
  .footer-main {
    flex-direction: column;
  }
}
.footer-wrap {
  display: flex;
  justify-content: space-evenly;
  width: 65%;
}
@media all and (max-width: 1140px) {
  .footer-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
  }
}
@media all and (max-width: 900px) {
  .footer-wrap {
    width: 100%;
  }
}
.footer-logos {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
@media all and (max-width: 1140px) {
  .footer-logos {
    padding: 20px 0 0 0;
  }
}
.footer-logos li a img {
  max-width: 60px;
  margin-right: 40px;
}
.footer-middle {
  margin-top: 60px;
}
@media all and (max-width: 1140px) {
  .footer-middle {
    margin-top: 30px;
  }
}
.footer-middle .footer-menu {
  display: flex;
  margin-bottom: 10px;
}
@media all and (max-width: 1300px) {
  .footer-middle .footer-menu {
    flex-direction: column;
  }
}
.footer-middle .footer-menu li {
  margin-right: 30px;
}
@media all and (max-width: 1300px) {
  .footer-middle .footer-menu li {
    margin-bottom: 14px;
  }
}
.footer-middle .footer-menu li:first-of-type {
  margin-right: 50px;
}
.footer-middle .footer-menu li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}
.footer-social {
  display: flex;
}
.footer-social li {
  margin-right: 12px;
}
.footer-social li a i {
  color: #FF6B40;
  font-size: 30px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-contact li {
  margin-bottom: 14px;
}
.footer-contact li a {
  font-size: 18px;
  text-decoration: none;
  color: black;
}
.footer-contact li a i {
  color: #FF6B40;
  margin-right: 12px;
  font-size: 21px;
}
.footer-form {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  width: 35%;
}
@media all and (max-width: 1140px) {
  .footer-form {
    width: 50%;
  }
}
@media all and (max-width: 900px) {
  .footer-form {
    padding-top: 30px;
    width: 100%;
    max-width: 600px;
  }
}
.footer-form p {
  color: black;
  margin-bottom: 20px;
}
.footer-form .forminator-custom-form .forminator-row {
  margin-bottom: 10px !important;
  display: flex;
  justify-content: space-between;
}
.footer-form .forminator-custom-form .forminator-row .forminator-col-12 {
  width: 100%;
}
.footer-form .forminator-custom-form .forminator-row .forminator-col-6 {
  width: 49%;
}
.footer-form .forminator-custom-form .forminator-row .forminator-col {
  margin-bottom: unset !important;
}
.footer-form .forminator-custom-form .forminator-row .forminator-field label {
  display: none;
}
.footer-form .forminator-custom-form .forminator-row .forminator-field input, .footer-form .forminator-custom-form .forminator-row .forminator-field textarea {
  font-family: inherit;
  width: 100%;
  padding: 13px 15px;
  border-radius: 5px;
  border: 1px solid #979797;
  font-size: 14px;
}
.footer-form .forminator-custom-form .forminator-row .forminator-field button {
  background-color: #FF6B40;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  margin-bottom: 58px;
}
.footer-form .forminator-edit-module {
  display: none;
}
.footer-bottom {
  background-color: #003E51;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  color: white;
  text-align: center;
  font-size: 14px;
}

.formBlock {
  margin-top: 50px;
  margin-bottom: 100px;
}
.formBlock-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formBlock-content {
  width: 100%;
}
.formBlock-content h2 {
  margin-bottom: 20px;
}
.formBlock-content p {
  margin-bottom: 40px;
}
.formBlock .forminator-module-edit-link {
  display: none;
}
.formBlock-form {
  width: 65%;
}
@media all and (max-width: 1200px) {
  .formBlock-form {
    width: 100%;
  }
}
.formBlock-form .forminator-custom-form .forminator-row .forminator-col .forminator-field label {
  display: none;
}
.formBlock-form .forminator-custom-form .forminator-row .forminator-col .forminator-field input, .formBlock-form .forminator-custom-form .forminator-row .forminator-col .forminator-field textarea {
  border-radius: 6px;
  border-color: #979797;
  padding: 13px 15px;
  font-size: 14px;
  line-height: 26px;
  background-color: #FBFBFB;
}
.formBlock-form .forminator-custom-form .forminator-row .forminator-col .forminator-field button {
  font-size: 18px;
  line-height: 26px;
  padding: 15px 40px;
  border-radius: 6px;
}
.formBlock-details {
  width: 28%;
}
@media all and (max-width: 1200px) {
  .formBlock-details {
    width: 100%;
  }
}
.formBlock-details p {
  font-size: 28px;
  margin-bottom: 20px;
}
.formBlock-details ul li {
  margin-bottom: 20px;
}
.formBlock-details ul li a {
  text-decoration: none;
  color: black;
  font-size: 28px;
}
.formBlock-details ul li a i {
  color: #FF6B40;
  font-size: 33px;
  margin-right: 15px;
}

.grid {
  padding: 30px 0;
  width: 100%;
  display: flex;
}
.grid-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid-item {
  width: 32%;
  margin-bottom: 30px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  text-decoration: none;
}
@media all and (max-width: 768px) {
  .grid-item {
    width: 49%;
  }
}
.grid-item img {
  width: 100%;
}
.grid-content {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-content i {
  margin-right: 20px;
  font-size: 40px;
}
@media all and (max-width: 500px) {
  .grid-content i {
    font-size: 30px;
  }
}
.grid-content p {
  font-size: 24px;
  line-height: 28px;
}
@media all and (max-width: 500px) {
  .grid-content p {
    font-size: 20px;
    line-height: 24px;
  }
}

.container, .woocommerce, .twoImage-wrap, .similarProducts-wrap, .signin-wrap, .savedItems-wrap, .products-wrap, .productCategories-wrap, .product .swiper-pagination, .product-wrap, .popularCategories-wrap, .iconStack-wrap, .hero .swiper-pagination, .hero-wrap, header .nav--bottom ul, header .nav--main div:first-child ul, header .nav--main, header .nav--top ul, .account-wrap, .banner-wrap, .breadcrumbs-partial, .categoryIcons-wrap, .contentBlock-container, .faqs-wrap, .featuredProducts-wrap, .formBlock-wrap, .grid-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10px;
}

.font-lg, header .nav--top ul li a {
  font-size: 22px;
}
@media all and (max-width: 1400px) {
  .font-lg, header .nav--top ul li a {
    font-size: 20px;
  }
}

.font-md, header .nav--main div:nth-child(3) ul li a {
  font-size: 20px;
}
@media all and (max-width: 1400px) {
  .font-md, header .nav--main div:nth-child(3) ul li a {
    font-size: 18px;
  }
}

.font-sm, header .nav--bottom ul li a {
  font-size: 18px;
}
@media all and (max-width: 1400px) {
  .font-sm, header .nav--bottom ul li a {
    font-size: 16px;
  }
}

header .nav--top {
  background-color: #003E51;
  padding: 16px 0 14px 0;
}
header .nav--top ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media all and (max-width: 580px) {
  header .nav--top ul {
    flex-direction: column;
    justify-content: center;
  }
}
header .nav--top ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 580px) {
  header .nav--top ul li:first-child {
    margin-bottom: 10px;
  }
}
header .nav--top ul li a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 1px;
}
@media all and (max-width: 1280px) {
  header .nav--top ul li a {
    font-size: 18px;
  }
}
@media all and (max-width: 580px) {
  header .nav--top ul li a {
    font-size: 14px;
    letter-spacing: 0;
  }
}
header .nav--top ul li a i {
  margin-left: 40px;
  margin-right: 10px;
  font-size: 28px;
  color: #00BFD6;
}
@media all and (max-width: 580px) {
  header .nav--top ul li a i {
    font-size: 18px;
    margin-left: 0;
  }
}
header .nav--main {
  position: relative;
  margin-top: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .nav--main .basket-count {
  position: absolute;
  top: -12px;
  left: -10px;
  background: #003E51;
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 0;
  font-size: 14px;
}
header .nav--main div {
  width: 32%;
}
header .nav--main div ul li a {
  position: relative;
}
header .nav--main div:first-child ul {
  display: flex;
  align-items: center;
}
header .nav--main div:first-child ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
header .nav--main div:first-child ul li a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
}
header .nav--main div:first-child ul li a img {
  max-width: 78px;
}
@media all and (max-width: 1280px) {
  header .nav--main div:first-child ul li a img {
    max-width: 50px;
  }
}
@media all and (max-width: 400px) {
  header .nav--main div:first-child ul li a img {
    max-width: 40px;
  }
}
header .nav--main div:nth-child(2) form {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 1280px) {
  header .nav--main div:nth-child(2) form {
    display: none;
  }
}
header .nav--main div:nth-child(2) form input {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #979797;
  width: 100%;
  max-width: 444px;
  font-size: 16px;
}
header .nav--main div:nth-child(2) form button {
  border: none;
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: transparent;
  cursor: pointer;
}
header .nav--main div:nth-child(2) form button i {
  color: #FF6B40;
  font-size: 28px;
}
header .nav--main div:nth-child(3) {
  display: flex;
  justify-content: flex-end;
}
header .nav--main div:nth-child(3) ul {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 30px;
}
@media all and (max-width: 1280px) {
  header .nav--main div:nth-child(3) ul {
    display: none;
  }
}
header .nav--main div:nth-child(3) ul li {
  display: flex;
}
header .nav--main div:nth-child(3) ul li a {
  display: flex;
  align-items: center;
  color: black;
  text-decoration: none;
}
header .nav--main div:nth-child(3) ul li a i {
  margin-right: 8px;
  max-height: 28px;
  font-size: 25px;
  color: #FF6B40;
}
header .nav--main .nav-icon {
  display: none;
}
header .nav--main .nav-icon:hover {
  cursor: pointer;
}
@media all and (max-width: 1280px) {
  header .nav--main .nav-icon {
    position: absolute;
    top: 20px;
    right: 0px;
    display: flex;
    justify-content: flex-end;
  }
}
header .nav--main .nav-icon-menu {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .nav--main .nav-icon-menu span {
  width: 40px;
  height: 5px;
  background-color: #FF6B40;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: 0.4s;
}
header .nav--main .nav-icon--open span:first-child {
  transform: rotate(45deg);
}
header .nav--main .nav-icon--open span:last-child {
  margin-top: -15px;
  transform: rotate(-45deg);
}
header .nav--main .nav-icon--open span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
}
header .nav--bottom {
  background-color: #003E51;
  padding: 8px 0;
}
header .nav--bottom ul {
  display: flex;
}
@media all and (max-width: 500px) {
  header .nav--bottom ul {
    justify-content: space-between;
  }
}
header .nav--bottom ul li {
  margin-right: 70px;
}
@media all and (max-width: 500px) {
  header .nav--bottom ul li {
    margin-right: 0;
    text-align: center;
  }
}
header .nav--bottom ul li a {
  color: #FFFFFF;
  text-decoration: none;
}

header.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 1000;
}
header.nav-mobile .nav--top ul li a {
  font-size: 16px;
}
header.nav-mobile .nav--top ul li a img {
  max-width: 20px;
}
header.nav-mobile .nav--main {
  flex-direction: column;
  margin-bottom: 0;
}
header.nav-mobile .nav--main div {
  width: 100%;
  max-width: 500px;
}
header.nav-mobile .nav--main div:nth-child(1) {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media all and (max-width: 700px) {
  header.nav-mobile .nav--main div:nth-child(1) {
    padding-top: 40px;
  }
}
header.nav-mobile .nav--main div:nth-child(1) ul {
  justify-content: space-between;
}
header.nav-mobile .nav--main div:nth-child(1) ul li {
  margin-right: 0;
}
header.nav-mobile .nav--main div:nth-child(1) ul li a img {
  max-width: 60px;
}
header.nav-mobile .nav--main div:nth-child(2) {
  margin-bottom: 40px;
}
header.nav-mobile .nav--main div:nth-child(2) form {
  display: block;
}
header.nav-mobile .nav--main div:nth-child(2) form input {
  width: 100%;
  max-width: 100%;
}
header.nav-mobile .nav--main div:nth-child(3) ul {
  display: flex;
  flex-direction: column;
}
header.nav-mobile .nav--main div:nth-child(3) ul li {
  justify-content: center;
  margin-bottom: 20px;
}
header.nav-mobile .nav--main div:nth-child(3) ul li a {
  font-size: 20px;
}
header.nav-mobile .nav--main div:nth-child(3) ul li i {
  display: none;
}
@media all and (max-width: 700px) {
  header.nav-mobile .nav--main .nav-icon {
    top: 0;
  }
}
header.nav-mobile .nav--main .nav-icon-menu {
  margin-top: 0 !important;
  padding-top: 10px !important;
}
header.nav-mobile .nav--bottom {
  padding-top: 0;
  background-color: transparent;
}
header.nav-mobile .nav--bottom ul {
  justify-content: center;
  flex-direction: column;
}
header.nav-mobile .nav--bottom ul li {
  margin-bottom: 20px;
  text-align: center;
  margin-right: 0;
}
header.nav-mobile .nav--bottom ul li a {
  color: black;
  font-size: 20px;
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-wrap {
  padding: 100px 10px;
  position: relative;
  z-index: 2;
  min-height: 350px;
}
.hero-wrap h2, .hero-wrap p {
  width: 100%;
  max-width: 500px;
}
.hero-wrap h2 {
  font-size: 66px;
  line-height: 73px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (max-width: 970px) {
  .hero-wrap h2 {
    font-size: 40px;
    line-height: 44px;
  }
}
.hero-wrap p {
  margin-bottom: 20px;
}
.hero .swiper-pagination {
  position: relative;
  margin-top: -50px;
  margin-bottom: 30px;
  text-align: left;
}
.hero .swiper-pagination-bullet {
  width: 70px;
  height: 9px;
  border-radius: 12px;
}
.hero .swiper-pagination-bullet-active {
  background-color: #FF6B40;
}

.iconStack {
  width: 100%;
}
.iconStack-list {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
@media all and (max-width: 680px) {
  .iconStack-list {
    flex-direction: column;
    align-items: center;
  }
}
.iconStack-item {
  width: 30%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media all and (max-width: 680px) {
  .iconStack-item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.iconStack-item i {
  font-size: 80px;
  color: #FF637D;
}
.iconStack-item img {
  max-width: 90px;
}
.iconStack-item h3 {
  margin-top: auto;
  font-size: 26px;
}

.popularCategories {
  width: 100%;
  padding: 55px 0 100px 0;
}
@media all and (max-width: 750px) {
  .popularCategories {
    padding: 60px 0 40px 0;
  }
}
.popularCategories-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popularCategories-wrap h2 {
  margin-bottom: 20px;
}
.popularCategories-wrap p {
  margin-bottom: 40px;
}
.popularCategories-list {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media all and (max-width: 750px) {
  .popularCategories-list {
    flex-direction: column;
    align-items: center;
  }
}
.popularCategories-item {
  width: 32%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (max-width: 750px) {
  .popularCategories-item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.popularCategories-image {
  width: 100%;
  padding-bottom: 60%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  margin-bottom: 30px;
}
.popularCategories-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.popularCategories-icon i {
  font-size: 38px;
  margin-right: 10px;
}
.popularCategories-icon h4 {
  font-size: 26px;
}

.bg--aqua h2, .bg--aqua h4, .bg--aqua p, .bg--aqua i {
  color: #FFFFFF;
}

.product {
  margin-bottom: 80px;
}
.product-wrap {
  display: flex;
  flex-wrap: wrap;
}
.product-header {
  width: 100%;
}
.product-header h1 {
  font-size: 33px;
  line-height: 66px;
  margin-top: 20px;
}
.product-header p {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 20px;
}
.product-details {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-right: 15px;
}
@media all and (max-width: 980px) {
  .product-details {
    width: 100%;
    margin-bottom: 40px;
  }
}
.product-image {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 50%;
  border: 1px solid #979797;
  border-radius: 12px;
}
.product-swiper {
  width: 100%;
  padding-bottom: 50px !important;
}
.product .swiper-pagination {
  bottom: unset !important;
  top: unset !important;
  margin: 0;
  padding: 0 !important;
  position: relative;
  text-align: left;
}
.product .swiper-pagination-bullet {
  width: 70px;
  height: 9px;
  border-radius: 12px;
}
.product .swiper-pagination-bullet-active {
  background-color: #FF6B40;
}
.product-tabs {
  margin-top: 50px;
  padding-right: 30px;
}
.product-tabs .tab-buttons {
  margin-bottom: 30px;
}
.product-tabs .tab-buttons button {
  background: none;
  border: none;
  font-size: 26px;
  border-right: 1px solid black;
  padding-left: 20px;
  padding-right: 20px;
  color: #B5B5B5;
  cursor: pointer;
}
@media all and (max-width: 1100px) {
  .product-tabs .tab-buttons button {
    font-size: 20px;
  }
}
.product-tabs .tab-buttons button:first-of-type {
  padding-left: 0;
}
.product-tabs .tab-buttons button:last-of-type {
  border-right: none;
}
.product-tabs .tab-buttons .active {
  color: black;
}
.product-tabs .tab-content p {
  margin-bottom: 10px;
}
.product-tabs .tab-content p:first-of-type {
  font-size: 24px;
  line-height: 28px;
}
.product-tabs .tab-panel ul li {
  line-height: 30px;
}
.product-tabs .tab-panel p {
  font-size: 16px;
  line-height: 20px;
}
.product-tabs .tab-panel a {
  text-decoration: none;
  color: black;
}
.product-requirements {
  width: 50%;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 980px) {
  .product-requirements {
    width: 100%;
  }
}
.product-requirements .attribute-option {
  cursor: pointer;
  padding: 8px 12px;
  margin: 5px;
  transition: 0.1s;
}
.product-requirements .attribute-select {
  padding: 20px;
  font-size: 22px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  align-items: center;
  background-color: #faf7f2;
  border-radius: 4px;
  border: none;
  width: 110px;
}
.product-requirements .attribute-select:focus {
  outline: none;
}
.product-requirements .attribute-label {
  position: relative;
  width: 110px;
}
.product-requirements .attribute-label::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f078";
  position: absolute;
  bottom: 15px;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #333;
}
.product-options {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #D1D1D1;
  padding: 40px 0;
}
.product-options:first-of-type {
  padding-top: 0;
}
.product-options h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.product-options ul {
  display: flex;
}
.product-options ul li {
  margin-right: 20px;
  cursor: pointer;
}
.product .selected {
  border: 4px solid #FF6B40;
}
.product-branding ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-branding ul li {
  border: 2px solid #979797;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}
.product-branding ul li div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  z-index: -1;
}
.product-colours ul li {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #979797;
}
.product-sizes ul {
  flex-wrap: wrap;
  gap: 20px;
}
.product-sizes ul li {
  width: 85px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FAF7F2;
  font-size: 22px;
  border-radius: 4px;
}
.product-quantity input {
  background-color: #FAF7F2;
  border: none;
  padding: 20px;
  width: 100%;
  font-size: 22px;
}
.product-total {
  padding: 40px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #D1D1D1;
}
.product-total button {
  border: none;
  padding: 18px 40px;
  border-radius: 6px;
  cursor: pointer;
}
.product-price h3 {
  font-size: 24px;
  line-height: 30px;
}
.product-price p {
  font-size: 33px;
  line-height: 48px;
}
.product .btn--orange, .product .woocommerce .checkout-order .woocommerce-checkout-payment .button, .woocommerce .checkout-order .woocommerce-checkout-payment .product .button, .product .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout, .woocommerce .cart-collaterals .cart_totals .product .wc-proceed-to-checkout {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.product .btn--orange[disabled], .product .woocommerce .checkout-order .woocommerce-checkout-payment [disabled].button, .woocommerce .checkout-order .woocommerce-checkout-payment .product [disabled].button, .product .woocommerce .cart-collaterals .cart_totals [disabled].wc-proceed-to-checkout, .woocommerce .cart-collaterals .cart_totals .product [disabled].wc-proceed-to-checkout {
  background-color: black;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.productCategories {
  width: 100%;
}
.productCategories-wrap p {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 30px;
}
.productCategories-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.productCategories-button {
  background-color: #FAF7F2;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 18px 40px;
  font-size: 18px;
  cursor: pointer;
}
.productCategories-button:nth-child(2) {
  background-color: #DCE561;
}
.productCategories-button-active {
  background-color: #DCE561;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.products {
  margin-top: 40px;
  width: 100%;
}
.products-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}
.products h1 {
  width: 100%;
  margin-bottom: 30px;
}
.products-card {
  display: flex;
  flex-direction: column;
  width: 32%;
  margin-bottom: 30px;
}
@media all and (max-width: 980px) {
  .products-card {
    width: 48%;
  }
}
@media all and (max-width: 500px) {
  .products-card {
    width: 100%;
  }
}
.products-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: black;
}
.products-card-image {
  width: 100%;
  padding-bottom: 60%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid black;
  border-radius: 12px;
  position: relative;
}
.products-card-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.products-card-title {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10px;
}
.products-card-content {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 10px;
}
.products-card-price {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10px;
}
.products .eco-banner {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: green;
}
.products .eco-banner i {
  margin-right: 10px;
  font-size: 24px;
}

.savedItems {
  width: 100%;
  margin: 30px 0 150px 0;
}
.savedItems-wrap {
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 980px) {
  .savedItems-wrap {
    flex-direction: column;
  }
}
.savedItems-wrap h1 {
  font-size: 33px;
  line-height: 40px;
}
.savedItems-wrap p {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 20px;
}
.savedItems-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.savedItems-item {
  width: 32%;
  border: 1px solid #808080;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (max-width: 1250px) {
  .savedItems-item {
    width: 49%;
  }
}
@media all and (max-width: 850px) {
  .savedItems-item {
    width: 100%;
    max-width: 600px;
  }
}
.savedItems-image {
  width: 49%;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media all and (max-width: 430px) {
  .savedItems-image {
    width: 100%;
    margin-bottom: 10px;
  }
}
.savedItems-content {
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media all and (max-width: 430px) {
  .savedItems-content {
    width: 100%;
  }
}
.savedItems-content p {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 10px;
}
.savedItems-content button {
  color: #FF6B40;
  text-align: left;
  background: none;
  border: none;
}
.savedItems-size {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
@media all and (max-width: 430px) {
  .savedItems-size {
    flex-direction: column;
  }
}
.savedItems-size .btn {
  width: 49%;
  border: none;
}
@media all and (max-width: 430px) {
  .savedItems-size .btn {
    width: 100%;
    margin-top: 10px;
  }
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 49%;
}
@media all and (max-width: 430px) {
  .custom-select {
    width: 100%;
  }
}

.select-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  background: #FAF7F2;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}
.select-button i {
  font-size: 20px;
  color: #FF6B40;
}

.select-button:hover {
  background: #e0e0e0;
}

.select-button .icon {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #333;
  stroke-width: 2;
}

.select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.select-dropdown li {
  padding: 10px;
  cursor: pointer;
  list-style: none;
}

.select-dropdown li:hover {
  background: #f0f0f0;
}

[x-show=isOpen] {
  display: block;
}

[x-cloak] {
  display: none !important;
}

.signin {
  width: 100%;
  padding: 40px 0;
}
.signin-wrap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
@media all and (max-width: 980px) {
  .signin-wrap {
    flex-direction: column;
  }
}
.signin-block {
  width: 50%;
  border-radius: 12px;
  background-color: #FAF7F2;
  padding: 40px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  max-width: 600px;
}
@media all and (max-width: 980px) {
  .signin-block {
    width: 100%;
  }
}
.signin-block h2 {
  margin-bottom: 5px;
}
.signin-block p {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 28px;
}
.signin-block .form, .signin-block .woocommerce-form {
  display: flex;
  flex-direction: column;
}
.signin-block .form-col {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.signin-block .form-col label, .signin-block .form-col p, .signin-block .form-col a {
  color: #7D7D7D;
  font-size: 16px;
  line-height: 26px;
}
.signin-block .form-col input {
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #7D7D7D;
}
.signin-block .form-forgotten {
  margin-left: auto;
  text-decoration: none;
}
.signin-block .form button, .signin-block .woocommerce-form button {
  border: none;
}

.forgottenPassword {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(128, 128, 128, 0.5);
  width: 100%;
  height: 100vh;
  z-index: 100;
  justify-content: center;
  align-items: center;
}
.forgottenPassword--active {
  display: flex !important;
}
.forgottenPassword-content {
  background-color: white;
  padding: 30px 45px;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
  position: relative;
}
@media all and (max-width: 700px) {
  .forgottenPassword-content {
    width: 98%;
  }
}
.forgottenPassword-content i {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: #808080;
}
.forgottenPassword-content i:hover {
  cursor: pointer;
}
.forgottenPassword-content h2 {
  font-size: 33px;
  line-height: 66px;
}
@media all and (max-width: 700px) {
  .forgottenPassword-content h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.forgottenPassword-content p {
  font-size: 24px;
  line-height: 32px;
  max-width: 480px;
  width: 100%;
}
@media all and (max-width: 700px) {
  .forgottenPassword-content p {
    font-size: 18px;
    line-height: 26px;
  }
}
.forgottenPassword-content p:last-child {
  font-size: 18px;
}
@media all and (max-width: 700px) {
  .forgottenPassword-content p:last-child {
    font-size: 16px;
    line-height: 24px;
  }
}
.forgottenPassword-content form {
  display: flex;
  width: 100%;
  margin: 30px 0 10px 0;
}
@media all and (max-width: 700px) {
  .forgottenPassword-content form {
    flex-direction: column;
  }
}
.forgottenPassword-content form input {
  font-size: 16px;
  line-height: 26px;
  padding: 15px 20px;
  min-width: 400px;
  margin-right: 20px;
  border-radius: 6px;
  border: 1px solid #808080;
}
@media all and (max-width: 700px) {
  .forgottenPassword-content form input {
    min-width: 100%;
    margin-bottom: 20px;
  }
}
.forgottenPassword-content form button {
  padding: 15px 50px;
  border: none;
}
@media all and (max-width: 700px) {
  .forgottenPassword-content form button {
    width: 100%;
  }
}

.similarProducts {
  display: flex;
  width: 100%;
  background-color: #FAF7F2;
  padding: 68px 0;
}
.similarProducts-wrap {
  display: flex;
  flex-wrap: wrap;
}
.similarProducts h2 {
  width: 100%;
  font-size: 33px;
  line-height: 66px;
  margin-bottom: 40px;
}
.similarProducts-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 500px) {
  .similarProducts-list {
    flex-direction: column;
  }
}
.similarProducts-item {
  width: 32%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: black;
}
@media all and (max-width: 500px) {
  .similarProducts-item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.similarProducts-image {
  background-color: white;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 70%;
  border-radius: 12px;
  margin-bottom: 40px;
}
.similarProducts h4 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
}
.similarProducts p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.similarProducts h6 {
  font-size: 24px;
  line-height: 28px;
}

.twoImage {
  width: 100%;
}
.twoImage-list {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
@media all and (max-width: 980px) {
  .twoImage-list {
    flex-direction: column;
  }
}
.twoImage-item {
  width: 49%;
  text-decoration: none;
  color: black;
  padding: 84px 0 116px 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
}
@media all and (max-width: 980px) {
  .twoImage-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 500px) {
  .twoImage-item {
    padding: 40px 0 60px 20px;
  }
}
.twoImage-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  max-width: 209px;
}
.twoImage-content h3 {
  font-size: 24px;
  line-height: 32px;
}
.twoImage-icon {
  font-size: 48px;
  margin-bottom: 10px;
}
@media all and (max-width: 500px) {
  .twoImage-icon {
    font-size: 36px;
  }
}

.account-content .woocommerce-order-details .woocommerce-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.account-content .woocommerce-order-details .woocommerce-table thead {
  display: none;
}
.account-content .woocommerce-order-details .woocommerce-table tbody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.account-content .woocommerce-order-details .woocommerce-table tbody tr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #808080;
  padding: 10px 0;
}
.account-content .woocommerce-order-details .woocommerce-table tbody tr .product-name {
  width: 50%;
}
.account-content .woocommerce-order-details .woocommerce-table tbody tr .wc-item-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-content .woocommerce-order-details .woocommerce-table tbody tr .product-total {
  width: 20%;
  padding: 0;
  line-height: 28px;
  justify-content: flex-end;
  border-bottom: 0;
}
.account-content .woocommerce-order-details .woocommerce-table tfoot {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.account-content .woocommerce-order-details .woocommerce-table tfoot tr {
  font-size: 20px;
  text-align: right;
  display: flex;
  gap: 10px;
}
.account-content .woocommerce-orders-table {
  width: 100%;
}
.account-content .woocommerce-orders-table thead {
  text-align: left;
  line-height: 40px;
}
.account-content .woocommerce-orders-table tbody {
  text-align: left;
}

.woocommerce label, .woocommerce p, .woocommerce a, .woocommerce address {
  color: #7D7D7D;
  font-size: 16px;
  line-height: 26px;
}
.woocommerce address {
  margin-top: 30px;
}
.woocommerce .btn--navy, .woocommerce .woocommerce-cart-form .shop_table .button {
  color: #FFFFFF;
  margin-top: 20px;
}
.woocommerce .btn--navy:hover, .woocommerce .woocommerce-cart-form .shop_table .button:hover {
  background-color: #006584;
}
.woocommerce input, .woocommerce select {
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #7D7D7D;
}
.woocommerce .password-input input {
  width: 100%;
}
.woocommerce .password-input .show-password-input {
  top: 10px;
}
.woocommerce-EditAccountForm fieldset {
  margin-top: 40px;
}
.woocommerce-EditAccountForm label {
  color: #7D7D7D;
  font-size: 16px;
  line-height: 26px;
}
.woocommerce-EditAccountForm input {
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #7D7D7D;
}
.woocommerce-EditAccountForm .woocommerce-form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 400px;
  margin-bottom: 20px;
}
.woocommerce .form-reset p {
  font-size: 14px;
}
.woocommerce .return-to-shop {
  margin-bottom: 20px;
}
.woocommerce .cart-collaterals .cart_totals {
  margin-bottom: 50px;
}
.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
  background-color: unset;
  font-weight: bold;
}

.woocommerce-cart-form .basket--title {
  font-size: 33px;
  line-height: 66px;
}
.woocommerce-cart-form .basket--info {
  font-size: 22px;
  line-height: 28px;
  color: black;
  margin-bottom: 20px;
}
.woocommerce-cart-form .product--instock {
  color: #EA9308;
}
.woocommerce-cart-form .shop_table {
  width: 100%;
  display: block;
}
.woocommerce-cart-form .shop_table tbody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.woocommerce-cart-form .shop_table tbody tr {
  display: flex;
  width: 100%;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #979797;
  border-radius: 7px;
}
@media all and (max-width: 890px) {
  .woocommerce-cart-form .shop_table tbody tr {
    flex-direction: column;
  }
}
.woocommerce-cart-form .shop_table tbody tr .product-thumbnail {
  width: 25%;
  padding-right: 20px;
}
@media all and (max-width: 890px) {
  .woocommerce-cart-form .shop_table tbody tr .product-thumbnail {
    width: 100%;
    padding-right: 0;
  }
}
.woocommerce-cart-form .shop_table tbody tr .product-thumbnail a img {
  width: auto;
  max-width: 100%;
  max-height: 300px;
  height: auto;
}
.woocommerce-cart-form .shop_table tbody tr .product-name {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 890px) {
  .woocommerce-cart-form .shop_table tbody tr .product-name {
    width: 100%;
    margin: 20px 0;
  }
}
@media all and (max-width: 890px) {
  .woocommerce-cart-form .shop_table tbody tr .product-name h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media all and (max-width: 890px) {
  .woocommerce-cart-form .shop_table tbody tr .product-name p {
    font-size: 16px;
    line-height: 26px;
  }
}
.woocommerce-cart-form .shop_table tbody tr .product-price {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media all and (max-width: 890px) {
  .woocommerce-cart-form .shop_table tbody tr .product-price {
    width: 100%;
  }
}
.woocommerce-cart-form .shop_table tbody tr .product-price .price {
  font-size: 28px;
}
.woocommerce-cart-form .shop_table tbody tr .product-price .remove {
  color: black;
  font-size: 16px;
  line-height: 28px;
}
.woocommerce-cart-form .shop_table tbody .cart-details {
  margin-top: 30px;
  display: flex;
}
@media all and (max-width: 400px) {
  .woocommerce-cart-form .shop_table tbody .cart-details {
    flex-wrap: wrap;
  }
}
.woocommerce-cart-form .shop_table tbody .cart-details__image {
  display: inline-block;
  width: 100%;
  padding-bottom: 80%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media all and (max-width: 450px) {
  .woocommerce-cart-form .shop_table tbody .cart-details__image {
    padding-bottom: 100%;
  }
}
.woocommerce-cart-form .shop_table tbody .cart-details__variation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}
@media all and (max-width: 400px) {
  .woocommerce-cart-form .shop_table tbody .cart-details__variation {
    padding-right: 0;
    width: 48%;
    margin-bottom: 20px;
  }
}
.woocommerce-cart-form .shop_table tbody .cart-details__variation div {
  width: 66px;
  height: 66px;
  border: 1px solid #808080;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce-cart-form .shop_table tbody .cart-details__variation p {
  margin-top: 10px;
  text-transform: capitalize;
  color: black;
  font-size: 16px;
  line-height: 26px;
}
.woocommerce-cart-form .shop_table tbody .cart-details__branding {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.woocommerce .cart-collaterals {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 300px;
  margin-left: auto;
}
.woocommerce .cart-collaterals p {
  color: black;
  font-size: 26px;
  margin-right: 30px;
}
.woocommerce .cart-collaterals a {
  color: white;
  padding: 15px 40px;
}

.woocommerce .checkout {
  margin-top: 20px;
  margin-bottom: 100px;
}
.woocommerce .checkout .woocommerce-checkout {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields {
  width: 60%;
}
@media all and (max-width: 1280px) {
  .woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields {
    width: 50%;
  }
}
@media all and (max-width: 890px) {
  .woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields {
    width: 100%;
  }
}
.woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields .shipping_address {
  width: 100%;
}
.woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper #shipping_country_field {
  display: none;
}
.woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  width: 100%;
}
.woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row input {
  width: 100%;
}
.woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .select2-selection {
  height: 40px;
  display: flex;
  align-items: center;
  border-color: #808080;
  border-radius: 6px;
}
.woocommerce .checkout .woocommerce-checkout .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .select2-selection__arrow {
  height: 40px;
}
.woocommerce .woocommerce-NoticeGroup {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid red;
  border-radius: 4px;
  padding: 15px;
}
.woocommerce .woocommerce-NoticeGroup .woocommerce-error li {
  list-style: disc inside;
  color: red;
}
.woocommerce .woocommerce-NoticeGroup .woocommerce-error li a {
  color: red;
  font-size: 14px;
  line-height: 1.5;
}
.woocommerce .checkout-order {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  border: 1px solid #808080;
  border-radius: 4px;
  padding: 20px 0;
}
@media all and (max-width: 1280px) {
  .woocommerce .checkout-order {
    width: 40%;
  }
}
@media all and (max-width: 890px) {
  .woocommerce .checkout-order {
    width: 100%;
  }
}
.woocommerce .checkout-order h3 {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 15px;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table {
  margin-left: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table thead {
  display: none;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #808080;
  margin-bottom: 10px;
  padding: 20px 10px;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr td {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr td dl {
  width: 100%;
  display: flex;
  align-items: center;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr td dl dt, .woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr td dl dl {
  font-size: 16px;
  line-height: 1.5;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr td dl dt {
  margin-right: 5px;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr td dl dd {
  margin-right: 10px;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr td .product-quantity {
  display: none;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tbody tr .product-total {
  width: 20%;
  justify-content: flex-end;
  padding: 0;
  border-bottom: 0;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tfoot {
  display: flex;
  flex-direction: column;
  padding: 0px 15px;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tfoot .cart-subtotal {
  display: none;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals {
  display: none;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tfoot .order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.woocommerce .checkout-order .woocommerce-checkout-review-order-table tfoot .order-total th {
  font-size: 20px;
  line-height: 1.5;
}
.woocommerce .checkout-order .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper {
  padding: 0 15px;
}
.woocommerce .checkout-order .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text p, .woocommerce .checkout-order .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper a {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.woocommerce .checkout-order .woocommerce-checkout-payment .button {
  cursor: pointer;
  display: flex;
  margin-left: auto;
  margin-right: 15px;
}

.woocommerce-order {
  margin-bottom: 100px;
}
.woocommerce .woocommerce-notice {
  font-size: 19px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.woocommerce .woocommerce-order-overview {
  font-size: 17px;
  line-height: 23px;
}
.woocommerce .btn--orange, .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout, .woocommerce .checkout-order .woocommerce-checkout-payment .button {
  margin-top: 20px;
  color: white;
}

.woocommerce-notices-wrapper {
  margin-top: 20px;
}
.woocommerce-notices-wrapper .woocommerce-error, .woocommerce-notices-wrapper .woocommerce-info, .woocommerce-notices-wrapper .woocommerce-message {
  background-color: #FAF7F2;
  padding: 20px;
  border: 1px solid #808080;
  border-radius: 4px;
}

/**
 * Swiper 11.1.15
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 18, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}
