@charset "UTF-8";

/*------------------------------------*\
    FUNCTION
\*------------------------------------*/
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    $COLORS
\*------------------------------------*/
/*------------------------------------*\
    $SPACES
\*------------------------------------*/
/*------------------------------------*\
    $SHADOWS
\*------------------------------------*/
/*------------------------------------*\
    $BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
    $FONTS
\*------------------------------------*/
h1,
.title__page-font {
  font-size: clamp(2.2rem, -0.875rem + 8.333vw, 3rem);
}

h2 {
  font-size: clamp(2rem, -0.875rem + 8.333vw, 2.75rem);
}

h3 {
  font-size: clamp(1.75rem, -0.875rem + 8.333vw, 2.5rem);
}

h3 a {
  font-size: clamp(1.75rem, -0.875rem + 8.333vw, 2.5rem);
}

h4 {
  font-size: clamp(1.5rem, -0.875rem + 8.333vw, 2rem);
}

h4 span {
  font-size: clamp(1.5rem, -0.875rem + 8.333vw, 2rem) !important;
}

h5 {
  font-size: clamp(1.375rem, -0.875rem + 8.333vw, 1.813rem);
}

span {
  font-size: 1rem;
}

.text-x-large {
  font-size: clamp(1.25rem, -0.875rem + 8.333vw, 1.5rem);
  line-height: 31px;
}

.text-large {
  font-size: 20px;
  line-height: 30px;
}

.text-large__garamond {
  font-family: "EB Garamond", serif;
  font-size: 58px;
  font-weight: 800;
  padding: 0;
}

.text-medium {
  font-size: clamp(1rem, -0.875rem + 8.333vw, 1.188rem);
  line-height: 27px;
}

.text-medium__garamond {
  font-family: "EB Garamond", serif;
  font-weight: 800;
  font-size: 32px;
}

.text-normal {
  font-size: clamp(1rem, -0.875rem + 8.333vw, 1.09rem);
  line-height: 27px;
}

.text-small {
  font-size: 15px;
  line-height: 23px;
}

.text-small__garamond {
  font-family: "EB Garamond", serif;
  font-size: 15px;
  line-height: 23px;
  font-weight: 800;
}

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

.x-small {
  font-size: 13px;
  line-height: 21px;
}

.x-small__garamond {
  font-weight: 800;
  font-size: 13px;
  line-height: 21px;
}

.primaryfont__bold {
  line-height: 1.1;
  font-weight: 600 !important;
}

.primaryfont__medium {
  line-height: 1.1;
  font-weight: 500;
}

p,
label,
ul,
ol,
li {
  line-height: 1.3;
  font-family: "League Spartan", sans-serif;
  font-weight: 300;
  list-style: none;
}

a {
  line-height: 1;
  font-family: "League Spartan", sans-serif;
}

h1,
h2,
h3,
h5,
.number,
.title__page-font {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  font-weight: 600;
  line-height: 1;
  font-family: "League Spartan", sans-serif;
}

h4 {
  line-height: 1.2;
  font-family: "League Spartan", sans-serif;
  font-weight: 600;
}

span {
  font-size: clamp(1.2rem, -4.875rem + 8.333vw, 1.2rem);
}

.text-mid-large {
  font-size: 24px;
  line-height: 32px;
}

.p-bottom-medium {
  padding-bottom: 16px;
}

h3,
h4,
h4 span {
  font-weight: 500 !important;
}

/*------------------------------------*\
    MIXINS
\*------------------------------------*/
/*------------------------------------*\
    BREAKPOINT
\*------------------------------------*/
/*------------------------------------*\
    UTILITIES
\*------------------------------------*/
.display__flex-start {
  display: flex;
  align-items: flex-start;
}

.display__flex-start-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.display__mobile {
  display: block;
}

@media (min-width: 700px) {
  .display__mobile {
    display: none;
  }
}

.display__mobile-reverse {
  flex-direction: column-reverse;
}

@media (min-width: 700px) {
  .display__mobile-reverse {
    flex-direction: row;
  }
}

.display__mobile-reverse-large {
  flex-direction: column-reverse;
}

@media (min-width: 1024px) {
  .display__mobile-reverse-large {
    flex-direction: row;
  }
}

.display__mobile-end {
  align-items: flex-end;
}

@media (min-width: 700px) {
  .display__mobile-end {
    align-items: flex-start;
  }
}

