

:root {
  --main-color: #e21776;
  --main-color-dark: #c51567;
  --text-color-light: #ffffff;
  --text-color-dark: #1c1c1c;
  --text-color-error: #E62254;
  --background-white: #ffffff;
  --background-grey: #f1f1f1;
  --background-light-grey: #fafafa;
  --background-light-light-grey: #fcfcfc;
  --background-dark: #1c1c1c; 
  --background-combo: #00ac6d; 
  --background-discount: #0166ff;
  --background-gradient-dark: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0) 100%);
  --border-color: #d3d3d3;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Roboto",Helvetica,Arial,sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1em;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.62rem;
  line-height: 1em;
  margin: 0;
}

h2 {
  font-size: 2.62rem;
  line-height: 1em;
  margin: 0;
}


input {
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}
.wrapper-margin-top {
  margin-top: 48px;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-gap: 40px;
}

/* Basic styles */
.bg-white {
  background-color: #ffffff;
}
.bg-black {
  background-color: #000000;
}
.bg-light-grey {
  background-color: #fafafa;
}
.bg-light-light-grey {
  background-color: var(--background-light-light-grey);
}
.bg-main {
  background-color: var(--main-color);
}
.text-color-dark {
  color: var(--text-color-dark);
}
.text-color-light {
  color: var(--text-color-light);
}
.wrapper-container {
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1280px;
  width: 100%;
}
.pink-border {
  border-top: 8px solid var(--main-color);
}
.text-center {
  text-align: center;
}
.wrapper-inner.menu-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.menu-box div {
  flex-grow: 0;
}
.menu-box .search-input-wrapper {
  flex-grow: 1;
}

.bottommargin-sm {
  margin-bottom: 1rem;
}
.bottommargin-md {
  margin-bottom: 2rem;
}
.bottommargin-lg {
  margin-bottom: 3rem;
}
.park-events-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr; 
  grid-gap: 16px;
}


.menu-box-order-2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.menu-container {
  display: flex;
  flex-direction: row;
  gap:8px;
  justify-content: flex-start;
  align-items: center;
}
.menu-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.menu-box-padding {
  padding: 8px 0;
}
.menu-shadow {
  -webkit-box-shadow: 0 0 16px -8px #bcbcbc;
  -moz-box-shadow: 0 0 16px -8px #bcbcbc;
  box-shadow: 0 0 16px -8px #bcbcbc;
}
.search-input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  
}
.search-input-inner-wrapper {
  max-height: 44px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.search-input-bar {
  width: 100%;
  border-radius: 4px;
  border: 1px solid transparent;
  background-color: #f1f1f1;
  height: auto;
  min-height: 40px;
  padding-left: 16px;
  position: relative;
  border: 2px solid #f1f1f1;;
}
input::placeholder {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  color: #8f8f8f;
  font-size: 0.9rem;
}
.search-button {
  width: 56px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 0 solid transparent;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  position: absolute;
}
.search-button:hover {
  background-color: var(--main-color);
  cursor: pointer;
}
.search-button:hover .search-icon path {
  fill: #ffffff !important;
}
.search-icon {
  width: 24px;
  height: 24px;
  fill: #b3b3b3; 
}
.search-icon path {
  fill: #b3b3b3; 
}
.search-input-bar:focus-within {
  border: 2px solid var(--main-color);
}
.search-input-inner-wrapper:focus-within .search-icon path {
  fill: var(--main-color);
}
.menu-container a {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  text-decoration: none;
  font-size: 0.875rem;
  color: #000000;
  font-weight: 400;
}
.menu-list-item {
  padding: 8px 16px;
  border-radius: 4px;
}
/* .menu-list-item:hover {
  background-color: var(--background-light-grey);
} */
.menu-list-item:hover.menu-nested-item {
  background-color: var(--background-light-grey);
}
.menu-nested-item {
  padding: 12px 16px;
}
.menu-desplegable{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px
}
.menu-list-item-wrap {
  position: relative;
  height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 2px solid #fff;
}
/* .menu-list-item-wrap:hover {
  border-bottom: 2px solid var(--main-color);
}
.menu-list-item-wrap:hover .menu-nested-item-wrapper {
  display: block;
  position: absolute;
  z-index: 4;
  min-width: 250px;
  top: 54px;
  background-color: var(--background-white);
} */
.menu-list-arrow-wrapper {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(270deg);
}
.desplegable{
  width: 120px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--main-color);
  background: #ffffff;
  display: inline-flex;
  padding: 0px 24px;
  justify-content: left;
  align-items: center;
}
.desplegable-text {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
}

