@charset "UTF-8";
@font-face {
  font-family: "Noah";
  src: url("../fonts/Noah-Regular.woff2") format("woff2"), url("../fonts/Noah-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fredoka One";
  src: url("../fonts/FredokaOne-Regular.woff2") format("woff2"), url("../fonts/FredokaOne-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.appear {
  animation: 1.5s appear;
}

.disappear {
  animation: 1.5s disappear;
}

@keyframes appear {
  0% {
    opacity: 0;
    bottom: -3rem;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
    bottom: -3rem;
  }
  100% {
    opacity: 0;
    bottom: 0;
  }
}
/* HTML: <div class="loader"></div> */
.loader-wrapper {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 50rem;
  margin: 5rem 0;
}
.loader-wrapper .loader {
  margin: auto;
}

.button-loader {
  display: none;
  width: 100%;
  height: 100%;
}
.button-loader .loader {
  margin: auto;
}

.loader {
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #ffa516 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #ffa516);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
/* Revolving banner - crawling effect */
.revolving-banner {
  white-space: nowrap; /* Prevent text wrapping */
}

.revolving-banner .crawl-container {
  display: inline-block;
  animation: crawl 30s linear infinite; /* Adjust speed as needed */
}

.revolving-banner .crawl-text {
  display: inline-block;
  padding-right: 2rem; /* Space between repeating text */
}

/* Speed Control */
.revolving-banner .crawl-container {
  animation-duration: 120s; /* Slower = higher number */
}

/* Direction Control */
@keyframes crawl {
  0% {
    transform: translateX(0%);
  } /* Start from right */
  100% {
    transform: translateX(-100%);
  } /* End at left */
}
/* For right-to-left scrolling, reverse the values */
@keyframes crawl-rtl {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
h1, .is-h1 {
  font-size: clamp(2.3rem, 6.5vw - 1.9rem, 4.5rem);
  font-weight: 400;
  font-family: "Fredoka One", sans-serif;
}
@media only screen and (max-width: 768px) {
  h1, .is-h1 {
    line-height: 3rem;
  }
}

h2, .is-h2 {
  font-size: clamp(2rem, 6.5vw - 1.9rem, 2.5rem);
  font-weight: 400;
  font-family: "Fredoka One", sans-serif;
}

h3 {
  font-size: clamp(1.35rem, 4.3vw - 1.4rem, 1.875rem);
  font-weight: 400;
  font-family: "Fredoka One", sans-serif;
}

h4 {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Fredoka One", sans-serif;
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 1rem;
  }
}

h5 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2rem;
  font-family: "Fredoka One", sans-serif;
}
@media only screen and (max-width: 768px) {
  h5 {
    font-size: 0.8rem;
  }
}

h6 {
  font-size: clamp(0.8rem, 1.3vw - 0.2rem, 0.9rem);
  font-weight: 400;
  font-family: "Fredoka One", sans-serif;
}

p {
  font-family: "Noah", sans-serif;
}

@media only screen and (max-width: 576px) {
  .is-h1 br {
    display: none;
  }
}

.is-h1-section-title {
  text-align: center;
  font-weight: 400;
  font-family: "Fredoka One", sans-serif;
}

li {
  font-family: "Noah", sans-serif;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Noah", sans-serif;
}

.p-small {
  font-size: 0.8rem;
}

.is-bigger-p {
  font-size: clamp(0.9rem, 1.7vw - 0.2rem, 1.2rem);
}

span {
  font-size: clamp(0.8rem, 1.7vw - 0.2rem, 1rem);
  font-family: "Noah", sans-serif;
}
@media only screen and (max-width: 576px) {
  span {
    line-height: 1rem;
  }
}

a {
  word-break: break-word;
}

address {
  font-family: "Noah", sans-serif;
}

.text-primary-font {
  font-family: "Fredoka One", sans-serif;
}

.no-decoration {
  text-decoration: none !important;
}

.text-muted {
  color: #ECECEC !important;
}

.info-section .container h6 {
  text-transform: uppercase;
  margin-bottom: 4.25rem;
}
@media only screen and (max-width: 768px) {
  .info-section .container h6 {
    margin-bottom: 2rem;
  }
}
.info-section .container .info-content {
  min-height: 13.7rem;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .info-section .container .info-content {
    flex-direction: column;
  }
}
.info-section .container .info-content .info-triggers {
  display: grid;
  grid-template-columns: 5rem 5rem;
  place-items: center;
  justify-content: center;
  gap: 2rem;
  width: 40%;
  max-height: 11rem;
}
@media only screen and (max-width: 768px) {
  .info-section .container .info-content .info-triggers {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
  }
}
.info-section .container .info-content .info-text {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .info-section .container .info-content .info-text {
    width: 100%;
  }
}

.content-page {
  margin-top: 7.5rem;
  margin-bottom: 6.35rem;
}
.content-page .container {
  max-width: 43.5rem;
}
.content-page h2, .content-page .is-h2 {
  margin-bottom: 2.5rem;
}
.content-page .text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8rem;
  margin-bottom: 2.5rem;
}
.content-page .text-wrapper li {
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Noah", sans-serif;
}
@media only screen and (max-width: 576px) {
  .content-page .text-wrapper li {
    line-height: 1rem;
  }
}
.content-page .text-wrapper h4 {
  font-size: 1.1rem;
  line-height: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}
.content-page .text-wrapper h3 {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.8rem;
}

.intro {
  position: relative;
  background: white;
  padding-top: 2rem;
  z-index: 1;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .intro {
    padding: 5rem 0;
  }
}
.intro .wave-wrapper {
  width: 100%;
  position: absolute;
  top: -4rem;
}
.intro .container {
  top: -6.5rem;
  max-width: 49.5rem;
}
@media only screen and (max-width: 768px) {
  .intro .container img {
    max-height: 25rem;
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}
.intro--bg {
  background: white;
}
.intro--bg img {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .intro--bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.products {
  padding: 0 0 4.7rem;
  width: 100%;
  position: relative;
}
.products .container {
  max-width: 56.5rem;
}
.products h2, .products .is-h2 {
  margin-bottom: 1rem;
}
.products .grid-boxes {
  position: relative;
  min-height: 50vh;
  place-content: start;
}
.products .grid-boxes .no-products-message {
  position: absolute;
  top: 10%;
  left: 50%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  transform: translateX(-50%);
}
.products .loader-wrapper {
  z-index: 5;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: #F3FBFF;
  height: 100%;
  width: 100%;
  min-height: unset;
  margin: unset;
}
.products .loader-wrapper .loader {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 45%;
}

.contact {
  margin-top: 7.5rem;
}
.contact .container {
  max-width: 45.5rem;
}
.contact--intro {
  margin-bottom: 5.5rem;
}
.contact--intro h2, .contact--intro .is-h2 {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .contact--intro {
    margin-bottom: 1rem;
  }
  .contact--intro .col-md-6 {
    margin-bottom: 1rem;
  }
  .contact--intro .col-md-6 p {
    padding: 0 !important;
  }
}

.checkout--intro {
  margin-top: 2rem;
}
.checkout--form {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 2.75rem;
  margin-bottom: 4.5rem;
}
@media only screen and (max-width: 576px) {
  .checkout--form {
    grid-template-columns: 1fr;
  }
}
.checkout--form h3 {
  font-size: 1rem;
}
.checkout .cart {
  margin-top: 2rem;
  padding: 0.8rem 1rem;
}

::-moz-selection { /* Code for Firefox */
  background: #A89B93;
}

::selection {
  background: #A89B93;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 28px;
  scroll-behavior: smooth;
  font-family: "Noah", sans-serif;
}

@media only screen and (max-width: 2560px) {
  html {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1919px) {
  html {
    font-size: 20px;
  }
}
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #0B1F4A;
  background-color: #F3FBFF;
  font-family: "Noah", sans-serif;
}

a {
  color: unset;
  transition: 0.2s ease-out;
}
a:hover {
  color: unset;
  transition: 0.2s ease-in;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  transition: 0.2s ease-out;
}
a:not([href]):not([class]):hover, a:not([href]):not([class]):hover:hover {
  color: unset;
  transition: 0.2s ease-in;
  cursor: pointer;
}

.home {
  position: relative;
  top: 8rem !important;
  z-index: 1;
}

main {
  position: relative;
  z-index: 1;
}

.navy {
  color: #EEF0F3 !important;
}

.navy-bg {
  background-color: #EEF0F3 !important;
}
.navy-bg .testimonial-author {
  color: #6E7C89 !important;
}

.navy-accordion .accordion-item,
.navy-accordion .accordion-item:last-of-type {
  border-bottom: thin solid #EEF0F3 !important;
}
.navy-accordion .accordion-button:not(.collapsed):after {
  background-image: url("../../assets/img/close_navy.svg");
}
.navy-accordion .accordion-button:after {
  background-image: url("../../assets/img/open_navy.svg");
}

.beige {
  color: #FDF9F2;
}

table {
  border-collapse: collapse !important;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  table {
    font-size: 0.7rem;
  }
}
table tbody tr:last-child {
  border-bottom: none !important;
}
table tbody tr:last-child td {
  border-bottom: none !important;
}
table tbody tr, table tbody td {
  padding: 8px;
  text-align: left;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #7F736C;
}

.wp-block-table td {
  border-bottom: 1px solid #7F736C !important;
}

.otgs-development-site-front-end {
  display: none !important;
}

.img-cover, .intro .container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.icon-left {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
}

.container {
  max-width: 57.55rem;
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}
@media only screen and (max-width: 375px) {
  .container {
    padding: 0 0.75rem;
  }
}

.container-small {
  max-width: 50.4rem;
}

main {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.reverse-order {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .reverse-order {
    flex-direction: column-reverse;
  }
}

.header {
  position: relative;
}
.header .container {
  max-width: 63rem;
}
.header .banner {
  position: relative;
  padding: 0.75rem 2rem;
  width: 100%;
  color: white;
  background: rgba(5, 49, 103, 0.3);
}
.header .banner p {
  margin-bottom: 0;
}
.header .banner img {
  vertical-align: inherit;
}
.header .static-banner {
  text-align: center;
}
.header li .header--lang {
  transition: 0.2s ease-out;
  margin-left: 1rem;
}
.header li .header--lang:hover {
  transition: 0.2s ease-in;
}
.header li a, .header li .header--lang {
  padding: 0.375rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 12.5rem;
  border: 2px solid transparent;
}
.header li a:hover, .header li .header--lang:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.header li.current_page_item a {
  background: #053167;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .header li.current_page_item a {
    padding: unset !important;
    font-size: unset !important;
  }
}
.header li.current_page_item a:hover {
  background: #053167 !important;
  color: #ffffff !important;
  opacity: 0.8;
}
.header li.current-menu-item a, .header li .opened {
  background: #053167;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .header li.current-menu-item a, .header li .opened {
    padding: unset !important;
    font-size: unset !important;
  }
}
.header li.current-menu-item a:hover, .header li .opened:hover {
  background: #053167 !important;
  color: #ffffff !important;
  opacity: 0.8;
}
.header .opened:hover .custom-select {
  color: #ffffff !important;
}
.header .opened .custom-select:hover {
  color: #ffffff !important;
}
.header .opened img {
  filter: unset !important;
}
.header .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(123deg, #D8F3FF -0.19%, #10AEFA 24.64%, #005BA2 50.25%, #00133E 100.75%);
}
.header .stars {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 1440px) {
  .header .stars {
    width: 100%;
  }
}
.header .stars img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header--backgrounds {
  position: absolute;
  max-width: 70rem;
  height: 100%;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header--backgrounds .left {
  position: absolute;
  left: 0;
  top: 20%;
}
@media only screen and (max-width: 992px) {
  .header--backgrounds .left {
    max-width: 12rem;
    height: auto;
  }
  .header--backgrounds .left img {
    height: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .header--backgrounds .left {
    top: 20%;
    left: 4rem;
    max-width: 12rem;
  }
}
@media only screen and (max-width: 768px) {
  .header--backgrounds .left {
    left: 4rem;
  }
}
@media only screen and (max-width: 576px) {
  .header--backgrounds .left {
    left: 1rem;
    max-width: 6rem;
  }
}
.header--backgrounds .right {
  position: absolute;
  right: 0;
  top: 23%;
}
@media only screen and (max-width: 992px) {
  .header--backgrounds .right {
    max-width: 12rem;
    height: auto;
  }
  .header--backgrounds .right img {
    height: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .header--backgrounds .right {
    top: 20%;
    height: auto;
    max-width: 12rem;
    right: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .header--backgrounds .right {
    right: 4rem;
  }
}
@media only screen and (max-width: 576px) {
  .header--backgrounds .right {
    right: 1rem;
    max-width: 7rem;
  }
}
.header--cart .amount {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
}
.header--mobile {
  display: none !important;
}
@media only screen and (max-width: 992px) {
  .header--mobile {
    display: block;
  }
}
.header--mobile:first-child {
  margin-left: 0;
}
.header--mobile a {
  padding: unset !important;
}
.header .nav-button, .header .header--cart, .header .header--mobile {
  display: flex;
  align-items: center;
  position: relative;
}
.header .nav-button img, .header .header--cart img, .header .header--mobile img {
  transition: 0.3s ease-in-out;
  width: 2.75rem;
  height: 2.75rem;
}
.header .nav-button img:hover, .header .header--cart img:hover, .header .header--mobile img:hover {
  cursor: pointer;
  opacity: 0.8;
}
.header--content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 12rem;
}
@media only screen and (max-width: 992px) {
  .header--content {
    padding-top: 2rem;
  }
}
.header--content h1, .header--content .is-h1 {
  color: white;
  margin-bottom: 0.8rem;
}
.header--content p {
  color: white;
  max-width: 34.8rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 1101px) {
  .header--content p {
    max-width: 19rem;
  }
}
.header--content .logo {
  position: relative;
  top: -3rem;
  height: auto;
  max-width: 17.35rem;
}
@media only screen and (max-width: 992px) {
  .header--content .logo {
    top: -1.25rem;
    max-width: 12rem;
    margin-top: 13rem;
  }
}
@media only screen and (max-width: 576px) {
  .header--content .logo {
    max-width: 9rem;
  }
}
.header--nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.2s ease-out;
}
.header--nav .container {
  display: flex;
  height: 5.375rem;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.header--nav .container h2, .header--nav .container .is-h2 {
  color: #FFF;
  font-size: 1.25rem;
  text-wrap: avoid;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (max-width: 576px) {
  .header--nav .container h2, .header--nav .container .is-h2 {
    font-size: 1rem;
  }
}
.header--mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .header--mobile {
    display: flex !important;
  }
}
.header--lang {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 0.35rem;
}
.header--lang img {
  width: 1.5rem;
  height: 1.5rem;
}
.header--links {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .header--links {
    justify-content: flex-end;
  }
}
.header--links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .header--links ul {
    flex-direction: column;
    width: 100%;
  }
}
.header--links ul li {
  list-style: none;
  font-family: "Fredoka One", sans-serif !important;
  color: white;
  transition: 0.2s ease-out;
}
.header--links ul li:hover img {
  transition: 0.2s ease-in;
}
.header--links ul li a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.not-home, .scrolled {
  background: #E6F6FF;
  transition: 0.2s ease-in;
}
.not-home .banner, .scrolled .banner {
  background: #053167;
  color: #fff;
}
.not-home h2, .not-home .is-h2, .scrolled h2, .scrolled .is-h2 {
  color: #053167 !important;
}
.not-home li a:hover, .not-home li .header--lang:hover, .scrolled li a:hover, .scrolled li .header--lang:hover {
  border: 2px solid #053167;
  background: transparent;
  color: #053167 !important;
}
@media only screen and (max-width: 768px) {
  .not-home li a:hover, .not-home li .header--lang:hover, .scrolled li a:hover, .scrolled li .header--lang:hover {
    padding: unset !important;
    font-size: unset !important;
  }
}
.not-home li, .scrolled li {
  color: #053167 !important;
}
.not-home .custom-select:after, .scrolled .custom-select:after {
  filter: unset;
}
.not-home .select-selected:after, .scrolled .select-selected:after {
  filter: unset;
}
.not-home .header--lang, .scrolled .header--lang {
  position: relative;
}
.not-home .header--lang img, .scrolled .header--lang img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(77%) saturate(3092%) hue-rotate(204deg) brightness(85%) contrast(96%);
}
.not-home .custom-menu a:hover, .scrolled .custom-menu a:hover {
  color: white !important;
  opacity: 0.8;
}

.scrolled {
  z-index: 999;
  background: #E6F6FF;
  transition: 0.2s ease-in;
}
.scrolled h2, .scrolled .is-h2 {
  color: #053167 !important;
}
.scrolled li {
  color: #053167 !important;
}
.scrolled .custom-select:after {
  filter: unset;
}
.scrolled .select-selected:after {
  filter: unset;
}
.scrolled .header--lang {
  position: relative;
}
.scrolled .header--lang img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(77%) saturate(3092%) hue-rotate(204deg) brightness(85%) contrast(96%);
}

.line-spacer {
  width: 100%;
  border-bottom: thin solid #ECECEC;
  margin-top: 1rem;
  margin-bottom: 1.15rem;
}

.wave-wrapper {
  position: relative;
  height: 6.5rem;
  z-index: 1;
}
.wave-wrapper .wave-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2;
}
.wave-wrapper .wave-bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .wave-wrapper .wave-bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.opener:hover {
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .mobile-hide {
    display: none !important;
  }
}

.custom-menu {
  position: absolute;
  top: 8rem;
  display: none;
  min-width: 10rem;
  padding: 1.75rem 2rem;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  background: #053167;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .custom-menu {
    right: 0;
    top: 5rem;
  }
}
.custom-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.custom-menu a {
  padding: 0.2rem 0;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
  color: white;
}
.custom-menu a:hover {
  color: white !important;
  opacity: 0.8;
}

