/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/css/main.scss ***!
  \************************************************************************************************************/
@charset "UTF-8";
/***************************
    GLOBAL
***************************/
/* RESET */
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  overflow-x: hidden;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* 
  10. Smooth scrolling
*/
html {
  scroll-behavior: smooth;
}

/* 
  11. Remove default padding from ul and ol
*/
ul, ol {
  padding-inline-start: 0;
}

/******************
COLOURS
******************/
/******************
SPACING
******************/
/******************
FONT SIZES
******************/
/*********************
BREAKPOINTS
*********************/
@font-face {
  font-family: "Turbinado";
  src: url(../.././dist/custom_fonts/turbinado_bold_dry-webfont.woff2) format("woff2"), url(../.././dist/custom_fonts/turbinado_bold_dry-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../.././dist/custom_fonts/poppins-regular-webfont.woff2) format("woff2"), url(../.././dist/custom_fonts/poppins-regular-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins bold";
  src: url(../.././dist/custom_fonts/poppins-bold-webfont.woff2) format("woff2"), url(../.././dist/custom_fonts/poppins-bold-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Turbinado", sans-serif;
  font-weight: 200;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a:not(.btn) {
  color: #00A9E0;
  text-decoration: none;
}
a:not(.btn):hover {
  text-decoration: underline;
}

/* Main menu */
.primary-menu {
  height: 65px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  background-color: white;
}
.primary-menu .menu-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100%;
  max-width: 1470px;
  margin: 0 auto;
  height: 100%;
}
.primary-menu .menu-primary li {
  height: 100%;
  position: relative;
}
.primary-menu .menu-primary li a {
  text-decoration: none;
  color: #2a2428;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.primary-menu .menu-primary li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  transition: width 0.3s;
  background: none repeat scroll 0 0 #00A9E0;
  position: absolute;
  bottom: 15px;
}
.primary-menu .menu-primary li a:hover::after {
  width: 100%;
}
.primary-menu .menu-primary li:hover .mega-menu, .primary-menu .menu-primary li:hover .mega-menu:hover {
  visibility: visible;
  z-index: 20;
  opacity: 1;
}
.primary-menu .mega-menu {
  display: flex;
  visibility: hidden;
  width: fit-content;
  min-width: 250px;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background-color: white;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 0;
  align-items: flex-start;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}
.primary-menu .mega-menu li {
  padding: 10px 0;
  text-align: left;
  height: auto;
  width: 100%;
}
.primary-menu .mega-menu li a {
  color: #2a2428;
  text-decoration: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 1rem;
  display: block;
}
.primary-menu .mega-menu li a:hover {
  font-weight: 700;
  color: #00A9E0;
}
.primary-menu .mega-menu li a::after {
  display: none;
}
.primary-menu .mega-menu li ul.col-lg-2 {
  margin: 20px 23px;
}
.primary-menu .all_products li.row {
  display: flex;
}
.primary-menu .all_products li.row ul.col-lg-2 li.submenu {
  min-width: 200px;
}
.primary-menu .all_products li.row ul.col-lg-2 li.submenu h3 {
  color: #00A9E0;
  font-family: "Poppins bold", sans-serif;
}
.primary-menu .all_products li {
  padding: 5px 0;
}

/* Mobile menu */
.mobile-nav {
  display: none;
}

/* Secondary menu - icons */
.secondary-menu {
  position: relative;
}
.secondary-menu .menu {
  display: flex;
  align-items: center;
  gap: 50px;
}
.secondary-menu .menu li {
  height: 32px;
  width: 32px;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 50%;
}
.secondary-menu .menu li:hover {
  background-color: #d76232;
}
.secondary-menu .menu li a {
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: block;
}
.secondary-menu .menu li a::after {
  display: none;
}
.secondary-menu .menu li.menu-call {
  background-image: url(../.././dist/img/nav-phone-icon.svg);
}
.secondary-menu .menu li.menu-contact {
  background-image: url(../.././dist/img/nav-email-icon.svg);
}
.secondary-menu .menu li.menu-account {
  background-image: url(../.././dist/img/nav-account-icon.svg);
}
.secondary-menu .menu li.menu-cart {
  background-image: url(../.././dist/img/nav-cart-icon.svg);
}
.secondary-menu .cart-count {
  position: absolute;
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-align: center;
  top: -15px;
  right: -7px;
  background-color: #d76232;
}

@media only screen and (max-width: 1480px) {
  .primary-menu .mega-menu li ul.col-lg-2 {
    margin: 20px 15px;
  }
}
@media only screen and (max-width: 1300px) {
  .primary-menu .all_products li.row ul.col-lg-2 {
    margin: 20px 5px;
  }
  .primary-menu .all_products li.row ul.col-lg-2 li.submenu {
    min-width: 180px;
  }
  .primary-menu ul:not(.mega-menu, #menu-secondary-1) li {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 1024px) {
  body:has(.primary-menu.active) {
    overflow: hidden;
  }
  header {
    height: 100px !important;
  }
  header .main-nav {
    display: none;
  }
  header .mobile-nav {
    display: flex;
    background-color: white;
    height: 100px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
    flex-wrap: wrap;
  }
  header .mobile-nav .mobile-logo {
    padding-right: 45px;
  }
  header .mobile-nav .mobile-menu-holder {
    display: flex;
  }
  header .mobile-nav .search {
    flex-basis: 100%;
    border-bottom: 1px solid #8c9190;
  }
  header .mobile-nav .search #nav_search {
    width: 100%;
  }
  header .mobile-nav .mobile-menu {
    height: 17px;
    position: relative;
    width: 25px;
  }
  header .mobile-nav .mobile-menu .line {
    background-color: #2a2428;
    display: block;
    position: absolute;
    height: 2px;
    left: 15%;
    width: 80%;
    opacity: 1;
    transition-duration: 0.3s;
  }
  header .mobile-nav .mobile-menu .line.line-one {
    top: 20%;
  }
  header .mobile-nav .mobile-menu .line.line-two {
    top: 50%;
  }
  header .mobile-nav .mobile-menu .line.line-three {
    top: 80%;
  }
  header .mobile-nav .mobile-menu.active .line.line-one {
    transform-origin: 50% 50%;
    transform: rotate(45deg);
    left: 9%;
    top: 50%;
    width: 82%;
  }
  header .mobile-nav .mobile-menu.active .line.line-two {
    width: 0;
    opacity: 0;
  }
  header .mobile-nav .mobile-menu.active .line.line-three {
    transform-origin: 50% 50%;
    transform: rotate(-45deg);
    left: 9%;
    top: 50%;
    width: 82%;
  }
  header .mobile-nav .contact {
    height: fit-content;
    padding: 0;
    background-color: white;
    padding-right: 12px;
  }
  header .mobile-nav .contact a {
    height: 17px;
    width: 17px;
    display: block;
    background-image: url(../.././dist/img/nav-phone-icon-dark.svg);
  }
  header .mobile-nav .primary-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -105%;
    background: #00A9E0;
    transition: right 0.4s ease;
    z-index: 99;
    width: 100vw;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    margin-top: 100px;
    padding: 60px 0;
    text-align: center;
  }
  header .mobile-nav .primary-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    flex-basis: auto;
    margin-bottom: 60px;
  }
  header .mobile-nav .primary-menu ul li a {
    color: white;
  }
  header .mobile-nav .primary-menu ul li a::after {
    display: none;
  }
  header .mobile-nav .primary-menu ul li.menu-item-has-children {
    position: relative;
  }
  header .mobile-nav .primary-menu ul li.menu-item-has-children .sub-menu {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 250px;
  }
  header .mobile-nav .primary-menu ul li.menu-item-has-children:hover .sub-menu {
    display: flex;
    visibility: visible;
    top: 20px;
    left: 50%;
    transform: translatex(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  header .mobile-nav .primary-menu ul li.menu-item-has-children:hover .sub-menu:hover {
    display: flex;
    visibility: visible;
  }
  header .mobile-nav .primary-menu .sub-menu {
    display: none;
    background-color: white;
    border: 1px solid #d76232;
    min-width: 250px;
    padding: 1rem;
  }
  header .mobile-nav .primary-menu .sub-menu li a {
    color: #2a2428;
  }
  header .mobile-nav .primary-menu .sub-menu li:not(:last-of-type) {
    border-bottom: 1px solid #d76232;
    padding-bottom: 10px;
  }
  header .mobile-nav .primary-menu .secondary-menu ul {
    display: flex;
    flex-direction: row;
  }
  header .mobile-nav .primary-menu.active {
    right: 0;
  }
}
a.btn, button.btn, input[type=submit].btn, .wp-block-button__link {
  padding: 0.75rem 1rem;
  background-color: #d76232 !important;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
  font-weight: 700;
  border: 5px;
  cursor: pointer;
  border-radius: 0;
}
a.btn:hover, button.btn:hover, input[type=submit].btn:hover, .wp-block-button__link:hover {
  background-color: #b34d23 !important;
}

header {
  height: 155px;
}
header .main-nav {
  height: 155px;
  background-color: #00A9E0;
}
header .top-nav {
  padding: 0 1.25rem;
  height: 90px;
  background-color: #00A9E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1470px;
  margin: 0 auto;
}
header .top-nav .logo {
  max-width: 326px;
}
header .search #nav_search {
  width: 420px;
  height: 40px;
  border: none;
  border-radius: 50px;
  padding: 0 10px;
  font-size: 1rem;
  color: #2a2428;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .search #nav_search input[type=search] {
  height: 100%;
  border: none;
  border-radius: 50px;
  padding: 0 10px;
  font-size: 1rem;
  color: #2a2428;
  background-color: white;
  width: 100%;
  cursor: pointer;
}
header .search #nav_search input[type=search]:focus {
  outline: none;
}
header .search #nav_search input[type=search]::placeholder {
  color: #2a2428;
}
header .search #nav_search button.nav-form-submit {
  height: 20px;
  width: 20px;
  border: none;
  background-color: white;
  background-image: url(../.././dist/img/search-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 10px;
  cursor: pointer;
}