/* top Bar */
.flag-and-language-pickers-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  height: 100%;
  min-height: 40px;
  width: fit-content;
}
.picker-position-flag, .picker-position-lang {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.picker-position-flag {
  gap: 6px;
}
.picker-position-lang {
  gap: 2px;
}
.picker-position-flag, .picker-position-lang, #language_icon, .picker-position-lang span {
  position: inherit;
}
.picker-position-flag-wrapper {
  min-height: 40px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.picker-position-lang-wrapper {
  min-height: 40px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.link-picker:hover .picker-position-flag-wrapper, .link-picker:hover .picker-position-lang-wrapper, .link-picker:hover .user-link-wrapper {
  /* background-color: var(--main-color-dark); */
  text-decoration: underline;
  color: var(--text-color-light);
}
.link-picker-flag {
  background: transparent;
  border: 0 none transparent;
  cursor: pointer;
  padding: 0;
}
.top-bar-pickers-wrappers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.user-link-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 8px;
  gap: 8px;
}
.menu-button {
  border-radius: 4px;
  border: 2px solid #b3b3b3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  width  : 40px;
  background: var(--background-white);
  cursor: pointer;
}
.menu-button-close {
  border-radius: 4px;
  border: 0px none transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 34px;
  width: 34px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.canvas-menu-arrow-icon-close {
  transform: rotate(90deg);
}

.canvas-menu-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
}

.canvas-menu-text-menu {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color-dark);
}
.modal-flag-wrapper .modal-territories-box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
  row-gap: 4px;
}
.flag-box-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: fit-content;
}
.flag-link {
  padding: 8px 8px;
  width: fit-content;
  border-radius: 4px;
  color: var(--text-color-dark);
}
.flag-link.picked-flag {
  border: 2px solid var(--background-grey);
}
.flag-link:hover {
  text-decoration: underline;
}
.modal-language-wrapper .modal-territories-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  row-gap: 16px;
}
.modal-territories-box-wrapper {
  padding: 16px 0;
}
.canvas-for-languages {
  display: none;
  -webkit-animation: menuNavNoselected 0.15s ease-in;
  -moz-animation: menuNavNoselected 0.15s ease-in;
  -o-animation: menuNavNoselected 0.15s ease-in;
  animation: menuNavNoselected 0.15s ease-in;
  overflow: hidden;
  background-color: #fafafa;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
}
.canvas-for-languages.selected{
  -webkit-animation: menuNavselected 0.15s ease-in;
  -moz-animation: menuNavselected 0.15s ease-in;
  -o-animation: menuNavselected 0.15s ease-in;
  animation: menuNavselected 0.15s ease-in;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  z-index: 3;
}
@keyframes menuNavselected {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}
@keyframes menuNavNoselected {
  from {
    display: block;
    width: 100%;
  }

  to {
    width: 0%;
  }
}
.menu-list-item-pickers {
  width: 100%;
  /* overflow: auto !important;
  display: table !important; */
  padding: 0 16px;
  /* height: 48px; */
  /* position: static;
  border-bottom: 2px solid transparent; */
}
.menu-list-picker-wrap-inner {
  height: 46px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--background-grey);
  position: relative;
}
.canvas-menu-wrapper-restriscted {
  width: 100%;
}
/* Cabecera */
.artist-image-header {
  height: 100%;
  background-position: 50% 38%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  max-height: 300px;
  position: relative;
}
.artist-overlay {
  background-color: rgba(0,0,0,.2);
  background: linear-gradient(180deg, rgba(226,23,118,0) 0%, rgb(226, 23, 118) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.park-title-style {
  font-size: 56px;
  margin-bottom: 48px;
  line-height: 68px;
}
.title-style-section {
  font-size: 48px;
  line-height: 1.2em;
}
.title-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
.title-container-section {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}
.title-inner-wrapper-width {
  max-width: 875px;
  margin: 0 auto;
}
.text-ocio {
  font-size: 24px;
  font-weight: 400;
  line-height: 1em;
  margin: 0;
}

/* Lo mejor en parques, novedades y ofertas */
.best-of-wrapper {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  padding: 2rem 0;
}
.best-of-wrapper-box {
  border-radius: 8px 8px 0 0;
  position: relative;
  overflow: hidden;
}
.best-of-inner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  background-color: rgba(0,0,0,0.7);
}
.best-of-bg-image {
  position: absolute;
  top: 0;
  left: 0;
}
.best-of-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
}

