@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

button {
  all: unset;
  font-family: inherit;
  cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400; }

strong, b {
  font-weight: 600; }

img {
  width: 100%; }

:root {
  /* Variables */
  --color-one: #ebe8e4;
  --color-two: #fff9f0;
  --color-three: #f7e7cf;
  --color-four: #ddaf89;
  --color-five: #a16c51;
  --text-normal: "Archivo";
  --text-light: 300;
  --text-semibold: 500;
  --text-bold: 600;
  --text-alt: "Source Serif 4", serif;
  --text-xl: 50px;
  --text-l: 30px;
  --text-m-l: 28px;
  --text-m: 20px;
  --text-s: 14px;
  --text-xs: 12px;
  --text-xxs: 8px; }

/* General */
.bo-block {
  width: 100%;
  /* overflow-x: hidden; */ }

.bo-wrap {
  width: 100%;
  max-width: 1520px;
  padding: 0 20px;
  margin: 0 auto; }

.bo-wrap-narrow {
  width: 100%;
  max-width: 1380px;
  padding: 0 20px;
  margin: 0 auto; }

.bo-relative {
  position: relative; }

.bo-absolute {
  position: absolute; }

/* width & height */
.bo-height-full {
  height: 100vh; }

.bo-height-100 {
  height: 100%; }

.bo-width-full {
  width: 100vw; }

.bo-width-100 {
  width: 100%; }

.bo-width-75 {
  width: 75%; }

.bo-width-60 {
  width: 60%; }

.bo-width-50 {
  width: 50%; }

.bo-width-40 {
  width: 40%; }

.bo-width-25 {
  width: 25%; }

/*flex*/
.bo-flex {
  display: flex; }

.bo-flex-center {
  display: flex;
  align-items: center; }

.bo-flex-center-all {
  display: flex;
  align-items: center;
  justify-content: center; }

.bo-flex-col {
  display: flex;
  flex-direction: column; }

.bo-flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center; }

.bo-flex-col-center-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.bo-justify-between {
  height: 100%;
  width: 100%;
  justify-content: space-between; }

/* padding */
.bo-pad-top-100 {
  padding-top: 100px; }

.bo-pad-top-bot-1vw {
  padding-top: 1vw;
  padding-bottom: 1vw; }

.bo-pad-bot-1vw {
  padding-bottom: 1vw; }

.bo-pad-top-1vw {
  padding-top: 1vw; }

.bo-pad-top-bot-3vw {
  padding-top: 3vw;
  padding-bottom: 3vw; }

.bo-pad-bot-3vw {
  padding-bottom: 3vw; }

.bo-pad-top-3vw {
  padding-top: 3vw; }

.bo-pad-top-bot-5vw {
  padding-top: 5vw;
  padding-bottom: 5vw; }

.bo-pad-bot-5vw {
  padding-bottom: 5vw; }

.bo-pad-top-5vw {
  padding-top: 5vw; }

.bo-pad-top-bot-8vw {
  padding-top: 8vw;
  padding-bottom: 8vw; }

.bo-pad-bot-8vw {
  padding-bottom: 8vw; }

.bo-pad-top-8vw {
  padding-top: 8vw; }

/*bg*/
.bo-bg-one {
  background-color: var(--color-one); }

.bo-bg-two {
  background-color: var(--color-two); }

/* Text */
.bo-text-xl {
  font-size: var(--text-xl); }

.bo-text-l {
  font-size: var(--text-l); }

.bo-text-m-l {
  font-size: var(--text-m-l); }

.bo-text-m {
  font-size: var(--text-m); }

.bo-text-sm {
  font-size: 16px; }

.bo-text-s {
  font-size: var(--text-s); }

.bo-text-xs {
  font-size: var(--text-xs); }

.bo-text-xxs {
  font-size: var(--text-xxs); }

.bo-line-height-1 {
  line-height: 1 !important; }

.bo-line-height-1-2 {
  line-height: 1.2 !important; }

.bo-uppercase {
  text-transform: uppercase; }

.bo-underline {
  text-decoration: underline; }

.bo-underline:hover {
  text-decoration: underline; }

.bo-text-center {
  text-align: center; }

.bo-text-light {
  font-weight: var(--text-light); }

.bo-text-semibold {
  font-weight: var(--text-semibold); }

.bo-text-bold {
  font-weight: var(--text-bold); }

.bo-text-alt {
  font-family: var(--text-alt); }

.bo-text-italic {
  font-style: italic; }

.bo-text-black {
  color: black; }

.bo-text-white {
  color: white; }

.bo-text-one {
  color: var(--color-one); }

.bo-text-two {
  color: var(--color-two); }

/* buttons */
.bo-button-pill {
  color: black;
  background-color: white;
  border: 1px solid white;
  padding: 3px 12px;
  border-radius: 8px;
  font-size: var(--text-m);
  font-weight: var(--text-bold);
  text-transform: capitalize;
  transition: all 0.7s; }

.bo-button-pill-alt {
  color: black;
  background-color: white;
  border: 1px solid white;
  padding: 3px 12px;
  border-radius: 8px;
  font-size: var(--text-s);
  text-transform: uppercase;
  transition: all 0.7s; }

.bo-button-pill-black {
  color: white;
  background-color: black;
  border: 1px solid black;
  padding: 10px 24px;
  border-radius: 14px;
  transition: all 0.7s; }

.bo-button-pill-black:hover {
  color: black;
  background-color: white; }

.bo-button-pill-black-big {
  color: white;
  background-color: black;
  border: 1px solid black;
  padding: 10px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.7s;
  text-align: center;
  font-size: var(--text-s); }

.bo-button-pill-black-big:hover {
  color: black;
  background-color: white; }

.bo-button-pill-white-big {
  color: black;
  background-color: white;
  border: 1px solid black;
  padding: 10px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.7s;
  text-align: center;
  font-size: var(--text-s); }

.bo-button-pill-white-big:hover {
  color: white;
  background-color: black; }

.bo-button-pill-grey-big {
  color: black;
  background-color: #F6F5F4;
  padding: 10px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.7s;
  text-align: center;
  font-size: var(--text-s); }