.display__mobile-between {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (min-width: 700px) {
  .display__mobile-between {
    display: block;
  }
}

.display__mobile-between-flex-desktop {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 700px) {
  .display__mobile-between-flex-desktop {
    display: flex;
  }
}

.display__desktop {
  display: none;
}

/*Direcciones*/

.view-id-direcciones {
  gap: 24px;
  display: flex;
}

/*.contextual-region{*/
/*  display: flex;*/
/*  gap: 24px;*/
/*  justify-content: center;*/
/*}*/




/* Fin Direcciones*/


@media (min-width: 700px) {
  .display__desktop {
    display: block;
  }

  .product .display__desktop {
    display: flex !important;
  }
}

.display__desktop-end {
  align-items: flex-start;
}

@media (min-width: 700px) {
  .display__desktop-end {
    display: flex;
    align-items: flex-end;
  }
}

.display__desktop-end-column {
  align-items: flex-start;
  flex-direction: row;
  display: flex;
  width: 100%;
}

@media (min-width: 700px) {
  .display__desktop-end-column {
    align-items: flex-end;
    flex-direction: column;
    display: flex;
  }
}

.display__desktop-justify-end {
  justify-content: flex-start;
}

@media (min-width: 700px) {
  .display__desktop-justify-end {
    display: flex;
    justify-content: flex-end;
  }
}

.display__desktop-baseline {
  display: block;
}

@media (min-width: 700px) {
  .display__desktop-baseline {
    align-items: baseline;
    display: flex;
  }
}

.display__desktop-between {
  display: block;
}

@media (min-width: 700px) {
  .display__desktop-between {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}

.display__end {
  display: flex;
  align-items: flex-end;
}

.display__none {
  display: none;
}

@media (min-width: 1024px) {

  .display__flex,
  .display__flex-justify {
    display: flex;
  }
}

.display__flex-justify {
  justify-content: space-between;
}

@media (min-width: 700px) {
  .display__flex-tablet {
    display: flex;
  }
}

.display__mobile-desktop {
  display: flex;
  align-items: center;
}

.display__flex-desktop {
  display: block;
}

@media (min-width: 700px) {
  .display__flex-desktop {
    display: flex;
  }
}

.display__no-mobile {
  display: block;
}

@media (min-width: 700px) {
  .display__no-mobile {
    display: flex;
    align-items: flex-start;
  }
}

.display__flex-mobile {
  display: flex;
}

@media (min-width: 700px) {
  .display__flex-mobile {
    display: block;
  }
}

.display__one {
  display: none;
}

.display__button {
  display: none;
}

.display__element {
  display: none;
}

.display__innovation {
  display: none;
}

.display__baseline {
  align-items: baseline;
  display: flex;
}

.display__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.display__between {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

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

.display__center-column {
  padding: 0 16px;
  display: flex;
  align-items: center;
  text-align: left;
}

@media (min-width: 700px) {
  .display__center-column {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

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

.display__flex-gap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.display-f {
  display: flex;
}

.vertical-line__big {
  width: 3px;
  background-color: #83390b;
  height: 100%;
  float: left;
}

.vertical-line__width {
  width: 100%;
  height: 1px;
}

.vertical-line__column {
  -webkit-margin-start: 0 !important;
  margin-inline-start: 0 !important;
  -webkit-margin-end: 30px !important;
  margin-inline-end: 30px !important;
}

.content__max {
  max-width: 1392px;
}

.content__center {
  margin-left: auto;
  margin-right: auto;
}

.content__text {
  text-align: center;
}

.content__right {
  justify-content: right;
}

.gap {
  gap: 32px;
}


.gap__x-large {
  gap: 48px;
}

.cart .gap__x-large {
  gap: 35px;
}

.grid__c2 .gap__x-large {
  gap: 20px;
}

.gap__regular {
  gap: 24px;
}

.gap__regular-desktop {
  gap: 4px;
}

@media (min-width: 1024px) {
  .gap__regular-desktop {
    gap: 24px;
  }
}

.gap__small {
  gap: 16px;
}

.gap__small-desktop {
  gap: 4px;
}

@media (min-width: 700px) {
  .gap__small-desktop {
    gap: 16px;
  }
}

.gap__form {
  gap: 24px;
}

.gap__logos {
  grid-column-gap: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .gap__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.hr,
.hr__margin-tiny,
.hr__margin-bottom,
.hr__margin-top,
.hr__margin,
.hr__white,
.hr__primary {
  height: 1px;
  border: 0;
  width: 100%;
  margin: 0;
  background-color: #26201b;
}

.hr__primary {
  background-color: #d5903c;
}

.hr__white {
  background-color: #ffffff;
}

.hr__margin {
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer__list .hr__margin {
  margin-top: 0px;
  margin-bottom: 0px;
}

.hr__margin-top {
  margin-top: 10px;
}

.hr__margin-bottom {
  margin-bottom: 10px;
}

.hr__margin-none {
  margin: 0;
}

.hr__margin-tiny {
  margin-top: 2px;
  margin-bottom: 2px;
  width: 15px;
  margin-left: auto;
  margin-right: auto;
}

.hr_color-lite {
  height: 1px;
  width: 100%;
  margin: 0;
  background-color: #cbbdaa;
}

.color__text-innovation {
  color: #59718c;
}

.color__text-home {
  color: #b36206;
}

.color__text-home-dark {
  color: #83390b;
}

.color__text-action {
  color: #a1232f;
}

.color__text-labe {
  color: #2ed9c3;
}

.color__text-suceso {
  color: #067306;
}

.color__text-mono600 {
  color: #756a5b;
}

a {
  color: #26201b;
}

strong {
  font-weight: 500;
}

.logo__size {
  width: 139px;
}

@media (min-width: 1024px) {
  .logo__size {
    width: 272px;
  }
}

.logo__size-home {
  width: 139px;
}

@media (min-width: 1024px) {
  .logo__size-home {
    width: 200px;
  }
}

.border__radius-small {
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .border__radius-small {
    border-radius: 16px;
  }
}

.border__radius-small-top {
  border-radius: 8px 8px 0 0;
}

@media (min-width: 1024px) {
  .border__radius-small-top {
    border-radius: 16px;
  }
}

.border__radius-x-small {
  border-radius: 8px;
}

.border__radius-x-small-top {
  border-radius: 8px 8px 0 0;
}

.textdecoration__none {
  text-decoration: none;
}

.textdecoration__none:hover {
  /* box-shadow: 0 0 11px rgba(33, 33, 33, 0.2); */
}

.shadow:hover {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}

ul.list {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

ul.list>li:not(:last-child) {
  padding-bottom: 16px;
}

ul.list__padding-left {
  padding-left: 24px;
}

.title__link {
  display: flex;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: baseline;
}

@media (min-width: 1024px) {
  .title__link {
    margin-bottom: 0;
  }
}

.title__link a {
  padding-bottom: 16px;
}

.title__master-tag {
  white-space: nowrap;
}

.title__master-display {
  height: 40px;
}

.title__scroll,
.title__scroll-culinary {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 1024px) {

  .title__scroll,
  .title__scroll-culinary {
    display: block;
    text-transform: none;
    font-size: 1.8rem;
  }
}

/* .title__scroll-culinary {
  background-color: #989a2b;
  color: #ffffff;
} */

.title__master-display {
  display: block;
}

@media (min-width: 1024px) {
  .title__master-display {
    display: flex;
    align-items: flex-start;
  }
}

/* .title__master-assignment {
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
} */

.title__master-assignment-title {
  white-space: nowrap;
  margin-right: 16px;
}

#title__page,
#title__page-culinary,
#title__page-master {
  padding-top: 10px;
  padding-bottom: 10px;
  top: 0;
  width: 100%;
  transition: 0.5s;
}

@media (min-width: 1024px) {

  #title__page,
  #title__page-culinary,
  #title__page-master {
    padding-top: 0;
  }
}

#title__page-master {
  padding-top: 4px;
}

#title__page-culinary {
  padding-top: 10px;
}

.disappear {
  display: none;
}

.number {
  font-size: clamp(2.2rem, -0.875rem + 8.333vw, 2.2rem);
}

.number__1::marker {
  color: #000000;
  content: "1.";
}

.number__2::marker {
  color: #000000;
  content: "2.";
}

.number__3::marker {
  color: #000000;
  content: "3.";
}

.number__4::marker {
  color: #000000;
  content: "4.";
}

.number__5::marker {
  color: #000000;
  content: "5.";
}

.number__6::marker {
  color: #000000;
  content: "6.";
}

.number__7::marker {
  color: #000000;
  content: "7.";
}

.number__8::marker {
  color: #000000;
  content: "8.";
}

.number__9::marker {
  color: #000000;
  content: "9.";
}

.number>p {
  margin-left: 16px;
}

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

@media (min-width: 1024px) {
  .max-width {
    max-width: 66%;
  }
}

.padding__medium {
  padding-top: 32px;
  padding-bottom: 54px;
}

.padding_top {
  padding-top: 32px;
}

.padding__medium {
  padding-top: 32px;
  padding-bottom: 54px;
}

.d-flex {
  display: flex;
}

.margin-right {
  margin-right: 10px;
}

.box__background--card {
  background-color: #F4F3EF;
}

.box__background--primary {
  background-color: #ffe5b4;
}

.box__background--succes {
  background-color: #cbffae;
}

.box__background--white {
  background-color: #ffffff;
}

.box__background--monocromo-200 {
  background-color: #dfdad3;
}

.box__background--white {
  background-color: #ffffff;
}

.line__middle {
  text-align: center;
  border-bottom: 0;
  border-top: 1px solid #000000;
  line-height: 0;
  padding: 0;
  min-height: 40px;
  margin-top: 1.5em;
}

.line__middle-span {
  background: #fff;
  padding: 0 30px;
}

.img-fit {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.img-width {
  width: 100%;
}
.messages_wrapper.layout-container{
  margin: 0 !important;
}
/*------------------------------------*\
    COLOR GRADIENT
\*------------------------------------*/
.gradient,
.gradient__innovation,
.gradient__home {
  padding: 13.5px 24px;
}

.gradient__home {
  background: linear-gradient(274.9deg, #EAAC30 3.95%, #83390B 96.05%);
  -webkit-animation: gradient 5s ease infinite;
  animation: gradient 5s ease infinite;
  background-size: 400% 400%;
}

.gradient__home.paused {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.gradient__innovation {
  background: linear-gradient(274.9deg, #47596F 3.95%, #9CB5BC 96.05%);
  -webkit-animation: gradient 5s ease infinite;
  animation: gradient 5s ease infinite;
  background-size: 400% 400%;
}
.gradient__innovation button, .gradient__home button {
  display: none !important;
}
.gradient__innovation.paused {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@media (min-width: 1024px) {

  .gradient,
  .gradient__innovation,
  .gradient__home {
    padding: 13.5px 24px;
  }
}

.gradient__text {
  line-height: 20px;
  color: #F4F3EF;
}

.gradient__text a {
  color: #F4F3EF;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.accordion {
  width: 100%;
  border: none;
  color: #444;
  height: 61px;
  padding: 16px;
  cursor: pointer;
  outline: none;
  text-align: left;
  text-transform: uppercase;
  font-size: clamp(1.1rem, -0.875rem + 8.333vw, 1.2rem);
  border-radius: 4px;
  font-family: "League Spartan", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* .block-inline-blockwidget-acordeon .accordion__item .accordion::after {
  content: url(/themes/custom/bccTheme/assets/iconos/accordion-open.svg) ;
}  */
.accordion__background {
  background-color: #dfdad3;
}

.accordion__background-innovation {
  background-color: rgba(89, 113, 140, 0.1);
}

.accordion__item .accordion:active {
  background: #dfdad3;
  border-radius: 4px;
  padding: .7em;
  border-bottom: 0;
  color: initial;
  text-transform: initial;
  font-weight: initial;
}

.accordion__index {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  width: 100%;
  border: none;
  font-size: 1rem;
  padding: 0 24px;
  gap: 16px;
}

@media (min-width: 1024px) {
  .block-inline-blockwidget-acordeon .accordion__index::after {
    content: url("/themes/custom/bccTheme/assets/iconos/accordion-open.svg");
  }

  .accordion__index::before {
    display: none;
  }
}

.order {
  order: 1;
}

.active.accordion {
  border-radius: 4px 4px 0 0;
}

/* .active::after {
  content: url("/themes/custom/bccTheme/assets/iconos/accordion-closed.svg");
} */

@media (min-width: 1024px) {
  .active__index::after {
    content: url("/themes/custom/bccTheme/assets/iconos/accordion-closed.svg");
  }

  .active__index::before {
    content: url("");
  }
}

.panel,
.panel__index {
  padding: 0 16px;
  display: none;
  height: auto;
  color: #52483b;
  overflow: hidden;
  transition: all 0.2s ease-out;
  border-radius: 0 0 4px 4px;
}

.panel__background {
  background-color: #dfdad3;
}

.panel__background-innovation {
  background-color: rgba(89, 113, 140, 0.1);
}

.panel__index-background {
  background-color: #dfdad3;
}

.visible {
  display: block;
}

.header-index {
  top: 275px !important;
}

.banner__fixed {
  z-index: 1;
  background-color: #ffffff;
  padding: 20px 24px;
  bottom: 0;
  position: fixed;
  width: 100%;
  -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.25));
}

/*------------------------------------*\
    BOX
\*------------------------------------*/
.box,
.box__principal {
  border-bottom: 1px solid #26201b;
  margin-top: 10px;
}

@media (min-width: 1024px) {

  .box,
  .box__principal {
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10px;
  }
}

.box__image {
  position: relative;
  top: 11px;
  margin-bottom: 8px;
}

.box__background {
  background-color: #F4F3EF;
}

.box__background--innovation {
  background-color: rgba(89, 113, 140, 0.1);
}

.box__background--action {
  background-color: #fff3f5;
}

.box__background--white {
  background-color: #ffffff;
}

.box__background--suceso {
  background-color: #eaf9de;
}

.box__icon,
.box__icon--date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.box__icon--tag {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 16px;
}

.box__icon--date {
  padding-right: 16px;
}

.box__icon--date-innovation {
  color: #59718c;
  padding-right: 8px;
}

.box__icon--date-home {
  color: #b36206;
  padding-right: 8px;
}

.box__bloque {
  padding-bottom: 20px;
  gap: 30px;
}

@media (min-width: 1024px) {
  .box__bloque {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .box__principal {
    display: flex;
  }
}

.box__principal--margin {
  padding-bottom: 24px;
}

@media (min-width: 1024px) {
  .box__principal--margin {
    margin-bottom: 64px;
  }
}

.box__title {
  padding-bottom: 10px;
  padding-top: 10px;
}

@media (min-width: 1024px) {
  .box__title {
    order: 0;
  }
}

.box__title--date {
  margin: 16px 0 8px 0;
}

.box__date {
  display: flex;
  width: 100%;
  align-items: center;
}

.box__date--space,
.box__date--space-center {
  padding-right: 16px;
}

.box__date--space-center {
  text-align: center;
}

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

.box__description {
  margin: 0 0 16px 0;
}

@media (min-width: 1024px) {
  .box__description {
    margin: 0 0 16px 0;
  }
}

.box__description--date {
  margin: 8px 0;
}

/* .box__tag, */
.box__tag--destacadas,
.box__tag--margin {
  position: absolute;
  display: flex;
  margin-left: -8px;
  margin-top: -11px;
  font-size: 15px;
}

@media (min-width: 1024px) {
  .box__tag--margin {
    margin-left: 10px;
    margin-top: -8px;
  }
}

@media (min-width: 1024px) {
  .box__tag--destacadas {
    margin-left: -118px;
    margin-top: -122px;
  }
}

/* .box__tag--bloq2 {
  display: inline;
  margin: 20px 0 0 0;
} */

@media (min-width: 1024px) {
  /* .box__tag--bloq2 {
    position: absolute;
    display: flex;
    margin-left: -8px;
    margin-top: 0px;
  } */
}

.box__tag--space {
  margin-right: 10px;
  margin-bottom: 8px;
}

.box__img {
  width: 100%;
  height: 100%;
  padding-bottom: 8px;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (min-width: 1024px) {
  .box__img {
    padding-bottom: 0;
    border-radius: 16px;
  }
}

.box__img--bloq2-rightangle {
  border-radius: 16px 16px 0 0;
}

@media (min-width: 1024px) {
  .box__img--bloq2-rightangle {
    border-radius: 16px 16px 0 0;
  }
}

.box__img--border,
.box__img--border-rightangle,
.box__img--border-rightangle-labe,
.box__img--border-rightangle-huerta,
.box__img--border-rightangle-corporate,
.box__img--border-rightangle-formacion,
.box__img--border-rightangle-entusiastas,
.box__img--border-rightangle-cursos,
.box__img--border-rightangle-doctorado,
.box__img--border-rightangle-master,
.box__img--border-rightangle-grado,
.box__img--border-rightangle-home {
  padding-bottom: 0;
}

.box__img--border-rightangle,
.box__img--border-rightangle-labe,
.box__img--border-rightangle-huerta,
.box__img--border-rightangle-corporate,
.box__img--border-rightangle-formacion,
.box__img--border-rightangle-entusiastas,
.box__img--border-rightangle-cursos,
.box__img--border-rightangle-doctorado,
.box__img--border-rightangle-master,
.box__img--border-rightangle-grado,
.box__img--border-rightangle-home {
  border-radius: 8px 8px 0 0;
}

@media (min-width: 1024px) {

  .box__img--border-rightangle,
  .box__img--border-rightangle-labe,
  .box__img--border-rightangle-huerta,
  .box__img--border-rightangle-corporate,
  .box__img--border-rightangle-formacion,
  .box__img--border-rightangle-entusiastas,
  .box__img--border-rightangle-cursos,
  .box__img--border-rightangle-doctorado,
  .box__img--border-rightangle-master,
  .box__img--border-rightangle-grado,
  .box__img--border-rightangle-home {
    border-radius: 16px 16px 0 0;
  }
}

.box__img--border-rightangle-home {
  border-bottom: 5px solid #d5903c;
}

.box__img--border-rightangle-grado {
  border-bottom: 5px solid #5d4976;
}

.box__img--border-rightangle-master {
  border-bottom: 5px solid #804A47;
}

.box__img--border-rightangle-doctorado {
  border-bottom: 5px solid #A36A00;
}

.box__img--border-rightangle-cursos {
  border-bottom: 5px solid #1e60bf;
}

.box__img--border-rightangle-entusiastas {
  border-bottom: 5px solid #757A00;
}

.box__img--border-rightangle-formacion {
  border-bottom: 5px solid #b9ac99;
}

.box__img--border-rightangle-corporate {
  border-bottom: 5px solid #b9ac99;
}

.box__img--border-rightangle-huerta {
  border-bottom: 5px solid #008a00;
}

.box__img--border-rightangle-labe {
  border-bottom: 5px solid #2ed9c3;
}

@media (min-width: 1024px) {

  .box__content,
  .box__content--right {
    flex-direction: column;
    display: flex;
    /* justify-content: space-evenly; */
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .box__content--justify {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
  }
}

.box__content--justify-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 1024px) {
  .box__content--right {
    order: 2;
  }
}

.box__color-home {
  color: #b36206;
}

.toggle {
  padding: 24px;
}

.toggle__review {
  padding: 24px;
  background-color: #F4F3EF;
  border-radius: 8px;
  background: red;
}

.toggle__review-content,
.toggle__review-content-users {
  width: 100%;
  height: auto;
  display: flex;
  align-items: top;
  gap: 16px;
}

.toggle__review-content-users {
  padding-top: 24px;
}

.toggle__review-content img,
.toggle__review-content-users img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.toggle__review-dates>p:not(:last-child) {
  padding-bottom: 4px;
}

.toggle__review-description {
  padding-top: 16px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toggle__review-button {
  display: flex;
  justify-content: flex-end;
}

.toggle__review-job {
  color: #b36206;
}

/* @media screen and (min-width: 1020px) and (max-width: 1180px) {
    .toggle__review-content {
        flex-direction: column;
    }
}
.comment {
    height: 80px;
    overflow: hidden;
    padding-top: $small;
}
.complete {
    height: auto;
}
.more {
    color: $c-primary-default;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    padding-top: $regular;
    background: none;
    border: none;
}
 */
/* Experiences */
.bullet {
  margin: 0;
}

.bullet__none-margin {
  padding-left: 0;
}

.bullet__line,
.bullet__line-action,
.bullet__line-innovation,
.bullet__line-home {
  list-style: none;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.bullet__line:before,
.bullet__line-action:before,
.bullet__line-innovation:before,
.bullet__line-home:before {
  content: "";
  position: absolute;
  border-left: 1px solid red;
  height: 100%;
  width: 1px;
}

.bullet__line-home:before {
  content: "";
  position: absolute;
  border-left: 1px solid #83390b;
  height: 100%;
  width: 1px;
  left: 4px;
}

.bullet__line-home:after {
  color: #83390b;
}

.bullet__line-innovation:before {
  content: "";
  position: absolute;
  border-left: 1px solid #59718c;
  height: 100%;
  width: 1px;
}

.bullet__line-innovation:after {
  color: #59718c;
}

.bullet__line-action:before {
  content: "";
  position: absolute;
  border-left: 1px solid #a1232f;
  height: 100%;
  width: 1px;
}

.bullet__line-action:after {
  color: #a1232f;
}

.bullet__line:first-child:before,
.bullet__line-home:first-child:before,
.bullet__line-innovation:first-child:before,
.bullet__line-action:first-child:before {
  top: 20px;
  left: 4px;
}

/* li.bullet__line-home:nth-child(2):before {
  display: none;
} */
.bullet__line:last-child:before,
.bullet__line-home:last-child:before,
.bullet__line-innovation:last-child:before,
.bullet__line-action:last-child:before {
  height: 6px;
}

.bullet__title {
  padding-left: 16px;
}

.bullet__description {
  display: block;
  padding-left: 16px;
  height: 10%;
}

.bullet__line::after,
.bullet__line-home::after,
.bullet__line-innovation::after,
.bullet__line-action::after {
  content: "⦿";
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 30px;
  line-height: 1;
  left: -10px;
  top: 0;
}

.toggle__review {
  padding: 24px;
  background-color: #f4f3ef;
  border-radius: 8px;
  font-size: 19px;
  line-height: 23px;
}

.toggle__review-content,
.toggle__review-content-users {
  width: 100%;
  height: auto;
  display: flex;
  align-items: top;
  gap: 16px;
}

.toggle__review-content-users {
  width: 100%;
  height: auto;
  display: flex;
  align-items: top;
  gap: 16px;
  padding-top: 24px;
}

.toggle__review-content img,
.toggle__review-content-users img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.toggle__review-dates>p:not(:last-child) {
  padding-bottom: 4px;
}

.toggle__review-description {
  padding-top: 16px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toggle__review-button {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.toggle__review-button .more {
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  background: none;
  border: none;
}

.toggle__review-button .more span {
  margin-right: 5px;
}

.toggle__review-button .more .arrow-down {
  margin-left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.toggle__review-job {
  color: #b36206;
}

@media screen and (min-width: 1020px) and (max-width: 1180px) {

  .toggle__review-content,
  .toggle__review-content-users {
    flex-direction: column;
  }
}

.comment {
  overflow: hidden;
  padding-top: 16px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

.complete {
  height: auto;
}

.display-flex {
  display: flex;
  justify-content: space-between;
}

.display-f {
  display: flex;
}

.topbar,
.topbar__list,
.topbar__list--item {
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  display: none;
  height: 40px;
}

.topbar:not(:first-child),
.topbar__list:not(:first-child),
.topbar__list--item:not(:first-child) {
  justify-content: flex-end;
}

@media (min-width: 1024px) {

  .topbar,
  .topbar__list,
  .topbar__list--item {
    display: flex;
  }
}

.topbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar__list--item {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  float: left;
  align-items: center;
  color: white;
  /*padding: 0 16px;*/
}

.topbar__list--item.selected>ul {
  display: block;
  z-index: 10;
}

.topbar__list--item--link {
  display: block;
  color: #52483b;
  text-decoration: none;
  padding: 10px;
  font-family: "League Spartan", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.topbar__list--submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 300px;
  background-color: #52483b;
  padding: 10px;
  z-index: 1;
}

.topbar__list--submenu--item {
  float: none;
  list-style: none;
  width: 100%;
  padding: 16px;
}

.topbar__list--submenu--item--link {
  color: white;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  text-decoration: none;
  align-items: center;
}

.p-color {
  color: #756a5b;
}

.toggle__masters {
  padding: 24px;
  background-color: #f4f3ef;
  border-radius: 8px;
  font-size: 19px;
  line-height: 23px;
  width: 440px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 10px auto 10px auto;
  grid-template-areas: "paragraph" "photo" "text";
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
}

.toggle__masters-desktop {
  display: none;
}

.toggle__masters-content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: top;
  gap: 16px;
}

.toggle__masters-content-users {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: top;
  gap: 16px;
  padding-top: 24px;
  grid-area: photo;
}

.toggle__masters-content img,
.toggle__masters-content-users img {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  grid-area: photo;
}

.toggle__masters-dates>p:not(:last-child) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  padding-bottom: 4px;
  grid-area: text;
}

.toggle__masters-description {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  padding-top: 16px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-area: paragraph;
}

.toggle__masters-button {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.toggle__masters-button .more {
  display: flex;
  align-items: center;
  background: none;
  border: none;
}

.toggle__masters-button .more span {
  margin-right: 5px;
}

.toggle__masters-button .more .arrow-down {
  margin-left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.toggle__masters-job {
  color: #b36206;
}

@media screen and (min-width: 1020px) {
  .toggle__masters {
    padding: 24px;
    background-color: #f4f3ef;
    border-radius: 8px;
    font-size: 19px;
    line-height: 23px;
    width: 440px;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 10px auto 10px auto;
    grid-template-areas: "photo" "paragraph" "text";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .toggle__masters-desktop {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 50%;
  }

  .toggle__masters-dates {
    display: none;
  }

  .toggle__masters-content img,
  .toggle__masters-content-users img {
    border-radius: 50%;
    width: 188px;
    height: 188px;
    margin: 0 auto;
  }

  .toggle__masters-content-users {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .toggle__masters-content img,
  .toggle__masters-content-users img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .toggle__masters-dates>p:not(:last-child) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .toggle__masters-description {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

.svg-container {
  width: 17px;
  height: 17px;
  transition: transform 0.3s ease-in-out;
}

.svg-container.up {
  transform: rotate(180deg);
}

/*------------------------------------*\
    BUTTONS
\*------------------------------------*/
.btn,
.btn__modal,
.btn__primary,
.btn__primary--rrss-facebook,
.btn__primary--rrss-google,
.btn__primary--small-nocolor-culinary,
.btn__primary--small-nocolor-culinary-width,
.btn__primary--medium-nocolor-culinary,
.btn__primary--medium-nocolor-culinary-width,
.btn__primary--small-color-labe,
.btn__primary--medium-color-labe,
.btn__primary--medium-color-labe-width,
.btn__primary--small-nocolor-action,
.btn__primary--small-color-labe-width,
.btn__primary--small-nocolor-action-width,
.btn__primary--small-color-action-width,
.btn__primary--small-color-action,
.btn__primary--medium-nocolor-action,
.btn__primary--medium-nocolor-action-width,
.btn__primary--medium-color-action,
.btn__primary--medium-color-action-width,
.btn__primary--small-nocolor-innovation,
.btn__primary--small-nocolor-innovation-width,
.btn__primary--small-color-innovation-width,
.btn__primary--small-color-innovation,
.btn__primary--medium-nocolor-innovation,
.btn__primary--medium-nocolor-innovation-width,
.btn__primary--medium-color-innovation,
.btn__primary--medium-color-innovation-width,
.btn__primary--small-nocolor,
.btn__primary--small-nocolor-width,
.btn__primary--small-color,
.btn__primary--small-color-menu,
.btn__primary--small-color-width,
.btn__primary--medium-nocolor,
.btn__primary--medium-nocolor-width,
.btn__primary--medium-color,
.btn__primary--medium-color-menu,
.btn__primary--medium-color-width,
.btn__primary--large-nocolor,
.btn__primary--large-nocolor-width,
.btn__primary--large-color-menu,
.btn__primary--large-color,
.btn__primary--large-color-width {
  text-transform: uppercase;
  text-decoration: none;
  align-items: baseline;
  text-align: center;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
  text-wrap: nowrap;
}

.btn__primary,
.btn__primary--rrss-facebook,
.btn__primary--rrss-google,
.btn__primary--small-nocolor-culinary,
.btn__primary--small-nocolor-culinary-width,
.btn__primary--medium-nocolor-culinary,
.btn__primary--medium-nocolor-culinary-width,
.btn__primary--small-color-labe,
.btn__primary--medium-color-labe,
.btn__primary--medium-color-labe-width,
.btn__primary--small-nocolor-action,
.btn__primary--small-color-labe-width,
.btn__primary--small-nocolor-action-width,
.btn__primary--small-color-action-width,
.btn__primary--small-color-action,
.btn__primary--medium-nocolor-action,
.btn__primary--medium-nocolor-action-width,
.btn__primary--medium-color-action,
.btn__primary--medium-color-action-width,
.btn__primary--small-nocolor-innovation,
.btn__primary--small-nocolor-innovation-width,
.btn__primary--small-color-innovation-width,
.btn__primary--small-color-innovation,
.btn__primary--medium-nocolor-innovation,
.btn__primary--medium-nocolor-innovation-width,
.btn__primary--medium-color-innovation,
.btn__primary--medium-color-innovation-width,
.btn__primary--small-nocolor,
.btn__primary--small-nocolor-width,
.btn__primary--small-color,
.btn__primary--small-color-menu,
.btn__primary--small-color-width,
.btn__primary--medium-nocolor,
.btn__primary--medium-nocolor-width,
.btn__primary--medium-color,
.btn__primary--medium-color-menu,
.btn__primary--medium-color-width,
.btn__primary--large-nocolor,
.btn__primary--large-nocolor-width,
.btn__primary--large-color-menu,
.btn__primary--large-color,
.btn__primary--large-color-width {
  border-radius: 4px;
}

.btn__primary--large-color,
.btn__primary--large-color-width {
  color: #ffffff;
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: 18px;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 20px 32px;
}

.btn__primary--large-color:link,
.btn__primary--large-color-width:link {
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

.btn__primary--large-color:visited,
.btn__primary--large-color-width:visited {
  background-color: #26201b;
  border: 0;
  box-shadow: inset 0 0 0 2px #26201b;
}

.btn__primary--large-color:hover,
.btn__primary--large-color-width:hover {
  background-color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__primary--large-color:disabled,
.btn__primary--large-color-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(179, 98, 6, 0);
}

.btn__primary--large-color-menu {
  padding: 20.5px 35.5px;
  color: #F4F3EF;
  background-color: #b36206;
}

.btn__primary--large-color-menu:hover {
  background-color: #b36206;
}

.btn__primary--large-color-width {
  width: auto;
}

.btn__primary--large-nocolor,
.btn__primary--large-nocolor-width {
  color: #b36206;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: 18px;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 20px 32px;
}

.btn__primary--large-nocolor:link,
.btn__primary--large-nocolor-width:link {
  background-color: #ffffff;
  color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

/* .btn__primary--large-nocolor:visited,
.btn__primary--large-nocolor-width:visited {
  background-color: #ffffff;
  color: #26201b;
  border: 0;
  -webkit-box-shadow: inset 0 0 0 2px #26201b;
  box-shadow: inset 0 0 0 2px #26201b;
} */

.btn__primary--large-nocolor:hover,
.btn__primary--large-nocolor-width:hover {
  background-color: #ffffff;
  color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__primary--large-nocolor:disabled,
.btn__primary--large-nocolor-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #ffffff;
  color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(179, 98, 6, 0.5);
}

.btn__primary--large-nocolor-width {
  width: auto;
}

.btn__primary--medium-color,
.btn__primary--medium-color-menu,
.btn__primary--medium-color-width {
  -webkit-appearance: none;
  color: #ffffff;
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
}

.btn__primary--medium-color:link,
.btn__primary--medium-color-menu:link,
.btn__primary--medium-color-width:link {
  -webkit-appearance: none;
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

.btn__primary--medium-color:hover,
.btn__primary--medium-color-menu:hover,
.btn__primary--medium-color-width:hover {
  -webkit-appearance: none;
  background-color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__primary--medium-color:disabled,
.btn__primary--medium-color-menu:disabled,
.btn__primary--medium-color-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(179, 98, 6, 0);
}

.btn__primary--medium-color-width {
  -webkit-appearance: none;
  width: 100%;
  background-color: #b36206;
  font-weight: 400;
}

.btn__primary--medium-color-menu {
  -webkit-appearance: none;
  color: #F4F3EF;
  background-color: #b36206;
}

/*.btn__primary--medium-color-menu:hover {*/
/*  background-color: #b36206;*/
/*}*/

.btn__primary--medium-nocolor,
.btn__primary--medium-nocolor-width {
  -webkit-appearance: none;
  color: #b36206;
  background-color: #ffffff;
  border: 0 !important;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
}

.btn__primary--medium-nocolor:link,
.btn__primary--medium-nocolor-width:link {
  -webkit-appearance: none;
  background-color: #ffffff;
  color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

/* .btn__primary--medium-nocolor:visited,
.btn__primary--medium-nocolor-width:visited {
  background-color: #ffffff;
  color: #26201b;
  border: 0;
  -webkit-box-shadow: inset 0 0 0 2px #26201b;
  box-shadow: inset 0 0 0 2px #26201b;
} */

.btn__primary--medium-nocolor:hover,
.btn__primary--medium-nocolor-width:hover {
  background-color: #ffffff;
  color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__primary--medium-nocolor:disabled,
.btn__primary--medium-nocolor-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #ffffff;
  color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(179, 98, 6, 0.5);
}

.btn__primary--medium-nocolor-width {
  width: 100%;
}

.btn__primary--small-color,
.btn__primary--small-color-menu,
.btn__primary--small-color-width {
  -webkit-appearance: none;
  color: #ffffff;
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 400;
  padding: 8px 16px;
}

.btn__primary--small-color:link,
.btn__primary--small-color-menu:link,
.btn__primary--small-color-width:link {
  -webkit-appearance: none;
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

/* .btn__primary--small-color:visited,
.btn__primary--small-color-menu:visited,
.btn__primary--small-color-width:visited {
  background-color: #26201b;
  border: 0;
  -webkit-box-shadow: inset 0 0 0 2px #26201b;
  box-shadow: inset 0 0 0 2px #26201b;
} */

.btn__primary--small-color:hover,
.btn__primary--small-color-menu:hover,
.btn__primary--small-color-width:hover {
  background-color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__primary--small-color:disabled,
.btn__primary--small-color-menu:disabled,
.btn__primary--small-color-width:disabled {

  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(179, 98, 6, 0);
}

.btn__primary--small-color-width {
  width: 100%;
}

.btn__primary--small-color-menu {
  color: #F4F3EF;
  background-color: #b36206;
}

.btn__primary--small-color-menu:hover {
  background-color: #b36206;
}

.btn__primary--small-nocolor,
.btn__primary--small-nocolor-width {
  color: #b36206;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 400;
  padding: 8px 16px;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.btn__primary--small-nocolor:link,
.btn__primary--small-nocolor-width:link {
  background-color: #ffffff;
  color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

/* .btn__primary--small-nocolor:visited,
.btn__primary--small-nocolor-width:visited {
  background-color: #ffffff;
  color: #26201b;
  border: 0;
  -webkit-box-shadow: inset 0 0 0 2px #26201b;
  box-shadow: inset 0 0 0 2px #26201b;
} */

.btn__primary--small-nocolor:hover,
.btn__primary--small-nocolor-width:hover {
  background-color: #ffffff;
  color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__primary--small-nocolor:disabled,
.btn__primary--small-nocolor-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #ffffff;
  color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(179, 98, 6, 0.5);
}

.btn__primary--small-nocolor-width {
  width: 100%;
}

.btn__primary--medium-color-innovation,
.btn__primary--medium-color-innovation-width {
  color: #ffffff;
  background-color: #59718c;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
  font-weight: 400;
}

.btn__primary--medium-color-innovation:link,
.btn__primary--medium-color-innovation-width:link {
  color: #ffffff;
  background-color: #59718c;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

.btn__primary--medium-color-innovation:visited,
.btn__primary--medium-color-innovation-width:visited {
  color: #ffffff;
  background-color: #0b2173;
  border: 0;
  box-shadow: inset 0 0 0 2px #0b2173;
}

.btn__primary--medium-color-innovation:hover,
.btn__primary--medium-color-innovation-width:hover {
  color: #ffffff;
  background-color: #0b2173;
  border: 0;
  box-shadow: inset 0 0 0 2px #0b2173;
}

.btn__primary--medium-color-innovation:disabled,
.btn__primary--medium-color-innovation-width:disabled {
  cursor: not-allowed;
  color: #ffffff;
  background-color: #59718c;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

/* .btn__primary--medium-color-innovation-width {
  width: 100%;
} */

.btn__primary--medium-nocolor-innovation,
.btn__primary--medium-nocolor-innovation-width {
  color: #59718c;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
  font-weight: 400;
}

.btn__primary--medium-nocolor-innovation:link,
.btn__primary--medium-nocolor-innovation-width:link {
  color: #59718c;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

.btn__primary--medium-nocolor-innovation:visited,
.btn__primary--medium-nocolor-innovation-width:visited {
  color: #0b2173;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #0b2173;
}

.btn__primary--medium-nocolor-innovation:hover,
.btn__primary--medium-nocolor-innovation-width:hover {
  color: #0b2173;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #0b2173;
}

.btn__primary--medium-nocolor-innovation:disabled,
.btn__primary--medium-nocolor-innovation-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: #59718c;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

/* .btn__primary--medium-nocolor-innovation-width {
  width: 100%;
} */

.btn__primary--small-color-innovation {
  color: #ffffff;
  background-color: #59718c;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 400;
  padding: 8px 16px;
  font-weight: 400;
}

.btn__primary--small-color-innovation:link {
  color: #ffffff;
  background-color: #59718c;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

.btn__primary--small-color-innovation:visited {
  color: #ffffff;
  background-color: #0b2173;
  border: 0;
  box-shadow: inset 0 0 0 2px #0b2173;
}

.btn__primary--small-color-innovation:hover {
  color: #ffffff;
  background-color: #0b2173;
  border: 0;
  box-shadow: inset 0 0 0 2px #0b2173;
}

.btn__primary--small-color-innovation:disabled {
  cursor: not-allowed;
  color: #ffffff;
  background-color: #59718c;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

.btn__primary--small-color-innovation-width {
  width: 100%;
}

.btn__primary--small-nocolor-innovation,
.btn__primary--small-nocolor-innovation-width,
.btn__primary--small-color-innovation-width {
  color: #59718c;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 400;
  padding: 8px 16px;
  font-weight: 400;
}

.btn__primary--small-nocolor-innovation:link,
.btn__primary--small-nocolor-innovation-width:link,
.btn__primary--small-color-innovation-width:link {
  color: #59718c;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

.btn__primary--small-nocolor-innovation:visited,
.btn__primary--small-nocolor-innovation-width:visited,
.btn__primary--small-color-innovation-width:visited {
  color: #0b2173;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #0b2173;
}

.btn__primary--small-nocolor-innovation:hover,
.btn__primary--small-nocolor-innovation-width:hover,
.btn__primary--small-color-innovation-width:hover {
  color: #0b2173;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #0b2173;
}

.btn__primary--small-nocolor-innovation:disabled,
.btn__primary--small-nocolor-innovation-width:disabled,
.btn__primary--small-color-innovation-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: #59718c;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

.btn__primary--small-nocolor-innovation-width {
  width: 100%;
}

.btn__primary--medium-color-action,
.btn__primary--medium-color-action-width {
  color: #ffffff;
  background-color: #a1232f;
  border: 0;
  box-shadow: inset 0 0 0 2px #a1232f;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
  font-weight: 400;
}

.btn__primary--medium-color-action:link,
.btn__primary--medium-color-action-width:link {
  color: #ffffff;
  background-color: #a1232f;
  border: 0;
  box-shadow: inset 0 0 0 2px #a1232f;
}

.btn__primary--medium-color-action:visited,
.btn__primary--medium-color-action-width:visited {
  color: #ffffff;
  background-color: #8b1200;
  border: 0;
  box-shadow: inset 0 0 0 2px #8b1200;
}

.btn__primary--medium-color-action:hover,
.btn__primary--medium-color-action-width:hover {
  color: #ffffff;
  background-color: #8b1200;
  border: 0;
  box-shadow: inset 0 0 0 2px #8b1200;
}

.btn__primary--medium-color-action:disabled,
.btn__primary--medium-color-action-width:disabled {
  cursor: not-allowed;
  color: #ffffff;
  background-color: #fff3f5;
  border: 0;
  box-shadow: inset 0 0 0 2px #fff3f5;
}

.btn__primary--medium-color-action-width {
  width: 100%;
}

.btn__primary--medium-nocolor-action,
.btn__primary--medium-nocolor-action-width {
  color: #a1232f;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #a1232f;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
  font-weight: 400;
}

.btn__primary--medium-nocolor-action:link,
.btn__primary--medium-nocolor-action-width:link {
  color: #a1232f;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #a1232f;
}

.btn__primary--medium-nocolor-action:visited,
.btn__primary--medium-nocolor-action-width:visited {
  color: #8b1200;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #8b1200;
}

.btn__primary--medium-nocolor-action:hover,
.btn__primary--medium-nocolor-action-width:hover {
  color: #8b1200;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #8b1200;
}

.btn__primary--medium-nocolor-action:disabled,
.btn__primary--medium-nocolor-action-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: #fff3f5;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #fff3f5;
}

.btn__primary--medium-nocolor-action-width {
  width: 100%;
}

.btn__primary--small-color-action {
  color: #ffffff;
  background-color: #a1232f;
  border: 0;
  box-shadow: inset 0 0 0 2px #a1232f;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 400;
  padding: 8px 16px;
  font-weight: 400;
}

.btn__primary--small-color-action:link {
  color: #ffffff;
  background-color: #a1232f;
  border: 0;
  box-shadow: inset 0 0 0 2px #a1232f;
}

.btn__primary--small-color-action:visited {
  color: #ffffff;
  background-color: #8b1200;
  border: 0;
  box-shadow: inset 0 0 0 2px #8b1200;
}

.btn__primary--small-color-action:hover {
  color: #ffffff;
  background-color: #8b1200;
  border: 0;
  box-shadow: inset 0 0 0 2px #8b1200;
}

.btn__primary--small-color-action:disabled {
  cursor: not-allowed;
  color: #ffffff;
  background-color: #fff3f5;
  border: 0;
  box-shadow: inset 0 0 0 2px #fff3f5;
}

.btn__primary--small-color-action-width {
  width: 100%;
}

.btn__primary--small-nocolor-action,
.btn__primary--small-color-labe-width,
.btn__primary--small-nocolor-action-width,
.btn__primary--small-color-action-width {
  color: #a1232f;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #a1232f;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 400;
  padding: 8px 16px;
  font-weight: 400;
}

.btn__primary--small-nocolor-action:link,
.btn__primary--small-color-labe-width:link,
.btn__primary--small-nocolor-action-width:link,
.btn__primary--small-color-action-width:link {
  color: #a1232f;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #a1232f;
}

.btn__primary--small-nocolor-action:visited,
.btn__primary--small-color-labe-width:visited,
.btn__primary--small-nocolor-action-width:visited,
.btn__primary--small-color-action-width:visited {
  color: #8b1200;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #8b1200;
}

.btn__primary--small-nocolor-action:hover,
.btn__primary--small-color-labe-width:hover,
.btn__primary--small-nocolor-action-width:hover,
.btn__primary--small-color-action-width:hover {
  color: #8b1200;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #8b1200;
}

.btn__primary--small-nocolor-action:disabled,
.btn__primary--small-color-labe-width:disabled,
.btn__primary--small-nocolor-action-width:disabled,
.btn__primary--small-color-action-width:disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: #fff3f5;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #fff3f5;
}

.btn__primary--small-nocolor-action-width {
  width: 100%;
}

.btn__primary--medium-color-labe,
.btn__primary--medium-color-labe-width {
  color: #F4F3EF;
  background-color: #000000;
  border: 0;
  box-shadow: inset 0 0 0 2px #000000;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
  font-weight: 400;
}

.btn__primary--medium-color-labe:link,
.btn__primary--medium-color-labe-width:link {
  color: #ffffff;
  background-color: #000000;
  border: 0;
  box-shadow: inset 0 0 0 2px #000000;
}

.btn__primary--medium-color-labe:visited,
.btn__primary--medium-color-labe-width:visited {
  color: #ffffff;
  background-color: #000000;
  border: 0;
  box-shadow: inset 0 0 0 2px #000000;
}

.btn__primary--medium-color-labe:hover,
.btn__primary--medium-color-labe-width:hover {
  color: #ffffff;
  background-color: #000000;
  border: 0;
  box-shadow: inset 0 0 0 2px #000000;
}

.btn__primary--medium-color-labe:disabled,
.btn__primary--medium-color-labe-width:disabled {
  cursor: not-allowed;
  color: #ffffff;
  background-color: #59718c;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

.btn__primary--medium-color-labe-width {
  width: 100%;
}

.btn__primary--small-color-labe {
  color: #F4F3EF;
  background-color: #000000;
  border: 0;
  box-shadow: inset 0 0 0 2px #000000;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 400;
  padding: 8px 16px;
  font-weight: 400;
}

.btn__primary--small-color-labe:link {
  color: #ffffff;
  background-color: #000000;
  border: 0;
  box-shadow: inset 0 0 0 2px #000000;
}

.btn__primary--small-color-labe:visited {
  color: #ffffff;
  background-color: #000000;
  border: 0;
  box-shadow: inset 0 0 0 2px #000000;
}

.btn__primary--small-color-labe:hover {
  color: #ffffff;
  background-color: #000000;
  border: 0;
  box-shadow: inset 0 0 0 2px #000000;
}

.btn__primary--small-color-labe:disabled {
  cursor: not-allowed;
  color: #ffffff;
  background-color: #59718c;
  border: 0;
  box-shadow: inset 0 0 0 2px #59718c;
}

.btn__primary--small-color-labe-width {
  width: 100%;
}

.btn__primary--medium-nocolor-culinary,
.btn__primary--medium-nocolor-culinary-width {
  color: #989a2b;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #989a2b;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
  font-weight: 400;
}

.btn__primary--medium-nocolor-culinary:link,
.btn__primary--medium-nocolor-culinary-width:link {
  color: #989a2b;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #989a2b;
}

.btn__primary--medium-nocolor-culinary:visited,
.btn__primary--medium-nocolor-culinary-width:visited {
  color: #07540a;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #07540a;
}

.btn__primary--medium-nocolor-culinary:hover,
.btn__primary--medium-nocolor-culinary-width:hover {
  color: #07540a;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #07540a;
}

.btn__primary--medium-nocolor-culinary-width {
  width: 100%;
}

.btn__primary--small-nocolor-culinary,
.btn__primary--small-nocolor-culinary-width {
  color: #989a2b;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #989a2b;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 400;
  padding: 8px 16px;
  font-weight: 400;
}

.btn__primary--small-nocolor-culinary:link,
.btn__primary--small-nocolor-culinary-width:link {
  color: #989a2b;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #989a2b;
}

.btn__primary--small-nocolor-culinary:visited,
.btn__primary--small-nocolor-culinary-width:visited {
  color: #07540a;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #07540a;
}

.btn__primary--small-nocolor-culinary:hover,
.btn__primary--small-nocolor-culinary-width:hover {
  color: #07540a;
  background-color: #ffffff;
  border: 0;
  box-shadow: inset 0 0 0 2px #07540a;
}

.btn__primary--small-nocolor-culinary-width {
  width: 100%;
}

.btn__primary--rrss-google {
  color: #ffffff;
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
  width: 100%;
  box-shadow: none;
  text-transform: unset;
  background-color: #ffffff;
  border: solid 1px #727272;
  color: #727272;
}

.btn__primary--rrss-google:link {
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

.btn__primary--rrss-google:visited {
  background-color: #26201b;
  border: 0;
  box-shadow: inset 0 0 0 2px #26201b;
}

.btn__primary--rrss-google:hover {
  background-color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__primary--rrss-google:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(179, 98, 6, 0);
}

.btn__primary--rrss-google:hover {
  background-color: #ffffff;
  border: solid 1px #727272;
  box-shadow: none;
  color: #727272;
}

.btn__primary--rrss-facebook {
  color: #ffffff;
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px;
  font-weight: 500;
  padding: 16px 24px;
  background-color: #3B5998;
  border: none;
  width: 100%;
  box-shadow: none;
  text-transform: unset;
}

.btn__primary--rrss-facebook:link {
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

.btn__primary--rrss-facebook:visited {
  background-color: #26201b;
  border: 0;
  box-shadow: inset 0 0 0 2px #26201b;
}

.btn__primary--rrss-facebook:hover {
  background-color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__primary--rrss-facebook:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba(179, 98, 6, 0);
}

.btn__primary--rrss-facebook:hover {
  background-color: #3B5998;
  border: none;
  width: 100%;
  box-shadow: none;
  text-transform: unset;
}

.btn__modal {
  border-radius: 48px;
  align-items: baseline;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  color: #ffffff;
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
  font-size: 18px;
  letter-spacing: -0.3px;
  padding: 20px 32px;
}

.btn__modal:link {
  background-color: #b36206;
  border: 0;
  box-shadow: inset 0 0 0 2px #b36206;
}

.btn__modal:visited {
  background-color: #26201b;
  border: 0;
  box-shadow: inset 0 0 0 2px #26201b;
}

.btn__modal:hover {
  background-color: #83390b;
  border: 0;
  box-shadow: inset 0 0 0 2px #83390b;
}

.btn__modal:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(179, 98, 6, 0.5);
  border: 0;
  box-shadow: inset 0 0 0 2px rgba 179, 98, 6, 0.5;
}

.btn__right {
  display: flex;
  justify-content: flex-end;
}

.floating-button {
  position: fixed;
  width: 88px;
  height: 63px;
  right: 0;
  top: 60%;
  color: #FFF;
  border-radius: 24px 0px 0px 24px;
  text-align: center;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  transition: width 0.5s;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B36206;
  cursor: pointer;
}

.floating-button:hover {
  width: 400px;
}

.floating-button span {
  display: none;
  margin-left: 10px;
}

.floating-button:hover span {
  display: inline;
}

/*------------------------------------*\
    CARD
\*------------------------------------*/
.card {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.card__container {
  width: 93%;
}

.card__horizontal {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.card__horizontal a {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .card {
    flex-direction: column;
  }
}

.card__img,
.card__img--border {
  max-width: 30%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.card__img--border {
  border-right: 5px solid #83390b;
  height: 100%;
}

.card__img--border-grado {
  border-right: 5px solid #5d4976;
}

.card__img--border-master {
  border-right: 5px solid #804A47;
}

.card__img--border-doctorado {
  border-right: 5px solid #A36A00;
}

.card__img--border-cursos {
  border-right: 5px solid #1e60bf;
}

.card__img--border-entusiastas {
  border-right: 5px solid #757A00;
}

.card__img--border-formacion {
  border-right: 5px solid #b9ac99;
}

.card__img--border-corporate {
  border-right: 5px solid #b9ac99;
}

.card__img--border-huerta {
  border-right: 5px solid #008a00;
}

.card__img--border-labe {
  border-right: 5px solid #2ed9c3;
}

.card__img--mobile {
  height: 190px;
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.card__color,
.card__color-border {
  background-color: #F4F3EF;
}

.card__color-border {
  border-radius: 0px;
}

.card__color-border>h4,
.card__color-border p {
  padding-bottom: 16px;
}

.card__center {
  text-align: center;
}

.card__border,
.card__border-radius {
  border: 1px solid #756a5b;
}

@media (min-width: 1024px) {

  .card__border,
  .card__border-radius {
    border: none;
  }
}

.card__border-radius {
  border-radius: 8px;
}

@media (min-width: 1024px) {

  .card__line,
  .card__line--innovation {
    border-left: 3px solid #83390b;
    height: 100%;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .card__line--none {
    border-left: 0;
  }
}

@media (min-width: 1024px) {
  .card__line--innovation {
    border-left: 3px solid #59718c;
  }
}

.card__description {
  margin-bottom: 16px;
}

.card__title {
  text-transform: uppercase;
  padding: 10px 0;
}

@media (min-width: 1024px) {
  .card__title {
    padding: 0 0 16px 0;
  }
}

.card__details,
.card__details-investigacion,
.card__details-producto,
.card__details-formacion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0px;
  gap: 8px;
}

@media (min-width: 1024px) {
  .card__details--margin {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.card__details-formacion {
  color: #26201b;
  margin-left: 20px;
}

.card__details-investigacion,
.card__details-producto {
  color: #383126;
  background-color: #dfdad3;
}

@media (min-width: 700px) {

  .card__details-investigacion,
  .card__details-producto {
    background-color: #F4F3EF;
  }
}

.card__details h3,
.card__details-formacion h3,
.card__details-investigacion h3,
.card__details-producto h3 {
  -webkit-margin-after: 0.09rem;
  margin-block-end: 0.09rem;
  -webkit-margin-before: 1rem;
  margin-block-start: 1rem;
  text-transform: uppercase;
}

.card__details-producto {
  -webkit-margin-before: 0.9rem;
  margin-block-start: 0.9rem;
  display: inline-block;
  padding-top: 0.7rem;
}

.card__details-producto h3 {
  padding: 0;
}

.card-master-container {
  position: relative;
}

.card-master-container .card-master {
  display: none;
}

.card-master-container .card-master .multiple-tag {
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .card-master-container .card-master {
    position: absolute;
    left: -16px;
    display: flex;
    flex-direction: column;
  }
}

.card-master-container .small-tag {
  width: 53%;
}

/*------------------------------------*\
    CHECKBOX
\*------------------------------------*/
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark,
.checkmark__radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #cbbdaa;
}

.checkmark__radio {
  border-radius: 200px;
}

.container:hover input~.checkmark,
.container:hover input~.checkmark__radio {
  background-color: #b36206;
}

.container:hover input~.checkmark:hover,
.container:hover input~.checkmark__radio:hover {
  background-color: #b36206;
}

.container input:checked~.checkmark,
.container input:checked~.checkmark__radio {
  background-color: #b36206;
}

.container input:checked~.checkmark:hover,
.container input:checked~.checkmark__radio:hover {
  background-color: #b36206;
}

.checkmark:after,
.checkmark__radio:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked~.checkmark:after,
.container input:checked~.checkmark__radio:after {
  display: block;
}

.container .checkmark:after,
.container .checkmark__radio:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid #F4F3EF;
  border-width: 0 2px 2px 0;
  transform: rotate(39deg);
}

/*------------------------------------*\
    COLUMN
\*------------------------------------*/
.column {
  display: flex;
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .column {
    padding-bottom: 0;
  }
}

.column__icon {
  width: 250px;
  margin-right: 16px;
}

.column__title {
  padding-bottom: 10px;
}

.column__text {
  padding-bottom: 48px;
}

.column__text--icon {
  color: #83390b;
}

.column__text--action {
  color: #a1232f;
}

@media (min-width: 1024px) {
  .column__desktop {
    display: flex;
    gap: 24px;
  }
}

/*------------------------------------*\
    FILTER
\*------------------------------------*/
.filter {
  padding: 0 16px 16px 16px;
}

.filter__text {
  padding: 16px 0;
}

.filter__tag {
  gap: 30px;
}

.filter__tag--item {
  margin: 8px 8px 8px 0;
  text-decoration: none;
}

.filter__tag--item a {
  line-height: 0;
}

.filter__marketplace {
  font-size: 20px;
}

.form {
  min-width: 40%;
  max-width: 100%;
}

.form__inputs {
  display: inline;
  width: 100%;
}

@media (min-width: 1024px) {
  .form__inputs {
    display: inline-flex;
    max-width: 100%;
    min-width: 40%;
  }
}

@media (min-width: 1024px) {
  .form__policity {
    max-width: 100%;
  }
}

.form__policity-text {
  padding-left: 32px;
}

@media (min-width: 700px) {
  .submit__desktop {
    text-align: right;
  }
}

@media all and (max-width: 700px) {
  .submit__desktop {
    display: none;
  }
}

@media all and (min-width: 701px) {
  .submit__mobile {
    display: none;
  }
}

.form-width {
  width: 40%;
}

.form-width-large {
  width: 100%;
}

@media all and (min-width: 1024px) {
  .form-width-large {
    width: 66% !important;
  }
}

.img_destacados {
  width: 673px;
  border-radius: 8px;
}

/* .form-floating, .form-floating-one {
  width: 100%;
  position: relative;
  margin-bottom: 24px;
} 

.form-floating-one {
  min-width: 320px;
  position: relative;
}*/
/* 
.form-floating > .form-control, .form-floating-one > .form-control,
.form-floating > .form-control-contact,
.form-floating-one > .form-control-contact,
.form-floating > .form-select,
.form-floating-one > .form-select {
  height: 55px;
  padding: 30px 16px 16px 16px;
}

.form-floating > .form-control-options, .form-floating-one > .form-control-options {
  padding: 1rem;
}

.form-floating > .form-control-simple, .form-floating-one > .form-control-simple {
  padding: 0rem;
}

.form-floating > label, .form-floating-one > label {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
  height: 100%;
  padding: 1rem;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.form-floating > .form-control::-webkit-input-placeholder, .form-floating-one > .form-control::-webkit-input-placeholder, .form-floating > .form-control-simple::-webkit-input-placeholder, .form-floating-one > .form-control-simple::-webkit-input-placeholder, .form-floating > .form-control-contact::-webkit-input-placeholder, .form-floating-one > .form-control-contact::-webkit-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::-moz-placeholder, .form-floating-one > .form-control::-moz-placeholder, .form-floating > .form-control-simple::-moz-placeholder, .form-floating-one > .form-control-simple::-moz-placeholder, .form-floating > .form-control-contact::-moz-placeholder, .form-floating-one > .form-control-contact::-moz-placeholder {
  color: transparent;
}

.form-floating > .form-control:-ms-input-placeholder, .form-floating-one > .form-control:-ms-input-placeholder, .form-floating > .form-control-simple:-ms-input-placeholder, .form-floating-one > .form-control-simple:-ms-input-placeholder, .form-floating > .form-control-contact:-ms-input-placeholder, .form-floating-one > .form-control-contact:-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::-ms-input-placeholder, .form-floating-one > .form-control::-ms-input-placeholder, .form-floating > .form-control-simple::-ms-input-placeholder, .form-floating-one > .form-control-simple::-ms-input-placeholder, .form-floating > .form-control-contact::-ms-input-placeholder, .form-floating-one > .form-control-contact::-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::placeholder, .form-floating-one > .form-control::placeholder,
.form-floating > .form-control-simple::placeholder,
.form-floating-one > .form-control-simple::placeholder,
.form-floating > .form-control-contact::placeholder,
.form-floating-one > .form-control-contact::placeholder {
  color: transparent;
}

.form-floating > .form-control:focus, .form-floating-one > .form-control:focus, .form-floating > .form-control:-webkit-autofill, .form-floating-one > .form-control:-webkit-autofill,
.form-floating > .form-control-simple:focus,
.form-floating-one > .form-control-simple:focus,
.form-floating > .form-control-simple:-webkit-autofill,
.form-floating-one > .form-control-simple:-webkit-autofill,
.form-floating > .form-control-contact:focus,
.form-floating-one > .form-control-contact:focus,
.form-floating > .form-control-contact:-webkit-autofill,
.form-floating-one > .form-control-contact:-webkit-autofill {
  padding-top: 0.8rem;
  padding-bottom: 0.6rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label, .form-floating-one > .form-control:not(:-moz-placeholder-shown) ~ label, .form-floating > .form-control-contact:not(:-moz-placeholder-shown) ~ label, .form-floating-one > .form-control-contact:not(:-moz-placeholder-shown) ~ label, .form-floating > .form-control-simple:not(:-moz-placeholder-shown) ~ label, .form-floating-one > .form-control-simple:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.6;
  transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label, .form-floating-one > .form-control:not(:-ms-input-placeholder) ~ label, .form-floating > .form-control-contact:not(:-ms-input-placeholder) ~ label, .form-floating-one > .form-control-contact:not(:-ms-input-placeholder) ~ label, .form-floating > .form-control-simple:not(:-ms-input-placeholder) ~ label, .form-floating-one > .form-control-simple:not(:-ms-input-placeholder) ~ label {
  opacity: 0.6;
  transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control-contact:focus ~ label, .form-floating-one > .form-control-contact:focus ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating-one > .form-control:focus ~ label,
.form-floating > .form-control-simple:focus ~ label,
.form-floating-one > .form-control-simple:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating-one > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-contact:not(:placeholder-shown) ~ label,
.form-floating-one > .form-control-contact:not(:placeholder-shown) ~ label,
.form-floating > .form-control-simple:not(:placeholder-shown) ~ label,
.form-floating-one > .form-control-simple:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label,
.form-floating-one > .form-select ~ label {
  opacity: 0.6;
  -webkit-transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control-contact:-webkit-autofill ~ label, .form-floating-one > .form-control-contact:-webkit-autofill ~ label {
  opacity: 0.6;
  -webkit-transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label, .form-floating-one > .form-control:-webkit-autofill ~ label {
  opacity: 0.6;
  -webkit-transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
}

 .form-control-simple:-webkit-autofill ~ label {
  opacity: 0.6;
  -webkit-transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
}

.form-control {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #26201b;
  width: 100%;
  padding: 0px;
  background-color: #d5ccc1;
  border: 2px solid #d5ccc1;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: border-color 0.25s ease-in-out;
  transition: border-color 0.25s ease-in-out;
}

.form-control:hover, .form-control:active, .form-control:focus {
  color: #26201b;
  background-color: #F4F3EF;
  border-color: 2px solid #26201b;
  padding: 1rem;
}

.form-control-options {
  background: url("/themes/custom/bccTheme/assets/images/Forward.svg") no-repeat right #d5ccc1;
  background-position: 97%;
}

.form-control-auto {
  width: 100%;
}

.form-control-simple {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 15px;
  line-height: 23px;
  font-weight: 300;
  color: #26201b;
  width: 100%;
  padding: 0px;
  background: url("/themes/custom/bccTheme/assets/images/Forward.svg") no-repeat right transparent;
  background-position: 100%;
  background-color: none;
  border: none;
  margin-right: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: none;
  transition: none;
}

.form-control-simple:hover, .form-control-simple:active, .form-control-simple:focus {
  color: #26201b;
  background-color: none;
  border-color: none;
  padding: 0;
} */

textarea {
  max-width: 100%;
  min-height: 100px;
}

textarea::-webkit-input-placeholder {
  padding: 1rem;
}

textarea::-moz-placeholder {
  padding: 1rem;
}

textarea:-ms-input-placeholder {
  padding: 1rem;
}

textarea::-ms-input-placeholder {
  padding: 1rem;
}

textarea::placeholder {
  padding: 1rem;
}

.is-invalid {
  border-color: red;
}

em {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-top: 30px;
}

em.error {
  color: red;
}

.form-control-contact {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2rem;
  color: #26201b;
  width: 100%;
  padding: 0px;
  background-color: #d5ccc1;
  border: 2px solid #d5ccc1;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.25s ease-in-out;
}

.form-control-contact:hover,
.form-control-contact:active,
.form-control-contact:focus {
  color: #26201b;
  background-color: #F4F3EF;
  border-color: 2px solid #26201b;
  outline: none;
}

/*------------------------------------*\
    LINKS
\*------------------------------------*/
.link,
.link__color-action,
.link__color-innovation,
.link__color-innovation-before,
.link__color-home,
.link__color-home-before {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}

.link:after,
.link__color-action:after,
.link__color-innovation:after,
.link__color-innovation-before:after,
.link__color-home:after,
.link__color-home-before:after {
  content: "";
  margin-bottom: -3px;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  transform: rotate(-315deg) translateY(-65%);
}

.link__tienda {
  text-decoration: none;
}

.link__color,
.link__color-dark,
.link__color-default {
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 500;
}

.link__color-default {
  color: #b36206;
}

.link__color-dark {
  color: #83390b !important;
}

.link__color-home,
.link__color-home-before {
  color: #b36206;
}

.link__color-home:after,
.link__color-home-before:after {
  border-top: 2px solid #b36206;
  border-right: 2px solid #b36206;
  color: #b36206;
  position: relative;
  top: 2px;
}

.link__color-home:link,
.link__color-home-before:link,
.link__color-home:active,
.link__color-home-before:active {
  color: #b36206;
}

.link__color-home:hover,
.link__color-home-before:hover,
.link__color-home:focus,
.link__color-home-before:focus {
  color: #83390b;
}

.link__color-home:hover:after,
.link__color-home-before:hover:after,
.link__color-home:focus:after,
.link__color-home-before:focus:after {
  border-color: #83390b;
}

.link__color-home-before:after {
  display: none;
}

.link__color-home-before:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  margin-bottom: 1px;
  border-top: 2px solid #b36206;
  border-right: 2px solid #b36206;
  color: #b36206;
  transform: rotate(228deg) translateY(0%);
}

.link__color-home-before:link,
.link__color-home-before:active {
  color: #b36206;
}

.link__color-home-before:hover,
.link__color-home-before:focus {
  color: #83390b;
}

.link__color-home-before:hover:before,
.link__color-home-before:focus:before {
  border-color: #83390b;
}

.link__color-innovation,
.link__color-innovation-before {
  color: #59718c;
}

.link__color-innovation:after,
.link__color-innovation-before:after {
  border-top: 2px solid #59718c;
  border-right: 2px solid #59718c;
  color: #59718c;
}

.link__color-innovation:link,
.link__color-innovation-before:link,
.link__color-innovation:active,
.link__color-innovation-before:active {
  color: #59718c;
}

.link__color-innovation:hover,
.link__color-innovation-before:hover,
.link__color-innovation:focus,
.link__color-innovation-before:focus {
  color: #0b2173;
}

.link__color-innovation:hover:after,
.link__color-innovation-before:hover:after,
.link__color-innovation:focus:after,
.link__color-innovation-before:focus:after {
  border-color: #0b2173;
}

.link__color-innovation-before:after {
  display: none;
}

.link__color-innovation-before:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  margin-bottom: 1px;
  border-top: 2px solid #59718c;
  border-right: 2px solid #59718c;
  color: #59718c;
  transform: rotate(228deg) translateY(0%);
}

.link__color-innovation-before:link,
.link__color-innovation-before:active {
  color: #59718c;
}

.link__color-innovation-before:hover,
.link__color-innovation-before:focus {
  color: #0b2173;
}

.link__color-innovation-before:hover:before,
.link__color-innovation-before:focus:before {
  border-color: #0b2173;
}

.link__color-action {
  color: #a1232f;
}

.link__color-action:after {
  border-top: 2px solid #a1232f;
  border-right: 2px solid #a1232f;
  color: #a1232f;
}

.link__color-action:link,
.link__color-action:active {
  color: #a1232f;
}

.link__color-action:hover,
.link__color-action:focus {
  color: #5e0c00;
}

.link__color-action:hover:after,
.link__color-action:focus:after {
  border-color: #5e0c00;
}

.link__color-home-no-arrow {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  color: #b36206;
}

.link__color-home-no-arrow:after {
  border-top: 2px solid #b36206;
  border-right: 2px solid #b36206;
  color: #b36206;
}

.link__color-home-no-arrow:active {
  color: #b36206;
}

.link__color-home-no-arrow:hover,
.link__color-home-no-arrow:focus {
  color: #83390b;
}

.link__color-home-no-arrow:hover:after,
.link__color-home-no-arrow:focus:after {
  border-color: #83390b;
}

.link__color-home-arrow-down {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  color: #b36206;
}

.link__color-home-arrow-down:after {
  display: none;
}

.link__color-home-arrow-down:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  margin-bottom: 1px;
  border-top: 2px solid #59718c;
  border-right: 2px solid #59718c;
  color: #59718c;
  transform: rotate(228deg) translateY(0%);
}

.link__color-home-arrow-down:hover,
.link__color-home-arrow-down:focus {
  color: #83390b;
}

.link__color-home-arrow-down:hover:after,
.link__color-home-arrow-down:focus:after {
  border-color: #83390b;
}

/*------------------------------------*\
    MENÚ SECCIÓN COLOR GRADIENT
\*------------------------------------*/
.migas {
  padding: 0 24px;
}

.migas ul {
  margin: 0;
  padding: 0;
}

.migas ul,
.migas .migas__innovation {
  list-style: none;
  display: inline;
}

.migas ul:not(:last-child):after,
.migas .migas__innovation:not(:last-child):after {
  content: "/";
  margin-left: 8px;
  margin-right: 8px;
  color: #ffffff;
}

.migas ul,
.migas .migas__neutral {
  list-style: none;
  display: inline;
}

.migas ul:not(:last-child):after,
.migas .migas__neutral:not(:last-child):after {
  content: "/";
  margin-left: 8px;
  margin-right: 8px;
}

.migas__innovation {
  background-color: #59718c;
}

.migas__neutral {
  background-color: #ffffff;
}

.migas__text,
.migas__text-neutral,
.migas__text-innovation {
  line-height: 20px;
  text-decoration: none;
}

.migas__text-innovation {
  color: #ffffff;
}

.migas__text-innovation:after {
  color: inherit;
}

.migas__text-neutral {
  color: #26201b;
}

.migas__text-neutral:after {
  color: inherit;
}

/*------------------------------------*\
    MENÚ PRINCIPAL
\*------------------------------------*/
.menu {
  height: 70px;
  border-bottom: 1px solid grey;
  background-color: white;
}

@media (min-width: 1250px) {
  .menu {
    display: flex;
    padding: 16px 24px;
    height: 88px;
  }
}

.menu__toggle {
  cursor: pointer;
  position: absolute;
  margin: 0rem 1rem;
  right: 0;
  padding-top: 20px;
}

@media (min-width: 1250px) {
  .menu__toggle {
    top: 30%;
    display: none;
  }
}

.menu__menu {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  position: -webkit-sticky;
  position: sticky;
}

.menu__menu--link {
  color: #26201b;
  text-transform: uppercase;
  display: flex;
  padding: 16px;
}

.menu__menu--link:hover {
  border-bottom: 3px solid #83390b;
  color: #b9ac99;
}

@media (min-width: 1250px) {
  .menu__menu--link:hover {
    color: #756a5b;
    background-color: transparent;
    font-weight: 500;
  }
}

.menu__menu--link:focus {
  border-bottom: 3px solid #b36206;
  color: #26201b;
  font-weight: 600;
}

.menu__menu a {
  text-decoration: none;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.4px;
  font-weight: 500;
}

@media (min-width: 1250px) {
  .menu__menu {
    flex-direction: row;
    align-items: center;
    margin-left: auto;
  }
}

.menu__logo {
  margin-top: 10px;
  margin-left: 22px;
  max-width: 80px;
}

@media (min-width: 1250px) {
  .menu__logo {
    max-width: 110px;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
  }
}

.menu__item {
  list-style: none;
  display: none;
  background-color: #F4F3EF;
}

.menu__item:nth-child(1) {
  margin-top: 16px;
}

@media (min-width: 1250px) {
  .menu__item {
    display: block;
    background-color: transparent;
  }

  .menu__item:nth-child(1) {
    margin-top: 0;
  }
}

.menu__item--logo {
  list-style: none;
  display: flex;
  align-items: center;
}

.menu__index {
  text-transform: none;
  background-color: #F4F3EF;
  box-shadow: 0 2px 4px rgba(33, 33, 33, 0.4);
}

.menu__index--arrow {
  background: url("/themes/custom/bccTheme/assets/iconos/arrow-open.svg");
  margin-left: auto;
  background-repeat: no-repeat;
  margin-right: 20px;
  background-position: center;
  display: block;
  margin-top: -5px;
  background-color: #F4F3EF;
  border-radius: 100%;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(33, 33, 33, 0.4);
  border: 0;
}

@media (min-width: 1024px) {
  .menu__index--arrow {
    display: none;
  }
}

.menu__index--panel {
  background-color: #F4F3EF;
}

.menu__index--panel nav {
  padding-left: 25px;
  padding-bottom: 16px;
}

.menu__index--panel .menu__index--list {
  list-style: none;
}

.menu__index--panel .menu__index--list:not(:last-child) {
  margin-bottom: 16px;
}

.menu__index--panel .menu__index--list:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #000;
}

.menu__index--panel .menu__index--list .menu__index--link {
  position: relative;
  text-decoration: none;
}

.menu__index--panel .menu__index--list .menu__index--link.current {
  font-weight: bold;
}

.menu__index--panel .menu__index--list .menu__index--link.current:before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  margin-top: auto;
  right: auto;
  margin-bottom: auto;
}

.menu__index--panel .menu__index--list .menu__index--link.current:after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: #000;
  margin-top: auto;
  right: auto;
  margin-bottom: auto;
}

.menu__index--panel--item {
  padding-bottom: 16px;
}

.menu__index--panel--link {
  color: #26201b;
  font-size: 20px;
  line-height: 20px;
}

.active-arrow {
  background: url("/themes/custom/bccTheme/assets/iconos/arrow-closed.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #F4F3EF;
}

@media (min-width: 1024px) {
  .active-arrow {
    display: none;
  }
}

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

.menu__2nd--list .no__desplegable {
  position: relative;
}

.menu__2nd--list .no__desplegable a {
  display: block;
  text-decoration: none;
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 23px;
  padding: 16px 10px;
  margin: 2px;
  text-transform: uppercase;
}

.menu__2nd--list .desplegable {
  position: relative;
}

.menu__2nd--list .desplegable a {
  display: block;
  text-decoration: none;
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 23px;
  padding: 16px 10px;
  margin: 2px;
}

.menu__2nd--list .desplegable a:hover {
  color: #b36206;
  background-color: #dfdad3;
}

.menu__2nd--list .desplegable .menu__drop {
  position: absolute;
  visibility: hidden;
  background-color: #F4F3EF;
  left: 526px;
  top: 0;
  overflow: scroll;
  padding-left: 10px;
  padding-right: 30px;
  z-index: 1000;
}

.menu__2nd--list .desplegable .menu__drop li {
  display: block;
  border-bottom: 1px solid #d5ccc1;
}

.menu__2nd--list .desplegable .menu__drop li a {
  white-space: nowrap;
}

.menu__2nd--list .desplegable:hover .menu__drop {
  visibility: visible;
}

.top-mobile__text-link {
  display: flex;
  align-items: center;
}

.mobile-training-button {
  background-color: white;
}

.mobile-training-button:not(.display__none) {
  display: flex;
}

.mobile-menu {
  overflow: scroll;
  max-height: calc(100vh - 119px);
  height: 100%;
  z-index: 100;
}

.mobile-menu__bottom {
  background-color: white;
}

.menu__desktop .container__search {
  display: none;
}

.icon__arrow {
  vertical-align: top;
  margin-top: -3px;
  margin-right: 20px;
}

.icon__arrow__invert {
  margin: 0 20px;
  transform: scaleX(-1);
}

.icon__arrow--mobile {
  margin-right: 30px;
}

.icon__cart--mobile {
  margin-right: 28px;
  width: 22px;
  height: 22px;
}

.link__color_ic-action {
  cursor: pointer !important;
}

.button--add-to-cart {
  color: #ffffff !important;
  background-color: #b36206 !important;
  border: 0 !important;
  min-height: 49px;
  max-height: 49px;
  box-shadow: inset 0 0 0 2px #b36206 !important;
  font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
  letter-spacing: 0.1px !important;
  font-weight: 500 !important;
  padding: 16px 24px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  align-items: baseline !important;
  text-align: center !important;
  -webkit-appearance: button !important;
  -moz-appearance: button !important;
  appearance: button !important;
  cursor: pointer !important;
  text-wrap: nowrap !important;
}

.button--add-to-cart:hover {
  background-color: #83390b !important;

}


.top-mobile__icon-link {
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-mobile__lang-link:not(:last-child) {
  margin-right: 6px;
}

.top-mobile__lang-link:not(:last-child).active {
  font-weight: 800;
}

.icon__arrow__event {
  margin-left: 12px;
}

.home__link {
  margin: 10px 0px 10px 30px;
}

.menu_table {
  width: 296px;
  height: 23px;
  position: relative;
}

.link__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.link__container:hover {
  color: #b36206;
  background-color: #dfdad3;
  cursor: pointer;
}
.menu__2nd--list .desplegable:hover{
    background-color: #dfdad3;
}
.menu__2nd--list .desplegable:hover a{
    color: #b36206;
}
.link__container--no {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.link__container--no:hover {
  cursor: pointer;
}

.icon__lupa {
  margin-right: 12px;
  display: none;
}

@media (min-width: 1250px) {
  .icon__lupa {
    display: block;
  }
}

.icon__lupa:hover {
  cursor: pointer;
}

.icon__lupa.selected {
  background-color: #dfdad3;
  border-radius: 8px;
}

.menu__index--item {
  font-family: "League Spartan", sans-serif;
  color: #383126;
  font-weight: 500;
  font-size: 19px;
  line-height: 23px;
  padding: 16px 10px;
  margin: 2px;
}

.menu__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 335px;
}

.menu__right {
  display: flex;
  flex-grow: 2;
  justify-content: flex-end;
  margin-right: 20px;
}

.menu__left {
  width: 603px;
  padding-right: 50px;
}

.line__menu {
  border-bottom: 1px solid #D4CCC1;
}

.headline__event {
  font-family: "League Spartan", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #383126;
}

.subheadline__event {
  font-family: "League Spartan", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #b36206;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.subheadline__event-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
}

.subheadline__event-more p.subheadline__event-more-text {
  padding-bottom: 0;
  line-height: 1;
}

.panel--masteres,
.panel--investigacion,
.panel--colaboran,
.panel--bcc,
.panel--formacion,
.panel--innovacion,
.panel--empresas,
.panel--iniciativas,
.panel--restaurantes,
.panel--actualidad {
  display: none;
  height: auto;
  color: #52483b;
  padding: 1px 0;
  transition: all 0.2s ease-out;
}

.panel--masteres__background,
.panel--investigacion__background,
.panel--colaboran__background,
.panel--bcc__background,
.panel--formacion__background,
.panel--innovacion__background,
.panel--empresas__background,
.panel--iniciativas__background,
.panel--restaurantes__background,
.panel--actualidad__background {
  background-color: #dfdad3;
}

.panel--masteres__background-innovation,
.panel--investigacion__background-innovation,
.panel--colaboran__background-innovation,
.panel--bcc__background-innovation,
.panel--formacion__background-innovation,
.panel--innovacion__background-innovation,
.panel--empresas__background-innovation,
.panel--iniciativas__background-innovation,
.panel--restaurantes__background-innovation,
.panel--actualidad__background-innovation {
  background-color: rgba(89, 113, 140, 0.1);
}

@media (min-width: 1024px) {

  .panel--masteres,
  .panel--investigacion,
  .panel--colaboran,
  .panel--bcc,
  .panel--formacion,
  .panel--innovacion,
  .panel--empresas,
  .panel--iniciativas,
  .panel--restaurantes,
  .panel--actualidad {
    padding: 28px 0;
  }
}

.visible {
  display: block;
}

.container__imagen {
  height: 303px;
  position: relative;
  margin-top: 16px;
}

.img_destacados {
  position: relative;
  width: 653px;
  height: 303px;
  border-radius: 8px;
}

.box-info {
  position: absolute;
  width: 272px;
  height: 118px;
  background-color: white;
  padding: 24px;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

.top_nav-mobile {
  text-decoration: none;
  font-family: "League Spartan", sans-serif;
  background-color: #F4F3EF;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.top_nav-mobile nav {
  text-decoration: none;
}

.top_nav-mobile ul {
  list-style: none;
  padding-left: 24px;
}

.top_nav-mobile .top_nav-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 12px;
}

.top_nav-mobile a {
  text-decoration: none;
}

.menu__index--mobile {
  background-color: #ffffff;
  height: 100%;
}

.container__search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 18px 18px 12px;
  background-color: #ffffff;
}

.container__search button {
  max-width: 120px;
  background-color: transparent;
}

.container__search button:hover {
  background-color: transparent;
}

input[type=search] {
  border: none;
  background: transparent;
  padding: 7px 8px;
  font-size: 14px;
  border-radius: inherit;
}

button[type=submit]:focus,
input[type=search]:focus {
  border-color: black;
  outline: none;
}

form.nosubmit {
  border: none;
  padding: 0;
  margin-left: 10px;
  display: flex;
}

input.nosubmit {
  width: 600px;
  padding: 9px 4px 9px 40px;
  background: #dfdad3 url("/themes/custom/bccTheme/assets/iconos/search_black.svg") no-repeat 13px center;
  background-size: 17px 17px;
  width: 100%;
  font-size: 19px;
  font-family: "League Spartan", sans-serif;
  margin-right: 10px;
}

.migas p,
.migas__nav p {
  font-family: "League Spartan", sans-serif;
  color: #383126;
  font-weight: 600;
  text-transform: uppercase;
}

.migas p {
  padding: 4px 5px 20px !important;
}

.divider {
  border: solid 1px black;
  margin: 0;
}

.divider-light {
  border-width: 0.5px;
}

.divider.with-margin {
  margin: 0 24px;
}

.migas__nav {
  display: flex;
  flex-direction: row;
  margin-top: 6px;
  margin-bottom: 20px;
  cursor: pointer;
}

.menu__2nd--mobile {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.menu__2nd--mobile .desplegable {
  text-decoration: none;
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 23px;
  padding: 16px 22px;
  margin: 2px;
  width: 100%;
}

.menu__2nd--mobile .desplegable a {
  text-decoration: none;
}

.link__container--mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.link__container--mobile__multiple {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.close,
input[type=checkbox] {
  display: none;
}

.hamburger,
.close {
  margin-top: 0.2rem;
  margin-right: 10px;
}

#menu__checkbox:checked~label.menu__toggle .hamburger {
  display: none;
}

#menu__checkbox:checked~label.menu__toggle .close {
  display: block;
}

.color {
  background-color: #F4F3EF;
}

.modal {
  color: white;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.modal__open-input {
  display: none;
}

.modal__open-input:checked+[aria=dialog] {
  display: block;
}

.modal__container,
.modal__container-agendar {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  padding: 24px;
  overflow: hidden;
}

@media (min-width: 700px) {

  .modal__container,
  .modal__container-agendar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-height: 50%;
    padding: 36px;
    overflow-y: auto;
  }
}

.modal__container-agendar {
  display: block;
  overflow: auto;
}

@media (min-width: 700px) {
  .modal__container-agendar {
    width: 100%;
    max-height: 100%;
    padding: 0;
  }
}

.modal-title {
  display: flex;
  justify-content: space-between;
}

.modal-mymodal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-mymodal-filter {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 48em) {
  .modal-mymodal-filter {
    background-color: transparent;
  }
}

.modal-content {
  max-width: 800px;
  min-width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  position: relative;
  width: 100%;
}

.modal-content-filter {
  max-width: 359px;
  min-width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  position: relative;
  background-color: #ffffff;
}

[aria=dialog] {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(79, 79, 79, 0.8);
  z-index: 2;
}

.close-mymodal,
.close-mymodal-filter {
  cursor: pointer;
  position: fixed;
  right: 20px;
  top: 20px;
}

/* Progress bar wrapper */
.progress-bar {
  margin-bottom: 1.5em;
  overflow: hidden;
  padding: 1em 0;
  max-width: 470px;
  /* The actual progress bar */
}

.progress-bar__content {
  max-width: 450px;
  text-align: center;
}

.progress-bar>div {
  background-color: yellow;
  border-radius: 0.5em;
  height: 0.8em;
  position: relative;
  width: calc(100% - 3em);
  /* The green part of the bar - change width up to 100% */
}

.progress-bar>div span,
.progress-bar>div::after {
  content: "";
  display: block;
  height: 0.8em;
  position: relative;
}

.progress-bar>div span {
  background-color: black;
  border-radius: 0.7em;
  height: 0.7em;
  margin-top: -0.225em;
  padding: 0 0.35em;
  transition: width 0.3s cubic-bezier(1, -0.26, 0.06, 1.35);
  width: 0;
}

/*------------------------------------*\
    SVG ICON
\*------------------------------------*/
.svg__icon,
.svg__icon--menu,
.svg__icon--center,
.svg__icon--margin,
.svg__icon--margin-top,
.svg__icon--date,
.svg__icon--left,
.svg__icon--right {
  position: relative;
  flex-shrink: 0;
  fill: currentColor;
}

.svg__icon--position-right {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
}

.svg__icon--right {
  margin-left: 8px;
}

.svg__icon--left {
  margin-right: 8px;
  float: left;
}

.svg__icon--link {
  vertical-align: middle;
  margin-bottom: 0.2rem;
}

.svg__icon--date {
  width: 27px;
}

.svg__icon--margin,
.svg__icon--margin-top {
  margin-right: 8px;
}

.svg__icon--margin-top {
  margin-top: -0.2rem;
}

.svg__icon--margin-bottom {
  margin: 0 8px -8px 0;
}

.svg__icon--margin-left {
  margin-left: 8px;
}

.svg__icon--center {
  margin-right: 16px;
  align-items: center;
}

@media (min-width: 700px) {
  .svg__icon--center {
    margin-top: 16px;
    margin-bottom: 16px;
    margin-right: 0;
  }
}

.svg__icon--menu {
  margin-left: auto;
  top: 0;
}

.svg__icon--width {
  width: 18px;
}

.svg__icon--width-small {
  width: 16px;
}

.target-icon {
  width: 63px;
  height: 63px;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .swiper {
    padding: 0 0 40px 0px;
  }
}

.swiper__fullwidth {
  position: relative;
  /* Aplicar para poder ajustar la navegación del slider */
  overflow: hidden;
  height: 80vh;
}

@media (min-width: 700px) {
  .swiper__fullwidth {
    width: 100%;
    aspect-ratio: 2/1;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .swiper__fullwidth {
    width: 100%;
    aspect-ratio: 3/1;
    height: auto;
  }
}

.swiper__fullwidth-padding {
  color: #ffffff;
  padding: 0 60px 50px 60px;
}

@media (min-width: 700px) {
  .swiper__fullwidth-padding {
    padding: 0 70px 70px 70px;
  }
}

@media (min-width: 1024px) {
  .swiper__fullwidth-padding {
    padding: 0 70px 70px 200px;
  }
}

.swiper__container {
  padding: 0 0 50px 0;
}

@media (min-width: 1024px) {
  .swiper__container {
    padding: 0 0 70px 0;
  }
}

.swiper3,
.swiper3-nonepagination {
  overflow: hidden;
  width: 100%;
  z-index: 0;
  border-radius: 8px;
}

@media (min-width: 1024px) {

  .swiper3,
  .swiper3-nonepagination {
    border-radius: 16px;
  }
}

@media (min-width: 1024px) {
  .swiper3-nonepagination {
    padding: 0;
  }
}

.swiper-slide,
.swiper-slide-board {
  /* Center slide text vertically */
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide-board {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.swiper-slide-background,
.swiper-slide-background-02,
.swiper-slide-background-01 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.swiper-slide-background-01 {
  background-image: url("/themes/custom/bccTheme/assets/images/img-cabecera.jpg");
}

.swiper-slide-background-02 {
  background-image: url("/themes/custom/bccTheme/assets/images/img-cabecera.jpg");
}

.swiper-pagination__two-column {
  position: relative;
  padding-top: 16px;
  bottom: 10px;
}

@media (min-width: 1024px) {
  .swiper-pagination__two-column {
    bottom: 20px;
  }
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: #b36206;
}

@media (min-width: 1024px) {
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 24px;
    height: 24px;
  }
}

span.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 1px solid #b36206;
  opacity: 1;
  background: #ffffff;
}

@media (min-width: 1024px) {
  span.swiper-pagination-bullet {
    width: 24px;
    height: 24px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #d5903c;
  padding: 20px;
  border-radius: 50%;
}

.swiper-count {
  position: absolute;
  z-index: 2;
}

.swiper-count>div {
  display: inline-block;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 0;
  padding-top: 10px;
  position: static;
  width: 100%;
}

@media (min-width: 1024px) {

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    padding-top: 0;
    bottom: 0;
  }
}

:root {
  --swiper-navigation-size: 24px;
}

/*------------------------------------*\
    SWITCH
\*------------------------------------*/
.switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #dfdad3;
  cursor: pointer;
  border-radius: 34px;
  transition: 0.4s;
}

.slider::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 4px;
  height: 26px;
  width: 26px;
  background-color: #FCFCFC;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #b36206;
}

input:checked+.slider:hover {
  background-color: #83390b;
}

input:checked+.slider:disabled {
  background-color: rgba(179, 98, 6, 0.5);
}

input:checked+.slider::before {
  transform: translatex(30px);
  background-color: #FCFCFC;
}

.tabs__link,
.tabs__active {
  color: #26201B;
  background-color: #b9ac99;
  padding: 5px 8px;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border-radius: 8px;
  text-transform: none;
  cursor: pointer;
  margin: 8px 8px 8px 0;
  font-size: 20px;
  appearance: button;
}

@media (min-width: 1024px) {

  .tabs__link,
  .tabs__active {
    text-transform: uppercase;
    cursor: pointer;
    line-height: 32px;
    font-size: 20px;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    background-color: transparent;
    padding: 0;
    margin: 0 32px 0 0;
  }
}

.tabs__active.todos {
  color: #ffffff;
  background-color: #26201b;
}

.tabs__active.grado {
  color: #ffffff;
  background-color: #5d4976;
}

.tabs__active.master {
  color: #ffffff;
  background-color: #804A47;
}

.tabs__active.doctorado {
  color: #ffffff;
  background-color: #A36A00;
}

.tabs__active.cursos {
  color: #ffffff;
  background-color: #1e60bf;
}

.tabs__active.formacion {
  color: #ffffff;
  background-color: #756a5b;
}

.tabs__active.entusiastas {
  color: #ffffff;
  background-color: #757A00;
}

@media (min-width: 1024px) {
  .tabs__active {
    background-color: transparent;
    border-bottom: solid 2px #b36206;
    border-radius: 0;
    color: #b36206;
    font-weight: 600;
    padding: 0;
    margin: 0 32px 0 0;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  .tabs__active.todos,
  .tabs__active.grado,
  .tabs__active.master,
  .tabs__active.doctorado,
  .tabs__active.cursos,
  .tabs__active.formacion,
  .tabs__active.entusiastas {

    color: #b36206;
    background-color: transparent;
  }
}

.tabs__content {
  display: none;
}

.tabs__content__active {
  display: block;
}

.tabs__slider {
  padding-bottom: 16px;
}

/*------------------------------------*\
    CARD
\*------------------------------------*/
.tag,
.tag__card--border,
.tag__card--border-monocromo900,
.tag__card--border-monocromo800,
.tag__card--grey,
.tag__empresas-dark,
.tag__empresas,
.tag__primary,
.tag__innovation,
.tag__innovation-dark,
.tag__culinary,
.tag__inscripcion,
.tag__amedida,
.tag__entusiastas,
.tag__profesionales,
.tag__doctorado,
.tag__master,
.tag__grado {
  -webkit-appearance: none;
  padding: 5px 8px;
  text-align: center;
  color: #F4F3EF;
  border-radius: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "League Spartan", sans-serif;
  display: inline-block;
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tag__grado {
  -webkit-appearance: none;
  background-color: #5d4976;
  border: 2px solid #5d4976;
}

.tag__master {
  -webkit-appearance: none;
  background-color: #804A47;
  border: 2px solid #804A47;
  color: #ffffff;
}

.tag__doctorado {
  -webkit-appearance: none;
  background-color: #A36A00;
  border: 2px solid #A36A00;
}

.tag__profesionales {
  -webkit-appearance: none;
  background-color: #1e60bf;
  border: 2px solid #1e60bf;
}

.tag__entusiastas {
  -webkit-appearance: none;
  background-color: #757A00;
  border: 2px solid #757A00;
}

.tag__amedida {
  -webkit-appearance: none;
  background-color: #756a5b;
  border: 2px solid #756a5b;
}

.tag__inscripcion {
  -webkit-appearance: none;
  background-color: #067306;
  border: 2px solid #067306;
}

.tag__culinary {
  -webkit-appearance: none;
  background-color: #989a2b;
  border: 2px solid #989a2b;
}

.tag__innovation-dark {
  -webkit-appearance: none;
  background-color: #59718c;
  border: 2px solid #59718c;
}

.tag__innovation {
  -webkit-appearance: none;
  color: #F4F3EF;
  background-color: #95a7bd;
  border: 2px solid #95a7bd;
}

.tag__innovation:link {
  -webkit-appearance: none;
  background-color: #95a7bd;
  border: 2px solid #95a7bd;
}

.tag__innovation:active {
  color: #F4F3EF;
  background-color: #59718c;
  border: 2px solid #59718c;
}

.tag__innovation:hover {
  color: #F4F3EF;
  background-color: #59718c;
  border: 2px solid #59718c;
}

.tag__primary {
  -webkit-appearance: none;
  background-color: #d5903c;
  border: 2px solid #d5903c;
  color: #83390b;
}

.tag__empresas {
  -webkit-appearance: none;
  color: #26201b;
  background-color: #dfdad3;
  border: 2px solid #dfdad3;
}

.tag__empresas:hover,
.tag__empresas:active {
  background-color: #b9ac99;
  border: 2px solid #b9ac99;
}

.tag__empresas-dark {
  -webkit-appearance: none;
  color: #26201b;
  background-color: #b9ac99;
  border: 2px solid #b9ac99;
}

.tag__card--grey {
  -webkit-appearance: none;
  color: #26201b;
  border: 2px solid #dfdad3;
  background-color: #dfdad3;
}

.tag__card--border,
.tag__card--border-monocromo900,
.tag__card--border-monocromo800 {
  -webkit-appearance: none;
  color: #008a00;
  border: 2px solid #008a00;
  background-color: #ffffff;

}

.tag__card--border-monocromo800 {
  -webkit-appearance: none;
  color: #383126;
  border: 2px solid #383126;
}

.tag__card--border-monocromo900 {
  -webkit-appearance: none;
  color: #26201b;
  border: 2px solid #26201b;
}

.navegacion {
  width: 100%;
  background-color: #F4F3EF;
  height: 40px;
}

.navegacion .topbar {
  display: flex;
  margin: 0;
  padding-left: 24px;
  list-style: none;
  gap: 24px;
  justify-content: flex-end;
}

.navegacion .topbar .topbar__item {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.navegacion .topbar .topbar__item:first-child {
  margin-right: auto;
}

.navegacion .topbar .topbar__item.hover:hover .topbar__submenu,
.navegacion .topbar .topbar__item.clic:focus .topbar__submenu {
  visibility: visible;
}

.navegacion .topbar .topbar__item-link {
  align-items: center;
  display: flex;
  padding: 12px 0;
  color: #000000;
  font-family: "League Spartan", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.navegacion .topbar .topbar__item-link:hover {
  color: #000000;
  transition: all 0.1s;
}

.navegacion .topbar .topbar__item-link-padding {
  padding: 0;
}

.navegacion .topbar .topbar__item .topbar__submenu {
  position: absolute;
  background: #383126;
  width: auto;
  min-width: 50px;
  visibility: hidden;
  opacity: 1;
  padding: 8px;
  border-radius: 4px;
  z-index: 1;
  top: 39px;
}

.navegacion .topbar .topbar__item .topbar__submenu-width-big {
  width: 455px;
}

.navegacion .topbar .topbar__item .topbar__submenu-width-medium {
  width: 274px;
}

.navegacion .topbar .topbar__item .topbar__submenu-right {
  right: 0;
}

.navegacion .topbar .topbar__item .topbar__submenu .topbar__submenu--item a {
  display: block;
  padding: 15px;
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  font-size: 15px;
  text-decoration: none;
  padding: 16px 8px;
  list-style: none;
}

.navegacion .topbar .topbar__item .topbar__submenu .topbar__submenu--item a:hover {
  color: #ffffff;
}

.navegacion .topbar .topbar__item .topbar__submenu .topbar__submenu--item a.active {
  font-weight: 800;
}

p,
h4 {
  margin-top: 0;
  display: block;
  -webkit-margin-before: 0em;
  margin-block-start: 0em;
  -webkit-margin-after: 0em;
  margin-block-end: 0em;
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
  height: auto;
}

.weight-700 {
  font-weight: 700;
}

.weight-600 {
  font-weight: 600;
}

.weight-500 {
  font-weight: 500;
}

.weight400 {
  font-weight: 400;
}

.message {
  margin-top: 30px;
  display: flex;
  padding: 24px;
  flex-direction: row;
  margin-bottom: 30px;
}

.message-content {
  margin-right: 113px;
}

.message-content__title {
  margin-top: 100px;
  color: #83390b;
}

.message-content__main {
  font-weight: 500;
  margin-bottom: 12px;
}

.message-content__paragraph {
  margin-bottom: 68px;
}

.message-image {
  width: 627px;
  height: 467px;
  -o-object-fit: cover;
  object-fit: cover;
}

.message-image img {
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (min-width: 320px) and (max-width: 1300px) {
  .message {
    flex-direction: column-reverse;
    margin-top: 0;
    padding: 0;
    margin-bottom: 150px;
  }

  .message-content {
    margin: 24px;
  }

  .message-content__title {
    margin-top: 0;
    color: #83390b;
  }

  .message-content__main {
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 35px;
    font-weight: 500;
    line-height: 38px;
    /* 108.571% */
    letter-spacing: 0.1px;
  }

  .message-content__paragraph {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .message-content .btn__primary--medium-nocolor-width {
    width: 100%;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .message-image {
    width: 100%;
    height: auto;
    border-radius: 0px;
  }

  .message-image img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0px;
  }
}

@media only screen and (min-width: 1900px) {
  .message {
    display: flex;
    justify-content: center;
  }
}

.product-card {
  height: 417px;
  max-width: 320px;
  min-width: 280px;
  margin-top: 24px;
}

.product-card__image {
  height: 330px;
}

.product-card__image img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-card__image-carrito {
  min-height: 77px;
  min-width: 77px;
  max-width: 77px;
}

.product-card__info {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background-color: #F4F3EF;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.product-card__info-text {
  font-weight: 400;
  font-size: 18px;
}

.product-card__info-price {
  display: flex;
  align-items: end;
  /* color: #b36206; */
  font-weight: 400;
  padding-right: 10px;
}

.product-card__info-button {
  width: 55px;
}

.product-card__info-button button {
  height: 100%;
  width: 100%;
  background: #ffffff;
  border: 2px solid #b36206;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.product-card__info-button button::before {
  content: attr(data-count);
  display: none;
  position: absolute;
  top: -4px;
  left: -13px;
  width: 24px;
  height: 24px;
  background-color: #3c6ec8;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
}

.product-card__info-button button.show-bubble::before {
  display: block;
}

.square {
  -webkit-appearance: none;
  border: 0px;
  margin-left: 0;
  margin-right: 5px;
  box-shadow: inset 0 0 0 2px #BEBEBE;
}

.square-circle {
  content: url("/themes/custom/bccTheme/assets/iconos/check.svg");
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0;
  width: 34px;
  height: 34px;
  background-color: #b9ac99;
  border-radius: 100px;
  box-shadow: none;
  padding: 8px;
}

.square-container {
  margin-top: 5px !important;
  display: flex;
  list-style: none;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

.square-1 {
  background-color: #ffffff;
  height: 40px;
  width: 40px;
}

.square-2 {
  background-color: #B0B0B0;
  height: 40px;
  width: 40px;
}

.square-3 {
  background-color: #BDE89B;
  height: 40px;
  width: 40px;
}

.square-4 {
  background-color: #7976FF;
  height: 40px;
  width: 40px;
}

.square-small {
  height: 24px;
  width: 24px;
  border: 1px solid #000000;
}

.square-size-number {
  width: 100%;
  align-items: center;
  text-align: center;
  margin-left: -2px;
  margin-top: -35px;
}

.square-size-feel {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
}

.square-1:checked,
.square-2:checked,
.square-3:checked,
.square-4:checked,
.square-size-feel:checked {
  box-shadow: inset 0 0 0 2px #000;
  border: 2px solid #000;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  background-size: 9px 9px;
}

.square-circle:checked {
  box-shadow: 0;
  border: 0;
  background-color: #067306;
}

.footer {
  width: 100%;
  gap: 30px;
  padding: 24px;
}

@media (min-width: 1024px) {
  .footer {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .footer .footer-copy {
    margin: 0 auto;
  }

  .footer .footer-copy-container {
    display: flex;
  }
}

.footer__info {
  text-align: left;
  width: 100%;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .footer__info {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
}

.footer__logo {
  max-width: 117px;
}

@media (min-width: 1024px) {
  .footer__logo {
    max-width: 165px;
  }
}

@media (min-width: 1024px) {
  .footer__column {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

.footer {
  border-top: 1px solid #121111;
}

.menu--footer,
.footer__menu {
  margin: 0 auto;
  display: flex;
  text-align: center;
  justify-content: center;
}

.footer__list {
  list-style: none;
  width: 100%;
  padding: 0;
}

@media (min-width: 1024px) {
  .footer__list {
    display: flex;
    gap: 100px;
    margin: 0px;
  }
}

.footer__item {
  text-decoration: none;
  color: #26201b;
  padding: 15px 0 !important;
  display: block;
}

.footer__copyright {
  display: flex;
  width: 100%;
  align-items: flex-end;
}

.footer-copy {
  text-align: center;
}

.header-main {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 11;
}

.header-index {
  position: -webkit-sticky;
  position: sticky;
  top: 278px;
  z-index: 3;
}

/*------------------------------------*\
    GRID
\*------------------------------------*/
@media (min-width: 1024px) {
  .grid__c1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 32px 2fr 32px 2fr 32px 2fr 32px 2fr;
    grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
    grid-gap: 32px;
  }

  .grid__c2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 32px 2fr;
    grid-template-columns: 2fr 2fr;
    grid-gap: 32px;
  }

  .grid__c3 {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr;
    grid-template-columns: 3fr;
  }

  .grid__c4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 6fr;
    grid-template-columns: 6fr;
  }

  .grid__c5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 5fr;
    grid-template-columns: 5fr;
    grid-gap: 32px;
  }

  .grid__c9 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 9fr;
    grid-template-columns: 9fr;
    grid-gap: 32px;
  }

  .grid__c6 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 24px 2fr 24px 2fr 24px 2fr 24px 2fr 24px 2fr;
    grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr;
    grid-gap: 24px;
  }

  .grid__c10 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 24px 2fr 24px 2fr 24px 2fr 24px 2fr;
    grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
    grid-gap: 24px;
  }

  .grid__c12 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 12fr;
    grid-template-columns: 12fr;
    grid-gap: 24px;
  }

  .grid__c7-c5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 7fr 32px 5fr;
    grid-template-columns: 7fr 5fr;
    grid-gap: 32px;
  }

  .grid__c5-c7 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 5fr 32px 7fr;
    grid-template-columns: 5fr 7fr;
    grid-gap: 32px;
  }

  .grid__c8-c4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 8fr 32px 4fr;
    grid-template-columns: 8fr 4fr;
    grid-gap: 32px;
  }

  .grid__c9-c3,
  .grid__c9-c3-bottom {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 9fr 32px 3fr;
    grid-template-columns: 9fr 3fr;
    grid-gap: 32px;
  }

  .grid__c9-c3-bottom {
    align-items: end;
  }

  .grid__c4-c8 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 4fr 32px 8fr;
    grid-template-columns: 4fr 8fr;
    grid-gap: 32px;
  }

  .grid__c3-c9 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 32px 9fr;
    grid-template-columns: 3fr 9fr;
    grid-gap: 32px;
  }

  .grid__c2-c10 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 32px 10fr;
    grid-template-columns: 2fr 10fr;
    grid-gap: 32px;
  }

  .grid__c10-c2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 10fr 32px 2fr;
    grid-template-columns: 10fr 2fr;
    grid-gap: 32px;
  }

  .grid__c3-c9 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 16px 9fr;
    grid-template-columns: 3fr 9fr;
    grid-gap: 16px;
  }

  .grid__c4-c8 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 4fr 16px 8fr;
    grid-template-columns: 4fr 8fr;
    grid-gap: 16px;
  }

  .grid__c1-c11 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 11fr;
    grid-template-columns: 1fr 11fr;
    grid-gap: 16px;
  }

  .grid__c6-c6 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 6fr 32px 6fr;
    grid-template-columns: 6fr 6fr;
    grid-gap: 32px;
  }
}

/*------------------------------------*\
    SITE
\*------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  height: 100%;
  z-index: 0;
  position: relative;
}

body.overlay {
  overflow: hidden;
}

body.overlay::after {
  background: rgba(0, 0, 0, 0.25);
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
}

/*------------------------------------*\
    IMG
\*------------------------------------*/
img {
  max-width: 100%;
}

.img,
.img__width-50,
.img__small-big,
.img__medium-big,
.img__33,
.img__50,
.img__58,
.img__66,
.img__big-profesorado,
.img__big,
.img__big-accordion,
.img__x-big {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: 100%;
}

.img__cabecera {
  position: fixed;
  top: 0;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100vh;
  width: 100vw;
}

.img__cabecera:after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
}

.img__x-big {
  width: 100%;
  height: 330px;
}

@media (min-width: 700px) {
  .img__x-big {
    height: 520px;
  }
}

.img__big,
.img__big-accordion {
  width: 100%;
  height: 250px;
}

@media (min-width: 700px) {

  .img__big,
  .img__big-accordion {
    height: 100%;
  }
}

.img__big-accordion {
  height: 300px;
}

.img__big-profesorado {
  min-height: 300px;
  width: 920px;
}

.img__66 {
  width: 920px;
  height: 250px;
}

.img__58 {
  width: 790px;
}

.img__50 {
  width: 673px;
}

.img__33 {
  width: 450px;
}

.img__medium-big {
  width: 920px;
  height: 250px;
}

.img__small-big {
  width: 920px;
  height: 180px;
}

.img__width-50 {
  max-width: 675px;
}

/*------------------------------------*\
    $MARGINS
\*------------------------------------*/
@media screen and (min-width: 1000px) and (max-width: 1480px) {
  .media__margin {
    max-width: calc(100% - 100px);
  }

  .media__margin-new {
    max-width: calc(90% - 100px);
    align-items: baseline;
  }
}

@media screen and (min-width: 700px) and (max-width: 1000px) {
  .media__margin {
    max-width: calc(100% - 50px);
  }

  .media__margin-new {
    max-width: calc(90% - 100px);
    align-items: baseline;
  }
}

/*------------------------------------*\
    SPACE ELEMENTS
\*------------------------------------*/
.margin {
  margin: 0 24px;
}

.margin__top-regular {
  margin-top: 24px;
}

.margin__top-x-large {
  margin-top: 48px;
}

.margin__topbottom-regular {
  margin: 24px 0;
}

.margin__bottom-x-small {
  margin-bottom: 8px;
}

.margin__bottom-small {
  margin-bottom: 16px;
}

.margin__bottom-regular {
  margin-bottom: 24px;
}

.margin__bottom-large {
  margin-bottom: 32px;
}

.margin__bottom-x-large {
  margin-bottom: 48px;
}

.margin__bottom-xx-large {
  margin-bottom: 64px;
}

.margin__bottom-xtra-large {
  margin-bottom: 96px;
}

@media (min-width: 1024px) {
  .margin__left {
    margin-left: 24px;
  }
}

.margin__left-large {
  margin-left: 32px;
}

.margin__left-tiny {
  margin-left: 4px;
}

.margin__right-tiny {
  margin-right: 4px;
}

.margin__right-xsmall {
  margin-right: 8px;
}

.margin__right-regular {
  margin-right: 24px;
}

.margin__mobile-bottom-small {
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .margin__mobile-bottom-small {
    margin-bottom: 0;
  }
}

.margin__desktop-right-regular {
  margin-right: 0;
}

@media (min-width: 1024px) {
  .margin__desktop-right-regular {
    margin-right: 24px;
  }
}

.padding {
  padding: 0 24px;
}

.padding__regular {
  padding: 24px;
}

.padding__small {
  padding: 16px;
}

.padding__mobile {
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .padding__mobile {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .padding__desktop {
    padding: 0 24px;
  }
}

.padding__inline-start {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

.padding__right-tiny {
  padding-right: 4px;
}

.padding__right-small {
  padding-right: 16px;
}

.padding__right-regular {
  padding-right: 24px;
}

.padding__right-large {
  padding-right: 32px;
}

.padding__left-tiny {
  padding-left: 4px;
}

.padding__left-small {
  padding-left: 16px;
}

.padding__left-regular {
  padding-left: 24px;
}

.padding__left-large {
  padding-left: 32px;
}

.padding__leftright-small {
  padding-left: 16px;
  padding-right: 16px;
}

.padding__bottom-tiny {
  padding-bottom: 4px;
  padding-top: 4px;
}

.padding__bottom-xx-small {
  padding-bottom: 10px;
}

.padding__bottom-x-small {
  padding-bottom: 5px;
}

.padding__bottom-small {
  padding-bottom: 16px;
}

.padding__bottom-regular {
  padding-bottom: 24px;
}

.padding__bottom-x-regular {
  padding-bottom: 20px;
}

.padding__bottom-gap {
  padding-bottom: 40px;
}

.padding__bottom-large {
  padding-bottom: 32px;
}

.padding__p-top-x-large {
  padding-top: 48px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__p-bottom-large {
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__bottom-x-large {
  padding-bottom: 48px;
}

.padding__bottom-xx-large {
  padding-bottom: 64px;
}

.padding__bottom-xtra-large {
  padding-bottom: 96px;
}

.padding__p-bottom-regular {
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__p-bottom-large {
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__p-bottom-x-large {
  padding-bottom: 48px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__p-bottom-xx-large {
  padding-bottom: 64px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__p-bottom-xtra-large {
  padding-bottom: 96px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__p-topbottom-small {
  padding-bottom: 16px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.padding__p-topbottom-large {
  padding-bottom: 32px;
  padding-top: 32px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__p-topbottom-xx-large {
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 24px;
  padding-right: 24px;
}

.padding__top-tiny {
  padding-top: 4px;
}

.padding__top-xx-small {
  padding-top: 10px;
}

.padding__top-x-small {
  padding-top: 8px;
}

.padding__top-small {
  padding-top: 16px;
}

.padding__top-regular {
  padding-top: 24px;
}

.padding__top-x-regular {
  padding-top: 20px;
}

.padding__top-gap {
  padding-top: 40px;
}

.padding__top-large {
  padding-top: 32px;
}

.padding__top-x-large {
  padding-top: 48px;
}

.padding__top-xx-large {
  padding-top: 64px;
}

.padding__top-xtra-large {
  padding-top: 96px;
}

.padding__topbottom-x-small {
  padding-top: 8px;
  padding-bottom: 8px;
}

.padding__topbottom-tiny {
  padding-top: 4px;
  padding-bottom: 4px;
}

.padding__topbottom-small {
  padding-top: 16px;
  padding-bottom: 16px;
}

.padding__topbottom-large {
  padding-top: 32px;
  padding-bottom: 32px;
}

.padding__topbottom-x-regular {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding__topbottom-regular {
  padding-top: 24px;
  padding-bottom: 24px;
}

.padding__regular-regular {
  padding: 24px 0;
}

.padding__topbottom-large {
  padding-top: 32px;
  padding-bottom: 32px;
}

.padding__regular-large {
  padding: 32px 24px 32px 24px;
}

.padding__topbottom-x-large {
  padding-top: 48px;
  padding-bottom: 48px;
}

.padding__topbottom-xx-large {
  padding-top: 64px;
  padding-bottom: 64px;
}

.padding__regular-xx-large {
  padding: 64px 24px;
}

.padding__topbottom-xtra-large {
  padding-top: 96px;
  padding-bottom: 96px;
}

.padding__regular-xtra-large {
  padding: 0 24px 96px 24px;
}

.padding__mobile-desktop--x-small-regular {
  padding: 16px;
}

@media (min-width: 1024px) {
  .padding__mobile-desktop--x-small-regular {
    padding: 24px;
  }
}

.padding__bottom-mobile-small {
  padding-bottom: 16px;
}

@media (min-width: 700px) {
  .padding__bottom-mobile-small {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}

.padding__bottom-mobile-regular {
  padding-bottom: 24px;
}

@media (min-width: 1024px) {
  .padding__bottom-mobile-regular {
    padding-bottom: 0;
  }
}

.padding__bottom-mobile-xx-large {
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .padding__bottom-mobile-xx-large {
    padding-bottom: 0;
  }
}

.padding__top-mobile-small {
  padding-top: 16px;
}

@media (min-width: 1024px) {
  .padding__top-mobile-small {
    padding-top: 0;
  }
}

.padding__top-mobile-regular {
  padding-top: 24px;
}

@media (min-width: 700px) {
  .padding__top-mobile-regular {
    padding-top: 0;
  }
}

.padding__top-mobile-large {
  padding-top: 32px;
}

@media (min-width: 1024px) {
  .padding__top-mobile-large {
    padding-top: 0;
  }
}

.padding__topbottom-desktop {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .padding__topbottom-desktop {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.padding__topbottom-desktop-large {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .padding__topbottom-desktop-large {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.padding__top-desktop-x-large {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .padding__top-desktop-x-large {
    padding-top: 48px;
  }
}

.padding__top-desktop-xx-large {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .padding__top-desktop-xx-large {
    padding-top: 64px;
  }
}

.padding__bottom-desktop-small {
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .padding__bottom-desktop-small {
    padding-bottom: 16px;
  }
}

.padding__bottom-desktop-regular {
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .padding__bottom-desktop-regular {
    padding-bottom: 24px;
  }
}

.padding__bottom-desktop-x-large {
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .padding__bottom-desktop-x-large {
    padding-bottom: 48px;
  }
}

.padding__bottom-desktop-large {
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .padding__bottom-desktop-large {
    padding-bottom: 32px;
  }
}

.padding__bottom-desktop-tiny {
  padding-bottom: 0;
}

@media (min-width: 700px) {
  .padding__bottom-desktop-tiny {
    padding-bottom: 4px;
  }
}

.padding__right-desktop-regular {
  padding-right: 0;
}

@media (min-width: 700px) {
  .padding__right-desktop-regular {
    padding-right: 24px;
  }
}

.padding__topbottom-mobile-small {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (min-width: 1024px) {
  .padding__topbottom-mobile-small {
    padding-top: 0;
    padding-bottom: 16px;
  }
}

.padding__bottom-md-regular {
  padding-bottom: 16px;
}

@media (min-width: 1024px) {
  .padding__bottom-md-regular {
    padding-bottom: 24px;
  }
}

.margin-left-button {
  margin-right: 10px;
}

.btn-tabs {
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #000000;
  font-size: 19px;
  font-family: "League Spartan", sans-serif;
  margin: 7px;
}

@media (min-width: 700px) {
  .btn-tabs {
    text-transform: uppercase;
    cursor: pointer;
    line-height: 32px;
    font-size: 20px;
    color: #000000;
  }
}

/* Error del active de los botones*/
/*button:active,*/
/*.btn-tabs.tab-active,*/
/*.btn-tabs:hover {*/
/*  background-color: transparent;*/
/*  border-bottom: 0;*/
/*  border-radius: 0;*/
/*  color: #000000;*/
/*  font-weight: 600;*/
/*  padding: 0;*/
/*  margin: 7px;*/
/*  padding-left: 5px;*/
/*}*/

/*@media (min-width: 700px) {*/
/*  button:active,*/
/*  .btn-tabs.tab-active,*/
/*  .btn-tabs:hover {*/
/*    border-bottom: solid 2px #b36206;*/
/*    color: #b36206;*/
/*    font-weight: 600;*/
/*  }*/
/*}*/

.hide {
  display: none;
}

.tab-nav ul {
  display: none;
  flex-wrap: wrap;
  flex-direction: column;
}

.tab-nav ul.show {
  display: block;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  background-color: #ffffff;
  padding: 10px 2px 10px 2px;
  position: absolute;
  width: 90%;
}

.tab-nav {
  max-width: 100%;
  border: 0;
}

.tab-nav ul {
  gap: 16px;
  flex-direction: row;
}

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

.mobile-select::after {
  content: url("/themes/custom/bccTheme/assets/iconos/filter-more.svg");
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 700px) {
  .mobile-select::after {
    content: "";
  }
}

.mobile-select {
  font-size: 19px;
  font-family: "League Spartan", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #000000;
}

.active::after {
  content: "";
}

@media (min-width: 700px) {
  .mobile-select {
    display: none;
  }

  .tab-nav ul {
    display: flex;
  }
}


/*Tablas*/
/* Anchura columna */
/* añadir estas clases a las th, adjunto captura */
.width-10 {
  width: 10%;
}

.width-12 {
  width: 12%;
}

.width-15 {
  width: 15%;
}

.width-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

/* estilos fila */
* {
  --border-radius: 0px;
}

.views-table {
  width: 100%;
  border-spacing: 0;
}

.views-table thead {
  /* 18 - 20 px */
  font-size: clamp(1.125rem, -0.875rem + 8.333vw, 1.25rem);
}

table.views-table {
  padding: 0 24px;
}

.views-field-order-number {
  font-size: 1.25rem;
  font-weight: 700;
}

td {
  border: 1px solid #DFDAD3;
}

tr {
  height: 56px;
}

tr:nth-child(even) {
  background-color: #DFDAD3;
}

td.views-field-total-price__number {
  text-align: right;
}

/* responsive */
@media screen and (max-width: 700px) {

  .views-field {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
  }

  .views-field-order-number {
    padding-top: 16px;
  }

  .views-table thead {
    font-weight: 300;
  }

  thead tr {
    display: flex;
    flex-direction: column;
  }

  /* tbody {
    background-color: #F4F3EF;
  } */

  tr:nth-child(even) {
    background-color: #F4F3EF;
  }

  tbody tr {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 100%;
  }

  tr {
    height: 56px;
  }

  td {
    border: 0;
  }

  .width-10,
  .width-12,
  .width-15,
  .width-20,
  .width-25 {
    width: 100%;
  }
}

/*! CSS Used from: http://bcc.local/themes/custom/bccTheme/css/base/style.css?s6p3na ; media=all */
@media all {
  /* h4 {
    font-size: clamp(1.3rem, -0.875rem + 8.333vw, 1.7rem);
  } */

  span {
    font-size: 1rem;
  }

  label {
    line-height: 1.3;
    font-family: "League Spartan", sans-serif;
    font-weight: 300;
  }

  a {
    line-height: 1;
    font-family: "League Spartan", sans-serif;
  }

  h4 {
    line-height: 1.2;
    font-family: "League Spartan", sans-serif;
    font-weight: 600;
  }

  span {
    font-size: clamp(1.2rem, -4.875rem + 8.333vw, 1.2rem);
  }

  .content__max {
    max-width: calc(1450px - 24px);
  }

  .content__center {
    margin-left: auto;
    margin-right: auto;
  }

  .gap__form {
    gap: 24px;
  }

  a {
    color: #26201b;
  }

  .box__background {
    background-color: #f4f3ef;
  }

  .btn__primary--medium-nocolor-width,
  .btn__primary--medium-color-width {
    text-transform: uppercase;
    text-decoration: none;
    align-items: baseline;
    text-align: center;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
  }

  @media only screen and (max-width: 699px) {

    .block-inline-blockwidget-slider-principal .swiper__fullwidth-padding a,
    .btn__primary--medium-nocolor-width,
    .btn__primary--medium-color-width,
    #FormularioSolicitarMasInformacion button {
      width: 100% !important;
    }
  }

  @media only screen and (max-width: 320px) {

    .btn__primary--small-color,
    .btn__primary--small-color-menu,
    .btn__primary--small-color-width .btn__primary--medium-nocolor-width,
    .btn__primary--medium-color-width,
    #FormularioSolicitarMasInformacion button {
      padding: 1rem;
      font-size: .875rem !important;
      text-align: center;
      width: 100% !important;
    }
  }


  .btn__primary--medium-nocolor-width,
  .btn__primary--medium-color-width {
    border-radius: 4px;
  }

  .btn__primary--medium-color-width {
    color: #ffffff;
    background-color: #b36206;
    border: 2px solid #b36206;
    font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
    letter-spacing: 0.1px;
    font-weight: 500;
    padding: 16px 24px;
  }

  .btn__primary--medium-color-width:link {
    background-color: #b36206;
    border: 2px solid #b36206;
  }

  .btn__primary--medium-color-width:hover {
    background-color: #83390b;
    border: 2px solid #83390b;
  }

  .btn__primary--medium-color-width:disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: rgba(179, 98, 6, 0.5);
    border: 2px solid rgba(179, 98, 6, 0);
  }

  .btn__primary--medium-color-width {
    width: auto;
    background-color: #b36206;
    border: 1px solid #b36206;
  }

  .btn__primary--medium-nocolor-width:link {
    background-color: #ffffff;
    color: #b36206;
    border: 2px solid #b36206;
  }

  .btn__primary--medium-nocolor-width:hover {
    background-color: #ffffff;
    color: #83390b
  }

  .btn__primary--medium-nocolor-width:disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: #ffffff;
    color: rgba(179, 98, 6, 0.5);
    border: 2px solid rgba(179, 98, 6, 0.5);
  }

  .filter__text {
    padding: 16px 0;
  }

  .form__inputs {
    display: inline;
    width: 100%;
  }

  @media (min-width: 1024px) {
    .form__inputs {
      display: inline-flex;
      width: 100%;
    }
  }

  .form-floating {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
  }

  .form-floating>.form-control {
    height: 55px;
    padding: 1rem;
  }

  .form-floating>label {
    /* position: absolute;
    top: 0;
    left: 0; */
    font-weight: 400;
    height: 100%;
    padding: 0;
    pointer-events: none;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  }

  .form-floating>.form-control::-webkit-input-placeholder {
    color: transparent;
  }

  .form-floating>.form-control::-moz-placeholder {
    color: transparent;
  }

  .form-floating>.form-control:-ms-input-placeholder {
    color: transparent;
  }

  .form-floating>.form-control::-ms-input-placeholder {
    color: transparent;
  }

  .form-floating>.form-control::placeholder {
    color: transparent;
  }

  .form-floating>.form-control:focus,
  .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.6rem;
    padding-bottom: 0.6rem;
  }

  .form-control {
    display: block;
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2rem;
    color: #26201b;
    width: 100%;
    padding: 0px;
    background-color: #ddd;
    border: 2px solid #d5ccc1;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.25s ease-in-out;
  }

  .form-control:hover,
  .form-control:active,
  .form-control:focus {
    color: #26201b;
    background-color: #f4f3ef;
    border-color: 2px solid #26201b;
    outline: none;
  }

  button[type="submit"]:focus {
    border-color: black;
    outline: none;
  }

  .tabs_ic__link,
  .tabs_ic__active {
    color: #26201b;
    background-color: #b9ac99;
    padding: 5px 8px;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border-radius: 8px;
    text-transform: none;
    cursor: pointer;
    margin: 8px 8px 4px 0;
    font-size: clamp(1rem, -5.875rem + 8.333vw, 1.3rem);
    appearance: button;
    display: inline-block;
  }

  @media (min-width: 1024px) {

    .tabs_ic__link,
    .tabs_ic__active {
      text-transform: uppercase;
      cursor: pointer;
      line-height: 32px;
      font-size: clamp(1rem, -5.875rem + 8.333vw, 1.3rem);
      -webkit-appearance: button;
      -moz-appearance: button;
      appearance: button;
      background-color: transparent;
      padding: 0;
      margin: 0 32px 0 0;
    }
  }

  @media (min-width: 1024px) {
    .tabs_ic__active {
      background-color: transparent;
      border-bottom: solid 2px #b36206;
      border-radius: 0;
      color: #b36206;
      font-weight: 600;
      padding: 0;
      margin: 0 32px 0 0;
      -webkit-appearance: button;
      -moz-appearance: button;
      appearance: button;
    }
  }

  h4 {
    margin-top: 0;
    display: block;
    -webkit-margin-before: 0em;
    margin-block-start: 0em;
    -webkit-margin-after: 0em;
    margin-block-end: 0em;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
    -webkit-margin-end: 0px;
    margin-inline-end: 0px;
  }

  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  /* @media screen and (min-width: 1000px) and (max-width: 1480px) {
    .media__margin {
      max-width: calc(100% - 100px);
    }
  }
  @media screen and (min-width: 700px) and (max-width: 1000px) {
    .media__margin {
      max-width: calc(100% - 50px);
    }
  } */
  .padding__regular {
    padding: 24px;
  }

  .padding__bottom-small {
    padding-bottom: 16px;
  }
}

/*! CSS Used from: http://bcc.local/themes/custom/bccTheme/css/base/custom.css?s6p3na ; media=all */
@media all {
  a {
    text-decoration: none;
  }

  * {
    --border-radius: 5px;
  }

  button {
    font-family: "League Spartan", sans-serif;
  }

  #contenedor {
    content: " ";
    display: -webkit-box;
    height: 20px;
    background-position: contain;
    position: relative;
    width: 75%;
    margin: 1em auto;
  }

  .w-auto {
    width: auto !important;
  }

  .btn__right {
    text-align: right;
  }

  .btn__clear {
    border: unset;
  }

  .debug_hidden {
    display: none !important;
  }
}

@media all {
  /* h4 {
    font-size: clamp(1.3rem, -0.875rem + 8.333vw, 1.7rem);
  } */

  span {
    font-size: 1rem;
  }

  label {
    line-height: 1.3;
    font-family: "League Spartan", sans-serif;
    font-weight: 300;
  }

  a {
    line-height: 1;
    font-family: "League Spartan", sans-serif;
  }

  h4 {
    line-height: 1.2;
    font-family: "League Spartan", sans-serif;
    font-weight: 600;
  }

  span {
    font-size: clamp(1.2rem, -4.875rem + 8.333vw, 1.2rem);
  }

  .content__max {
    max-width: calc(1450px - 24px);
  }

  .content__center {
    margin-left: auto;
    margin-right: auto;
  }

  .gap__form {
    gap: 24px;
  }

  a {
    color: #26201b;
  }

  .box__background {
    background-color: #f4f3ef;
  }

  .btn__primary--medium-nocolor-width,
  .btn__primary--medium-color-width {
    text-transform: uppercase;
    text-decoration: none;
    align-items: baseline;
    text-align: center;
    width: 100%;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
  }

  .btn__primary--medium-nocolor-width,
  .btn__primary--medium-color-width {
    border-radius: 4px;
  }

  .btn__primary--medium-color-width {
    color: #ffffff;
    background-color: #b36206;
    border: 2px solid #b36206;
    font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
    letter-spacing: 0.1px;
    font-weight: 500;
    padding: 16px 24px;
  }

  .btn__primary--medium-color-width:link {
    background-color: #b36206;
    border: 2px solid #b36206;
  }

  .btn__primary--medium-color-width:hover {
    /* opacity: .8; */
    border: 0;
    box-shadow: none;
  }

  .btn__primary--medium-color-width:disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: rgba(179, 98, 6, 0.5);
    border: 2px solid rgba(179, 98, 6, 0);
  }

  .btn__primary--medium-color-width {
    width: auto;
    background-color: #b36206;
    border: 1px solid #b36206;
  }

  .btn__primary--medium-nocolor-width {
    color: #b36206;
    background-color: #ffffff;
    margin-right: 10px;
    font-size: clamp(15px, -6.175rem + 8.333vw, 17px) !important;
    letter-spacing: 0.1px;
    font-weight: 500;
    padding: 16px 24px;
  }

  .btn__primary--medium-nocolor-width:link {
    -webkit-appearance: none;
    background-color: #ffffff;
    color: #b36206;
    border: 2px solid #b36206;
  }

  .btn__primary--medium-nocolor-width:hover {
    background-color: #ffffff;
    color: #83390b
  }

  .btn__primary--medium-nocolor-width:active {
    padding: 16px 24px !important;
  }

  .btn__primary--medium-nocolor-width:disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: #ffffff;
    color: rgba(179, 98, 6, 0.5);
    border: 2px solid rgba(179, 98, 6, 0.5);
  }

  .filter__text {
    padding: 16px 0;
  }

  .form__inputs {
    display: inline;
    width: 100%;
  }

  @media (min-width: 1024px) {
    .form__inputs {
      display: inline-flex;
      width: 100%;
    }
  }

  /* .form-floating {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
  }

  .form-floating > .form-control {
    height: 55px;
    padding: 1rem;
  }

  .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 400;
    height: 100%;
    padding: 1rem;
    pointer-events: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  }

  .form-floating > .form-control::placeholder {
    color: transparent;
  }

  .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 0;
    padding-bottom: 0.6rem;
  }
  .form-floating > .form-control {
    height: 56px;
    border: 0px;
  }
  .form-control:hover{
    padding: 0;
  }
  .form-control {
    display: block;
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2rem;
    color: #26201b;
    width: 100%;
    padding: 0px;
    background-color: #d5ccc1;
    border: 2px solid #d5ccc1;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: border-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out;
  }

  .form-control:hover, .form-control:active, .form-control:focus {
    color: #26201b;
    background-color: #f4f3ef;
    border-color: 2px solid #26201b;
    outline: none;
  } */

  button[type="submit"]:focus {
    border-color: black;
    outline: none;
  }

  .tabs_ic__link,
  .tabs_ic__active {
    color: #26201b;
    background-color: #b9ac99;
    padding: 5px 8px;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border-radius: 8px;
    text-transform: none;
    cursor: pointer;
    margin: 8px 8px 4px 0;
    font-size: clamp(1rem, -5.875rem + 8.333vw, 1.3rem);
    appearance: button;
    display: inline-block;
  }

  @media (min-width: 1024px) {

    .tabs_ic__link,
    .tabs_ic__active {
      text-transform: uppercase;
      cursor: pointer;
      line-height: 32px;
      font-size: clamp(1rem, -5.875rem + 8.333vw, 1.3rem);
      -webkit-appearance: button;
      -moz-appearance: button;
      appearance: button;
      background-color: transparent;
      padding: 0;
      margin: 0 32px 0 0;
    }
  }

  @media (min-width: 1024px) {
    .tabs_ic__active {
      background-color: transparent;
      border-bottom: solid 2px #b36206 !important;
      border-radius: 0;
      color: #b36206;
      font-weight: 600;
      padding: 0;
      margin: 0 32px 0 0;
      -webkit-appearance: button;
      -moz-appearance: button;
      appearance: button;
    }
  }

  h4 {
    margin-top: 0;
    display: block;
    -webkit-margin-before: 0em;
    margin-block-start: 0em;
    -webkit-margin-after: 0em;
    margin-block-end: 0em;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
    -webkit-margin-end: 0px;
    margin-inline-end: 0px;
  }

  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  .cart ul {
    padding: 0px;
  }

  .cart .margin {
    /*margin: 0 5% 0px 5% !important;*/
  }

  .grid__c2_summary {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 32px 2fr;
    grid-template-columns: 2fr 2fr;
    grid-gap: 32px;
  }

  @media (min-width: 100px) and (max-width: 960px) {
    .cart .display__no-mobile {
      display: -ms-flexbox !important;
      display: block !important;
      align-items: flex-start !important;
    }

    .cart .padding__bottom-mobile-small {
      padding-bottom: 16px;
      margin-bottom: 10px !important;
    }

    .cart .display__mobile-between {
      display: flex;
      justify-content: space-between;
      display: flex;
      flex-wrap: wrap;
      width: 100%;
    }
  }

  /* @media screen and (min-width: 1000px) and (max-width: 1480px) {
    .media__margin {
      max-width: calc(100% - 100px);
    }

    .cart .media__margin {
      max-width: calc(100%);
    }
  }
  @media screen and (min-width: 700px) and (max-width: 1000px) {
    .media__margin {
      max-width: calc(100% - 50px);
    }
  } */
  .padding__regular {
    padding: 24px;
  }

  .padding__bottom-small {
    padding-bottom: 16px;
  }
}

/* Tags */
.tag__card--generic {  
  color: #fff;
  border: 2px solid #b36206;
  background-color: #b36206;
}

.tag__card--open {
  color: #fff;
  border: 2px solid #067306;
  background-color: #067306;
}

.tag__card--close {
  color: #710022;
  border: 2px solid #fee7eb;
  background-color: #fee7eb;

}

.tag__card--next {
  color: #0b2173;
  border: 2px solid #cadfff;
  background-color: #cadfff;

}

.tag__card--generic,
.tag__card--open,
.tag__card--close,
.tag__card--next {
  padding: 5px 8px;
  text-align: center;
  border-radius: 8px;
  font-family: "League Spartan", sans-serif;
  display: inline-block;
  font-size: 16px;
  width: fit-content;
}

/* Agregar un asterisco a los títulos de los campos obligatorios */
.form-required::after {
  content: ' *'; /* Asterisco */
  color: red; /* Cambia el color si lo deseas */
  margin-left: 5px; /* Espacio entre el título y el asterisco */
}

#edit-input-busqueda::placeholder {
  /* color: #B36206; */
  color: gray;
}