.border-bottom {
  border-bottom: 2px solid #D1D1D1;
}
.best-of-item {
  padding: 8px;
  padding-right: 12px;
}
.best-of-box-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.best-of-box-inner-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6px;
}
.best-of-title-event {
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 175px;
}
.best-of-tendencias {
  width: fit-content;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #fbdee6;
  color: #e62254;
  font-size: 12px;
  line-height: 1em;
}
.best-of-recomendado {
  width: fit-content;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #d9f9ed;
  color: #00ad6c;
  font-size: 12px;
  line-height: 1em;
}
.best-of-novedad {
  width: fit-content;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #d9e8ff;
  color: #0166ff;
  font-size: 12px;
  line-height: 1em;
}
.best-of-text {
  margin:0;
  font-size: 12px;

}
.best-of-event-info {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.best-of-price-tag {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: flex-start;
}
.best-of-price-text {
  font-size: 12px;
}
.best-of-price-number {
  font-size: 20px;
  line-height: 1.2rem;
  font-weight: 700;
}
.best-of-price-discount {
  color: var(--text-color-error);
  font-size: 12px;
  text-decoration: line-through;
}
.best-of-logo {
  max-width: 72px;
  width: 100%;
}

/* Sección de filtro ciudad botones */

.park-filter-button-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.park-filter-button {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--text-color-light);
  background-color: var(--background-dark);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  padding: 5px 12px;
  gap: 12px;
  cursor: pointer;
}
.park-filter-button:hover {
  background-color: var(--main-color);
}
.icon-wrapper-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}
.park-icon-width {
  width: 26px;
}
.title-ofertas-de-ocio {
  font-size: 32px;
  line-height: 1em;
  font-weight: 700;
}

/* Parques */
.park-event-item {
  background-color: var(--background-grey);
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(191,191,191,1);
  -moz-box-shadow: 0px 0px 12px 0px rgba(191,191,191,1);
  box-shadow: 0px 0px 12px 0px rgba(191,191,191,1);
}
.park-event-item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0;
}
.park-event-item-inner-wrapper {
  padding: 12px 8px;
}

.park-event-item-inner-wrapper-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
}

.park-event-item-link:hover {
  -webkit-box-shadow: 0px 0px 16px 0px rgba(191,191,191,1);
  -moz-box-shadow: 0px 0px 16px 0px rgba(191,191,191,1);
  box-shadow: 0px 0px 16px 0px rgb(191, 191, 191);
}

.park-event-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1rem;
  margin: 0;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.park-event-item-alert {
  position: absolute;
  bottom: 56px;
  left: 8px;
  border-radius: 2px;
}
.park-event-item-alert-info {
  padding: 2px 4px;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.6px;
}
.park-event-item-recomended  {
  background-color: var(--main-color);
  color: var(--text-color-light);
}
.park-event-item-combo  {
  background-color: var(--background-combo);
  color: var(--text-color-light);
}
.park-event-item-discount  {
  background-color: var(--background-discount);
  color: var(--text-color-light);
}
.park-event-item-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.park-event-item-icon {
  position: absolute;
  right: 4px;
  top: 4px;
}
.park-event-circle-recomended {
  background-color: var(--background-combo);
}
.park-event-circle-discount {
  background-color: var(--background-discount);
}
.park-event-icon-image {
  width: 32px;
  height: 32px;
}
.park-event-item-from {
  font-size: 12px;
  font-weight: 400;
  line-height: 10px;
}
.park-event-item-price {
  font-size: 16px;
  font-weight: 700;
}
.park-event-item-price-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  align-items: flex-end;
}
.park-event-item-amount {
  font-size: 17px;
  font-weight: 700;
  line-height: 18px;
  color: var(--text-color-light)
}
.park-event-item-little-text {
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  color: var(--text-color-light)
}
.park-event-item-price-discount {
  font-size: 12px;
  font-weight: 400;
  line-height: 10px;
  text-decoration: line-through;
  color: var(--text-color-error);
}

/* Top ventas */
.top-sellers-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 8px;
}
.top-sellers-item-wrapper {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  max-width: 350px;
  max-height: 70px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(191,191,191,1);
  -moz-box-shadow: 0px 0px 12px 0px rgba(191,191,191,1);
  box-shadow: 0px 0px 12px 0px rgba(191,191,191,1);
}
.top-sellers-info-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
}
.top-seller-shadow-overlay {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0) 100%);
}
.top-sellers-image-wrapper {

}
.top-seller-info-number {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: var(--background-white) ;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color-dark);
}
.top-seller-info-event {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6px;
}
.top-sellers-event-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1em;
}
.top-sellers-event-text-info {

}