.bo-button-pill-grey-big:hover {
  color: white;
  background-color: #000; }

.bo-button-pill-beige-big {
  color: black;
  background-color: #F3EDE4;
  padding: 10px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.7s;
  text-align: center;
  font-size: var(--text-s); }

.bo-button-pill-beige-big:hover {
  color: white;
  background-color: #000; }

.bo-button-pill-alt-mini {
  color: black;
  background-color: white;
  border: 1px solid white;
  padding: 3px 12px;
  border-radius: 8px;
  font-size: var(--text-xs);
  text-transform: uppercase;
  transition: all 0.7s; }

.bo-button-pill:hover, .bo-button-pill-alt:hover, .bo-button-pill-alt-mini:hover {
  border: 1px solid black; }

.bo-button-wired {
  color: black;
  background-color: white;
  border: 1px solid black;
  padding: 3px 12px;
  border-radius: 8px;
  font-size: var(--text-s);
  text-transform: capitalize;
  transition: all 0.7s; }

.bo-button-wired:hover {
  color: white;
  background-color: black; }

.bo-button-wired-alt {
  color: black;
  background-color: transparent;
  border: 1px solid black;
  padding: 5px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: var(--text-s);
  transition: all 0.7s; }

.bo-button-wired-alt:hover {
  color: white;
  background-color: black; }

.bo-button-wired-big {
  color: black;
  background-color: white;
  border: 1px solid black;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.7s; }

.bo-button-wired-big:hover {
  color: white;
  background-color: black; }

.bo-button-arrow {
  position: relative;
  padding-right: 36px; }

.bo-button-arrow:after {
  content: "";
  display: block;
  width: 24px;
  height: 10px;
  background-image: url("/styles/img/bo-button-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%); }

.bo-button-arrow-white {
  position: relative;
  padding-right: 36px;
  background-color: white;
  border: 1px solid white;
  border-radius: 6px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  padding-right: 40px;
  width: fit-content;
  transition: all 0.7; }

.bo-button-arrow-white:after {
  content: "";
  display: block;
  width: 24px;
  height: 10px;
  background-image: url("/styles/img/bo-button-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%); }

.bo-button-arrow-white:hover {
  border: 1px solid black; }

/* espacio izquierda en bloques full width */
.bo-papace {
  margin-left: calc((100% - 1520px) / 2); }

/* caja sticky */
.bo-banner-fixed {
  max-width: 500px;
  position: fixed;
  bottom: 80px;
  left: 0;
  padding: 20px 60px 30px 20px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: all 1.7s; }

.bo-banner-fixed img {
  max-width: 210px;
  display: block;
  margin-top: 4px; }

.bo-banner-fixed .top {
  width: 100%;
  display: flex;
  justify-content: space-between; }

.bo-banner-fixed h3,
.bo-banner-fixed p {
  text-align: right; }

.bo-banner-fixed p {
  line-height: 1.2;
  margin-bottom: 20px; }

.bo-banner-fixed .bo-x {
  max-width: 20px;
  position: absolute;
  top: 14px;
  right: 20px;
  cursor: pointer; }

/* desplegables */
/* desplegables */
.desplegables-wrap {
  background-color: #fff; }

.desplegable {
  width: 100%;
  border-bottom: 1px solid #BDBDBD; }

.desplegable dt {
  border-top: 1px solid #BDBDBD; }
  .desplegable dt:first-child {
    border-top: none; }

.desplegable dt,
.desplegable dd {
  padding: 10px 0;
  text-align: left;
  width: 100%; }

.desplegable dd {
  padding-top: 0px;
  font-size: 14px;
  line-height: 1.2 !important; }

.desplegable dd li {
  list-style: none;
  font-size: 14px;
  line-height: 1.2 !important;
  margin-bottom: 12px;
  position: relative; }

.desplegable dd li:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: url("2023/salud%20visual/blue%20stop/Group%2047.png?$staticlink$");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -21px;
  top: 3px; }

.desplegable dt a,
.desplegable dd a {
  display: block;
  padding: 5px 0; }

.desplegable dt a h2 {
  color: black;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px; }

.desplegable dt a {
  position: relative;
  padding-right: 40px; }

.desplegable dt a:after {
  content: "+";
  display: block;
  font-size: 18px;
  position: absolute;
  right: 14px;
  top: -5px; }

.desplegable dt a.despl-open:after {
  content: "-";
  font-size: 24px; }

.desplegable dd:last-of-type {
  position: relative; }

/* Tabs */
.tabs {
  width: 100%; }

ul#tabs-nav {
  list-style: none;
  width: 100%;
  display: flex;
  overflow: auto;
  padding-left: 0;
  margin-bottom: 0; }

ul#tabs-nav li {
  list-style: none;
  font-size: 16px;
  padding: 0 20px;
  cursor: pointer;
  padding: 10px 20px;
  position: relative;
  margin-right: 10px;
  background-color: #ECE4D8;
  margin-bottom: 10px;
  border-radius: 6px;
  transition: background-color 0.5s; }

ul#tabs-nav li:after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0; }

ul#tabs-nav li:hover,
ul#tabs-nav li.active,
ul#tabs-nav li:first-child {
  background-color: #F6F5F4; }

ul#tabs-nav li.active,
ul#tabs-nav li:first-child {
  border-radius: 6px 6px 0 0;
  position: relative; }

ul#tabs-nav li.active:after,
ul#tabs-nav li:first-child:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: #F6F5F4; }

ul#tabs-nav li:hover:after,
ul#tabs-nav li.active:after {
  width: 100%; }

#tabs-nav li a {
  text-decoration: none;
  transition: all 0.4s;
  text-align: center;
  display: block;
  color: black !important;
  text-transform: uppercase;
  font-weight: 300;
  font-size: var(--text-s); }

.tab-content {
  padding: 30px 20px;
  background-color: #F6F5F4;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  align-items: flex-start; }

/*VER MAS + ASPECTO CARDS*/
.bo-ver-mas .bo-ver-mas-content {
  height: auto;
  max-height: 0;
  overflow: hidden; }

.bo-ver-mas .bo-ver-mas-trigger01,
.bo-ver-mas .bo-ver-mas-trigger02 {
  cursor: pointer; }

.bo-ver-mas .bo-ver-mas-trigger02 {
  display: none; }

.bo-ver-mas .bo-ver-mas-trigger.open .bo-ver-mas-trigger01 {
  display: none; }

.bo-ver-mas .bo-ver-mas-trigger.open .bo-ver-mas-trigger02 {
  display: block; }

.bo-ver-mas .bo-ver-mas-content.open {
  max-height: 2000px; }

/*ASPECTO CARDS*/
.bo-cards-slider .swiper-slide {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid black; }

.bo-cards-slider .swiper-slide:last-child {
  border: none; }

.bo-cards-slider .swiper-slide .text {
  width: 100%; }

.bo-cards-slider .swiper-slide img {
  width: 220px;
  height: 170px;
  object-fit: contain;
  margin-bottom: 30px; }

.bo-cards-slider .swiper-slide .text > p {
  line-height: 1.3; }

.swiper {
  cursor: grab; }

/* video de fondo */
.bo-video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; }

/* desktop/mobile */
.bo-mobile-only {
  display: none; }

.bo-tablet-only {
  display: none; }

@media all and (max-width: 1580px) {
  .bo-left-space {
    margin-left: 20px; } }

@media all and (max-width: 1080px) {
  :root {
    /* Text */
    --text-xl: 42px;
    --text-l: 30px;
    --text-m: 16px;
    --text-s: 14px;
    --text-xs: 11px; }
  /*flex*/
  .bo-flex {
    flex-direction: column; }
  .bo-width-60, .bo-width-40 {
    width: 100%; }
  .bo-desktop-only {
    display: none !important; }
  .bo-tablet-only {
    display: flex; } }

@media all and (max-width: 880px) {
  :root {
    /* Text */
    --text-xl: 32px;
    --text-l: 16px;
    --text-m: 14px;
    --text-s: 12px;
    --text-xs: 10px;
    --text-xxs: 7px; }
  /* Text */
  .bo-text-xl {
    font-size: var(--text-xl); }
  .bo-text-l {
    font-size: var(--text-l); }
  .bo-text-m {
    font-size: var(--text-m); }
  .bo-text-sm {
    font-size: 14px !important; }
  .bo-text-s {
    font-size: var(--text-s); }
  .bo-text-xs {
    font-size: var(--text-xs); }
  .bo-text-xxs {
    font-size: var(--text-xxs); }
  .bo-button-wired-big {
    font-size: 14px; }
  /* desktop/mobile */
  .bo-mobile-only {
    display: block; }
  /* General */
  .bo-width-50 {
    width: 100%; }
  /* padding */
  .bo-pad-top-bot-1vw {
    padding-top: 3vw;
    padding-bottom: 3vw; }
  .bo-pad-bot-1vw {
    padding-bottom: 3vw; }
  .bo-pad-top-1vw {
    padding-top: 3vw; }
  .bo-pad-top-bot-3vw {
    padding-top: 5vw;
    padding-bottom: 5vw; }
  .bo-pad-bot-3vw {
    padding-bottom: 5vw; }
  .bo-pad-top-3vw {
    padding-top: 5vw; }
  .bo-pad-top-bot-5vw {
    padding-top: 8vw;
    padding-bottom: 8vw; }
  .bo-pad-bot-5vw {
    padding-bottom: 8vw; }
  .bo-pad-top-5vw {
    padding-top: 8vw; }
  .bo-pad-top-bot-8vw {
    padding-top: 12vw;
    padding-bottom: 12vw; }
  .bo-pad-bot-8vw {
    padding-bottom: 12vw; }
  .bo-pad-top-8vw {
    padding-top: 12vw; }
  /* banner movil */
  .banner-movil .swiper-slide span:nth-last-child(2), .banner-movil .swiper-slide span:last-child {
    display: none; }
  /* desplegables */
  .desplegable dt,
  .desplegable dd {
    padding: 0px; }
  .desplegable dt {
    padding-top: 2px; }
    .desplegable dt a:after {
      top: 0px; }
  .desplegable dd {
    padding-bottom: 10px; }
  .desplegable dt a,
  .desplegable dd a {
    font-size: 18px; }
  .desplegable dd {
    padding-top: 0px; } }

/* --------------- GENERAL --------------- */
html, body {
  font-family: var(--text-normal);
  font-weight: 400; }

body {
  margin-top: 150px; }

.bo-pad-20 {
  padding: 0 20px; }

/* --------------- FORMS --------------- */
.bo-form form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px; }
  .bo-form form fieldset {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px; }
  .bo-form form input, .bo-form form textarea {
    font-family: var(--text-normal);
    border: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 5px 0;
    margin-bottom: 15px;
    font-size: var(--text-s);
    color: black; }
  .bo-form form input[type="submit"] {
    color: white;
    padding: 10px 24px; }
  .bo-form form textarea {
    min-height: 90px;
    border: none;
    background-color: #F6F5F4;
    padding: 8px;
    border-radius: 6px; }
  .bo-form form input[type="checkbox"] {
    border-radius: 0; }
  .bo-form form *:placeholder {
    color: black;
    opacity: 1; }
  .bo-form form label {
    font-size: var(--text-s);
    margin-bottom: 12px;
    color: black; }
    .bo-form form label a {
      text-decoration: underline; }
  .bo-form form > a {
    color: #818181E3;
    font-size: var(--text-s);
    display: block;
    margin: 10px 0 20px; }
  .bo-form form input[type="submit"] {
    margin-top: 30px; }

/* --------------- BLOQUE DE TEXTO --------------- */
.bo-text-block {
  padding: 20px;
  border-radius: 8px; }
  .bo-text-block.bo-bg-grey {
    background-color: #F6F5F4; }
  .bo-text-block h1, .bo-text-block h2, .bo-text-block h3, .bo-text-block h4, .bo-text-block h5, .bo-text-block h6 {
    font-weight: 600;
    text-transform: uppercase; }
  .bo-text-block p, .bo-text-block ul, .bo-text-block h1, .bo-text-block h2, .bo-text-block h3, .bo-text-block h4, .bo-text-block h5, .bo-text-block h6 {
    margin-bottom: 20px;
    font-size: var(--text-s); }
    .bo-text-block p:last-child, .bo-text-block ul:last-child, .bo-text-block h1:last-child, .bo-text-block h2:last-child, .bo-text-block h3:last-child, .bo-text-block h4:last-child, .bo-text-block h5:last-child, .bo-text-block h6:last-child {
      margin-bottom: 0; }

/* --------------- BREADCRUMBS --------------- */
.bo-breadcrumbs {
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  column-gap: 6px;
  font-size: var(--text-s); }
  .bo-breadcrumbs-wrap {
    padding: 20px 40px; }

.bo-breadcrumb a {
  color: rgba(129, 129, 129, 0.6);
  text-decoration: underline;
  font-weight: 300; }

.bo-breadcrumb:after {
  content: "/";
  margin-left: 6px;
  color: rgba(129, 129, 129, 0.6); }

.bo-breadcrumb:last-child:after {
  content: ""; }

.bo-breadcrumb.active a {
  text-decoration: none; }

/* --------------- HEADER --------------- */
.bo-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  /* desplegable carrito */ }
  .bo-header .bo-preheader {
    display: flex;
    width: 100%;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    padding: 7px 20px;
    margin-bottom: 7px; }
    .bo-header .bo-preheader-left ul {
      display: flex;
      column-gap: 10px; }
      .bo-header .bo-preheader-left ul a {
        font-size: 0.65vw;
        text-decoration: underline; }
    .bo-header .bo-preheader-right p {
      text-transform: uppercase;
      font-size: 0.65vw; }
  .bo-header-logo {
    width: 8vw;
    max-width: 140px;
    margin-right: 20px; }
    .bo-header-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .bo-header-wrap {
    width: calc(100% - 14px);
    margin: 0 auto;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px) !important;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .bo-header-wrap-left {
      display: flex;
      column-gap: 20px;
      align-items: center; }
      .bo-header-wrap-left .bo-header-left-nav {
        display: flex;
        column-gap: 20px; }
        .bo-header-wrap-left .bo-header-left-nav li {
          text-transform: uppercase;
          font-size: 0.8vw;
          cursor: pointer; }
          .bo-header-wrap-left .bo-header-left-nav li:hover {
            text-decoration: underline; }
          .bo-header-wrap-left .bo-header-left-nav li .bo-header-left-nav-dropdown {
            position: absolute;
            padding-top: 30px;
            height: auto;
            max-height: 0;
            overflow: hidden;
            pointer-events: none;
            opacity: 0;
            transition: all 0.5s;
            z-index: 9;
            cursor: default; }
            .bo-header-wrap-left .bo-header-left-nav li .bo-header-left-nav-dropdown .bo-header-left-nav-dropdown-wrap {
              display: flex;
              padding: 14px;
              column-gap: 40px;
              background-color: white;
              backdrop-filter: blur(10px);
              border-radius: 5px; }
              .bo-header-wrap-left .bo-header-left-nav li .bo-header-left-nav-dropdown .bo-header-left-nav-dropdown-wrap span {
                margin-bottom: 6px;
                font-weight: 600;
                text-transform: uppercase; }
              .bo-header-wrap-left .bo-header-left-nav li .bo-header-left-nav-dropdown .bo-header-left-nav-dropdown-wrap a {
                color: black;
                font-size: 13px;
                text-transform: none;
                margin-top: 8px;
                display: inline-block; }
            .bo-header-wrap-left .bo-header-left-nav li .bo-header-left-nav-dropdown-aside {
              display: flex;
              justify-content: space-between;
              padding: 14px;
              background-color: rgba(255, 255, 255, 0.7);
              backdrop-filter: blur(10px);
              border-radius: 5px;
              backdrop-filter: blur(10px);
              margin-top: 10px;
              cursor: default; }
          .bo-header-wrap-left .bo-header-left-nav li:hover .bo-header-left-nav-dropdown {
            max-height: 2000px;
            pointer-events: all;
            opacity: 1; }
          @media all and (max-width: 1280px) {
            .bo-header-wrap-left .bo-header-left-nav li:hover .bo-header-left-nav-dropdown {
              max-height: 0px;
              pointer-events: none;
              opacity: 0; } }
    .bo-header-wrap-right ul {
      padding-left: 2px;
      display: flex;
      column-gap: 20px;
      align-items: center; }
      .bo-header-wrap-right ul li {
        text-transform: uppercase;
        font-size: 0.8vw; }
    .bo-header-wrap-right .bo-search {
      margin-bottom: 8px; }
      .bo-header-wrap-right .bo-search input {
        border: none;
        border-radius: 99px;
        background-color: white;
        padding: 4px 8px;
        font-size: 0.8vw; }
  .bo-header .bo-header-hamb, .bo-header .bo-header-logo-m {
    display: none; }
  .bo-header .bo-header-cart {
    position: relative; }
    .bo-header .bo-header-cart:hover .bo-header-cart-dropdown {
      opacity: 1;
      pointer-events: all; }
  .bo-header .bo-header-cart-dropdown {
    position: absolute;
    top: 14px;
    right: -30px;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 1s; }
    .bo-header .bo-header-cart-dropdown-wrap {
      background-color: beige;
      border-radius: 12px;
      width: 28vw; }
    .bo-header .bo-header-cart-dropdown-items {
      display: flex;
      flex-direction: column;
      padding: 20px; }
      .bo-header .bo-header-cart-dropdown-items ul {
        display: flex;
        flex-direction: column; }
      .bo-header .bo-header-cart-dropdown-items h4 {
        margin-bottom: 12px;
        font-size: 16px; }
    .bo-header .bo-header-cart-dropdown-item {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      column-gap: 20px;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid #ECECEC; }
      .bo-header .bo-header-cart-dropdown-item-left {
        display: flex;
        align-items: flex-start;
        column-gap: 10px; }
        .bo-header .bo-header-cart-dropdown-item-left img {
          width: 100%;
          max-width: 100px; }
      .bo-header .bo-header-cart-dropdown-item-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        .bo-header .bo-header-cart-dropdown-item-right-remove {
          cursor: pointer; }
          .bo-header .bo-header-cart-dropdown-item-right-remove img {
            width: 100%;
            max-width: 15px; }
        .bo-header .bo-header-cart-dropdown-item-right-price {
          font-size: var(--text-s); }
    .bo-header .bo-header-cart-dropdown-related {
      padding-bottom: 20px; }
      .bo-header .bo-header-cart-dropdown-related h4 {
        margin-bottom: 12px;
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px; }
      .bo-header .bo-header-cart-dropdown-related .swiper-wrapper {
        padding-left: 20px;
        column-gap: 5px; }
    .bo-header .bo-header-cart-dropdown-total {
      padding: 20px; }
      .bo-header .bo-header-cart-dropdown-total ul {
        width: 100%;
        list-style: none;
        display: flex;
        flex-direction: column; }
        .bo-header .bo-header-cart-dropdown-total ul li {
          width: 100%;
          display: flex;
          justify-content: space-between;
          margin-bottom: 12px; }
      .bo-header .bo-header-cart-dropdown-total-buttons {
        width: 100%;
        display: flex;
        margin-top: 20px;
        column-gap: 20px; }
        .bo-header .bo-header-cart-dropdown-total-buttons a {
          flex-grow: 1;
          text-transform: uppercase;
          text-align: center;
          padding: 6px 20px 4px;
          font-size: 16px; }
    @media all and (max-width: 1280px) {
      .bo-header .bo-header-cart-dropdown {
        right: initial;
        left: -20px; }
        .bo-header .bo-header-cart-dropdown-wrap {
          width: 50vw; }
          .bo-header .bo-header-cart-dropdown-wrap ul li:first-child {
            display: flex !important; } }
    @media all and (max-width: 840px) {
      .bo-header .bo-header-cart-dropdown {
        padding: 10px;
        left: -10px; }
        .bo-header .bo-header-cart-dropdown-wrap {
          width: 70vw;
          padding-top: 10px;
          padding-bottom: 10px; }
          .bo-header .bo-header-cart-dropdown-wrap .bo-header-cart-dropdown-item-left img {
            max-width: 80px; }
          .bo-header .bo-header-cart-dropdown-wrap .bo-header-cart-dropdown-related .swiper-slide {
            margin-right: 0 !important; }
        .bo-header .bo-header-cart-dropdown-items {
          padding: 10px; }
        .bo-header .bo-header-cart-dropdown-item {
          padding-bottom: 10px;
          margin-bottom: 10px; }
        .bo-header .bo-header-cart-dropdown-related .swiper-wrapper {
          padding-left: 10px; }
        .bo-header .bo-header-cart-dropdown-total {
          padding: 10px; } }
    @media all and (max-width: 600px) {
      .bo-header .bo-header-cart-dropdown-wrap {
        width: 85vw; }
      .bo-header .bo-header-cart-dropdown-total-buttons a {
        font-size: 12px; } }
  @media all and (min-width: 1920px) {
    .bo-header .bo-preheader-left ul a {
      font-size: 13px; }
    .bo-header .bo-preheader-right p {
      font-size: 13px; }
    .bo-header-wrap-left li {
      font-size: 15px !important; }
    .bo-header-wrap-right ul li {
      font-size: 15px !important; }
    .bo-header-wrap .bo-search {
      margin-bottom: 8px; }
      .bo-header-wrap .bo-search input {
        font-size: 15px !important; } }
  @media all and (max-width: 1280px) {
    .bo-header {
      padding: 0px; }
      .bo-header .bo-preheader {
        margin-bottom: 0;
        padding: 7px 10px; }
        .bo-header .bo-preheader-left ul a {
          font-size: 13px; }
        .bo-header .bo-preheader-right p {
          font-size: 13px; }
      .bo-header-wrap {
        background-color: white;
        backdrop-filter: none;
        border-radius: 0px;
        width: 100%; }
        .bo-header-wrap-left li {
          font-size: 15px !important; }
        .bo-header-wrap-right ul li {
          font-size: 15px !important; }
        .bo-header-wrap .bo-search {
          margin-bottom: 8px; }
          .bo-header-wrap .bo-search input {
            font-size: 15px !important; }
      .bo-header-logo {
        width: 100%;
        max-width: 100px;
        margin-right: 0px; }
      .bo-header .bo-header-hamb, .bo-header .bo-header-logo-m {
        display: block;
        cursor: pointer; }
        .bo-header .bo-header-hamb-img, .bo-header .bo-header-logo-m-img {
          width: 100%;
          max-width: 30px; }
      .bo-header .bo-search, .bo-header .bo-header-wrap-right ul li:first-child, .bo-header .bo-header-wrap-left .bo-header-logo {
        display: none; }
      .bo-header .bo-header-wrap-left {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -110%;
        bottom: 0;
        background: white;
        z-index: 99;
        display: block !important;
        transition: all 1s;
        padding-left: 10px; }
        .bo-header .bo-header-wrap-left.open {
          left: 0; }
      .bo-header .bo-header-left-nav-dropdown.open {
        position: fixed !important;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 999 !important;
        opacity: 1 !important;
        max-height: none !important;
        pointer-events: auto !important;
        padding-top: 0 !important;
        background-color: white !important; }
      .bo-header .bo-header-left-nav-dropdown-wrap {
        flex-direction: column;
        background-color: transparent !important; }
      .bo-header .bo-header-left-nav-dropdown .close-dropdown {
        position: relative;
        z-index: 9999;
        cursor: pointer;
        padding-top: 20px;
        padding-bottom: 20px; }
      .bo-header .bo-header-left-nav-dropdown-close {
        display: flex;
        align-items: center;
        cursor: pointer;
        text-transform: uppercase;
        display: block;
        margin: 10px 0 30px; }
        .bo-header .bo-header-left-nav-dropdown-close img {
          width: 20px;
          height: 16px;
          object-fit: contain; }
      .bo-header .bo-header-left-nav {
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column; }
        .bo-header .bo-header-left-nav > li {
          margin-bottom: 20px;
          display: flex;
          justify-content: space-between;
          width: 100%; }
          .bo-header .bo-header-left-nav > li a {
            font-size: 16px;
            width: auto;
            display: flex;
            justify-content: space-between;
            align-items: center; } }
  @media all and (min-width: 1280px) {
    .bo-header .bo-header-left-nav-dropdown-close, .bo-header .close-dropdown {
      display: none; } }
  @media all and (max-width: 580px) {
    .bo-header .bo-preheader-left ul li:last-child {
      display: none; }
    .bo-header .bo-preheader-left ul a {
      font-size: 12px; }
    .bo-header .bo-preheader-right p {
      font-size: 12px; } }

.bo-header-floating-ctas {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 100;
  display: flex;
  column-gap: 10px; }
  .bo-header-floating-ctas a {
    display: flex;
    align-items: center;
    font-weight: 600;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); }
    .bo-header-floating-ctas a img {
      display: inline-block;
      width: 24px;
      height: 24px;
      object-fit: contain;
      margin-right: 10px; }
  @media all and (max-width: 980px) {
    .bo-header-floating-ctas a {
      padding: 6px 8px;
      font-size: 0; }
      .bo-header-floating-ctas a img {
        margin-right: 0; } }

/* nueva div creada para abrir/cerrar el dropdown */
.bo-header-left-nav-dropdown-opener {
  position: absolute;
  right: 40px;
  width: 18px;
  height: 14px;
  background-image: url("../img/BOLSALEA-arrow-right.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; }

/* --------------- FOOTER --------------- */
.bo-footer {
  display: flex;
  margin-top: 40px;
  margin-bottom: 200px; }
  .bo-footer-col1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media all and (max-width: 1080px) {
    .bo-footer-col1 {
      width: 100%; } }
  .bo-footer-col2 {
    padding: 0 30px; }
    .bo-footer-col2 .bo-footer-row1 {
      display: flex;
      justify-content: space-between;
      column-gap: 2vw; }
      .bo-footer-col2 .bo-footer-row1 .bo-footer-b {
        width: 15%;
        max-width: 140px; }
        .bo-footer-col2 .bo-footer-row1 .bo-footer-b img {
          width: 100%;
          object-fit: contain; }
      .bo-footer-col2 .bo-footer-row1 .bo-footer-galardones {
        width: 35%;
        display: flex;
        flex-direction: column;
        row-gap: 30px; }
        .bo-footer-col2 .bo-footer-row1 .bo-footer-galardones h5 {
          margin-bottom: 12px; }
        .bo-footer-col2 .bo-footer-row1 .bo-footer-galardones img {
          height: 50px;
          width: 100%;
          object-fit: contain;
          object-position: left; }
      .bo-footer-col2 .bo-footer-row1 .bo-footer-links {
        width: 25%; }
      .bo-footer-col2 .bo-footer-row1 .bo-footer-help {
        width: 25%; }
      @media all and (max-width: 1080px) {
        .bo-footer-col2 .bo-footer-row1 {
          width: 100%; } }
      @media all and (max-width: 768px) {
        .bo-footer-col2 .bo-footer-row1 {
          margin-top: 30px;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          row-gap: 40px; }
          .bo-footer-col2 .bo-footer-row1 > div {
            width: 100% !important; } }
    .bo-footer-col2 .bo-footer-row2 {
      margin-top: 4vw;
      display: flex;
      column-gap: 2vw;
      justify-content: space-between; }
      .bo-footer-col2 .bo-footer-row2 .bo-footer-contact-text {
        width: 100%;
        max-width: 270px;
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        margin-bottom: 40px; }
        .bo-footer-col2 .bo-footer-row2 .bo-footer-contact-text p {
          font-size: 14px; }
      .bo-footer-col2 .bo-footer-row2 .bo-footer-contact-links-list {
        width: 100%;
        max-width: 500px;
        display: flex;
        justify-content: space-between;
        column-gap: 10px; }
        .bo-footer-col2 .bo-footer-row2 .bo-footer-contact-links-list-item {
          text-transform: uppercase;
          text-decoration: underline;
          font-size: var(--text-s); }
        @media all and (max-width: 1440px) {
          .bo-footer-col2 .bo-footer-row2 .bo-footer-contact-links-list {
            flex-direction: column; }
            .bo-footer-col2 .bo-footer-row2 .bo-footer-contact-links-list .bo-footer-contact-links-list-item {
              margin-bottom: 8px; } }
      @media all and (max-width: 1080px) {
        .bo-footer-col2 .bo-footer-row2 .bo-footer-contact {
          width: 100%;
          max-width: 320px; } }
      @media all and (max-width: 900px) {
        .bo-footer-col2 .bo-footer-row2 .bo-footer-contact {
          max-width: none;
          order: 1;
          margin: 20px 0; } }
      .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter {
        width: 100%;
        max-width: 550px; }
        .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-text p {
          margin-top: 6px;
          font-size: 14px; }
        .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form form {
          width: 100%;
          display: flex;
          flex-wrap: wrap;
          margin: 12px 0; }
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form form input[type="text"] {
            width: calc(50% - 100px);
            padding: 14px;
            font-size: 14px;
            border: 1px solid black;
            border-radius: 10px 0 0 10px;
            border-right: none; }
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form form input[type="email"] {
            width: calc(50% - 100px);
            padding: 14px;
            font-size: 14px;
            border: 1px solid black;
            border-radius: 0; }
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form form input[type="submit"] {
            width: 120px;
            padding: 10px;
            font-size: 14px;
            text-transform: uppercase;
            background-color: black;
            border: 1px solid black;
            color: white;
            border-radius: 10px;
            cursor: pointer;
            position: relative;
            right: 6px;
            font-size: 14px; }
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form form p {
            margin: 6px 0 10px;
            font-size: 11px;
            color: #c3c3c3;
            order: 1; }
        .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form small {
          font-size: 10px;
          color: #c3c3c3; }
        @media all and (max-width: 580px) {
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form input[type="text"], .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form input[type="email"], .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form input[type="submit"] {
            font-size: 12px !important; }
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form input[type="text"] {
            width: calc(46% - 100px) !important; }
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form input[type="email"] {
            width: calc(54% - 50px) !important; }
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter-form input[type="submit"] {
            width: 90px !important; } }
        @media all and (max-width: 1080px) {
          .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter {
            width: 100%;
            max-width: none; }
            .bo-footer-col2 .bo-footer-row2 .bo-footer-newsletter input[type="submit"] {
              width: 100px; } }
      @media all and (max-width: 1080px) {
        .bo-footer-col2 .bo-footer-row2 .bo-footer-social {
          display: none !important; } }
      @media all and (max-width: 900px) {
        .bo-footer-col2 .bo-footer-row2 {
          flex-direction: column; }
          .bo-footer-col2 .bo-footer-row2 .bo-footer-social {
            display: flex !important; } }
    .bo-footer-col2 .bo-footer-row3 {
      margin-top: 4vw;
      justify-content: space-between;
      align-items: center; }
      .bo-footer-col2 .bo-footer-row3-col01 {
        align-items: center;
        margin-right: 20px;
        margin-bottom: 12px; }
        .bo-footer-col2 .bo-footer-row3-col01 img {
          height: 50px;
          object-fit: contain; }
      .bo-footer-col2 .bo-footer-row3-col02 {
        align-items: center;
        margin-right: 20px;
        margin-bottom: 12px; }
        .bo-footer-col2 .bo-footer-row3-col02 img {
          height: 50px;
          object-fit: contain; }
      @media all and (max-width: 1440px) {
        .bo-footer-col2 .bo-footer-row3 {
          flex-wrap: wrap; } }
      @media all and (max-width: 1080px) {
        .bo-footer-col2 .bo-footer-row3 {
          width: 48%;
          align-items: flex-start;
          margin-top: 0; }
          .bo-footer-col2 .bo-footer-row3 .bo-footer-row3-col01 {
            align-items: flex-start; } }
      @media all and (max-width: 900px) {
        .bo-footer-col2 .bo-footer-row3 {
          width: 100%; }
          .bo-footer-col2 .bo-footer-row3 .bo-footer-row3-col02 img {
            width: 100%;
            padding-right: 10px; } }
      @media all and (max-width: 768px) {
        .bo-footer-col2 .bo-footer-row3 .bo-footer-row3-col03.bo-footer-social {
          display: none !important; } }
    .bo-footer-col2 .bo-footer-row4 {
      margin-top: 1vw;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end; }
      .bo-footer-col2 .bo-footer-row4-copyright {
        width: 100%;
        max-width: 380px;
        margin-right: 30px; }
      .bo-footer-col2 .bo-footer-row4-legales {
        display: flex;
        margin-top: 20px; }
        .bo-footer-col2 .bo-footer-row4-legales li {
          margin: 0 24px; }
          .bo-footer-col2 .bo-footer-row4-legales li a {
            font-size: 14px; }
          .bo-footer-col2 .bo-footer-row4-legales li:last-child {
            margin-right: 0; }
          .bo-footer-col2 .bo-footer-row4-legales li:first-child {
            margin-left: 0; }
      @media all and (max-width: 1080px) {
        .bo-footer-col2 .bo-footer-row4 {
          width: 48%;
          flex-direction: column;
          align-items: flex-end; }
          .bo-footer-col2 .bo-footer-row4 .bo-footer-galardones {
            display: flex;
            flex-direction: column; }
            .bo-footer-col2 .bo-footer-row4 .bo-footer-galardones img {
              width: 100%; }
          .bo-footer-col2 .bo-footer-row4 .bo-footer-top, .bo-footer-col2 .bo-footer-row4 .bo-footer-bot {
            margin-bottom: 20px; } }
      @media all and (max-width: 900px) {
        .bo-footer-col2 .bo-footer-row4 {
          width: 100%;
          align-items: flex-start; }
          .bo-footer-col2 .bo-footer-row4 .bo-footer-top img {
            padding-right: 10px; }
          .bo-footer-col2 .bo-footer-row4 .bo-footer-bot img {
            max-width: 400px;
            padding-right: 10px; } }
    @media all and (max-width: 1080px) {
      .bo-footer-col2 {
        width: 100% !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;
        row-gap: 30px;
        margin-top: 30px; } }
  .bo-footer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px; }
    .bo-footer-list-item {
      font-size: 14px; }
  .bo-footer-social li {
    width: 20px;
    margin: 0 5px;
    align-items: center; }
    .bo-footer-social li img {
      width: 100%;
      object-fit: contain;
      opacity: 0.25;
      transition: all 0.5s; }
    .bo-footer-social li a:hover img {
      opacity: 1; }
    .bo-footer-social li:last-child {
      margin-right: 0; }
  @media all and (max-width: 1080px) {
    .bo-footer-social {
      display: flex;
      flex-direction: row !important; } }
  @media all and (max-width: 1080px) {
    .bo-footer {
      flex-direction: column; } }

/*  --------------- 404 --------------- */
.bo-404 {
  padding: 10px; }
  .bo-404-wrap {
    background-color: #a16c51;
    border-radius: 20px;
    padding: 40px;
    height: 80vh;
    color: #fff9f0;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .bo-404-wrap > div {
      width: 33%;
      display: flex;
      flex-direction: column;
      row-gap: 12px; }
      .bo-404-wrap > div img {
        display: none; }
      .bo-404-wrap > div a {
        margin-top: 20px; }
    .bo-404-wrap img {
      width: 30%; }
    @media all and (max-width: 1024px) {
      .bo-404-wrap {
        flex-direction: column;
        height: auto; }
        .bo-404-wrap > div, .bo-404-wrap img {
          width: 100%; }
        .bo-404-wrap h2 {
          margin-bottom: 12px; }
        .bo-404-wrap > div img {
          display: block;
          max-width: 500px; }
        .bo-404-wrap > img {
          display: none; } }

/* --------------- HOME --------------- */
.bo-hero {
  /* responsive */ }
  .bo-hero-left {
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 20px; }
    .bo-hero-left-content {
      width: 100%; }
      .bo-hero-left-content-buttons {
        align-items: flex-start;
        row-gap: 10px; }
      .bo-hero-left-content h1 {
        max-width: 400px;
        margin-bottom: 20px; }
    .bo-hero-left-text p {
      width: 100%;
      max-width: 300px;
      position: absolute;
      bottom: 20px;
      width: calc(100% - 40px); }
  .bo-hero-right {
    width: 60%; }
    .bo-hero-right .swiper .swiper-slide img {
      width: 100%;
      object-fit: cover; }
  .bo-hero .swiper-pagination {
    left: 2vw;
    width: auto;
    bottom: 20px; }
    .bo-hero .swiper-pagination .swiper-pagination-bullet {
      width: 40px;
      height: 4px;
      border-radius: 4px;
      transition: all 0.5s;
      background-color: rgba(0, 0, 0, 0.35); }
    .bo-hero .swiper-pagination .swiper-pagination-bullet-active {
      background-color: black; }
  @media all and (max-width: 1080px) {
    .bo-hero {
      position: relative; }
      .bo-hero-left, .bo-hero-right {
        width: 100%; }
      .bo-hero-right {
        order: -1;
        height: 85vw; }
        .bo-hero-right .swiper, .bo-hero-right .swiper-wrapper, .bo-hero-right .swiper-slide {
          height: 100%; }
          .bo-hero-right .swiper img, .bo-hero-right .swiper-wrapper img, .bo-hero-right .swiper-slide img {
            height: 100%; }
        .bo-hero-right p {
          display: inline;
          position: absolute;
          bottom: 50px;
          left: 20px;
          z-index: 2;
          width: calc(100% - 40px);
          max-width: 400px; }
      .bo-hero-left {
        position: static;
        padding-bottom: 50px;
        padding-top: 30px; }
        .bo-hero-left h1 {
          margin-bottom: 40px; }
      .bo-hero .swiper-pagination {
        right: initial;
        left: 15px;
        bottom: 20px; }
        .bo-hero .swiper-pagination .swiper-pagination-bullet {
          background-color: white; } }

.bo-product-slider {
  margin-top: -4px; }
  .bo-product-slider-item-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover; }
  .bo-product-slider-item-text {
    display: flex;
    flex-direction: column;
    padding: 10px;
    row-gap: 30px; }
    .bo-product-slider-item-text-top, .bo-product-slider-item-text-bot {
      display: flex;
      justify-content: space-between;
      align-items: flex-end; }
    .bo-product-slider-item-text-top-nombre span {
      display: block;
      color: rgba(187, 187, 187, 0.89);
      margin-top: 4px; }
    .bo-product-slider-item-text-top-price {
      text-align: right; }
    .bo-product-slider-item-text-bot-list {
      display: flex;
      flex-direction: row;
      column-gap: 14px; }
      .bo-product-slider-item-text-bot-list li {
        display: block;
        width: 24px;
        height: 24px;
        background-color: pink;
        border-radius: 2px; }
      @media all and (max-width: 768px) {
        .bo-product-slider-item-text-bot-list {
          column-gap: 5px; } }

.bo-banner01 {
  display: flex;
  justify-content: center; }
  .bo-banner01-wrap {
    width: calc(100% - 40px);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    column-gap: 40px; }
  .bo-banner01 img {
    width: 70%;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden; }
  .bo-banner01-content {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 40px; }
    .bo-banner01-content h2 {
      margin-bottom: 40px; }
    .bo-banner01-content p {
      margin-bottom: 20px; }
    .bo-banner01-content-tags {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      row-gap: 10px; }
      .bo-banner01-content-tags-list {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        row-gap: 5px; }
        .bo-banner01-content-tags-list li {
          display: flex; }
  .bo-banner01.bo-banner-inclusiva {
    margin: 40px 0; }
  .bo-banner01.bo-banner-circularidad {
    margin-top: 40px; }
    .bo-banner01.bo-banner-circularidad .bo-banner01-content-text {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      .bo-banner01.bo-banner-circularidad .bo-banner01-content-text img {
        mix-blend-mode: multiply; }
  @media all and (max-width: 1080px) {
    .bo-banner01 img {
      order: 1;
      height: 60vw; }
    .bo-banner01-wrap {
      flex-direction: column;
      padding: 10px;
      column-gap: 0; }
      .bo-banner01-wrap .bo-banner01-content {
        row-gap: 10px; }
      .bo-banner01-wrap > img, .bo-banner01-wrap .bo-banner01-content {
        width: 100%; }
      .bo-banner01-wrap .bo-banner01-content-text {
        padding: 10px;
        display: flex;
        column-gap: 20px;
        margin-bottom: 20px; }
        .bo-banner01-wrap .bo-banner01-content-text h2, .bo-banner01-wrap .bo-banner01-content-text p {
          margin-bottom: 0; }
      .bo-banner01-wrap .bo-banner01-content-tags {
        padding: 0 10px 20px; }
        .bo-banner01-wrap .bo-banner01-content-tags h4, .bo-banner01-wrap .bo-banner01-content-tags a {
          font-size: 13px; }
    .bo-banner01.bo-banner-circularidad .bo-banner01-content-text {
      flex-direction: row; }
    .bo-banner01.bo-banner-circularidad .bo-banner-circularidad-description p {
      margin-bottom: 8px; } }
  @media all and (max-width: 680px) {
    .bo-banner01 img {
      height: 100vw;
      object-position: 25% 100%; }
    .bo-banner01 .bo-banner01-content-tags {
      align-items: flex-start; }
      .bo-banner01 .bo-banner01-content-tags-list {
        align-items: flex-start; } }

.bo-slider-logos .swiper-wrapper {
  display: flex;
  align-items: center; }
  .bo-slider-logos .swiper-wrapper img.swiper-slide {
    max-width: 150px;
    margin: 0 30px; }

.bo-banner02 {
  width: 100%;
  height: 40vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3vw; }
  .bo-banner02.bo-banner-talleres {
    position: relative; }
    .bo-banner02.bo-banner-talleres:after {
      content: "";
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      z-index: 0;
      left: 0;
      top: 0; }
    .bo-banner02.bo-banner-talleres video {
      left: 0;
      top: 0; }
  .bo-banner02-title {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1; }
  .bo-banner02-right {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1; }
    .bo-banner02-right p {
      margin-bottom: 30px; }
  @media all and (max-width: 1080px) {
    .bo-banner02 {
      flex-direction: column;
      height: 80vw;
      align-items: flex-start;
      justify-content: space-between;
      padding: 40px 20px; } }
  @media all and (max-width: 680px) {
    .bo-banner02 {
      height: 100vw;
      background-position: 30% 50%; }
      .bo-banner02-title {
        width: 100%;
        max-width: 120px; }
      .bo-banner02-right {
        max-width: none; }
        .bo-banner02-right p {
          width: 60%; } }
  @media all and (max-width: 480px) {
    .bo-banner02 {
      height: 130vw; } }

.bo-dos-banners {
  padding-right: 20px;
  margin-top: 20px; }
  .bo-dos-banners .bo-banner01 {
    margin: 0; }
  .bo-dos-banners .bo-banner-signos img.bo-absolute {
    top: 0px;
    right: 0px;
    mix-blend-mode: multiply; }
  @media all and (max-width: 1080px) {
    .bo-dos-banners {
      padding-right: 0px;
      align-items: center; }
      .bo-dos-banners .bo-banner-signos {
        margin-bottom: 20px; }
        .bo-dos-banners .bo-banner-signos img {
          order: -1;
          object-position: 65% 100%; }
        .bo-dos-banners .bo-banner-signos .bo-banner01-content-text {
          display: flex;
          flex-direction: row;
          margin-top: 10px; }
          .bo-dos-banners .bo-banner-signos .bo-banner01-content-text p {
            margin-bottom: 8px; } }

.bo-banner-slider {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-one);
  padding: 40px;
  border-radius: 30px; }
  @media all and (max-width: 1080px) {
    .bo-banner-slider {
      padding: 20px 10px 20px;
      width: calc(100% - 40px); }
      .bo-banner-slider .bo-banner-content-top {
        display: flex;
        flex-direction: row;
        column-gap: 10px;
        margin-bottom: 30px; }
      .bo-banner-slider .bo-slide-text {
        flex-direction: column; } }

.bo-slider-text {
  width: 100%;
  margin-top: 40px;
  padding-bottom: 40px; }
  .bo-slider-text .bo-slide-text {
    display: flex;
    column-gap: 4vw; }
    .bo-slider-text .bo-slide-text-left {
      width: 65%;
      padding-bottom: 50px; }
      .bo-slider-text .bo-slide-text-left img {
        width: 100%;
        max-width: 120px;
        margin-bottom: 15px; }
      .bo-slider-text .bo-slide-text-left p {
        width: 100%; }
      @media all and (max-width: 1080px) {
        .bo-slider-text .bo-slide-text-left {
          padding-bottom: 10px; } }
    .bo-slider-text .bo-slide-text-right {
      width: 30%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end; }
    @media all and (max-width: 1080px) {
      .bo-slider-text .bo-slide-text {
        padding-bottom: 30px; } }
  .bo-slider-text .swiper-pagination04 {
    z-index: 2; }
    .bo-slider-text .swiper-pagination04 .swiper-pagination-bullet {
      width: 30px;
      height: 4px;
      border-radius: 2px;
      background-color: white;
      opacity: 0.5; }
      .bo-slider-text .swiper-pagination04 .swiper-pagination-bullet.swiper-pagination-bullet-active {
        opacity: 1; }
    @media all and (max-width: 1080px) {
      .bo-slider-text .swiper-pagination04 {
        bottom: 0px; } }
  .bo-slider-text a.bo-absolute {
    bottom: 0px;
    right: 0;
    z-index: 2; }

.bo-banner-content-top {
  justify-content: space-between; }
  .bo-banner-content-top-left {
    width: 100%;
    max-width: 200px; }
  .bo-banner-content-top-right {
    width: 100%;
    max-width: 160px; }

.bo-slider-articulos {
  padding-bottom: 3vw; }
  .bo-slider-articulos h2 {
    padding: 3vw 20px 20px; }
  .bo-slider-articulos .swiper-wrapper {
    padding-left: 20px; }
  .bo-slider-articulos-item-img {
    width: 100%; }
  .bo-slider-articulos-item-text {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    margin-top: 10px; }

/* ARCHIVE */
.bo-archive-top {
  margin-bottom: 20px;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--color-one); }
  .bo-archive-top-info {
    display: flex;
    column-gap: 10px;
    margin-bottom: 6px; }
    .bo-archive-top-info-count {
      color: #B6B6B6; }

.bo-archive-content .bo-archive-filters-wrap {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 0px;
  position: relative; }
  .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons {
    width: calc(100% - 250px);
    margin-left: 0;
    padding: 5px 0;
    position: relative; }
    @media all and (max-width: 780px) {
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons:after {
        content: "";
        display: block;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 90%);
        width: 50px;
        height: 40px;
        position: absolute;
        top: -10px;
        right: 0;
        z-index: 5; } }
    @media all and (min-width: 781px) {
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons .swiper-wrapper {
        display: flex;
        flex-wrap: wrap; }
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons .bo-archive-filters-button {
        margin-bottom: 15px; } }
    .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons .bo-archive-filters-button {
      cursor: pointer;
      width: auto !important;
      display: inline-block;
      white-space: nowrap;
      margin-right: 10px; }
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons .bo-archive-filters-button:last-child {
        margin-right: 50px; }
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons .bo-archive-filters-button-link {
        font-size: 14px;
        text-transform: none !important; }
    @media all and (max-width: 780px) {
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons {
        width: calc(100% + 40px);
        transform: translateX(-20px); }
        .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons .swiper-wrapper {
          padding-left: 20px; }
        .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons .bo-archive-filters-button {
          width: 170px; }
          .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-buttons .bo-archive-filters-button-link {
            font-size: 13px; } }
  .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-combos {
    position: absolute;
    right: 30px;
    top: 0px;
    display: flex;
    align-items: center;
    column-gap: 30px; }
    .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-combos-order-wrap select {
      cursor: pointer;
      border: none;
      font-size: 16px; }
    @media all and (max-width: 680px) {
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-combos-order-wrap {
        font-size: 14px; }
        .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-combos-order-wrap select {
          font-size: 14px; } }
    .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-combos-dropdown {
      display: none;
      /*-------------------------------------*/ }
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-combos-dropdown-button {
        cursor: pointer; }
        .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-combos-dropdown-button img {
          width: 100%;
          max-width: 14px; }
    @media all and (max-width: 780px) {
      .bo-archive-content .bo-archive-filters-wrap .bo-archive-filters-combos {
        position: static;
        margin-top: 20px; } }
  @media all and (max-width: 780px) {
    .bo-archive-content .bo-archive-filters-wrap {
      margin-top: 30px; } }

.bo-archive-content .bo-archive-items-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  column-gap: 5px;
  row-gap: 3vw; }
  @media all and (max-width: 1280px) {
    .bo-archive-content .bo-archive-items-wrap {
      row-gap: 6vw; } }
  @media all and (max-width: 1080px) {
    .bo-archive-content .bo-archive-items-wrap {
      grid-template-columns: repeat(3, 1fr); } }
  @media all and (max-width: 760px) {
    .bo-archive-content .bo-archive-items-wrap {
      grid-template-columns: repeat(2, 1fr); } }
  @media all and (max-width: 580px) {
    .bo-archive-content .bo-archive-items-wrap {
      row-gap: 8vw; } }

.bo-archive-content .bo-archive-item-info {
  padding-top: 12px; }
  .bo-archive-content .bo-archive-item-info-title {
    font-size: var(--text-s);
    text-transform: uppercase;
    margin-bottom: 5px; }
  .bo-archive-content .bo-archive-item-info-descr {
    font-size: var(--text-xs);
    color: #919191;
    margin-bottom: 20px; }
  .bo-archive-content .bo-archive-item-info-price {
    font-size: var(--text-s);
    font-weight: var(--text-bold); }
  .bo-archive-content .bo-archive-item-info-attributes {
    display: flex;
    column-gap: 5px;
    margin-top: 10px; }
    .bo-archive-content .bo-archive-item-info-attributes-item {
      width: 14px;
      height: 14px; }

.bo-archive .bo-archive-item-tags {
  bottom: 14px;
  left: 10px;
  width: 100%; }
  .bo-archive .bo-archive-item-tags .bo-archive-item-tags-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: var(--text-xs);
    padding: 6px;
    background-color: rgba(245, 244, 243, 0.93);
    border-radius: 6px;
    font-weight: var(--text-bold); }