footer {
  font-size: 0.875rem;
}
footer .footer-text {
  font-size: 1.125rem;
  color: #2a2428;
  text-align: center;
  padding: 1rem 0;
  background-color: #F0F4F5;
  font-family: "Poppins bold", sans-serif;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100px;
  font-weight: 700;
}
footer .footer-text::after {
  background-image: url(../.././dist/img/ireland-flag.svg);
  width: 48px;
  height: 32px;
  content: "";
  background-size: contain;
  display: block;
  margin: 0 0 5px 12px;
}
footer .top-footer {
  background-color: #00A9E0;
  height: 90px;
  padding: 0 1.25rem;
}
footer .top-footer .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1470px;
  margin: 0 auto;
  height: 100%;
}
footer .top-footer .footer-content .footer-logo {
  max-width: 326px;
}
footer .top-footer .footer-content .social {
  width: 230px;
}
footer .top-footer .footer-content .social ul.social-links {
  display: block;
  font-size: 0;
}
footer .top-footer .footer-content .social ul.social-links li {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 10px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 30px;
  transition: all 0.3s ease;
}
footer .top-footer .footer-content .social ul.social-links li.facebook {
  background-image: url(../.././dist/img/facebook-icon.svg);
}
footer .top-footer .footer-content .social ul.social-links li.instagram {
  background-image: url(../.././dist/img/instagram-icon.svg);
}
footer .top-footer .footer-content .social ul.social-links li.pinterest {
  background-image: url(../.././dist/img/pinterest-icon.svg);
}
footer .top-footer .footer-content .social ul.social-links li a {
  height: 32px;
  width: 32px;
  display: block;
}
footer .top-footer .footer-content .social ul.social-links li:hover {
  background-color: #d76232;
}
footer .top-footer .footer-content .footer-logo {
  margin: 0 auto;
}
footer .top-footer .footer-content .footer-logo a {
  display: block;
  width: fit-content;
}
footer .bottom-footer .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  height: 65px;
  max-width: 1470px;
  margin: 0 auto;
}
footer .bottom-footer .footer-content .privacy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
footer .bottom-footer .footer-content .privacy a {
  color: #2a2428;
  text-decoration: none;
}
footer .bottom-footer .footer-content .payment-icons ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
footer .bottom-footer .footer-content .payment-icons ul li {
  display: block;
  width: 31px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
footer .bottom-footer .footer-content .payment-icons ul li.visa {
  background-image: url(../.././dist/img/visa-icon.svg);
}
footer .bottom-footer .footer-content .payment-icons ul li.mastercard {
  background-image: url(../.././dist/img/mastercard-icon.svg);
}
footer .bottom-footer .footer-content .payment-icons ul li.paypal {
  background-image: url(../.././dist/img/paypal-icon.svg);
}
footer .bottom-footer .footer-content .payment-icons ul li.aexpress {
  background-image: url(../.././dist/img/aexpress-icon.svg);
}
footer .bottom-footer .footer-content .copyright {
  width: 261px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

footer.mobile-footer {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}
footer.mobile-footer .mobile-footer-logo {
  border-bottom: 1px solid #F0F4F5;
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
footer.mobile-footer .mobile-footer-logo img {
  margin: 0 auto;
}
footer.mobile-footer .payment-icons {
  margin-bottom: 1rem;
}
footer.mobile-footer .payment-icons ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
footer.mobile-footer .payment-icons ul li {
  display: block;
  width: 31px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
footer.mobile-footer .payment-icons ul li.visa {
  background-image: url(../.././dist/img/visa-icon.svg);
}
footer.mobile-footer .payment-icons ul li.mastercard {
  background-image: url(../.././dist/img/mastercard-icon.svg);
}
footer.mobile-footer .payment-icons ul li.paypal {
  background-image: url(../.././dist/img/paypal-icon.svg);
}
footer.mobile-footer .payment-icons ul li.aexpress {
  background-image: url(../.././dist/img/aexpress-icon.svg);
}
footer.mobile-footer p {
  margin-bottom: 1rem;
}

@media only screen and (max-width: 768px) {
  footer.main-footer {
    display: none;
  }
  footer.mobile-footer {
    display: flex;
  }
}
.xoo-wsc-markup .xoo-wsc-header .xoo-wsch-top .xoo-wsch-basket {
  display: none;
}
.xoo-wsc-markup .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-checkout {
  background-color: #d76232;
}
.xoo-wsc-markup .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-checkout:hover {
  background-color: #b34d23;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@supports (animation-name: fadeIn) {
  .h-animate-in-fade.js-animate-in {
    opacity: 0;
  }
  .no-js .h-animate-in-fade.js-animate-in {
    opacity: 1;
  }
}
.h-animate-in-fade.js-animate-in.js-animate-in--is-active {
  animation: fadeIn 0.75s ease-in-out forwards;
}

@supports (animation-name: slideInUp) {
  .h-animate-in-slide-up.js-animate-in {
    opacity: 0;
  }
  .no-js .h-animate-in-slide-up.js-animate-in {
    opacity: 1;
  }
}
.h-animate-in-slide-up.js-animate-in.js-animate-in--is-active {
  animation: slideInUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.h-animate-in-slide-up.js-animate-in.js-animate-in--is-active.js-animate-in--with-delay {
  animation-delay: 0.3s;
}

/***************************
    PLUGINS
***************************/
/*!
 * jQuery Conveyor Ticker (jConveyorTicker)
 * Description: jQuery plugin to create simple horizontal conveyor belt animated tickers.
 *
 * Copyright (c) 2017 Luis Luz - UXD Lda
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Project home:
 *   https://github.com/lluz/jquery-conveyor-ticker
 *
 * Version:  1.1.0
 *
 */
.jctkr-wrapper,
.jctkr-wrapper * {
  box-sizing: border-box;
}

.jctkr-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 35px;
  vertical-align: top;
  overflow: hidden;
}

.jctkr-wrapper ul {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  font-size: 0;
  text-align: left;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.jctkr-wrapper.jctkr-initialized ul {
  opacity: 1;
}

.jctkr-wrapper ul li {
  display: inline-block;
  font-size: 16px;
}

.jctkr-label {
  display: inline-block;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/***************************
    PARTIALS
***************************/
.video-hero {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  place-content: center;
}
.video-hero__video {
  grid-row-start: 1;
  grid-column-start: 1;
  height: 100%;
}
.video-hero__video video {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  z-index: -1;
  height: 100%;
}
.video-hero__content {
  grid-row-start: 1;
  grid-column-start: 1;
  text-align: center;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.video-hero__content h1 {
  font-size: clamp(7.5rem, 20vw, 18rem);
  line-height: clamp(6.625rem, 20vw, 13.625rem);
}
.video-hero__content p {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

.usp-ticker {
  padding: 1.25rem 0;
}
.usp-ticker .ticker-content {
  width: 100%;
  display: block;
}
.usp-ticker .ticker-content ul {
  display: flex;
  flex-direction: row;
  list-style-type: disc;
}
.usp-ticker .ticker-content ul li {
  margin-right: 2rem;
  padding-left: 0.5rem;
  font-size: 1.125rem;
  color: #8c9190;
  text-transform: uppercase;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  display: list-item;
}

@media only screen and (max-width: 768px) {
  .video-hero__content {
    padding: 10rem 0;
  }
}
.hp-categories {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1470px;
  margin: 0 auto;
}
.hp-categories .hp-category {
  width: 359px;
  height: 508px;
  background-size: 100% 100%;
  transition: all 0.3s ease;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hp-categories .hp-category:nth-child(1) {
  margin-top: 45px;
}
.hp-categories .hp-category:nth-child(2) {
  margin-top: 30px;
}
.hp-categories .hp-category:nth-child(3) {
  margin-top: 15px;
}
.hp-categories .hp-category a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-decoration: none;
}
.hp-categories .hp-category a h2 {
  font-size: 3.125rem;
  margin-bottom: 20px;
}
.hp-categories .hp-category:hover {
  background-size: 110% 110%;
}

@media only screen and (max-width: 1024px) {
  .hp-categories {
    flex-direction: column;
    gap: 1rem;
  }
  .hp-categories .hp-category {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center 35%;
  }
  .hp-categories .hp-category:nth-child(1) {
    margin-top: 0;
  }
  .hp-categories .hp-category:nth-child(2) {
    margin-top: 0;
  }
  .hp-categories .hp-category:nth-child(3) {
    margin-top: 0;
  }
  .hp-categories .hp-category:hover {
    background-size: cover;
  }
}
.hp-cta {
  color: white;
  height: 800px;
  padding: 75px 0;
  width: 100%;
}
.hp-cta__content {
  position: relative;
  padding: 120px 0;
  max-width: 1470px;
  margin: 0 auto;
  background-position: center;
  background-size: cover;
}
.hp-cta__content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.hp-cta__content .text h2 {
  font-size: 90px;
  margin-bottom: 1rem;
  line-height: 90px;
}
.hp-cta__content .text p {
  margin-bottom: 1rem;
}
.hp-cta__content .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media only screen and (max-width: 1024px) {
  .hp-cta {
    height: auto;
  }
  .hp-cta__content .text {
    width: 75%;
  }
}
.popular, .related-items {
  padding: 2.5rem 0;
}
.popular h2, .related-items h2 {
  font-size: 90px;
  margin-bottom: 1rem;
  text-align: center;
  color: #00A9E0;
}
.popular .splide, .related-items .splide {
  position: relative;
}
.popular .splide .splide__arrows, .related-items .splide .splide__arrows {
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.popular .splide .splide__arrows .splide__arrow, .related-items .splide .splide__arrows .splide__arrow {
  border: none;
  background-color: transparent;
  color: #2a2428;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
}
.popular .splide .splide__arrows .splide__arrow--prev, .related-items .splide .splide__arrows .splide__arrow--prev {
  left: 18%;
  position: absolute;
}
.popular .splide .splide__arrows .splide__arrow--next, .related-items .splide .splide__arrows .splide__arrow--next {
  right: 18%;
  position: absolute;
}
.popular .splide__track, .related-items .splide__track {
  position: relative;
}
.popular .splide__track li.splide__slide, .related-items .splide__track li.splide__slide {
  margin: 0 30px;
}
.popular .splide__track .hp-popular-item a, .popular .splide__track .related-item a, .related-items .splide__track .hp-popular-item a, .related-items .splide__track .related-item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  text-decoration: none;
}
.popular .splide__track .hp-popular-item a .title, .popular .splide__track .related-item a .title, .related-items .splide__track .hp-popular-item a .title, .related-items .splide__track .related-item a .title {
  color: #00A9E0;
  margin: 1rem 0;
}
.popular .splide__track .hp-popular-item a .price, .popular .splide__track .related-item a .price, .related-items .splide__track .hp-popular-item a .price, .related-items .splide__track .related-item a .price {
  color: #2a2428;
  font-size: 40px;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.popular .splide__track .hp-popular-item a .price del, .popular .splide__track .related-item a .price del, .related-items .splide__track .hp-popular-item a .price del, .related-items .splide__track .related-item a .price del {
  all: unset;
}
.popular .splide__track .hp-popular-item a .price del .amount, .popular .splide__track .related-item a .price del .amount, .related-items .splide__track .hp-popular-item a .price del .amount, .related-items .splide__track .related-item a .price del .amount {
  color: #8c9190;
  font-size: 20px;
  position: relative;
}
.popular .splide__track .hp-popular-item a .price del .amount::after, .popular .splide__track .related-item a .price del .amount::after, .related-items .splide__track .hp-popular-item a .price del .amount::after, .related-items .splide__track .related-item a .price del .amount::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8c9190;
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%) rotate(-15deg);
  transform-origin: 50% 50%;
}
.popular .splide__track .hp-popular-item a .price .price-text, .popular .splide__track .related-item a .price .price-text, .related-items .splide__track .hp-popular-item a .price .price-text, .related-items .splide__track .related-item a .price .price-text {
  font-size: 20px;
}
.popular .splide__track .hp-popular-item a img, .popular .splide__track .related-item a img, .related-items .splide__track .hp-popular-item a img, .related-items .splide__track .related-item a img {
  height: 220px;
  object-fit: contain;
  transition: transform 0.3s;
}
.popular .splide__track .hp-popular-item a:hover img, .popular .splide__track .related-item a:hover img, .related-items .splide__track .hp-popular-item a:hover img, .related-items .splide__track .related-item a:hover img {
  transform: scale(1.05);
}
.popular .splide:not(.is-overflow) .splide__pagination, .related-items .splide:not(.is-overflow) .splide__pagination {
  display: block;
  margin: 0 auto;
  width: fit-content;
}
.popular .splide__pagination .splide__pagination__page, .related-items .splide__pagination .splide__pagination__page {
  height: 2px;
  border: none;
  width: 250px;
  background-color: #F0F4F5;
}
.popular .splide__pagination .splide__pagination__page.is-active, .related-items .splide__pagination .splide__pagination__page.is-active {
  background-color: #d76232;
}

@media only screen and (max-width: 1248px) {
  .popular .splide__pagination .splide__pagination__page, .related-items .splide__pagination .splide__pagination__page {
    width: 200px;
  }
}
@media only screen and (max-width: 1024px) {
  .popular .splide__track li.splide__slide, .related-items .splide__track li.splide__slide {
    margin: 0 20px;
  }
  .popular .splide__pagination .splide__pagination__page, .related-items .splide__pagination .splide__pagination__page {
    width: 150px;
  }
}
@media only screen and (max-width: 968px) {
  .popular .splide__track li.splide__slide, .related-items .splide__track li.splide__slide {
    margin: 0 15px;
  }
  .popular .splide__pagination .splide__pagination__page, .related-items .splide__pagination .splide__pagination__page {
    width: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .popular .splide__track li.splide__slide, .related-items .splide__track li.splide__slide {
    margin: 0 10px;
  }
  .popular .splide__pagination .splide__pagination__page, .related-items .splide__pagination .splide__pagination__page {
    width: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .popular .splide__track li.splide__slide, .related-items .splide__track li.splide__slide {
    margin: 0 10px;
  }
  .popular .splide__pagination .splide__pagination__page, .related-items .splide__pagination .splide__pagination__page {
    width: 50px;
  }
}
@media only screen and (max-width: 400px) {
  .popular .splide__track li.splide__slide, .related-items .splide__track li.splide__slide {
    margin: 0 10px;
  }
  .popular .splide__pagination .splide__pagination__page, .related-items .splide__pagination .splide__pagination__page {
    width: 30px;
  }
}
.hp-discount {
  background-color: #8c9190;
  display: flex;
  flex-direction: row;
  margin: 80px auto;
  max-width: 1470px;
  overflow-x: hidden;
}
.hp-discount .discount-img {
  width: 50%;
  position: relative;
  z-index: 1;
}
.hp-discount .discount-img img {
  width: 100%;
  height: auto;
}
.hp-discount .discount-item {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  position: relative;
  z-index: 0;
}
.hp-discount .discount-item::after {
  content: "Discount";
  display: block;
  width: 300px;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Turbinado", sans-serif;
  font-weight: 200;
  position: absolute;
  transform: rotate(-90deg);
  right: 0;
  bottom: 165px;
  font-size: 230px;
  height: 100px;
  z-index: 1;
}
.hp-discount .discount-item h2 {
  color: #F0F4F5;
  font-size: 80px;
  margin-bottom: 1rem;
}
.hp-discount .discount-item .splide {
  position: relative;
}
.hp-discount .discount-item .splide .splide__arrows .splide__arrow {
  position: absolute;
  top: 50%;
  background: transparent;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
}
.hp-discount .discount-item .splide .splide__arrows .splide__arrow path {
  fill: white;
}
.hp-discount .discount-item .splide .splide__arrows .splide__arrow--prev {
  transform: translateY(-50%) rotate(180deg);
  left: 30%;
  z-index: 10;
}
.hp-discount .discount-item .splide .splide__arrows .splide__arrow--next {
  transform: translateY(-50%);
  right: 30%;
  z-index: 10;
}
.hp-discount .discount-item .splide .hp-discount-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.hp-discount .discount-item .splide .hp-discount-item a img {
  height: 280px;
  width: auto;
  margin-bottom: 30px;
  transition: transform 0.3s;
}
.hp-discount .discount-item .splide .hp-discount-item a .review {
  color: #d76232;
}
.hp-discount .discount-item .splide .hp-discount-item a .sale-price {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.hp-discount .discount-item .splide .hp-discount-item a .sale-price .price {
  margin-bottom: 10px;
}
.hp-discount .discount-item .splide .hp-discount-item a .sale-price .sale {
  font-size: 40px;
}
.hp-discount .discount-item .splide .hp-discount-item a:hover img {
  transform: scale(1.05);
}

@media only screen and (max-width: 1248px) {
  .hp-discount .discount-img {
    display: none;
  }
  .hp-discount .discount-item {
    width: 100%;
  }
}
.single-blog article .blog-header {
  background: #8c9190;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0;
}
.single-blog article .blog-header .img-left, .single-blog article .blog-header .img-right {
  flex-basis: 30%;
}
.single-blog article .blog-header .header-content {
  text-align: center;
  flex-basis: 40%;
  padding: 0 3.5rem;
}
.single-blog article .blog-header .header-content h1 {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 1rem;
}
.single-blog article .blog-header .header-content .post-excerpt {
  margin-bottom: 3rem;
}
.single-blog article .entry-content {
  max-width: 900px;
  margin: 60px auto;
}
.single-blog article .entry-content h3 {
  font-size: 26px;
  margin-bottom: 1.5rem;
  color: #00A9E0;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.single-blog article .entry-content img {
  margin: 1.5rem 0;
}

@media only screen and (max-width: 1024px) {
  .single-blog article .blog-header {
    flex-direction: column;
  }
  .single-blog article .blog-header .img-right {
    display: none;
  }
  .single-blog article .blog-header .img-left {
    margin-bottom: 2.5rem;
  }
  .single-blog article .entry-content {
    padding: 1rem;
  }
}
.hp-blog-section {
  background: #8c9190;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0;
}
.hp-blog-section .img-left, .hp-blog-section .img-right {
  flex-basis: 30%;
}
.hp-blog-section .header-content {
  text-align: center;
  flex-basis: 40%;
  padding: 0 3.5rem;
}
.hp-blog-section .header-content .small-title {
  font-size: 20px;
  margin-bottom: 1rem;
}
.hp-blog-section .header-content h1 {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 1rem;
}
.hp-blog-section .header-content .post-excerpt {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 1024px) {
  .hp-blog-section {
    flex-direction: column;
  }
  .hp-blog-section .img-right {
    display: none;
  }
  .hp-blog-section .img-left {
    margin-bottom: 2.5rem;
  }
}
.simple-hero {
  background: #00A9E0;
  color: white;
  padding: 75px 0;
}
.simple-hero h1 {
  font-size: 90px;
  line-height: 90px;
  text-align: center;
  margin-bottom: 1rem;
}
.simple-hero .content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.simple-hero .content p {
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.simple-text {
  max-width: 900px;
  margin: 1rem auto;
}
.simple-text h1 {
  font-size: 32px;
  margin-bottom: 1.25rem;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.simple-text h2 {
  font-size: 26px;
  margin-bottom: 1.25rem;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.simple-text h3 {
  font-size: 22px;
  margin-bottom: 1.25rem;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.simple-text h4 {
  font-size: 18px;
  margin-bottom: 1.25rem;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.simple-text p {
  margin: 1.5rem 0;
}
.simple-text ul {
  margin: 1.5rem 0;
  list-style-type: disc;
}
.simple-text ul li {
  margin-bottom: 1rem;
}
.simple-text ul ul {
  margin-left: 1.25rem;
  list-style-type: circle;
}

.accordion-section {
  clear: both;
  margin: 50px auto 20px;
  max-width: 1100px;
  width: 100%;
}
.accordion-section .title {
  margin-bottom: 30px;
}
.accordion-section .accordion {
  margin: 1px;
  border-bottom: 1px solid #F0F4F5;
  margin-bottom: 0;
}
.accordion-section .accordion:first-of-type h3 {
  border-top: 1px solid #F0F4F5;
}
.accordion-section .accordion .accordion-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 1rem;
}
.accordion-section .accordion .align-left, .accordion-section .accordion .align-right {
  max-width: 45%;
  width: 100%;
}
.accordion-section .accordion .align-left img, .accordion-section .accordion .align-right img {
  height: auto;
  width: 100%;
  margin-bottom: 1em;
}
.accordion-section .accordion .align-left {
  margin-right: 20px;
}
.accordion-section .accordion .align-right {
  margin-left: 20px;
}
.accordion-section .accordion .text {
  text-align: left;
  max-width: 45%;
}
.accordion-section .accordion .text ul {
  padding-left: 20px;
  list-style-type: none;
  margin: 10px 0 20px;
}
.accordion-section .accordion .text ul li {
  line-height: 1.5em;
}
.accordion-section .accordion .text-align-left {
  margin-right: 20px;
}
.accordion-section .accordion .text-align-right {
  margin-left: 20px;
}
.accordion-section .accordion .text h2 {
  margin-bottom: 0.5em;
}
.accordion-section .accordion .text p {
  font-size: 1.1em;
  line-height: 1.579em;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1248px) {
  .accordion-section .accordion .text p {
    font-size: 1.1875em;
  }
}
.accordion-section .accordion .title-holder {
  position: relative;
}
.accordion-section .accordion .title-holder h3 {
  font-family: "Poppins bold", sans-serif;
  color: black;
  font-weight: 700;
  font-size: 1.3125em;
  padding: 20px 60px 20px 15px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}
.accordion-section .accordion .title-holder .icon {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.accordion-section .accordion .title-holder .icon .line {
  background-color: #d76232;
  display: block;
  position: absolute;
  height: 2px;
  border-radius: 2px;
  left: 15%;
  width: 70%;
  opacity: 1;
  transition-duration: 0.3s;
}
.accordion-section .accordion .title-holder .icon .line.line-one {
  top: 50%;
  transform: rotate(90deg);
}
.accordion-section .accordion .title-holder .icon .line.line-two {
  top: 50%;
}
.accordion-section .accordion .title-holder.open .icon .line-one {
  transform: rotate(0deg);
}
@media only screen and (min-width: 768px) {
  .accordion-section .accordion {
    margin: 2px 0;
  }
}

@media only screen and (max-width: 968px) {
  .accordion-block .accordion .align-left, .accordion-block .accordion .align-right {
    width: 100%;
    max-width: 100% !important;
  }
  .accordion-block .accordion .text {
    width: 100%;
    max-width: 100% !important;
  }
}
.single-product-delivery {
  max-width: 1470px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  height: 760px;
}
.single-product-delivery .text, .single-product-delivery .image {
  flex-basis: 50%;
}
.single-product-delivery .text {
  background-color: #8c9190;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 100px;
  position: relative;
  z-index: 0;
}
.single-product-delivery .text h2 {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 1rem;
}
.single-product-delivery .text a {
  margin-top: 1rem;
}
.single-product-delivery .image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.single-product-delivery .image img {
  position: relative;
  overflow: visible;
  width: 95%;
  height: 95%;
  object-fit: cover;
  z-index: 1;
  top: 10%;
}

@media only screen and (max-width: 1248px) {
  .single-product-delivery .image img {
    height: 80%;
  }
}
@media only screen and (max-width: 1024px) {
  .single-product-delivery {
    flex-direction: column;
    height: auto;
  }
  .single-product-delivery .text, .single-product-delivery .image {
    flex-basis: 100%;
  }
  .single-product-delivery .text {
    padding: 100px;
  }
  .single-product-delivery .text h2 {
    font-size: 60px;
    line-height: 60px;
  }
  .single-product-delivery .image {
    display: none;
  }
  .single-product-delivery .image img {
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .single-product-delivery .text {
    padding: 50px;
  }
}
.about-products {
  padding: 70px 0;
}
.about-products .text {
  text-align: center;
  max-width: 1470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 150px;
  padding: 0 1rem;
}
.about-products .text h2 {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 1rem;
  color: #00A9E0;
}
.about-products .text p {
  margin-bottom: 1rem;
}
.about-products .text a {
  margin-top: 2rem;
}

.price-guarantee {
  max-width: 1470px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 100px;
}
.price-guarantee .guarantee, .price-guarantee .price-text {
  flex-basis: 50%;
}
.price-guarantee img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 312px;
  z-index: 1;
}
.price-guarantee .guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.price-guarantee .guarantee .rotate {
  background-image: url(../.././dist/img/price-guarantee.png);
  height: 615px;
  width: 615px;
  background-size: contain;
  animation-name: rotate-circle;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  position: relative;
  z-index: 0;
}
.price-guarantee .price-text {
  text-align: center;
}
.price-guarantee .price-text h2 {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 1rem;
  color: #00A9E0;
}
.price-guarantee .price-text p {
  padding: 0 100px;
}

@keyframes rotate-circle {
  to {
    transform: rotate(1turn);
  }
}
@media only screen and (max-width: 1248px) {
  .price-guarantee {
    flex-direction: column;
  }
  .price-guarantee .price-text {
    margin-top: 2.5rem;
    flex-basis: 100%;
    padding: 0 1rem;
  }
  .price-guarantee .price-text p {
    padding: 0;
  }
}
@media only screen and (max-width: 640px) {
  .price-guarantee img {
    width: 250px;
  }
  .price-guarantee .guarantee .rotate {
    height: 500px;
    width: 500px;
  }
}
@media only screen and (max-width: 400px) {
  .price-guarantee img {
    width: 150px;
  }
  .price-guarantee .guarantee .rotate {
    height: 300px;
    width: 300px;
  }
}
.contact {
  background-color: #8c9190;
  padding: 88px 0 0 0;
}
.contact .form-section {
  max-width: 1470px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1.5rem;
  align-items: center;
}
.contact .form-section .details, .contact .form-section .form {
  flex-basis: 48%;
}
.contact .form-section .details {
  color: white;
}
.contact .form-section .details h2 {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 1rem;
}
.contact .form-section .details ul {
  margin: 1.25rem 0;
}
.contact .form-section .details ul li {
  margin-bottom: 1rem;
}
.contact .form-section .details ul li::before {
  content: "-";
  color: #00A9E0;
  padding-right: 1rem;
}
.contact .form-section .details .social {
  width: 230px;
}
.contact .form-section .details .social ul.social-links {
  display: block;
  font-size: 0;
}
.contact .form-section .details .social ul.social-links li {
  display: inline-block;
}
.contact .form-section .details .social ul.social-links li.facebook a {
  background-image: url(../.././dist/img/facebook-icon.svg);
}
.contact .form-section .details .social ul.social-links li.instagram a {
  background-image: url(../.././dist/img/instagram-icon.svg);
}
.contact .form-section .details .social ul.social-links li.pinterest a {
  background-image: url(../.././dist/img/pinterest-icon.svg);
}
.contact .form-section .details .social ul.social-links li a {
  height: 20px;
  width: 20px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 30px;
}
.contact .form-section .form .forminator-custom-form {
  position: relative;
}
.contact .form-section .form .forminator-custom-form .forminator-row {
  margin-bottom: 1rem !important;
}
.contact .form-section .form .forminator-custom-form .forminator-row input[type=text], .contact .form-section .form .forminator-custom-form .forminator-row input[type=email] {
  height: 80px;
  padding: 10px 30px;
}
.contact .form-section .form .forminator-custom-form .forminator-row input[type=text]::placeholder:after, .contact .form-section .form .forminator-custom-form .forminator-row input[type=email]::placeholder:after {
  content: "*";
  color: red;
}
.contact .form-section .form .forminator-custom-form .forminator-row textarea {
  padding: 30px;
}
.contact .form-section .form .forminator-custom-form .forminator-row #checkbox-1 {
  position: absolute;
  bottom: 10px;
  left: 100px;
}
.contact .form-section .form .forminator-custom-form .forminator-row #checkbox-1 a {
  color: #2a2428;
}
.contact .form-section .form .forminator-custom-form .forminator-col {
  padding: 0 10px !important;
}
.contact .map-section {
  height: 650px;
  width: 100%;
  background-image: url(../.././dist/img/beh-map.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.contact .map-section .marker {
  width: 320px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  background-image: url(../.././dist/img/map-marker.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 1248px) {
  .contact .form-section {
    flex-direction: column;
  }
  .contact .form-section .details, .contact .form-section .form {
    flex-basis: 100%;
  }
  .contact .form-section .form {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .contact .form-section .form {
    width: 100%;
  }
  .contact .form-section .form .forminator-custom-form .forminator-row #checkbox-1 {
    position: absolute;
    bottom: -20px;
    left: 0px;
  }
}
.video-review {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  place-content: center;
}
.video-review .video {
  grid-row-start: 1;
  grid-column-start: 1;
  max-height: 600px;
  height: 100%;
  width: 100%;
}
.video-review .video video {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.video-review .review-slider {
  grid-row-start: 1;
  grid-column-start: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  width: 100%;
  height: 100%;
}
.video-review .review-slider .splide {
  max-width: 1470px;
  margin: 0 auto;
  width: 100%;
}
.video-review .review-slider .splide .review {
  max-width: 1470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.video-review .review-slider .splide .review .text {
  width: 29%;
  margin: 0 auto;
}
.video-review .review-slider .splide .review .text .quote {
  width: 33px;
  height: 26px;
  background-image: url(../.././dist/img/quotes.svg);
  background-size: cover;
  margin: 0 auto;
}
.video-review .review-slider .splide .review .text p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.video-review .review-slider .splide .review .text .content p {
  font-size: 25px;
  text-transform: uppercase;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  margin-top: 36px;
}
.video-review .review-slider .splide .review .google .image {
  width: 130px;
  height: 43px;
  margin: 0 auto;
}
.video-review .review-slider .splide .review .google .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-review .review-slider .splide .review .google .stars {
  color: #d76232;
  font-size: 24px;
}

@media only screen and (max-width: 480px) {
  .video-review .review-slider .splide .review {
    padding: 20px;
  }
}
.hire-terms {
  background-color: #d76232;
  color: white;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
.hire-terms p {
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.hire-terms p::after {
  width: 14px;
  height: 14px;
  content: "";
  display: inline-block;
  background-image: url(../.././dist/img/info-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}

.hire-terms-modal {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  height: fit-content;
  width: 450px;
  background-color: #F0F4F5;
  padding: 1rem;
  font-size: 0.875rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.hire-terms-modal p {
  margin-bottom: 0.75rem;
}
.hire-terms-modal p strong {
  text-transform: uppercase;
}
.hire-terms-modal.show {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.product-categories {
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
  gap: 2.5rem;
  max-width: 1470px;
  margin: 50px auto;
  flex-wrap: wrap;
}
.product-categories .product-category {
  flex-basis: 120px;
}
.product-categories .product-category a {
  text-decoration: none !important;
}
.product-categories .product-category a .product-category__image img {
  margin: 0 auto;
  height: auto;
  width: 100%;
  transition: all 0.3s ease;
}
.product-categories .product-category a .product-category__content {
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.product-categories .product-category a .product-category__content .product-category__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2a2428;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.product-categories .product-category a:hover .product-category__image img {
  transform: scale(1.05);
}

@media only screen and (max-width: 640px) {
  .product-categories {
    display: none;
  }
}
.search {
  position: relative;
}
.search .form-product-search .header-site__search-results {
  visibility: hidden;
  transition: all 0.3s ease;
}
.search .form-product-search .header-site__search-results.show {
  visibility: visible;
}
.search .form-product-search .header-site__search-results .search-results .search-container {
  position: absolute;
  background-color: white;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 1000px;
  height: 600px;
  overflow-y: scroll;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  justify-content: space-between;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list li {
  padding: 1rem;
  flex-basis: 30%;
  display: flex;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list li a:hover {
  text-decoration: none !important;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list li a:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list li a h2,
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list li a h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #00A9E0;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list li a p {
  color: #2a2428;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list a.card-product-search img {
  display: block;
  margin: 0 auto 1rem;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list a.card-product-search .card-product-search__price {
  color: #2a2428;
  font-size: 40px;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  line-height: 1.5rem;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list a.card-product-search .card-product-search__price-text {
  font-size: 20px;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list a.card-product-search .card-product-search__price del {
  all: unset;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list a.card-product-search .card-product-search__price del .amount {
  color: #8c9190;
  font-size: 20px;
  position: relative;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list a.card-product-search .card-product-search__price del .amount::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8c9190;
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%) rotate(-15deg);
  transform-origin: 50% 50%;
}
.search .form-product-search .header-site__search-results .search-results .search-container .result-product-list a.card-product-search .price-text {
  font-size: 20px;
}
.search .form-product-search .header-site__search-results .search-results .search-container .header {
  font-size: 2rem;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  margin-right: 1rem;
  border-bottom: 1px solid #2a2428;
}
.search .form-product-search .header-site__search-results .search-results .search-container .header h3 {
  font-family: "Poppins bold", sans-serif;
  color: #00A9E0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.search .form-product-search .header-site__search-results .search-results .search-container .sidebar {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.search .form-product-search .header-site__search-results .search-results .search-container .sidebar .popular-suggestions ul {
  margin-top: 1rem;
}
.search .form-product-search .header-site__search-results .search-results .search-container .sidebar .popular-suggestions ul li {
  text-transform: lowercase;
  margin-left: 30px;
}
.search .form-product-search .header-site__search-results .search-results .search-container .sidebar .popular-suggestions ul li::before {
  content: "";
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 5px 6px;
  width: 25px;
  height: 19px;
  display: inline-block;
  margin-left: -30px;
  background-image: url(../.././dist/img/search-icon.svg);
}
.search .form-product-search .header-site__search-results .search-results .search-container .sidebar .popular-suggestions ul li a {
  color: #2a2428;
  font-family: "Poppins bold", sans-serif;
}
.search .form-product-search .header-site__search-results .search-results .search-container .sidebar .category-list {
  margin-top: 1rem;
}
.search .form-product-search .header-site__search-results .search-results .search-container .sidebar .category-list ul li {
  line-height: 27px;
}
.search .form-product-search .header-site__search-results .search-results .search-container .sidebar .category-list ul li a {
  color: #2a2428;
  font-family: "Poppins bold", sans-serif;
}
.search .form-product-search .header-site__search-results .search-results .search-container .results {
  flex-basis: 75%;
}
.search .form-product-search .header-site__search-results .search-results .search-container .results .results-list a.btn {
  width: 190px;
  position: absolute;
  text-align: center;
  left: 20px;
  bottom: 20px;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-family: "Poppins bold", sans-serif;
}

@media only screen and (max-width: 968px) {
  .search .form-product-search .header-site__search-results .search-results .search-container {
    width: 100%;
    padding: 1rem;
    flex-direction: column;
    height: auto;
  }
  .search .form-product-search .header-site__search-results .search-results .search-container .results .results-list a.btn {
    left: 50%;
    transform: translateX(-50%);
  }
  .search .form-product-search .header-site__search-results .search-results .search-container .results .result-product-list {
    height: auto;
    margin-bottom: 4rem;
    margin-top: 1.5rem;
  }
  .search .form-product-search .header-site__search-results .search-results .search-container .results .result-product-list li {
    flex-basis: 50%;
  }
  .search .form-product-search .header-site__search-results .search-results .search-container .results .result-product-list li a {
    margin: 0 auto;
  }
  .search .form-product-search .header-site__search-results .search-results .search-container .sidebar {
    flex-direction: row;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .search .form-product-search .header-site__search-results .search-results .search-container {
    padding: 0.75rem;
  }
  .search .form-product-search .header-site__search-results .search-results .search-container .results .results-list li {
    flex-basis: 100%;
  }
}
.up-sells h2 {
  font-size: 90px;
  text-align: center;
  color: #00A9E0;
  line-height: 90px;
}
.up-sells ul.products {
  display: flex;
  flex-wrap: wrap;
  max-width: 1470px;
  margin: 0 auto;
  justify-content: center;
}
.up-sells ul.products li.product {
  flex-basis: 22%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.up-sells ul.products li.product a {
  display: block;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.up-sells ul.products li.product a .onsale {
  background-color: #d76232;
  width: 50px;
  height: 50px;
}
.up-sells ul.products li.product a img {
  width: auto;
  height: auto;
  margin: 0 auto 1rem;
  transition: transform 0.3s;
}
.up-sells ul.products li.product a h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #00A9E0;
  font-size: 20px;
  line-height: 20px;
}
.up-sells ul.products li.product a .price {
  color: #2a2428;
  font-size: 40px;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  line-height: 30px;
  margin-top: auto;
}
.up-sells ul.products li.product a .price-text {
  font-size: 20px;
}
.up-sells ul.products li.product a .price del {
  all: unset;
}
.up-sells ul.products li.product a .price del .amount {
  color: #8c9190;
  font-size: 20px;
  position: relative;
}
.up-sells ul.products li.product a .price del .amount::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8c9190;
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%) rotate(-15deg);
  transform-origin: 50% 50%;
}
.up-sells ul.products li.product a .star-rating {
  display: none;
}
.up-sells ul.products li.product form.cart {
  margin-bottom: 0;
}
.up-sells ul.products li.product form.cart button[type=submit] {
  padding: 1rem 2.5rem;
  background-color: #d76232;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
  font-weight: 700;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  display: block;
  width: 100%;
  cursor: pointer;
}
.up-sells ul.products li.product form.cart button[type=submit]:hover {
  background-color: #b34d23;
}
.up-sells ul.products li.product form.cart button[type=submit].added {
  padding: 1rem 1.5rem;
}
.up-sells ul.products li.product form.cart .quantity {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.up-sells ul.products li.product form.cart button.quantity_button {
  height: 48px;
  width: 48px;
  border-radius: 0;
  border: 1px solid #8c9190;
}
.up-sells ul.products li.product form.cart input.qty {
  height: 48px;
  width: 60%;
  border-radius: 0;
  border: 1px solid #8c9190;
}

.wp-block-woocommerce-cart-cross-sells-block h2 {
  font-family: "Poppins bold", sans-serif;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #00A9E0;
  font-size: 20px;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product a {
  display: block;
  text-align: center;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product a .onsale {
  background-color: #d76232;
  width: 50px;
  height: 50px;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product a img {
  width: auto;
  height: 300px;
  margin: 0 auto 1rem;
  transition: transform 0.3s;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product a .star-rating {
  display: none;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product .price {
  color: #2a2428;
  font-size: 40px;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product .price-text {
  font-size: 20px;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product .price del {
  all: unset;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product .price del .amount {
  color: #8c9190;
  font-size: 20px;
  position: relative;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product .price del .amount::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8c9190;
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%) rotate(-15deg);
  transform-origin: 50% 50%;
}

@media only screen and (max-width: 768px) {
  .up-sells ul.products {
    flex-direction: column;
    align-items: center;
  }
  .up-sells ul.products li.product {
    flex-basis: 100%;
    width: 80%;
    margin: 0 10% 1.5rem 10%;
  }
  .up-sells ul.products li.product a h2 {
    margin-bottom: 20px !important;
  }
}
.recent {
  margin-top: 2.5rem;
  padding: 2.5rem 0;
}
.recent h2 {
  font-size: 90px;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #00A9E0;
  line-height: 70px;
}
.recent ul.products_archive_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1470px;
  margin: 0 auto;
}
.recent ul.products_archive_grid li.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}
.recent ul.products_archive_grid li.product a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  text-decoration: none;
  height: 100%;
}
.recent ul.products_archive_grid li.product a .onsale {
  background-color: #d76232;
  width: 50px;
  height: 50px;
}
.recent ul.products_archive_grid li.product a h2 {
  font-size: 20px;
  margin: 1rem 0;
  font-family: "Poppins", sans-serif;
  line-height: 20px;
}
.recent ul.products_archive_grid li.product a .title {
  color: #00A9E0;
  margin: 1rem 0;
}
.recent ul.products_archive_grid li.product a .price {
  color: #2a2428;
  font-size: 40px;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  margin-top: auto;
}
.recent ul.products_archive_grid li.product a .price del {
  all: unset;
}
.recent ul.products_archive_grid li.product a .price del .amount {
  color: #8c9190;
  font-size: 20px;
  position: relative;
}
.recent ul.products_archive_grid li.product a .price del .amount::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8c9190;
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%) rotate(-15deg);
  transform-origin: 50% 50%;
}
.recent ul.products_archive_grid li.product a .price .price-text {
  font-size: 20px;
}
.recent ul.products_archive_grid li.product a img {
  height: 220px;
  object-fit: contain;
  transition: transform 0.3s;
}
.recent ul.products_archive_grid li.product a:hover img {
  transform: scale(1.05);
}
.recent ul.products_archive_grid li.product form.cart {
  display: none;
}

@media only screen and (max-width: 1248px) {
  .recent ul.products_archive_grid li.product {
    width: 48%;
  }
}
@media only screen and (max-width: 560px) {
  .recent {
    padding: 0 20px;
  }
  .recent ul.products_archive_grid li.product {
    width: 100%;
  }
}
/***************************
    PAGES       
***************************/
.blog-block .container {
  max-width: 1470px;
  margin: 0 auto;
}
.blog-block .posts {
  margin-top: 40px;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
.blog-block .posts article {
  flex-basis: 30%;
}
.blog-block .posts article a {
  text-decoration: none;
  color: #2a2428;
}
.blog-block .posts article a:hover .post-tn img {
  transform: scale(1.1);
}
.blog-block .posts article .post-tn {
  height: 342px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
.blog-block .posts article .post-tn img {
  width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
  transition: all 0.3s ease;
}
.blog-block .posts article .post-tn h3 {
  position: absolute;
  right: 0;
  top: -35px;
  color: rgba(255, 255, 255, 0.5);
  transform: rotate(-90deg);
  font-size: 110px;
  transform-origin: 100% 100%;
  line-height: 50px;
}
.blog-block .posts article h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  color: #00A9E0;
}

@media only screen and (max-width: 1248px) {
  .blog-block .container .posts {
    justify-content: space-between;
  }
  .blog-block .container .posts article {
    flex-basis: 45%;
  }
}
@media only screen and (max-width: 768px) {
  .blog-block .container .posts {
    justify-content: space-between;
  }
  .blog-block .container .posts article {
    flex-basis: 100%;
  }
}
.woocommerce-shop header.woocommerce-products-header, .tax-product_cat header.woocommerce-products-header {
  height: auto !important;
  margin: 2.5rem 0;
}
.woocommerce-shop header.woocommerce-products-header h1, .tax-product_cat header.woocommerce-products-header h1 {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 1rem;
  text-align: center;
}
.woocommerce-shop main, .tax-product_cat main {
  padding: 0 1rem;
}
.woocommerce-shop main .woocommerce-result-count, .woocommerce-shop main .woocommerce-ordering, .tax-product_cat main .woocommerce-result-count, .tax-product_cat main .woocommerce-ordering {
  display: none;
}
.woocommerce-shop main ul.products, .tax-product_cat main ul.products {
  max-width: 1470px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-shop main ul.products li.product, .tax-product_cat main ul.products li.product {
  margin-bottom: 100px;
  flex-basis: 23%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 1% 100px;
}
.woocommerce-shop main ul.products li.product a, .tax-product_cat main ul.products li.product a {
  display: block;
  text-align: center;
}
.woocommerce-shop main ul.products li.product a .onsale, .tax-product_cat main ul.products li.product a .onsale {
  background-color: #d76232;
  width: 50px;
  height: 50px;
}
.woocommerce-shop main ul.products li.product a img, .tax-product_cat main ul.products li.product a img {
  width: auto;
  height: 300px;
  margin: 0 auto 1rem;
  transition: transform 0.3s;
}
.woocommerce-shop main ul.products li.product a h2, .tax-product_cat main ul.products li.product a h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #00A9E0;
  font-size: 20px;
}
.woocommerce-shop main ul.products li.product a .price, .tax-product_cat main ul.products li.product a .price {
  color: #2a2428;
  font-size: 40px;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.woocommerce-shop main ul.products li.product a .price-text, .tax-product_cat main ul.products li.product a .price-text {
  font-size: 20px;
}
.woocommerce-shop main ul.products li.product a .price del, .tax-product_cat main ul.products li.product a .price del {
  all: unset;
}
.woocommerce-shop main ul.products li.product a .price del .amount, .tax-product_cat main ul.products li.product a .price del .amount {
  color: #8c9190;
  font-size: 20px;
  position: relative;
}
.woocommerce-shop main ul.products li.product a .price del .amount::after, .tax-product_cat main ul.products li.product a .price del .amount::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8c9190;
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%) rotate(-15deg);
  transform-origin: 50% 50%;
}
.woocommerce-shop main ul.products li.product a .star-rating, .tax-product_cat main ul.products li.product a .star-rating {
  display: none;
}
.woocommerce-shop main ul.products li.product:hover img, .tax-product_cat main ul.products li.product:hover img {
  transform: scale(1.1);
}
.woocommerce-shop main ul.products li.product form.cart, .tax-product_cat main ul.products li.product form.cart {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.woocommerce-shop main ul.products li.product form.cart .quantity, .tax-product_cat main ul.products li.product form.cart .quantity {
  height: 100%;
  display: block;
  margin-right: 10px;
}
.woocommerce-shop main ul.products li.product form.cart .quantity button.quantity_button, .tax-product_cat main ul.products li.product form.cart .quantity button.quantity_button {
  height: 48px;
  width: 35px;
  border-radius: 0;
  border: 1px solid #8c9190;
}
.woocommerce-shop main ul.products li.product form.cart .quantity input.qty, .tax-product_cat main ul.products li.product form.cart .quantity input.qty {
  height: 48px;
  width: 60px;
  border-radius: 0;
  border: 1px solid #8c9190;
}
.woocommerce-shop main ul.products li.product form.cart .btn, .tax-product_cat main ul.products li.product form.cart .btn {
  flex-grow: 1;
}
.woocommerce-shop main .load-more-container, .tax-product_cat main .load-more-container {
  text-align: center;
  margin-bottom: 50px;
}
.woocommerce-shop main .load-more-container .btn, .tax-product_cat main .load-more-container .btn {
  padding: 0.75rem 125px;
}

@media only screen and (max-width: 1248px) {
  .woocommerce-shop main ul.products li.product, .tax-product_cat main ul.products li.product {
    flex-basis: 29%;
    margin: 0 10px 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .woocommerce-shop main, .tax-product_cat main {
    padding: 0 0.75rem;
  }
  .woocommerce-shop main ul.products, .tax-product_cat main ul.products {
    justify-content: space-between;
  }
  .woocommerce-shop main ul.products li.product, .tax-product_cat main ul.products li.product {
    flex-basis: 45%;
    min-height: 430px;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 640px) {
  .woocommerce-shop main ul.products, .tax-product_cat main ul.products {
    justify-content: space-evenly;
  }
  .woocommerce-shop main ul.products li.product, .tax-product_cat main ul.products li.product {
    margin: 0 5px 50px;
  }
  .woocommerce-shop main ul.products li.product a, .tax-product_cat main ul.products li.product a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    justify-content: flex-end;
  }
  .woocommerce-shop main ul.products li.product a img, .tax-product_cat main ul.products li.product a img {
    height: auto;
  }
  .woocommerce-shop main ul.products li.product a .price, .tax-product_cat main ul.products li.product a .price {
    font-size: 30px;
  }
  .woocommerce-shop main ul.products li.product a .price-text, .tax-product_cat main ul.products li.product a .price-text {
    font-size: 16px;
    display: block;
  }
  .woocommerce-shop main ul.products li.product form.cart, .tax-product_cat main ul.products li.product form.cart {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-shop main ul.products li.product form.cart .quantity, .tax-product_cat main ul.products li.product form.cart .quantity {
    width: 100%;
    margin-bottom: 0.75rem;
    margin-right: 0;
  }
  .woocommerce-shop main ul.products li.product form.cart .quantity input.qty, .tax-product_cat main ul.products li.product form.cart .quantity input.qty {
    margin: 0 auto;
    display: inline-block;
    width: 66%;
  }
  .woocommerce-shop main ul.products li.product form.cart .quantity button.quantity_button, .tax-product_cat main ul.products li.product form.cart .quantity button.quantity_button {
    width: 15%;
  }
  .woocommerce-shop main ul.products li.product form.cart button, .tax-product_cat main ul.products li.product form.cart button {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .woocommerce-shop main ul.products li.product form.cart .quantity input.qty, .tax-product_cat main ul.products li.product form.cart .quantity input.qty {
    width: 50%;
  }
  .woocommerce-shop main ul.products li.product form.cart .quantity button.quantity_button, .tax-product_cat main ul.products li.product form.cart .quantity button.quantity_button {
    width: 20%;
  }
}
@media only screen and (max-width: 400px) {
  .woocommerce-shop main ul.products li.product form.cart .quantity button.quantity_button, .tax-product_cat main ul.products li.product form.cart .quantity button.quantity_button {
    width: 33px;
  }
  .woocommerce-shop main ul.products li.product form.cart .quantity input.quantity, .tax-product_cat main ul.products li.product form.cart .quantity input.quantity {
    width: 70px;
  }
  .woocommerce-shop main .load-more-container .btn, .tax-product_cat main .load-more-container .btn {
    width: 100%;
    display: block;
    padding: 0.75rem;
  }
}
.single-product main .product {
  max-width: 1470px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.single-product main .product .guarantee-flash {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 200px;
  height: 200px;
}
.single-product main .product .product-top {
  padding: 0 1rem;
  height: fit-content;
  display: block;
  margin-bottom: 120px;
}
.single-product main .product .product-top span.onsale {
  display: none;
}
.single-product main .product .product-top .images img {
  width: auto;
  height: 100%;
  max-height: 500px;
  margin: 0 auto;
}
.single-product main .product .product-top .summary h1 {
  font-size: 50px;
  margin-bottom: 1rem;
  color: #00A9E0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin: 1rem 0;
}
.single-product main .product .product-top .summary .woocommerce-product-rating .star-rating {
  color: #d76232;
}
.single-product main .product .product-top .summary .product-details .price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #F0F4F5;
  border-bottom: none;
}
.single-product main .product .product-top .summary .product-details .price-cart .price {
  font-family: "Poppins bold", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #2a2428;
  padding: 1rem;
}
.single-product main .product .product-top .summary .product-details .price-cart .price del {
  all: unset;
}
.single-product main .product .product-top .summary .product-details .price-cart .price del .amount {
  color: #8c9190;
  font-size: 20px;
  position: relative;
}
.single-product main .product .product-top .summary .product-details .price-cart .price del .amount::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8c9190;
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%) rotate(-15deg);
  transform-origin: 50% 50%;
}
.single-product main .product .product-top .summary .product-details .price-cart .price .price-text {
  font-size: 20px;
}
.single-product main .product .product-top .summary .product-details .price-cart .cart {
  margin-bottom: 0;
}
.single-product main .product .product-top .summary .product-details .price-cart .cart button[type=submit] {
  padding: 1rem 2.5rem;
  background-color: #d76232;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
  font-weight: 700;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
}
.single-product main .product .product-top .summary .product-details .price-cart .cart button[type=submit]:hover {
  background-color: #b34d23;
}
.single-product main .product .product-top .summary .product-details .price-cart .cart button[type=submit].added {
  padding: 1rem 1.5rem;
}
.single-product main .product .product-top .summary .product-details .price-cart .cart .quantity {
  height: 100%;
  display: block;
  margin-right: 10px;
}
.single-product main .product .product-top .summary .product-details .price-cart .cart .quantity button.quantity_button {
  height: 48px;
  width: 48px;
  border-radius: 0;
  border: 1px solid #8c9190;
}
.single-product main .product .product-top .summary .product-details .price-cart .cart .quantity input.qty {
  height: 48px;
  width: 85px;
  border-radius: 0;
  border: 1px solid #8c9190;
}
.single-product main .product .product-top .summary .product-details .product_meta {
  background-color: #00A9E0;
  color: white;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 40px;
}
.single-product main .product .product-top .summary .product-details .product_meta .terms a {
  color: white;
  text-decoration: none;
  margin-right: 1rem;
}
.single-product main .product .product-top .summary .product-details .product_meta .sku {
  text-transform: uppercase;
}
.single-product main .product .product-top .summary .woocommerce-product-attributes {
  margin-bottom: 40px;
}
.single-product main .product .product-top .summary .woocommerce-product-attributes-item__label {
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  margin-right: 1rem;
  text-transform: uppercase;
}
.single-product main .product .product-top .summary .woocommerce-product-attributes-item__value {
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  border: 1px solid #F0F4F5;
  display: block;
  width: fit-content;
  padding: 0.75rem 2.5rem;
}
.single-product main .product .product-top .summary .product-description h2 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #00A9E0;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.single-product main .product .product-top .summary .product-description p {
  font-family: "Poppins", sans-serif;
}
.single-product main .product-bottom .related, .single-product main .product-bottom .previous {
  margin: 80px 0;
}
.single-product main .product-bottom .related h2, .single-product main .product-bottom .previous h2 {
  font-size: 90px;
  margin-bottom: 1rem;
  text-align: center;
  color: #00A9E0;
  line-height: 70px;
}
.single-product main .product-bottom .related .related-items .splide .splide__arrows .splide__arrow--prev, .single-product main .product-bottom .previous .related-items .splide .splide__arrows .splide__arrow--prev {
  left: 100px;
}
.single-product main .product-bottom .related .related-items .splide .splide__arrows .splide__arrow--next, .single-product main .product-bottom .previous .related-items .splide .splide__arrows .splide__arrow--next {
  right: 100px;
}
.single-product main .product-bottom #reviews {
  margin: 0 1rem 2.5rem;
}
.single-product main .product-bottom #reviews #comments h2 {
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}

@media only screen and (max-width: 1248px) {
  .single-product main .product .product-top .summary .product-details .price-cart .price {
    line-height: 20px;
  }
  .single-product main .product .product-top .summary .product-details .cart .quantity {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .single-product main .product .guarantee-flash {
    width: 150px;
    height: 150px;
    left: 0;
  }
  .single-product main .product .product-top .summary h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .single-product main .product .product-top .summary .product-details .price-cart {
    flex-direction: column;
  }
  .single-product main .product .product-top .summary .product-details .price-cart .cart {
    display: flex;
    flex-direction: column;
  }
  .single-product main .product .product-top .summary .product-details .price-cart .cart .quantity {
    margin-right: 0;
    display: flex;
    justify-content: space-between;
  }
  .single-product main .product .product-top .summary .product-details .price-cart .cart .quantity button.quantity_button {
    width: 33px;
  }
  .single-product main .product .product-top .summary .product-details .price-cart .cart .quantity input.quantity {
    width: 70px;
  }
  .related-items .splide .splide__arrows .splide__arrow--prev {
    left: 50px !important;
  }
  .related-items .splide .splide__arrows .splide__arrow--next {
    right: 50px !important;
  }
}
.checkout-header {
  background-color: #00A9E0;
  color: white;
  margin-bottom: 50px;
}
.checkout-header .billing, .checkout-header .shipping {
  max-width: 1470px;
  margin: 0 auto;
  padding-right: 30px;
}
.checkout-header .billing .text-holder, .checkout-header .shipping .text-holder {
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 1rem;
  align-items: center;
}
.checkout-header .billing .text-holder .title-text, .checkout-header .shipping .text-holder .title-text {
  padding-right: 1rem;
}
.checkout-header .billing .text-holder .title-text h2, .checkout-header .shipping .text-holder .title-text h2 {
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.checkout-header .billing .text-holder .title-text p a, .checkout-header .shipping .text-holder .title-text p a {
  color: white;
}
.checkout-header .billing .text-holder .title-text p a:hover, .checkout-header .shipping .text-holder .title-text p a:hover {
  text-decoration: underline;
}
.checkout-header #shipping_text {
  display: none;
}

.checkout {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 1rem;
}
.checkout .woocommerce-billing-fields h3, .checkout .woocommerce-shipping-fields h3 {
  margin-bottom: 1rem;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.checkout .woocommerce-billing-fields .form-row label, .checkout .woocommerce-shipping-fields .form-row label {
  font-weight: 700;
}
.checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper input[type=text], .checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper input[type=email], .checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper input[type=tel], .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper input[type=text], .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper input[type=email], .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper input[type=tel] {
  width: 100%;
  height: 48px;
  border: 1px solid #8c9190;
  border-radius: 0;
  margin-bottom: 0.75rem;
  padding: 10px;
}
.checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .select2-selection, .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .select2-selection {
  width: 100%;
  height: 48px;
  border: 1px solid #8c9190;
  border-radius: 0;
  margin-bottom: 0.75rem;
  padding: 10px;
}
.checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .select2-selection .select2-selection__arrow, .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .select2-selection .select2-selection__arrow {
  top: 11px;
}
.checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .description, .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .description {
  font-size: 14px;
  color: #8c9190;
  display: none;
  background: transparent;
  margin-top: 0;
  padding-top: 0;
  transition: all 0.4s ease-out;
}
.checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .description::before, .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .description::before {
  display: none;
}
.checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .description a, .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .description a {
  color: #8c9190;
}
.checkout .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .hasDatepicker, .checkout .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .hasDatepicker {
  position: relative;
  background-image: url(../.././dist/img/datepicker-icon.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left 10px center;
  padding: 10px 10px 10px 40px !important;
}
.checkout .woocommerce-billing-fields #billing_country_field .woocommerce-input-wrapper, .checkout .woocommerce-billing-fields #shipping_country_field .woocommerce-input-wrapper, .checkout .woocommerce-shipping-fields #billing_country_field .woocommerce-input-wrapper, .checkout .woocommerce-shipping-fields #shipping_country_field .woocommerce-input-wrapper {
  width: 100%;
  height: 48px;
  border: 1px solid #8c9190;
  border-radius: 0;
  margin-bottom: 0.75rem;
  display: block;
  padding: 10px;
}
.checkout #order_review_heading {
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 0;
}
.checkout #order_review table.shop_table {
  background-color: #F0F4F5;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}
.checkout #order_review table.shop_table thead {
  display: none;
}
.checkout #order_review table.shop_table tr td {
  border: none;
}
.checkout #order_review table.shop_table tr td.product-total {
  display: none;
}
.checkout #order_review table.shop_table tfoot {
  display: none;
}
.checkout ul.wc_payment_methods {
  display: none !important;
}
.checkout .place-order {
  background: white;
}
.checkout .place-order .btn {
  width: 100%;
  margin-top: 1rem;
  border-radius: 0;
  text-transform: uppercase;
  padding: 1rem;
}
.checkout #checkout_bottom {
  display: none;
}
.checkout .show-shipping {
  width: 100%;
  display: block;
  text-align: center;
  margin: 1rem 0;
  text-transform: uppercase;
}
.checkout span.optional {
  display: none;
}

@media only screen and (max-width: 560px) {
  .checkout-header .billing, .checkout-header .shipping {
    padding-right: 0;
  }
  .checkout-header .billing .text-holder, .checkout-header .shipping .text-holder {
    flex-direction: column;
  }
  .checkout-header .billing .text-holder .title-text, .checkout-header .shipping .text-holder .title-text {
    text-align: center;
    padding-right: 0;
  }
  .checkout-header .billing .text-holder .title-text h2, .checkout-header .shipping .text-holder .title-text h2 {
    font-size: 20px;
  }
  .checkout-header .billing .text-holder .title-text p, .checkout-header .shipping .text-holder .title-text p {
    margin-bottom: 1rem;
  }
  .checkout .woocommerce-billing-fields .form-row, .checkout .woocommerce-shipping-fields .form-row {
    width: 100%;
  }
  .checkout .woocommerce-additional-fields {
    padding: 1rem;
  }
}
.woocommerce-cart .wp-block-woocommerce-cart {
  max-width: 1470px;
  margin: 1rem auto;
  padding: 0 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
  flex-direction: column;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 100%;
  padding-right: 0;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar {
  width: 100%;
  padding-left: 0;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wp-block-woocommerce-cart-order-summary-shipping-block {
  display: none;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wp-block-woocommerce-proceed-to-checkout-block {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__submit-container {
  display: none;
}
.woocommerce-cart .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block h2 {
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.woocommerce-cart .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  color: #d76232;
}
.woocommerce-cart .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .products-btn {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
}
.woocommerce-cart .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .products-btn .btn {
  text-transform: uppercase;
}

.xoo-wsc-container a {
  color: white;
}
.xoo-wsc-container .xoo-wsc-items-count {
  border: 1px solid white;
}

.woocommerce-shipping-totals.shipping {
  display: none;
}

.page-my-account .woocommerce {
  max-width: 1470px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}
.page-my-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  background-color: #00A9E0;
  color: white;
  border-bottom: 1px solid white;
}
.page-my-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  height: 100%;
  width: 100%;
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem;
}
.page-my-account .woocommerce .woocommerce-MyAccount-navigation ul li a::after {
  content: "▶";
  color: white;
  float: right;
  margin-right: 10px;
  transition: all 0.3s;
}
.page-my-account .woocommerce .woocommerce-MyAccount-navigation ul li a:hover::after {
  margin-right: 0;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content {
  background-color: white;
  padding: 1rem;
  border: 1px solid #00A9E0;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content a:not(.btn) {
  color: #00A9E0;
  text-decoration: none;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content a:not(.btn):hover {
  text-decoration: underline;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content .btn {
  color: white;
  border-radius: 0;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info {
  background-color: #F0F4F5;
  border-top-color: #00A9E0;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info::before {
  color: #00A9E0;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 1rem;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses header {
  height: auto;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses header h3 {
  margin-bottom: 1rem;
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content label {
  font-weight: 700;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content input[type=text], .page-my-account .woocommerce .woocommerce-MyAccount-content input[type=email], .page-my-account .woocommerce .woocommerce-MyAccount-content input[type=tel], .page-my-account .woocommerce .woocommerce-MyAccount-content input[type=password] {
  width: 100%;
  height: 48px;
  border: 1px solid #8c9190;
  border-radius: 0;
  margin-bottom: 0.75rem;
  padding: 10px;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content .select2-selection {
  width: 100%;
  height: 48px;
  border: 1px solid #8c9190;
  border-radius: 0;
  margin-bottom: 0.75rem;
  padding: 10px;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content .select2-selection .select2-selection__arrow {
  top: 11px;
}
.page-my-account .woocommerce .woocommerce-MyAccount-content button[name=save_account_details] {
  margin-top: 1rem;
}

.thank-you-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 1rem;
  align-items: center;
  text-align: center;
  max-width: 1470px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
.thank-you-content .container {
  margin-bottom: 2.5rem;
}
.thank-you-content .container h1 {
  font-size: 90px;
  color: #00A9E0;
}
.thank-you-content .container .thank-you-content__content {
  margin-bottom: 3rem;
}
.thank-you-content .woocommerce-order {
  margin-top: 2.5rem;
}
.thank-you-content .woocommerce-order-overview.order_details {
  display: flex;
  flex-wrap: wrap;
}
.thank-you-content .woocommerce-order-overview.order_details li {
  margin-bottom: 1rem;
  flex-basis: 50%;
  text-align: left;
  margin-right: 0;
  border-right: none;
  border-bottom: 1px solid #F0F4F5;
  padding-bottom: 0.75rem;
}
.thank-you-content .woocommerce-order-overview.order_details li:last-of-type {
  border-bottom: 1px solid #F0F4F5;
}
.thank-you-content .woocommerce-order .woocommerce-notice {
  margin-bottom: 2.5rem;
}
.thank-you-content .woocommerce-order h2 {
  font-family: "Poppins bold", sans-serif;
}
.thank-you-content .woocommerce-order .woocommerce-order-details table.order_details tfoot tr:nth-child(3) {
  display: none;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  position: relative;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .thank-you-content .woocommerce-order-overview.order_details li {
    flex-basis: 100%;
  }
}