.footer {
  padding: 5.6rem 0 5.2rem 0;
  position: relative;
  z-index: 1;
}
.footer .container {
  max-width: 50rem;
}
.footer--bg img {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .footer--bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 576px) {
  .footer--logo {
    text-align: center;
  }
}
.footer--content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 576px) {
  .footer--content {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer--content h5 {
  font-size: 0.8rem;
  font-family: "Fredoka One", sans-serif;
  margin-bottom: 0.7rem;
}
.footer--socials {
  display: flex;
  align-items: flex-start;
}
.footer--contact {
  display: flex;
  margin-bottom: 0.8rem;
}
.footer--contact p {
  line-height: 1.25rem;
  margin-bottom: 0;
}
.footer--links {
  margin-top: 2.5rem;
}
.footer--links ul {
  padding-left: 0;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}
@media only screen and (max-width: 576px) {
  .footer--links ul {
    gap: 0.5rem;
  }
}
.footer--links ul li {
  list-style: none;
}
@media only screen and (max-width: 375px) {
  .footer--links ul li {
    font-size: 0.9rem;
    gap: 0.5rem;
  }
}

.btn, .filters--content .filters--list .list-group .list-group-item.active span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  min-height: 2.1rem;
  font-family: "Fredoka One", sans-serif;
  line-height: 2.1rem;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0rem 1.5rem 0rem 1.5rem;
  font-size: clamp(0.8rem, 1.7vw - 0.2rem, 1rem);
  transition: 0.25s ease-out;
}

.btn-large {
  padding: 0.5rem 1.8rem;
}
@media only screen and (max-width: 992px) {
  .btn-large {
    padding: 0.25rem 1.8rem;
  }
}

.btn-circle {
  border: thin solid #DCD7D2 !important;
  padding: 0.7rem;
  border-radius: 100%;
  height: 4rem;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 768px) {
  .btn-circle {
    height: 3.5rem;
    padding: 1.2rem;
  }
  .btn-circle img {
    max-height: 1rem;
  }
}

.btn-primary {
  background-color: #FDF9F2;
  border: #FDF9F2;
  color: #053167;
}
.btn-primary:hover {
  background: #053167;
  color: #ffffff;
}

.btn-secondary {
  background-color: #053167;
  border: none !important;
}
.btn-secondary:hover {
  opacity: 0.8;
  border: none !important;
}

.rounded-element {
  display: inline-block;
  background: white;
  padding: 0.5rem 1.5rem;
  border-radius: 10rem;
}

.btn-border-white {
  border: thin solid white !important;
}

.btn-info {
  text-transform: uppercase;
  background-color: #2BAC47;
  border: 2px solid #2BAC47;
}

.btn-transparent {
  background-color: transparent;
  border: 1px solid black;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: 0.25s ease-out;
}
.btn-transparent:hover {
  transition: 0.25s ease-in;
  background: #053167;
  color: #ffffff;
}

.active-btn {
  border-radius: 10rem;
  font-size: 1rem;
  color: #053167;
  background-color: transparent;
  border: 2px solid #053167;
}
.active-btn:hover {
  transition: 0.25s ease-in;
  background-color: #053167;
  color: white;
}

.active-btn-primary {
  transform: scale(1.25);
  background-color: #FDF9F2 !important;
  border: thin solid #FDF9F2 !important;
}
.active-btn-primary img {
  transition: 0.25s ease-in;
  transform: scale(1.07);
}
.active-btn-primary:hover {
  transition: 0.25s ease-in;
  filter: brightness(80%);
  color: white;
}

.hover-to-white:hover {
  border: 1px solid #FDF9F2;
  color: #0B1F4A !important;
  background-color: #F3FBFF;
  transition: 0.25s ease-in;
}
.hover-to-white:hover svg {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(173deg) brightness(105%) contrast(102%);
  transition: 0.25s ease-in;
}

.with-left-svg svg {
  transition: 0.25s ease-out;
  height: 1.25rem;
  width: 1.25rem;
}

.btn-spacer {
  margin-right: 0.8rem;
}
@media (max-width: 575px) {
  .btn-spacer {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }
}

.w-unset {
  width: unset;
}

.amount {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #053167;
  color: white;
  font-size: 0.65rem;
  font-family: "Fredoka One", sans-serif;
  border-radius: 50%;
}

.grid-boxes {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 17rem));
  gap: 1.4rem;
  place-content: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1200px) {
  .grid-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .grid-boxes {
    grid-template-columns: 1fr;
  }
}
.grid-boxes .box {
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.grid-boxes .box--color {
  display: flex;
  align-items: center;
  padding-top: 1rem;
}
.grid-boxes .box--color i {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  margin-right: 0.4rem;
}
.grid-boxes .box--color span {
  margin-bottom: 0 !important;
  font-size: 0.6875rem !important;
  line-height: normal;
}
.grid-boxes .box--bg {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-boxes .box--content {
  color: #053167;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.2rem 0 1.2rem;
}
@media only screen and (max-width: 768px) {
  .grid-boxes .box--content {
    padding: 0 1rem 0 1rem;
  }
}
.grid-boxes .box--content h4 {
  font-size: 1.625rem;
}
.grid-boxes .box--content span {
  font-family: "Fredoka One", sans-serif;
  line-height: 1rem;
  text-align: center;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.grid-boxes .box--content:last-child {
  padding-bottom: 1.2rem;
}
.grid-boxes .box--img {
  margin: auto auto 1rem auto;
  min-height: 8.7rem;
  max-height: 8.7rem;
  height: auto;
  /* width: 100%; */
  text-align: center;
  overflow: hidden;
}
.grid-boxes .box--img img {
  display: block;
  width: 100%;
  min-height: 8.7rem;
  max-height: 8.7rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.form {
  margin-bottom: 6.35rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .form {
    margin-bottom: 3rem;
  }
}
.form .btn, .form .filters--content .filters--list .list-group .list-group-item.active span, .filters--content .filters--list .list-group .list-group-item.active .form span {
  height: -moz-fit-content;
  height: fit-content;
}
.form .loader-wrapper {
  z-index: 2;
  display: none;
  position: absolute;
  top: 0;
  background: #FDF9F2;
  height: 100%;
  width: 100%;
  min-height: unset;
  margin: unset;
}
.form .loader-wrapper .loader {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 45%;
}
.form .error-msg {
  display: none;
  margin: 0.5rem 1rem 0.5rem 0;
  background: white;
  border-radius: 0.4rem;
  padding: 0.5rem 1.5rem;
  text-align: left;
}
.form .error-msg p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.form .error-msg p img {
  margin-right: 0.5rem;
}
.form .success-msg {
  display: none;
  background: white;
  border-radius: 0.4rem;
  padding: 0.5rem 1.5rem;
  text-align: left;
  margin: 0.5rem 1rem 0.5rem 0;
}
.form .success-msg p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.form .success-msg p img {
  margin-right: 0.5rem;
}
.form label {
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.6rem;
  margin-bottom: 0;
  color: #053167;
}
.form .form-check {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 2.625rem;
  margin-top: 2.625rem;
}
.form .form-check input {
  color: #0B1F4A;
  width: 1.625rem;
  height: 1.625rem;
  margin-right: 1rem;
  transition: 0.3s;
}
@media only screen and (max-width: 576px) {
  .form .form-check input {
    width: 1em;
    height: 1em;
  }
}
.form .form-check input:checked {
  background-color: black;
  border: none;
  transition: 0.3s;
}
.form .form-check input:focus {
  box-shadow: none;
}
.form textarea {
  resize: none;
  height: 8.5rem;
  margin-bottom: 1.5rem !important;
  transition: 0.25s ease-in;
}
.form textarea:focus {
  transition: 0.25s ease-in;
}
@media only screen and (max-width: 768px) {
  .form textarea {
    padding: 0;
    min-height: 1.6rem;
    height: 5rem;
  }
}
.form .form-control {
  margin-bottom: 1rem;
  border-radius: 10px;
  border: thin solid #053167;
  color: #0B1F4A;
  background: white;
  min-height: 3rem;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  transition: 0.25s ease-out;
}
.form .form-control:focus {
  transition: 0.25s ease-in;
  background: #ffffff;
  box-shadow: none;
}

.wpcf7-spinner {
  display: block !important;
  margin: 10px auto 0 auto !important;
}

.wpcf7-response-output[aria-hidden=true] {
  background: white;
  padding: 2.3rem 2.6rem;
  border-radius: 12px;
  margin-top: 1rem;
}

.wpcf7-list-item {
  display: flex !important;
  align-items: center;
  margin: 0 !important;
}

.wpcf7-list-item-label {
  display: block;
}

.wpcf7-not-valid-tip {
  transform: translate(8px, -12px);
}

span.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

.wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
  max-width: 22rem;
}
@media only screen and (max-width: 576px) {
  .wpcf7-checkbox label {
    max-width: 100%;
  }
}

.wpcf7-checkbox input[type=checkbox] {
  /*position: relative;*/
  position: absolute;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}

.wpcf7-checkbox input[type=checkbox] + span {
  /* border: 3px solid red; */
}

.wpcf7-checkbox input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 0;
  height: 30px;
  width: 30px;
  top: 0px;
  left: 0px;
  border: 1px solid black;
}

.wpcf7-checkbox input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: "\2713";
  color: white;
  width: 1.625rem;
  height: 1.625rem;
  top: 0;
  left: 0;
  visibility: hidden;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: black;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:after {
  visibility: visible;
}

.wpcf7-list-item-label {
  margin-left: 4rem;
  display: inline-block;
}

.radio-container {
  display: inline-block;
  margin-bottom: 1.8rem;
  font-weight: normal;
  width: 100%;
}

.radio-container input {
  display: none;
}

.radio-container label {
  position: relative;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  background: white;
  display: flex;
  align-items: center;
  border: 2px solid #053167;
  transition: 0.25s ease-in-out;
}
@media only screen and (max-width: 576px) {
  .radio-container label {
    padding: 1rem 0.625rem;
  }
  .radio-container label br {
    display: block;
  }
}
.radio-container label br {
  display: none;
}
.radio-container label span {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
}
.radio-container label span b {
  font-family: "Fredoka One", sans-serif;
}
@media only screen and (max-width: 576px) {
  .radio-container label span {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 375px) {
  .radio-container label span {
    white-space: nowrap;
    font-size: 0.6rem;
  }
}
.radio-container label a {
  pointer-events: none;
  text-decoration: none;
}

.radio-container label:before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 1;
  padding: 0.5rem;
  vertical-align: middle;
  border-radius: 50%;
  border: 1px solid #053167;
}
@media only screen and (max-width: 576px) {
  .radio-container label:before {
    width: 1.25rem;
  }
}

.radio-container input:checked + label {
  background: rgba(3, 103, 175, 0.04);
  border: 2px solid #053167;
  transition: 0.25s ease-in-out;
  box-shadow: inset 0px 0px 0px 3px #053167;
}

.radio-container input:checked + label:before {
  display: block;
  background-image: url("../../assets/img/checkmark.svg");
  background-color: #053167;
  background-size: cover;
  background-position-x: 50%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.swiper-slide a {
  height: 100%;
  width: 100%;
  color: transparent;
  text-decoration: none;
  outline-offset: 0;
  outline-style: none;
}

.swiper {
  width: 100%;
  height: 7.5rem;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.slider-big {
  height: 21rem;
  width: 100%;
  border-radius: 1.875rem;
}
@media only screen and (max-width: 576px) {
  .slider-big {
    max-height: 17rem;
  }
}
.slider-big img {
  border-radius: 1.875rem;
}

.slider-small {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
@media only screen and (max-width: 576px) {
  .slider-small {
    padding-bottom: 0;
  }
}

.slider-small .swiper-slide {
  width: 33.3%;
  height: 100%;
  border-radius: 0.5rem;
}
.slider-small .swiper-slide img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  border-radius: 0.5rem;
}
.slider-small .swiper-slide:hover {
  cursor: pointer;
}

.slider-small .swiper-slide-thumb-active {
  border: 2px solid #053167;
  border-radius: 0.5rem;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem;
}

.swiper-button-next,
.swiper-button-prev {
  width: 2.55206rem;
  height: 2.55206rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
}

.filters {
  z-index: 6;
  margin-bottom: 2rem;
}
.filters--actions {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 2rem;
}
.filters--actions .activator {
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 7rem;
  padding-top: 0.6rem;
}
.filters--actions .closer {
  display: none;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  margin-left: 1.5rem;
  padding-top: 0.6rem;
  width: 8rem;
}
.filters--actions .tags {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}
.filters--content .filters--list {
  padding-top: 2.2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .filters--content .filters--list {
    flex-direction: column;
    gap: 2rem;
  }
}
.filters--content .filters--list .title {
  font-weight: 700;
}
.filters--content .filters--list div:first-of-type {
  width: 67%;
}
.filters--content .filters--list div:first-of-type .list-group {
  min-height: 25rem;
  max-height: 27rem;
}
@media only screen and (max-width: 768px) {
  .filters--content .filters--list div:first-of-type .list-group {
    max-height: 30rem;
  }
}
@media only screen and (max-width: 375px) {
  .filters--content .filters--list div:first-of-type .list-group {
    max-height: 40rem;
  }
}
.filters--content .filters--list div:first-of-type .list-group .list-group-item {
  width: 33%;
}
@media only screen and (max-width: 375px) {
  .filters--content .filters--list div:first-of-type .list-group .list-group-item {
    width: 50%;
  }
}
.filters--content .filters--list div:last-of-type {
  width: 28%;
}
.filters--content .filters--list div:last-of-type .list-group {
  min-height: 13.5rem;
  max-height: 12.5rem;
}
.filters--content .filters--list div:last-of-type .list-group .list-group-item {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .filters--content .filters--list div:last-of-type .list-group {
    width: 66%;
  }
}
@media only screen and (max-width: 375px) {
  .filters--content .filters--list div:last-of-type .list-group {
    width: 100% !important;
  }
}
@media only screen and (max-width: 375px) {
  .filters--content .filters--list div:last-of-type {
    width: 100% !important;
  }
}
@media only screen and (max-width: 768px) {
  .filters--content .filters--list div {
    width: 100% !important;
  }
}
.filters--content .filters--list .list-group {
  min-height: 25rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.filters--content .filters--list .list-group .title {
  font-weight: 700;
  margin-bottom: 1.05rem;
}
.filters--content .filters--list .list-group .list-group-item {
  display: flex;
  align-items: center;
  background: none;
  padding: 0;
  line-height: 2.25rem;
  min-height: 2.25rem;
  border: none;
  transition: 0.25s ease-out;
}
.filters--content .filters--list .list-group .list-group-item span:hover {
  transition: 0.25s ease-in;
  cursor: pointer;
  color: #053167;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .filters--content .filters--list .list-group .list-group-item {
    font-size: 0.6rem;
  }
}
.filters--content .filters--list .list-group .list-group-item.active span {
  font-family: "Noah", sans-serif !important;
  font-weight: 400 !important;
  padding: 0 0.75rem !important;
  line-height: 1.5rem;
  min-height: 1.5rem;
  border-radius: 10rem !important;
  background: #053167;
  color: #ffffff;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.25s ease-in-out;
}
.filters--content .filters--list .list-group .active-filter {
  color: #EE7B00;
  text-decoration: underline;
  transition: 0.25s ease-in-out;
}
.filters--footer {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 2.5rem 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  .filters--footer {
    flex-direction: unset;
    flex-wrap: wrap;
  }
}
.filters--footer a {
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  color: #053167 !important;
}
.filters--footer a:first-child {
  border-radius: 31.25rem;
  background: #053167;
  color: white !important;
}
@media only screen and (max-width: 768px) {
  .filters--footer a {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 576px) {
  .filters--footer a {
    width: 100%;
    text-align: center;
  }
}

.full-bleed {
  box-shadow: 0 0 0 100vmax white;
  background: white;
  clip-path: inset(0 -100vmax);
}

.product-wrapper .product .container {
  max-width: 52.75rem;
}
.product-wrapper .product--item {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 3rem;
  margin-bottom: 4.5rem;
}
@media only screen and (max-width: 992px) {
  .product-wrapper .product--item {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .product-wrapper .product--item {
    margin-top: 1.25rem;
  }
}
.product-wrapper .product--item .actions--info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}
.product-wrapper .product--item .actions--info .rounded-element {
  background: white;
  padding: 0.25rem 0.4rem;
  color: #2BAC47;
  font-family: "Fredoka One", sans-serif;
}
.product-wrapper .product--item .actions--info span {
  font-family: "Fredoka One", sans-serif;
  align-items: center;
  display: flex;
  margin-bottom: 0 !important;
  font-size: 0.55rem !important;
  line-height: 0.65rem !important;
}
.product-wrapper .product--item .actions--info span i {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
  margin-right: 0.4rem;
}
.product-wrapper .product--item .actions h2, .product-wrapper .product--item .actions .is-h2 {
  font-size: 1.9rem;
}
.product-wrapper .product--item .actions .price {
  font-family: "Fredoka One", sans-serif;
  margin-bottom: 1.8rem;
}
.product-wrapper .product--item .actions .quantity {
  margin-right: 0.7rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  background: white;
  font-family: "Fredoka One", sans-serif;
  width: 6rem;
  height: 4rem;
  color: #053167;
}
.product-wrapper .product--item .actions .quantity input {
  background: transparent;
  width: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: 0.25s ease-in-out;
}
.product-wrapper .product--item .actions .quantity input:focus {
  outline: none;
  border: 2px solid #053167 !important;
}
.product-wrapper .product--item .actions .quantity a {
  width: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-in-out;
}
.product-wrapper .product--item .actions .quantity a:hover {
  cursor: pointer;
  opacity: 0.8;
}
.product-wrapper .product--item .actions .buttons-wrapper {
  display: flex;
  flex-direction: row;
  height: 4rem;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .product-wrapper .product--item .actions .buttons-wrapper {
    justify-content: space-between;
  }
}
.product-wrapper .product--item .actions .buttons-wrapper button {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  line-height: 1rem !important;
}

.cart {
  background: white;
  border-radius: 0.5rem;
  position: relative;
}
.cart--card {
  display: none;
  max-height: 75vh;
  width: 24rem;
  z-index: 999;
  position: fixed;
  top: 7rem;
  right: 1rem;
  overflow-y: scroll;
  border-radius: 0.5rem;
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1215686275);
}
@media only screen and (max-width: 576px) {
  .cart--card {
    width: 100%;
    right: 0;
  }
}
.cart--card h4 {
  font-size: 1rem;
  margin: 0;
}
.cart--card p {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2rem;
}
.cart--card p img {
  max-height: 1rem;
  width: auto;
  margin-right: 0.25rem;
}
.cart--card .right {
  display: flex;
  flex-direction: column;
}
.cart .btn, .cart .filters--content .filters--list .list-group .list-group-item.active span, .filters--content .filters--list .list-group .list-group-item.active .cart span {
  font-size: 0.8rem;
}
.cart--title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1rem 0;
}
.cart--title i:hover {
  cursor: pointer;
  opacity: 0.8;
}
.cart--checkout .item + .item {
  border-top: thin solid #ECECEC;
}
.cart--checkout .item {
  padding: 1rem 0 0 0;
  border-top: none;
}
.cart--checkout .item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.25rem;
}
.cart--checkout .item--wrapper {
  display: flex;
  flex-wrap: wrap;
}
.cart--checkout .item--img {
  overflow: hidden;
  border-radius: 0.3rem;
  max-width: 4rem;
  display: flex;
  justify-content: center;
}
.cart--checkout .item--img img {
  max-height: 4rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart--checkout .item--info {
  flex-grow: 1;
  margin-left: 1rem;
}
.cart--checkout .item--info .details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}
.cart--checkout .item--info .details > span {
  display: flex;
  align-items: center;
  font-size: 0.65rem;
}
.cart--checkout .item--info .details > span i {
  display: flex;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  margin-right: 0.4rem;
}
.cart--checkout .item--actions {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cart--checkout .item--actions .quantity {
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: thin solid #0B1F4A;
  border-radius: 0.3rem;
  overflow: hidden;
  color: #053167;
}
.cart--checkout .item--actions .quantity input {
  width: 1.225rem;
  border-right: none;
  border-left: none;
  border-top: thin solid #0B1F4A;
  border-bottom: thin solid #0B1F4A;
  text-align: center;
  border-radius: 0;
  background: transparent;
}
.cart--checkout .item--actions .quantity input:focus {
  outline: none;
  border-radius: 0;
  border: 2px solid #0B1F4A !important;
}
.cart--checkout .item--actions .quantity a {
  width: 1.225rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-in-out;
}
.cart--checkout .item--actions .quantity a:hover {
  cursor: pointer;
  opacity: 0.8;
}
.cart--checkout .item--actions .price {
  margin-left: 0.5rem;
}
.cart--checkout .item--actions .delete {
  display: block;
  margin-left: auto;
  padding: 0;
  background: none;
  border: thin solid transparent;
  border-radius: 50%;
  transition: 0.25s ease-in-out;
}
.cart--checkout .item--actions .delete:hover {
  border: thin solid red;
}
.cart--checkout .item--actions .delete img {
  display: block;
}
.cart--checkout .total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart--checkout .total p {
  display: flex;
  align-items: center;
  font-family: "Fredoka One", sans-serif;
  margin-bottom: 1rem;
  line-height: 1.25rem;
}
.cart--checkout .total p i {
  margin-right: 0.25rem;
}
.cart .loader-wrapper {
  z-index: 2;
  display: none;
  position: absolute;
  top: 0;
  background: white;
  height: 100%;
  width: 100%;
  min-height: unset;
  margin: unset;
}
.cart .loader-wrapper .loader {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 45%;
}

.tag {
  display: flex;
  padding: 0.6rem 0.5rem 0.5rem 0.8rem;
  background: white;
  border-radius: 200px;
  font-size: 1rem;
  align-items: center;
  flex-direction: row;
}
.tag span {
  margin-right: 0.5rem;
}
.tag a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag a img {
  width: 1.2rem;
  height: 1.2rem;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: "Fredoka One", sans-serif;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background: transparent;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  transform: translate(50%, -50%);
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(229deg) brightness(108%) contrast(106%);
  background: url("../../assets/img/chevron-down.svg") no-repeat;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  background-image: url("../../assets/img/chevron-down.svg");
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  padding: 8px 16px;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background: rgba(11, 31, 74, 0.7);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #04254f;
}