.bo-pagination {
  margin: 80px 0;
  display: flex;
  justify-content: center;
  column-gap: 14px;
  align-items: center;
  font-size: 16px; }
  .bo-pagination li {
    border-bottom: 1px solid transparent; }
  .bo-pagination i {
    font-size: 13px; }
  .bo-pagination li.bo-active {
    border-bottom: 1px solid black; }

.bo-tags {
  bottom: 15px;
  left: 10px; }
  .bo-tags-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: var(--text-xs);
    padding: 6px;
    background-color: rgba(245, 244, 243, 0.93);
    border-radius: 6px;
    font-weight: var(--text-bold); }

/* SINGLE */
.bo-single-wrap {
  display: flex;
  align-items: stretch; }
  @media all and (max-width: 880px) {
    .bo-single-wrap {
      flex-direction: column; } }

.bo-single-gallery {
  width: 50%; }
  @media all and (min-width: 880px) {
    .bo-single-gallery .swiper {
      cursor: default !important; }
    .bo-single-gallery .swiper-wrapper {
      display: block !important;
      overflow: visible !important;
      pointer-events: none !important; }
    .bo-single-gallery .swiper-slide {
      width: 100% !important;
      display: block !important; }
    .bo-single-gallery .swiper-button-prev,
    .bo-single-gallery .swiper-button-next,
    .bo-single-gallery .swiper-pagination {
      display: none !important; } }
  @media all and (max-width: 880px) {
    .bo-single-gallery {
      width: 100%; } }
  .bo-single-gallery .swiper-pagination .swiper-pagination-bullet {
    background-color: white;
    opacity: 0.45; }
    .bo-single-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      opacity: 1; }

