:root {
  --bs-body-bg: #323b7b !important;;
}

.fondo-aviso-cookies.activo {
  display: none;
}

h2 {
  font-weight: bold;
}

.img-bw {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.btn-ticket-container {
    max-width: 850px;
    height: 60px;
    gap: 1%;
}

.btn-ticket {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex: 0 0 24%;
  align-items: center;
  justify-content: center;
  padding: 8px 10px !important;
  box-shadow: rgba(0, 0, 0, 0.31) 2px 2px 7px 5px;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(10px);
  border-radius: 5px !important;
}

.btn-ticket:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid #ff4081;
}

.btn-ticket:active {
  background-color: rgba(255, 255, 255, 0.5);
}

.btn-retro {
  position: relative;
  border: 1px solid black;
  background-color: transparent;
  border-radius: 5px;
  font-weight: 700;
  z-index: 1;
}

.btn-retro:after {
  content: "";
  position: absolute;
  width: 100%;
  top: 7px;
  left: 7px;
  height: 100%;
  z-index: -1;
  background: #FE0;
  transition: all 0.35s;
  border-radius: inherit;
  box-shadow: 2px 2px 4px black;
}

.btn-retro:hover:after {
  top: 0px;
  left: 0px;
}

.blur-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(270deg, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 85%);
  mask-image: linear-gradient(270deg, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 85%);
  z-index: 0;
}

.blur-mask-inv {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(90deg, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 85%);
  mask-image: linear-gradient(90deg, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 85%);
  z-index: 0;
}

.show-card {
  padding: 20px 40px;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 400px;
  contain: layout style;
  margin-bottom: 20px;
  border-radius: 16px;
  max-width: 1320px;
  max-height: 400px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 6px 10px 4px;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 1px 2px 2px black;
}

 .show-card-title{
  text-align: center;
}

.event-content {
	display: flex;
	flex-direction: column;
    z-index: 1;
    padding: clamp(20px, 4vw, 30px);
    height: 100%;
}

.event-cards-container {
    padding: 0px;
}

.event-card {
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 400px;
  contain: layout style;
  margin-bottom: 10px;
  border-radius: 16px;
  max-width: 1320px;
  max-height: 400px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 6px 10px 4px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 85%
}

.event-card-text {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: #000000 1px 1px 5px;
  text-align: inherit;
}

.event-card-subtext {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  margin-top: -5px;
  color: #ffffff;
  text-shadow: #000000 1px 1px 5px;
  text-align: inherit;
}

.event-title {
  font-size: clamp(1rem, 5.2vw, 2rem);
  margin-bottom: 0 !important;
  text-align: inherit;
}

.event-date {
  text-align: inherit;
}

.event-city {
  font-size: clamp(0.9rem, 1.7vw, 1.1rem);
  color: #ffffff;
  margin-top: -5px;
  text-align: inherit;
}

.event-address {
  font-size: clamp(0.9rem, 1.7vw, 1.2rem);
  color: #ffffff;
  margin-top: -10px;
  text-align: inherit;
}

.event-price {
  font-size: clamp(0.5rem, 4vw, 1.2rem);
  font-weight: bold;
  color: #ffffff;
  text-shadow: #000000 1px 1px 5px;
  text-align: inherit;
}

.event-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: normal;
  color: #fff;
  background: #ff4081;
  z-index: -1;
}

.right-align {
  text-align: right !important;
  background-position: 15% !important;
}

.card-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.card-row > .event-card {
  flex: 1 1 48%;
  min-width: 280px;
}

@media (max-width: 992px) {
  .card-row {
      display: inherit;
  }
}

@media (max-width: 768px) {
    .btn-ticket {
    flex: 1 1 45%;
    }
    .blur-mask, .blur-mask-inv {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    -webkit-mask-image: none;
    mask-image: none;
    }
    .event-card .btn-ticket-container {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    }
  
    .event-card.right-align .btn-ticket-container {
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-start;
    }
}

@media (max-width: 400px) {
    .btn-ticket {
    flex: 1 1 100%;
    }
    .event-card .btn-ticket-container {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    }
  
    .event-card.right-align .btn-ticket-container {
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-start;
    }
}