.trending-marquee {
  height: 38px;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 6px;
}

/* would need to be adjusted depending on time */
.trending-marquee .trending-marquee-one{
  animation: marquee 60s linear infinite both;
}

.trending-marquee .trending-marquee-two{
  animation: marquee-right 60s linear infinite both;
}

.trending-marquee .trending-marquee-one {
  position: absolute;
  width: max-content;
  left: 0;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.trending-marquee.go-right .trending-marquee-two {
  position: absolute;
  width: max-content;
  right: -100%;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.trending-marquee:hover div {
  animation-play-state: paused;
}

.trending-marquee-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color-dark);
  background-color: var(--background-grey);
  padding:16px;
  border-radius: 16px;
  line-height: 12px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-height: 24px;
}
.trending-marquee-link:hover {
  background-color: var(--main-color);
  color: var(--text-color-light);
}


/* add delay at the end of animation so you dont start while another div is going */
@keyframes marquee {
	from {
		left: 0;
	}
	to {
		left: -100%;
	}
}

@keyframes marquee-right {
	from {
		right: 0;
	}
	to {
		right: -100%;
	}
}

/* Parques de ocio */
.subtitle-ofertas-de-ocio {
  font-size: 1.5rem;
  line-height: 1.2em;
}
.park-texts {
  font-size: 16px;
  line-height: 1.4rem;
}


/* Footer nuevo 2024 */

.footer-events-link-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 72px;
  grid-row-gap: 0px; 
}

.footer-events-link-wrapper.four-columns {
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 144px;
}
.footer-events-link-wrapper.three-columns {
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 144px;
}

.footer-events-link-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-events-link-box-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
}
.footer-events-link-box-row-center {
  justify-content: center;
}

.footer-events-link-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 6px;
}

.footer-events-link {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
  width: fit-content;
}
.footer-events-link:hover {
  text-decoration: underline;
}
.space-padding-sm {
  padding: 1rem 0;
}
.space-padding-md {
  padding: 2rem 0;
}
.space-padding-lg {
  padding: 3rem 0;
}
.border-top {
  border-top: 1px solid var(--border-color);
}
.newsletter-form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px
}
.newsletter-form-inner-wrapper {
  width: 100%;
}
.newsletter-form-inner-wrapper-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.newsletter-form-wrapper-input {
  flex-grow: 1;
}
.newsletter-form-wrapper-input .form-control {
  width: 100%;
  border-radius: 0;
  min-height: 38px;
  border: 1px solid #fff;
  padding: 6px 16px;
}
.newsletter-form-wrapper-select {
  flex-grow: 0.2;
}
.newsletter-form-wrapper-select .suscription-select {
  width: 100%;
}
.newsletter-form-wrapper-btn {
  flex-grow: 0.2;
}
.newsletter-form-wrapper-btn .btn-news {
  width: 100%;
}
.newsletter-form-wrapper-btn .btn-news {
  border: 1px solid #fff;
  border-radius: 0;
  min-height: 38px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.newsletter-form-wrapper-btn .btn-news:hover {
  background-color: var(--main-color-dark) ;
}
.newsletter-form-wrapper-checkbox {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.newsletter-form-checkbox-text {
  color: var(--text-color-light);
  line-height: 1.2em;
}

.newsletter-form-checkbox-text .subscribe-newsletter {
  text-decoration: underline;
}

.newsletter-form-wrapper-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.newsletter-form-title {
  font-size: 2rem;
  line-height: 1em;
}

.footer-copywrite-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-events-link-box-copy {
  gap: 24px;
  align-items: center;
}











/* Footer nuevo 2024 */

/* Footer */
.footer-menu-wrapper {
  display: grid;
  grid-gap: 64px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  padding: 2rem 0;
}
.footer-menu-inner-wrapper-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 8px;
  padding: 1rem;
}
.footer-menu-title {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1em;
  margin: 0;
  margin-bottom: 8px;
}
.footer-menu-texts {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1em;
  margin: 0;
  text-decoration: none;
  color: #000000;
}
.footer-menu-texts:hover {
  text-decoration: underline;
}
.footer-copy-wrapper {
  display: grid;
  grid-gap: 64px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}
.footer-copy-inner-wrapper-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.social-icon-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.footer-padding-wrapper {
  padding: 1rem 0;
}
.scale-with-grid {
  max-width: 100%;
  height: auto;
}