.bo-single-content {
  width: 50%; }
  .bo-single-content-wrap {
    position: sticky;
    top: 0px;
    padding: 100px 5vw 8vw; }
    @media all and (max-width: 880px) {
      .bo-single-content-wrap {
        padding: 30px 20px; } }
  .bo-single-content-title-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .bo-single-content-info-wrap {
    margin-top: 30px; }
    .bo-single-content-info-wrap dl {
      display: flex;
      flex-direction: column; }
      .bo-single-content-info-wrap dl dt {
        font-weight: var(--text-bold);
        text-transform: uppercase;
        font-size: var(--text-s);
        margin-bottom: 5px; }
      .bo-single-content-info-wrap dl dd {
        margin-bottom: 12px;
        font-size: var(--text-s); }
  .bo-single-content-colors ul {
    display: flex;
    column-gap: 5px;
    margin-top: 10px; }
  .bo-single-content-colors-item {
    width: 16px;
    height: 16px;
    border-radius: 2px; }
    .bo-single-content-colors-item[style="background-color: #fff;"] {
      border: 1px solid #000000; }
  .bo-single-content-quantity {
    margin-top: 30px;
    display: flex;
    align-items: center;
    column-gap: 14px; }
    .bo-single-content-quantity select,
    .bo-single-content-quantity ::picker(select) {
      appearance: base-select;
      border: none;
      background-color: #F6F6F6F2;
      border-radius: 6px;
      padding-right: 6px;
      padding-left: 14px;
      cursor: pointer;
      font-weight: 600;
      font-size: var(--text-s); }
    .bo-single-content-quantity .dto {
      color: #DDAF89;
      margin-left: 6px;
      margin-right: 20px; }
    .bo-single-content-quantity select::picker-icon {
      width: 8px;
      height: 8px;
      color: transparent;
      border-left: 2px solid #999;
      border-bottom: 2px solid #999;
      rotate: -45deg;
      margin-right: 5px;
      position: relative;
      top: 0px; }
    .bo-single-content-quantity option {
      padding-left: 0; }
    .bo-single-content-quantity option::checkmark {
      display: none; }
    .bo-single-content-quantity ::picker(select) {
      border: none;
      background-color: #F6F6F6F2;
      border-radius: 6px; }
  .bo-single-content-personalize {
    margin-top: 40px; }
    .bo-single-content-personalize-trigger {
      display: flex;
      align-items: center;
      column-gap: 24px; }
      .bo-single-content-personalize-trigger-options {
        display: flex;
        column-gap: 4px; }
        .bo-single-content-personalize-trigger-options a {
          cursor: pointer;
          width: 34px;
          height: 34px;
          display: block;
          border: 2px solid black;
          text-align: center;
          padding: 8px 0;
          text-transform: uppercase;
          font-size: var(--text-s);
          font-weight: var(--text-bold);
          transition: background-color .4s ease-in-out, color .4s ease-in-out; }
          .bo-single-content-personalize-trigger-options a:hover, .bo-single-content-personalize-trigger-options a.clicked {
            background-color: black;
            color: white; }
      @media all and (max-width: 1024px) {
        .bo-single-content-personalize-trigger {
          flex-direction: column;
          align-items: flex-start;
          row-gap: 12px; } }
    .bo-single-content-personalize-tabs {
      margin-top: 0px;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      pointer-events: none;
      transition: opacity 1s ease, margin-top 1s ease, max-height 1s ease; }
      .bo-single-content-personalize-tabs.show {
        margin-top: 30px;
        opacity: 1;
        max-height: 1000px;
        /* pon un valor suficientemente alto para cubrir el contenido */
        pointer-events: auto; }
  .bo-single-content-price {
    display: flex;
    align-items: flex-end;
    column-gap: 12px;
    margin-top: 30px; }
    .bo-single-content-price-total {
      font-size: var(--text-s); }
      .bo-single-content-price-total b {
        font-size: var(--text-m);
        font-weight: var(--text-bold); }
    .bo-single-content-price-unit {
      font-size: var(--text-s); }
  .bo-single-content-addtocart {
    margin-top: 30px;
    display: flex;
    align-items: center;
    column-gap: 12px; }
    .bo-single-content-addtocart-contact {
      background-color: #F6F5F4;
      padding: 10px 18px;
      border-radius: 8px; }
    @media all and (max-width: 1240px) {
      .bo-single-content-addtocart {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 12px; } }
  .bo-single-content-moreinfo {
    margin-top: 30px; }
  .bo-single-content-logos {
    margin: 30px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .bo-single-content-logos img {
      width: 100%;
      max-width: 80px;
      margin-right: 10px;
      margin-bottom: 15px; }
  .bo-single-content-apt {
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .bo-single-content-adhoc {
    display: flex;
    width: auto;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    background-color: #F6F6F6F2;
    padding: 10px 14px;
    border-radius: 6px;
    margin-top: 30px;
    width: fit-content; }
    .bo-single-content-adhoc img {
      width: 100%;
      max-width: 54px; }
    .bo-single-content-adhoc div {
      display: flex;
      flex-direction: column;
      row-gap: 5px;
      text-align: left;
      font-size: var(--text-s);
      flex: 0 0 auto; }
      .bo-single-content-adhoc div h5 {
        font-weight: 600; }
  .bo-single-content-related {
    padding-bottom: 80px; }
    .bo-single-content-related-title {
      padding: 40px 40px 10px; }
    @media all and (max-width: 880px) {
      .bo-single-content-related-title {
        padding: 40px 20px 10px; }
      .bo-single-content-related h3 {
        font-size: 22px; } }
  @media all and (max-width: 880px) {
    .bo-single-content {
      width: 100%; } }

.bo-single-ref {
  margin-top: 5px;
  font-size: var(--text-s);
  color: #919191;
  margin-bottom: 10px; }

.bo-single-banner {
  padding: 4vw 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; }
  .bo-single-banner-left {
    width: 100%;
    max-width: 340px; }
    .bo-single-banner-left h3 {
      font-size: var(--text-l-l);
      font-weight: var(--text-bold); }
    .bo-single-banner-left div {
      margin-top: 5vw; }
      .bo-single-banner-left div p {
        font-size: var(--text-s); }
      .bo-single-banner-left div a {
        display: block;
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: underline;
        margin-top: 12px; }
    @media all and (max-width: 880px) {
      .bo-single-banner-left {
        display: flex;
        flex-direction: row;
        max-width: 100%; }
        .bo-single-banner-left h3 {
          font-size: 16px; }
        .bo-single-banner-left div {
          margin-top: 0;
          width: 100%; }
          .bo-single-banner-left div a {
            font-size: 14px; } }
  .bo-single-banner-right ul {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    align-items: flex-end; }
  @media all and (max-width: 880px) {
    .bo-single-banner {
      padding: 20px; } }

/* REGISTER / LOGIN */
.bo-log-reg {
  display: flex; }

.bo-log-reg-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 50px 0 8vw;
  position: relative; }

.bo-log-reg-title-wrap h1 {
  font-size: var(--text-l);
  text-transform: uppercase;
  margin-bottom: 10px; }

.bo-log-reg-title-wrap p {
  font-size: var(--text-s);
  width: 100%;
  max-width: 400px; }

.bo-log-reg-buttons-wrap {
  margin-top: 30px; }
  .bo-log-reg-buttons-wrap ul {
    display: flex;
    flex-direction: column;
    row-gap: 12px; }
    .bo-log-reg-buttons-wrap ul li a {
      display: block; }

.bo-log-reg-login,
.bo-log-reg-register {
  position: absolute;
  background-color: white;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 0 50px 0 8vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .bo-log-reg-login.open,
  .bo-log-reg-register.open {
    opacity: 1;
    pointer-events: auto; }
  .bo-log-reg-login h2,
  .bo-log-reg-register h2 {
    font-size: var(--text-l);
    text-transform: uppercase;
    margin-bottom: 10px; }
  .bo-log-reg-login h2, .bo-log-reg-login p,
  .bo-log-reg-register h2,
  .bo-log-reg-register p {
    width: 100%; }
  .bo-log-reg-login form,
  .bo-log-reg-register form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px; }
    .bo-log-reg-login form fieldset,
    .bo-log-reg-register form fieldset {
      display: flex;
      flex-direction: column;
      width: 100%;
      margin-bottom: 20px; }
    .bo-log-reg-login form input[type="text"],
    .bo-log-reg-login form input[type="email"],
    .bo-log-reg-login form input[type="password"],
    .bo-log-reg-register form input[type="text"],
    .bo-log-reg-register form input[type="email"],
    .bo-log-reg-register form input[type="password"] {
      border: none;
      border-bottom: 1px solid #000;
      padding: 5px 0;
      margin-bottom: 15px;
      font-size: var(--text-s);
      color: black; }
    .bo-log-reg-login form input[type="checkbox"],
    .bo-log-reg-register form input[type="checkbox"] {
      border-radius: 0; }
    .bo-log-reg-login form *:placeholder,
    .bo-log-reg-register form *:placeholder {
      color: black;
      opacity: 1; }
    .bo-log-reg-login form label,
    .bo-log-reg-register form label {
      font-size: var(--text-s);
      margin-bottom: 12px;
      color: black; }
      .bo-log-reg-login form label a,
      .bo-log-reg-register form label a {
        text-decoration: underline; }
    .bo-log-reg-login form > a,
    .bo-log-reg-register form > a {
      color: #818181E3;
      font-size: var(--text-s);
      display: block;
      margin: 10px 0 20px; }
    .bo-log-reg-login form input[type="submit"],
    .bo-log-reg-register form input[type="submit"] {
      margin-top: 30px; }
  @media all and (max-width: 880px) {
    .bo-log-reg-login,
    .bo-log-reg-register {
      flex-direction: column; }
      .bo-log-reg-login .bo-log-reg-wrap,
      .bo-log-reg-register .bo-log-reg-wrap {
        width: 100%;
        padding: 150px 20px 50px 20px;
        align-items: center; }
      .bo-log-reg-login .bo-log-reg-title-wrap h1,
      .bo-log-reg-register .bo-log-reg-title-wrap h1 {
        font-size: 18px; } }
  @media all and (max-width: 500px) {
    .bo-log-reg-login .bo-log-reg-buttons-wrap ul li a,
    .bo-log-reg-register .bo-log-reg-buttons-wrap ul li a {
      font-size: 13px; } }

/* My Account */
.bo-account {
  padding-top: 80px;
  display: flex;
  align-items: stretch;
  padding-bottom: 50px; }
  .bo-account-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-right: 40px;
    padding-left: 40px; }
  .bo-account-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D9D9D9; }
    .bo-account-item:last-child {
      margin-bottom: 0; }
    .bo-account-item-images {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      width: 100%;
      max-width: 400px; }
      .bo-account-item-images img {
        width: 120px;
        height: auto;
        aspect-ratio: 4/5;
        object-fit: cover; }
    .bo-account-item-left {
      font-size: var(--text-s);
      font-weight: 600;
      display: flex;
      flex-direction: column;
      gap: 10px; }
    .bo-account-item-right {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 20px; }
    .bo-account-item-status .bo-ok {
      text-transform: uppercase;
      color: #6AA959ED; }
    .bo-account-item-status .bo-wait {
      text-transform: uppercase;
      color: #F2AF28; }
    .bo-account-item-status .bo-ko {
      text-transform: uppercase;
      color: red; }
    @media all and (max-width: 1280px) {
      .bo-account-item {
        flex-direction: column;
        align-items: flex-start; }
        .bo-account-item-right {
          margin-left: 0;
          margin-top: 30px; } }
    @media all and (max-width: 380px) {
      .bo-account-item-right a {
        padding: 8px 18px; } }
  .bo-account-menu {
    background-color: #F5F4F3F0;
    width: 100%;
    max-width: 400px;
    border-radius: 6px;
    margin-right: 10px; }
    .bo-account-menu-wrap {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px 30px; }
      .bo-account-menu-wrap li a {
        color: #A2A2A2;
        font-size: var(--text-s);
        font-weight: 600; }
        .bo-account-menu-wrap li a.active {
          color: black; }
      @media (max-width: 880px) {
        .bo-account-menu-wrap {
          padding-left: 0; }
          .bo-account-menu-wrap > a {
            display: none; }
          .bo-account-menu-wrap li a {
            color: #000;
            padding: 5px 8px;
            border-radius: 6px; }
            .bo-account-menu-wrap li a.active {
              background-color: #F6F5F4; }
          .bo-account-menu-wrap li:first-child {
            margin-left: 20px; }
          .bo-account-menu-wrap li:last-child {
            margin-right: 80px; }
          .bo-account-menu-wrap .swiper {
            position: relative; }
            .bo-account-menu-wrap .swiper:after {
              content: "";
              display: block;
              height: 100%;
              width: 50px;
              background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
              position: absolute;
              top: 0;
              right: 0;
              z-index: 1; } }
    .bo-account-menu .swiper-slide {
      width: auto;
      margin-right: 12px; }
    @media (min-width: 880px) {
      .bo-account-menu {
        /* Contenedor del swiper */
        /* Wrapper sin flex horizontal */
        /* Cada slide ocupa el ancho completo y se apila */
        /* Ocultar la paginación y flechas si no quieres que se vean */ }
        .bo-account-menu .swiper {
          overflow: visible !important;
          margin: 0;
          cursor: default; }
        .bo-account-menu .swiper-wrapper {
          display: block !important;
          transform: none !important; }
        .bo-account-menu .swiper-slide {
          height: fit-content;
          width: 100% !important;
          margin: 0 0 12px 0 !important;
          /* espacio entre ítems */ }
          .bo-account-menu .swiper-slide:hover a {
            text-decoration: underline; }
            .bo-account-menu .swiper-slide:hover a.active {
              text-decoration: none; }
        .bo-account-menu .swiper-pagination,
        .bo-account-menu .swiper-button-prev,
        .bo-account-menu .swiper-button-next {
          display: none !important; } }
    @media (max-width: 880px) {
      .bo-account-menu {
        background-color: transparent;
        border-top: 2px solid #F5F4F3;
        border-bottom: 2px solid #F5F4F3;
        margin-bottom: 30px; } }
  .bo-account-page-title {
    width: 100%;
    margin-bottom: 20px; }
  @media (max-width: 880px) {
    .bo-account {
      flex-direction: column;
      padding-top: 60px; }
      .bo-account-content {
        padding-right: 20px;
        padding-left: 20px; }
      .bo-account-menu {
        order: -1;
        width: 100%;
        max-width: 100%; } }

.bo-account-details-header {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  font-weight: 600;
  font-size: var(--text-s); }

.bo-account-details-purchase {
  column-gap: 40px;
  margin-top: 20px; }
  .bo-account-details-purchase-col01 {
    width: 50%;
    padding-top: 20px;
    border-top: 1px solid #D9D9D9;
    padding-bottom: 30px;
    border-bottom: 1px solid #D9D9D9; }
    .bo-account-details-purchase-col01 .bo-account-item-status {
      font-weight: 400;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      row-gap: 5px; }
  .bo-account-details-purchase-col02 {
    width: 50%;
    border-top: 1px solid #D9D9D9;
    padding-bottom: 30px;
    border-bottom: 1px solid #D9D9D9;
    padding-top: 83px; }
  @media all and (max-width: 1080px) {
    .bo-account-details-purchase-col01 {
      width: 100%; }
    .bo-account-details-purchase-col02 {
      width: 100%; } }

.bo-account-details .bo-account-item-images {
  display: flex;
  flex-direction: column;
  row-gap: 20px; }

.bo-account-details-item {
  display: flex;
  column-gap: 16px; }
  .bo-account-details-item-info {
    font-size: var(--text-s);
    font-weight: 600; }
    .bo-account-details-item-info-title {
      margin-bottom: 16px;
      text-transform: uppercase; }
      .bo-account-details-item-info-title h4 {
        font-weight: 600; }
    .bo-account-details-item-info-ref {
      margin-top: 16px;
      text-transform: uppercase; }

.bo-account-details-address {
  margin-bottom: 30px; }
  .bo-account-details-address h3 {
    margin-bottom: 10px; }

.bo-account-details-resume {
  margin-bottom: 30px; }
  .bo-account-details-resume h3 {
    margin-bottom: 10px; }
  .bo-account-details-resume ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 100%;
    max-width: 400px; }
    .bo-account-details-resume ul li {
      display: flex;
      justify-content: space-between; }
  @media all and (max-width: 1080px) {
    .bo-account-details-resume ul {
      max-width: 100%; } }

.bo-account-details-total {
  margin-top: 16px; }

.bo-account-details-actions {
  margin-top: 30px; }

.bo-account-designs .bo-account-item-images {
  width: auto; }

.bo-account-designs .bo-account-item-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 20px; }
  .bo-account-designs .bo-account-item-left h2 {
    margin-bottom: 4px; }

.bo-account-designs-detail .bo-account-item {
  border: none;
  align-items: flex-start; }

.bo-account-designs-detail .bo-account-item-left {
  font-weight: 300;
  font-size: var(--text-s);
  width: 100%;
  max-width: 380px; }
  .bo-account-designs-detail .bo-account-item-left h2 {
    font-size: 16px; }
  .bo-account-designs-detail .bo-account-item-left p {
    margin-top: 12px; }
  .bo-account-designs-detail .bo-account-item-left ul {
    margin-top: 12px; }
    .bo-account-designs-detail .bo-account-item-left ul li {
      display: flex;
      flex-direction: column;
      row-gap: 3px;
      margin-bottom: 12px; }
  @media all and (max-width: 880px) {
    .bo-account-designs-detail .bo-account-item-left {
      max-width: none; } }

.bo-account-designs-detail .bo-account-item-right {
  flex-direction: column;
  margin-top: -34px; }
  @media all and (max-width: 880px) {
    .bo-account-designs-detail .bo-account-item-right {
      max-width: none;
      width: 100%; } }

.bo-account-designs-detail-content {
  background-color: #F6F5F4;
  padding: 30px 20px 20px;
  border-radius: 6px;
  font-weight: 300 !important;
  width: 100%;
  max-width: 500px; }
  .bo-account-designs-detail-content ul, .bo-account-designs-detail-content form {
    width: 100%; }
    .bo-account-designs-detail-content ul li, .bo-account-designs-detail-content ul fieldset, .bo-account-designs-detail-content form li, .bo-account-designs-detail-content form fieldset {
      width: 100%;
      font-size: 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 20px; }
      .bo-account-designs-detail-content ul li h4, .bo-account-designs-detail-content ul fieldset h4, .bo-account-designs-detail-content form li h4, .bo-account-designs-detail-content form fieldset h4 {
        width: 70%; }
      .bo-account-designs-detail-content ul li span, .bo-account-designs-detail-content ul fieldset span, .bo-account-designs-detail-content form li span, .bo-account-designs-detail-content form fieldset span {
        display: block;
        width: 30%;
        text-align: right; }
      .bo-account-designs-detail-content ul li div, .bo-account-designs-detail-content ul fieldset div, .bo-account-designs-detail-content form li div, .bo-account-designs-detail-content form fieldset div {
        width: 70%; }
        .bo-account-designs-detail-content ul li div span, .bo-account-designs-detail-content ul fieldset div span, .bo-account-designs-detail-content form li div span, .bo-account-designs-detail-content form fieldset div span {
          text-transform: none;
          width: 100% !important;
          text-align: left !important; }
  .bo-account-designs-detail-content h4 {
    text-transform: uppercase;
    margin-bottom: 8px; }
  .bo-account-designs-detail-content input, .bo-account-designs-detail-content select, .bo-account-designs-detail-content textarea {
    border: none;
    border-radius: 6px;
    font-size: var(--text-s);
    height: 24px;
    width: 60px; }
    .bo-account-designs-detail-content input#tipografia, .bo-account-designs-detail-content select#tipografia, .bo-account-designs-detail-content textarea#tipografia {
      width: 90px; }
  .bo-account-designs-detail-content input[type="text"], .bo-account-designs-detail-content textarea {
    width: 100%;
    font-family: var(--text-normal);
    padding: 8px;
    font-size: var(--text-s); }
  .bo-account-designs-detail-content-status {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #D9D9D9; }
    .bo-account-designs-detail-content-status p {
      margin-top: 8px;
      font-size: var(--text-s); }
  .bo-account-designs-detail-content-buttons {
    margin-top: 30px; }
  .bo-account-designs-detail-content.b01 {
    padding-bottom: 40px; }
  .bo-account-designs-detail-content.b02 li:first-child {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #D9D9D9; }
  .bo-account-designs-detail-content.b02 li:nth-child(2) {
    margin-bottom: 5px; }
  .bo-account-designs-detail-content.b02 li:last-child {
    font-size: 14px; }
    .bo-account-designs-detail-content.b02 li:last-child span {
      text-align: left !important; }
  .bo-account-designs-detail-content.b02 li div {
    display: flex;
    justify-content: flex-end;
    column-gap: 8px; }
  @media all and (max-width: 1280px) {
    .bo-account-designs-detail-content {
      max-width: none; }
      .bo-account-designs-detail-content.b01 {
        margin-top: 60px; } }

.bo-account-my-info {
  padding-top: 100px; }
  .bo-account-my-info-content {
    display: flex;
    flex-direction: column;
    row-gap: 20vw; }
    .bo-account-my-info-content-top-list {
      display: flex;
      flex-direction: column;
      row-gap: 20px;
      margin-top: 20px; }
      .bo-account-my-info-content-top-list-item {
        display: flex;
        flex-direction: column;
        row-gap: 5px; }
    .bo-account-my-info-content-bot {
      padding-bottom: 20px;
      border-bottom: 1px solid #D9D9D9; }

.bo-account-address {
  margin-top: 50px;
  /* EDIT */ }
  .bo-account-address .bo-account-item:first-child {
    border-top: 1px solid #D9D9D9;
    padding-top: 20px; }
  .bo-account-address-item li {
    font-weight: 400;
    font-size: var(--text-xs);
    margin-top: 3px; }
  .bo-account-address-item-actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px; }
    .bo-account-address-item-actions a {
      font-size: var(--text-xs);
      font-weight: 600;
      text-decoration: underline; }
  .bo-account-address-edit .bo-account-content {
    flex-direction: row; }
    .bo-account-address-edit .bo-account-content .bo-account-page-title {
      border-bottom: 1px solid #D9D9D9;
      padding-bottom: 20px;
      margin-bottom: 0; }
    .bo-account-address-edit .bo-account-content .bo-account-items-wrap,
    .bo-account-address-edit .bo-account-content .bo-form {
      width: 50%; }
      .bo-account-address-edit .bo-account-content .bo-account-items-wrap .bo-account-item,
      .bo-account-address-edit .bo-account-content .bo-form .bo-account-item {
        border: none; }
  @media all and (max-width: 1280px) {
    .bo-account-address-edit .bo-account-content {
      flex-direction: column; }
    .bo-account-address-edit .bo-account-items-wrap,
    .bo-account-address-edit .bo-form, .bo-account-address-edit form {
      width: 100% !important;
      max-width: none; } }

/* CART */
.bo-cart {
  padding: 100px 20px 60px; }
  .bo-cart-content {
    max-width: 900px;
    margin: 0 auto; }
    .bo-cart-content h1 {
      font-weight: 300;
      margin-bottom: 30px; }
  .bo-cart-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    column-gap: 8px; }
    .bo-cart-item:nth-child(2) {
      border-top: 1px solid #D9D9D9;
      padding-top: 20px; }
    .bo-cart-item-image {
      width: 100%;
      max-width: 80px;
      height: auto; }
      .bo-cart-item-image img {
        width: 100%;
        object-fit: cover; }
    .bo-cart-item-info {
      display: flex;
      align-items: stretch;
      column-gap: 10px;
      width: 100%; }
      .bo-cart-item-info-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        .bo-cart-item-info-content h4 {
          margin-bottom: 4px;
          font-weight: 300; }
        .bo-cart-item-info-content p {
          font-weight: 300; }
        .bo-cart-item-info-content ul li {
          font-size: var(--text-s);
          margin-bottom: 2px;
          font-weight: 300; }
      .bo-cart-item-info-price {
        align-self: flex-end; }
  .bo-cart-totals {
    max-width: 900px;
    margin: 0 auto; }
    .bo-cart-totals ul li {
      text-transform: uppercase;
      font-size: var(--text-s);
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      font-weight: 300; }
      .bo-cart-totals ul li.bo-cart-totals-total {
        font-weight: 600;
        margin-top: 20px;
        padding-top: 12px;
        border-top: 1px solid #D9D9D9; }
  .bo-cart-buttons {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    margin-top: 40px; }
  @media all and (max-width: 880px) {
    .bo-cart {
      padding-top: 80px; } }

/* CHECKOUT */
.bo-checkout {
  padding-top: 80px;
  display: flex;
  align-items: stretch;
  padding-bottom: 50px; }
  .bo-checkout .divisor {
    width: 1px;
    height: 100%;
    background-color: #D9D9D9; }
  .bo-checkout .bo-checkout-resume {
    background-color: #F5F4F3F0;
    width: 100%;
    max-width: 400px;
    border-radius: 6px;
    margin-right: 10px; }
    .bo-checkout .bo-checkout-resume-wrap {
      height: 100%;
      display: flex;
      flex-direction: column;
      padding: 20px;
      justify-content: space-between;
      row-gap: 6vw; }
      .bo-checkout .bo-checkout-resume-wrap h3 {
        border-bottom: 1px solid #ECECEC;
        padding-bottom: 20px;
        margin-bottom: 14px; }
    .bo-checkout .bo-checkout-resume-item {
      border-bottom: 1px solid #ECECEC;
      padding-bottom: 14px;
      margin-bottom: 14px;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      column-gap: 12px; }
      .bo-checkout .bo-checkout-resume-item-image {
        width: 100%;
        max-width: 75px; }
        .bo-checkout .bo-checkout-resume-item-image img {
          width: 100%;
          object-fit: cover; }
      .bo-checkout .bo-checkout-resume-item-info {
        display: flex;
        align-items: flex-end;
        column-gap: 10px;
        width: 100%; }
        .bo-checkout .bo-checkout-resume-item-info-content {
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between; }
          .bo-checkout .bo-checkout-resume-item-info-content h4 {
            margin-bottom: 4px; }
          .bo-checkout .bo-checkout-resume-item-info-content ul li {
            font-size: var(--text-xs);
            margin-bottom: 2px; }
    .bo-checkout .bo-checkout-resume-total {
      justify-self: flex-end; }
      .bo-checkout .bo-checkout-resume-total ul li {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        text-transform: uppercase;
        font-size: var(--text-xs);
        margin-bottom: 8px; }
        .bo-checkout .bo-checkout-resume-total ul li bdi {
          font-weight: 600; }
        .bo-checkout .bo-checkout-resume-total ul li.total {
          margin-top: 14px;
          padding-top: 10px;
          border-top: 1px solid #ECECEC;
          font-size: var(--text-s); }
          .bo-checkout .bo-checkout-resume-total ul li.total span {
            font-weight: 600; }
    @media (max-width: 880px) {
      .bo-checkout .bo-checkout-resume {
        border-top: 2px solid #F5F4F3;
        border-bottom: 2px solid #F5F4F3;
        margin-bottom: 30px;
        order: -1;
        max-width: none;
        width: calc(100% - 40px);
        margin-left: 20px; } }
  .bo-checkout-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 40px; }
    .bo-checkout-content .bo-button-pill-black-big {
      max-width: 320px !important; }
    @media all and (max-width: 1080px) {
      .bo-checkout-content {
        flex-direction: column;
        row-gap: 40px; } }
  .bo-checkout .bo-log-reg-login,
  .bo-checkout .bo-log-reg-register {
    opacity: 1;
    pointer-events: auto;
    position: static;
    width: 50%;
    padding: 0 70px;
    justify-content: flex-start; }
  @media all and (max-width: 1280px) {
    .bo-checkout .bo-log-reg-login,
    .bo-checkout .bo-log-reg-register {
      padding: 0; }
    .bo-checkout .bo-log-reg-login {
      padding-right: 20px; }
    .bo-checkout .bo-log-reg-register {
      padding-left: 20px; } }
  @media all and (max-width: 1080px) {
    .bo-checkout .bo-log-reg-login,
    .bo-checkout .bo-log-reg-register {
      width: 100%;
      max-width: none;
      padding-left: 0;
      padding-right: 0; }
      .bo-checkout .bo-log-reg-login form,
      .bo-checkout .bo-log-reg-register form {
        max-width: none; } }
  .bo-checkout .bo-log-reg-login {
    align-items: flex-end; }
  .bo-checkout .bo-log-reg-title, .bo-checkout .bo-log-reg-title-wrap {
    max-width: 400px;
    width: 100%;
    text-align: left !important; }
    @media all and (max-width: 1080px) {
      .bo-checkout .bo-log-reg-title, .bo-checkout .bo-log-reg-title-wrap {
        max-width: none; } }
  @media all and (max-width: 880px) {
    .bo-checkout {
      flex-direction: column; }
      .bo-checkout-content {
        padding: 30px 20px; } }

.bo-checkout-nav {
  width: 100%;
  padding: 30px 20px;
  border-bottom: 2px solid #ECECEC;
  margin-bottom: 30px;
  display: flex;
  justify-content: center; }
  .bo-checkout-nav ul {
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; }
    .bo-checkout-nav ul:after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #ECECEC;
      transform: translateY(-50%);
      z-index: -1; }
    .bo-checkout-nav ul li {
      border: 1px solid #F6F5F4;
      padding: 8px 20px;
      border-radius: 8px;
      background-color: white; }
      .bo-checkout-nav ul li a {
        text-transform: uppercase;
        color: #BBBBBBE3;
        font-weight: 600; }
      .bo-checkout-nav ul li.active {
        background-color: #F6F5F4; }
        .bo-checkout-nav ul li.active a {
          color: #000; }

.bo-checkout-thankyou {
  font-size: var(--text-xl);
  font-weight: 300;
  margin-bottom: 40px; }

.bo-checkout-fact {
  display: flex;
  justify-content: center; }
  .bo-checkout-fact .bo-checkout-content {
    flex-direction: column;
    align-items: center;
    row-gap: 40px; }
  .bo-checkout-fact form {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column; }
    .bo-checkout-fact form > div {
      display: flex;
      column-gap: 30px;
      margin-bottom: 10px; }
      @media all and (max-width: 520px) {
        .bo-checkout-fact form > div {
          flex-direction: column; } }
    .bo-checkout-fact form fieldset {
      display: flex;
      flex-direction: column;
      flex: 1; }
      .bo-checkout-fact form fieldset input[type="text"],
      .bo-checkout-fact form fieldset input[type="email"],
      .bo-checkout-fact form fieldset input[type="number"],
      .bo-checkout-fact form fieldset input[type="password"] {
        border: none;
        border-bottom: 1px solid #000;
        padding: 5px 0;
        margin-bottom: 24px;
        color: black;
        font-size: 16px; }
        @media all and (max-width: 520px) {
          .bo-checkout-fact form fieldset input[type="text"],
          .bo-checkout-fact form fieldset input[type="email"],
          .bo-checkout-fact form fieldset input[type="number"],
          .bo-checkout-fact form fieldset input[type="password"] {
            transform: scale(0.8);
            width: 120%;
            margin-left: -10%; } }
      .bo-checkout-fact form fieldset input[type="checkbox"] {
        border-radius: 0; }
      .bo-checkout-fact form fieldset *:placeholder {
        color: black;
        opacity: 1; }
      .bo-checkout-fact form fieldset label {
        font-size: var(--text-s);
        margin-bottom: 12px;
        color: black; }
        .bo-checkout-fact form fieldset label a {
          text-decoration: underline; }
    .bo-checkout-fact form textarea {
      border-radius: 6px;
      background-color: #F3EDE4;
      bordeR: none;
      padding: 12px;
      font-family: "Archivo";
      font-size: 16px;
      min-height: 150px; }
  .bo-checkout-fact .bo-checkout-different-address {
    width: 100%;
    max-width: 700px;
    cursor: pointer; }
  .bo-checkout-fact #bo-checkout-different-address {
    display: none; }
    .bo-checkout-fact #bo-checkout-different-address.shown {
      display: flex; }

.bo-checkout-pay .bo-checkout-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px; }
  .bo-checkout-pay .bo-checkout-content h2 {
    font-size: var(--text-l);
    text-transform: uppercase;
    margin-bottom: 10px;
    width: 100%;
    max-width: 700px; }
  .bo-checkout-pay .bo-checkout-content h2, .bo-checkout-pay .bo-checkout-content p {
    width: 100%; }
  .bo-checkout-pay .bo-checkout-content form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px; }
    .bo-checkout-pay .bo-checkout-content form fieldset {
      display: flex;
      flex-direction: column;
      width: 100%;
      margin-bottom: 20px; }
      .bo-checkout-pay .bo-checkout-content form fieldset > p {
        color: #BBBBBBE3; }
    .bo-checkout-pay .bo-checkout-content form input[type="text"],
    .bo-checkout-pay .bo-checkout-content form input[type="email"],
    .bo-checkout-pay .bo-checkout-content form input[type="password"],
    .bo-checkout-pay .bo-checkout-content form textarea {
      border: none;
      border-bottom: 1px solid #000;
      padding: 5px 0;
      margin-bottom: 15px;
      font-size: var(--text-s);
      color: black;
      font-family: var(--text-normal); }
    .bo-checkout-pay .bo-checkout-content form textarea {
      min-height: 100px; }
    .bo-checkout-pay .bo-checkout-content form input[type="checkbox"] {
      border-radius: 0; }
    .bo-checkout-pay .bo-checkout-content form *:placeholder {
      opacity: 1;
      color: #BBBBBBE3; }
    .bo-checkout-pay .bo-checkout-content form label {
      font-size: var(--text-s);
      margin-bottom: 12px;
      color: black;
      display: flex;
      align-items: center; }
      .bo-checkout-pay .bo-checkout-content form label a {
        text-decoration: underline; }
      .bo-checkout-pay .bo-checkout-content form label input {
        margin-top: -2px;
        margin-right: 6px; }
      .bo-checkout-pay .bo-checkout-content form label img {
        width: auto;
        height: 24px;
        margin-left: 10px; }
    .bo-checkout-pay .bo-checkout-content form > a {
      color: #818181E3;
      font-size: var(--text-s);
      display: block;
      margin: 10px 0 20px; }
    .bo-checkout-pay .bo-checkout-content form input[type="submit"] {
      margin-top: 30px; }
