.table-danger, .table-danger>td, .table-danger>th {
    background-color: #f5c6cb;
}.table-success, .table-success>td, .table-success>th {
    background-color: #c3e6cb;
}
.particula {
    width: 12px;
    height: 12px;
    background: black;
    border-radius: 50%;
    position: absolute;
}

.particula[data-padre="false"] {
    width: 6px;
    height: 6px;
}
.scrolling-div {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  transition: transform 2s ease; /* Duración y tipo de transición */
  transform: translateX(100%); /* Inicialmente, mueve el contenido hacia la derecha */
}
@media (min-width: 1200px){
    .text-card-equal{
        height: 460px;
    }
}
@media (max-width: 1199px){
    .text-card-equal{
        height: 600px;
    }
}
@media (max-width: 991px){
    .text-card-equal{
        height: unset;
    }
}
@media (min-width: 768px) {
  #logo-wwp {
    position: fixed;  /* Posición fija en la pantalla */
    right: 20px;      /* Alineada a la derecha con 20px de margen */
    bottom: 20px;     /* Alineada abajo con 20px de margen */
    z-index: 1000;
    width: 75px;    /* Asegura que esté sobre otros elementos */
  }
}
@media (max-width: 767px) {
  #logo-wwp {
    position: fixed;  /* Posición fija en la pantalla */
    right: 20px;      /* Alineada a la derecha con 20px de margen */
    bottom: 20px;     /* Alineada abajo con 20px de margen */
    z-index: 1000; 
    width: 55px;/* Asegura que esté sobre otros elementos */
  }
}

.fadeOut {
        animation: fadeOutAnimation 0.75s;
            opacity: 0;
}
@keyframes fadeOutAnimation {
    from {
                opacity: 1;
    }
    to {
                opacity: 0;
    }
}
.capa-translucida {
    cursor: pointer;
    position: absolute; /* Establece una posición absoluta para que la capa se superponga al contenedor. */
    top: 0;
    left: 0;
    width: 100%; /* Opcional: ajusta el ancho al 100% del contenedor. */
    height: 100%; /* Opcional: ajusta la altura al 100% del contenedor. */
    background-color: rgb(0 0 0 / 78%); /* Define un fondo gris semitransparente. El último valor (0.5) determina la opacidad. 0 es completamente transparente, 1 es completamente opaco. */
    /*display: flex;  Permite centrar el texto verticalmente y horizontalmente. */
    justify-content: center; /* Centra horizontalmente. */
    align-items: center; /* Centra verticalmente. */
    z-index: 50;
}
@media (max-width: 768px){
    .text-price{
        font-size: 1.7em;
    }
}
@media (max-width: 768px){
    .text-price-original{
        font-size: 1.35em;
    }
}
@media (min-width: 769px){
    .text-price{
        font-size: 1.3em;
    }
}
@media (min-width: 769px){
    .text-price-original{
        font-size: 1em;
    }
}
.capa-translucida p {
  color: white; /* Color del texto dentro de la capa. */
  font-size: 24px; /* Tamaño de fuente del texto. */
  text-align: center; /* Alinea el texto al centro. */
  padding: 20px; /* Espaciado interno para el texto (opcional). */
    font-weight: 500;
}
.calendar-success{
    background-color:#d1e7dd;
}
.calendar-warning{
    background-color:#fff3cd;
}
.calendar-danger{
    background-color:#f8d7da;
}
.calendar-selected{
    background-color:#f8d7da;
}
.selected-day {
    border: 2px solid #507db4;
    background-color: #d6eaff;
}
.text-success {
    color: #28a745!important;
}
.text-danger {
    color: #dc3545!important;
}

.btn-search:hover {
    cursor: pointer; /* Agregar un borde de 1px en color gris (#CCC) */
}
@media (max-width: 768px){
    .search-calendar{
        width:100%;
        display: flex;
        /*gap: 5px;*/
        border-radius: 21px;
        padding: 10px 20px;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        margin-right: auto;
        margin-left: auto;
        margin-top: calc(-1 * var(--bs-gutter-y));
        
        flex-wrap: wrap;
    }
}
@media (min-width: 768px){
    .search-calendar{
        width:85%;
        display: flex;
        /*gap: 5px;*/
        border-radius: 21px;
        padding: 10px 20px;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        margin-right: auto;
        margin-left: auto;
        margin-top: calc(-1 * var(--bs-gutter-y));
        flex-wrap: nowrap;
    }
}
@media (min-width: 992px){
    .search-calendar{
        width:75%;
        display: flex;
        /*gap: 5px;*/
        border-radius: 21px;
        padding: 10px 20px;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        margin-right: auto;
        margin-left: auto;
        margin-top: calc(-1 * var(--bs-gutter-y));
    }
}
@media (max-width: 576px){
    .col-calendar{
        width:100%;
        white-space: nowrap;
    }
}
@media (min-width: 576px){
    .col-calendar{
        width:33.333333333%;
    }
}
@media (max-width: 768px){
    .calendar-2{
        width:100%;
    }
}
@media (min-width: 768px){
    .calendar-2{
        width:50%;
    }
}

.collapseBooking {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    transition: min-height 0.4s ease-in-out;
}

@media (max-width: 576px){
    .collapseBooking.open {
        max-height: 100vh;
        overflow: auto; /* Agrega un scroll si el contenido es más alto que la pantalla */
        background-color: white;
        z-index: 100;
        overflow: auto; 
        position: absolute;
        max-width: calc(100vw - 5%);
    }
}

@media (min-width: 576px){
    .collapseBooking.open {
        max-height: 100vh; /* Ajusta la altura máxima según tus necesidades */    
        position: absolute;
        background-color: white;
        width: 100%;
        z-index: 100;
    }
}
.map {
      overflow: hidden;
      position: relative;
      max-width: 650px;
      height: 500px
    }
    .svg-map{
        cursor: move; 
        user-select: none; 
        touch-action: none; 
        transform-origin: 50% 50%; 
        transition: none 0s ease 0s; 
        transform: scale(1.5) translate(1.7824px, 121.525px);
    }
    .st0{opacity:0.38;fill:#BEA180;}
    .st1{opacity:0.51;fill:#768B7E;enable-background:new    ;}
    .st2{opacity:0.75;fill:#BEA280;enable-background:new    ;}
    .st3{opacity:0.75;fill:#A69981;enable-background:new    ;}
    .st4{opacity:0.4;fill:#FFFFFF;enable-background:new    ;}
    .st5{fill:none;}
    .st6{fill:#020203;}
    .st7{font-family:'Pristina';}
    .st8{font-size:60px;font-weight: 700;}
    .st9{font-size:43px;font-weight: 700;}
    .st10{font-size:38px;font-weight: 700;}
    .st11{font-size:46px;font-weight: 700;}
    .st12{font-size:37px;font-weight: 700;}
    .st13{fill:#FFFFFF;stroke:#020203;stroke-miterlimit:10;}
    .st15{font-size:31px;font-weight: 700;}
    

    
    
    .st5-disable{
        fill:#b8b8b8;
        stroke:#000000;
        stroke-miterlimit:10;}
    .st5-selected {
        fill: rgb(80 172 101);
        stroke: #ebebeb;
        stroke-miterlimit: 10;
    }
    .map-info{
        filter: url(#shadow);
        transition: transform 0.2s; /* Transición suave para la propiedad transform */
        transform-origin: center center;
    }
    .map-info:hover {
        transform: scale(1.025);
        cursor: pointer; /* Agregar un borde de 1px en color gris (#CCC) */
    }
      .bgl-press {
        opacity: 1; /* Cambiar la opacidad en el hover */ /* Aumentar el tamaño en un 10% */
        border: 2px solid #CCC;
        width: 46.56px;
        height: 43.48px; /* Agregar un borde de 1px en color gris (#CCC) */
      }
#from-date-text-search,
#to-date-text-search,
#checkin-label,
#checkout-label,
#clickableDiv {
    transition: width 0.35s; /* Transición de 0.3 segundos para el cambio de ancho */
}
.full-width {
    width: 100% !important;
}
.row-o {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: unset; 
    margin-left: unset;
}
.hr {
    margin-bottom: 10px;
    margin-top: 10px;
    height: 1px;
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 5%, rgba(204,204,204,1) 50%, rgba(0,0,0,0) 100%);
}
.bg-delta-1 {
    background: #bcb290;
}
.bg-delta-2 {
    background: #b3a780;
}
.bg-delta-3 {
    background: #a99c70;
}
.bg-delta-4 {
    background: #A09261;
}
.shadow-navbar{
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.26);
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 350;
}
.zoom-image {
    transition: transform 0.3s ease;
}
.zoom-image-lg {
    transition: transform 0.3s ease;
}
.zoom-image:hover {
    transform: scale(1.1);
}

@media (min-width: 768px){
    .zoom-image-lg:hover {
        transform: scale(1.4);
    }
}@media (max-width: 767px){
    .zoom-image-lg:hover {
        transform: scale(1.08);
    }
}
.img-shadow-1 {
    box-shadow: 0px 1px 8px 8px rgba(0, 0, 0, 0.1);
}
.section {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

.bb-4 {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.bb-5 {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.bt-5 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.b-5{
    border-radius: 5px;
}
.hr-sm {
    margin: .45rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
}
.border-black {
    --bs-border-opacity: 1;
    border-color: #9a9a9a!important;
}
.btn-info-secondary {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.carousel-home{
    justify-content: center;
    display: flex;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
@media (max-width: 768px){
    .btn-delete {
        width: 50%
    }
}
.pagination-calendar{
    display: flex;
    /* align-items: center; */
    justify-content: center;
}
.nav-pers{    
    color: #4b4b4b;
    font-size: 1.2em;
    font-weight: 500;
}
.nav-pers:hover{    
    color: #4b4b4b;
    font-size: 1.2em;
    font-weight: 600;
}
.calendar-day-sm{
    border: 1px solid #bebebe;
    width: 100%;
    height: 4.1em;
    font-size: 1em;
    font-weight: 625;
    min-width: 6em;
}
.calendar-day-sm:hover{
    border: 1px solid #000000;
    width: 100%;
    height: 4.1em;
    font-size: 1em;
    font-weight: 625;
    min-width: 6em;
}
.calendar-day-sm:active {
    border: 1px solid #000000;
    width: 100%;
    height: 4.1em;
    font-size: 1em;
    font-weight: 625;
    min-width: 6em;
}
.calendar-day{
    border: 1px solid #a3a3a3;
    width: 100%;
    height: 4.1em;
    font-weight: 400;
}
.calendar-day:hover{
    border: 1px solid #253B56;
    width: 100%;
    height: 4.1em;
    font-weight: 400;
}
.calendar-day:active {
    border: 1px solid #a5d4ee;
    width: 100%;
    height: 4.1em;
    font-weight: 400;
}
.selected {
    border: 2px solid #507db4;
    background-color: #d6eaff;
}
@media (min-width: 768px){
    .calendar-container {
        max-width: 10em;
    }
}
@media (min-width: 768px){
    .calendar-label-day {
        font-size: 0.8em;
        color: #343a40;
        font-weight: 750;
    }
}
@media (max-width: 768px){
    .calendar-label-day {
        font-size: 0.55em;
        color: #343a40;
        font-weight: 800;
    }
}
@media (max-width: 460px){
    .calendar-label-day {
        font-size: 0.5em;
        color: #343a40;
        font-weight: 800;
    }
}
.bg-light {
    background-color: #eeefef!important;
}
.animated {
    animation: animate 
        1.25s linear infinite;
}
@keyframes animate {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.animated-slow {
    animation: animate-slow 
        1.25s linear infinite;
}
@keyframes animate-slow {
    0% {
        opacity: 0.33;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.33;
    }
}

.animated-slow2 {
    animation: animate-slow 
        1.25s linear infinite;
}
.animated-slow3 {
    animation: animate-slow 
        1.65s linear infinite;
}
@keyframes animate-slow {
    0% {
        opacity: 0.50;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.50;
    }
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 0.375rem;
}
.img-shadow-1 {
    box-shadow: 0px 1px 8px 8px #d4c2ae;
}
hr {
    margin: 1rem 0;
    color: #d4c2ae !important;
    border: 0;
    border-top: 2px solid;
    opacity: 0.65;
}
.nav-link:hover {
  border-bottom: 3px solid #d4c2ae;
}

/*LOADER*/
.loader {
            border: 16px solid #f3f3f3;
            border-radius: 50%;
            border-top: 16px solid #A09261;
            width: 120px;
            height: 120px;
            -webkit-animation: spin 1s linear infinite; /* Safari */
            animation: spin 1s linear infinite;
          }
          
        /* Safari */
        @-webkit-keyframes spin {
          0% { -webkit-transform: rotate(0deg); }
          100% { -webkit-transform: rotate(360deg); }
        }

        @keyframes spin {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
        }
        
.card-columns-custom{
    display:inline-block;
    column-count: 3;
    background:#fff;
    border-radius:5px;
    margin-bottom:1em;
    font-weight:bold;
    color:#666
}
.card-columns-custom .img-card{
  width:100%;
    height:auto;
    object-fit:cover;
    border-radius:5px 5px 0 0;
    margin-bottom: 10px;
}
.topnav a {
  float: left;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  border-bottom: 3px solid transparent;
}
.topnav a:hover {
  border-bottom: 2px solid white;
}

.topnav a.active {
  border-bottom: 2px solid white;
}
.tratam:focus,
.tratam:active {
  
  background-color: rgb(235, 230, 230) !important;
  border-color:rgb(235, 230, 230) !important;
}
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}


/*OTHER*/
/*
@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }
} */
.card-footer2 {
    padding: .75rem 1.25rem;
}
.card2 {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
}

.no-mb{
    margin-bottom: 0rem;
}
.no-m-med{
    margin: 0.5em 0.5em 0.5em 0.5em;
}
/* BOTONES */
.btn-primary {
    background: #660033c2;
    border-color: #fff;
    color: #fff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  
  background-color: #660033 !important;
  border-color:white !important;
  box-shadow: 0 0 0 0.2rem #410021 !important;
}
.btn-primary-search {
  background: #BFB388;
  border-color: #fff;
  color: #fff;
}
.btn-primary-search:hover,
.btn-primary-search:focus,
.btn-primary-search:active {
  
  background-color: #ad9c5d !important;
  border-color:#ad9c5d !important;
  box-shadow: 0 0 0 0.2rem rgba(224, 213, 160, 0.5) !important;
  color: #fff;
}
.centert{
  justify-content: center;
  align-items: center;
}

.btn-danger{
  background: #d9534f;
}
.btn-warning{
    background: #fff3cd;
    border-color: #a0a0a0;
}
.btn-warning:hover{
  background: #ffe8cd;
    border-color: #a0a0a0;
}

/* BACKGROUND DE TODOS LOS COLORES */
.bg-hs{
  background: #231b53;
}
.bg-hs-light{
  background: #504883;
}
.bg-delta-2{
  background: #E4DBBA;
}
.bg-delta-3{
  background: #BFB388;
}
.bg-delta-4{
  background: #A09261;
}
/*TODOS LOS TITULOS */
h1{
  color:#253B56;   
  font-weight: 350;
}
h4{
  color:#253B56;   
  font-weight: 500;
}
h5{
  color:#253B56;   
  font-size: 1.1rem;
}
h2{
  color:#253B56;
}
@media screen and (max-width: 764px) {
    .h1-index{
      color: #fff;
      font-size: 1em;
    }
    .centeri{
      align-items: center;
      margin-left: 5px;
    }
    .tamaño{
      width:50%;
      font-size: 75%;
    }
}
@media screen and (min-width: 764px) {
    .h1-index{
      color: #fff;
    }
}
@media screen and (max-width: 992px) { /*logos*/
  .centrarr{
    width:20%;
    display:flex; 
    margin:0 auto;
  }
  .tamaño{
    font-size: 75%;
  }
  .tamañoo{
    width:150%;
    padding-right:10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) { /*logos*/
  .display{
    display: none;
  }
  .solo-texto{
    font-size:0.7rem!important;
  }
  .promo-texto{
    font-size:0.7rem!important;
  }
  .tachado-texto{
    font-size:0.7rem!important;
  }
  .booking-precio{
    font-size:0.9rem!important;
  }
  .dia_booking{
    font-size:1.2rem!important;
  }
}
@media screen and (max-width: 460px) { /*logos*/
  .solo-texto{
    font-size:0.6rem!important;
  }
  .tachado-texto{
    font-size:0.6rem!important;
  }
  .booking-precio{
    font-size:0.72rem!important;
  }
  .promo-texto{
    font-size:0.60rem!important;
  }
  .calendar-day {
    font-size: 1em!important;
  }
}

@media screen and (max-width: 440px) { /*logos*/
  .solo-texto{
    font-size:0.6rem!important;
  }
  .tachado-texto{
    font-size:0.6rem!important;
  }
  .booking-precio{
    font-size:0.67rem!important;
  }
  .promo-texto{
    font-size:0.60rem!important;
  }
  .calendar-day {
    font-size: 0.9em!important;
  }
}
@media screen and (max-width: 415px) { /*logos*/
  .solo-texto{
    font-size:0.6rem!important;
  }
  .tachado-texto{
    font-size:0.6rem!important;
  }
  .booking-precio{
    font-size:0.67rem!important;
  }
  .promo-texto{
    font-size:0.60rem!important;
  }
  .calendar-day {
    font-size: 0.80em!important;
  }
}
@media screen and (max-width: 400px) { /*logos*/
  .solo-texto{
    display: none;
  }
  .tachado-texto{
    font-size:0.51rem!important;
  }
  .booking-precio{
    font-size:0.61rem!important;
  }
  .promo-texto{
    font-size:0.55rem!important;
  }
  .calendar-day {
    font-size: 0.75em!important;
  }
}
@media screen and (max-width: 325px) { /*logos*/
  .tachado-texto{
    font-size:0.45rem!important;
  }
  .booking-precio{
    font-size:0.51rem!important;
  }
  .promo-texto{
    font-size:0.5rem!important;
  }
}
/* LINKS */
a{
  color: #0078d2;
}
a:hover{
  color: #0078d2;
  text-decoration: none;
}
/* FOOTER */
.font-title {
    font-family: 'AstonScript', sans-serif;
    /* Agrega otros estilos según sea necesario */
}
#mainFooter {
  padding: 40px 0 20px 0;
  background: #A09261;
}
#footerRights{
  background: #000;
  color: #fff;
}
/* MARGIN INDEX */
.mt-6{
  margin-top: 5rem!important;
}
.mt-6-5{
  margin-top: 6rem!important;
} 
.my-6{
  margin-top: 5rem!important;
  margin-bottom: 3rem!important;
}
.mb-6{
  margin-bottom: 5rem!important; 
}
/* MARGIN TODAS LAS PAGS */
.mt-7{
  margin-top: 8rem!important;
}
.mt-8{
  margin-top: 10rem!important;
}
.my-7{
  margin-top: 8rem!important;
  margin-bottom: 3rem!important;
}/*
.my-8{
  margin-top: 3rem!important;
  margin-bottom: 3rem!important;
}*/
.mb-7{
  margin-bottom: 7rem!important; 
}
/* BR */
@media screen and (min-width: 764px) {
  .title-foto{
    width: 500px;
  }
}
@media screen and (max-width: 764px) {
  .title-foto{
    width: 370px;
  }
}
@media screen and (max-width: 381px) {
  .title-foto{
    width: 270px;
  }
}
@media screen and (max-width: 764px) {
  .text-discount{
    width: 80%;
  }
  .img-discount{
    width: 60%;
  }
  .img-certif{
    width: 40%;
  }
}
@media screen and (min-width: 764px) {
  .text-discount{
    width: 50%;
  }
  .img-discount{
    width: 50%;
  }
  .btnright{
    justify-content: left;
    margin-left: 110px;
  }
}
@media screen and (min-width: 992px) {
  .card-title{
    font-size: 80%;
  }
  .img-discount{
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .text-discount{
    width: 75%;
  }
  .img-discount{
    width: 80%;
  }
}
/*INDEX LETRAS HOME*/
.thumbnail { 
    position: relative; 
} 
.caption { 
    position: absolute; 
    top: 34%; 
    left: 0; 
    width: 100%;
    color: white;
} 

.bg-transparent{
    background: transparent;
}
.nav-pers-home {
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 400;
}
.video-home{
    height: 100vh;
    justify-content: center;
    display: flex;
    overflow: hidden;
}
.video-home .button-down{
    animation: sdb 1.5s infinite;
    color: #ffffff;
    z-index: 100;
    position: absolute;
    display: inline-block;
    bottom: 0;
    cursor: pointer;
}
@-webkit-keyframes sdb {
  0%{
      -webkit-transform:  translateY(0);
  }
  20%{
      -webkit-transform:  translateY(-20px);
  }
  40%{
      -webkit-transform:  translateY(0);
  }
}

@keyframes sdb {
  0%{
      transform: translateY(0);
  }
  20%{
      transform: translateY(-20px);
  }
  40%{
      transform: translateY(0);
  }
}
.video-home video{
  object-fit: cover;
  width: 100%;
}
.dropdown-item-white {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 450;
    color: black;
    text-align: inherit;
    white-space: nowrap;
    background-color: #ececec;
    border: 0;
}
.card-body-disney {
    flex: 1 1 auto;
    /* padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x); */
    color: var(--bs-card-color);
    padding: 0.25em;
}

.day-button{
  background: white;
  border-radius: 0.75rem;
  width: 60px;
  border: 3px solid #c5c5c5;
  font-weight: 600;
  font-size: 1.25em;
}
.day-button:hover{
  background:#dadada!important;
  border-radius: 0.75rem;
  width: 60px;
  border: 3px solid #c5c5c5;
  font-weight: 600;
  font-size: 1.25em;
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
}
.day-button-active{
    font-size: 1.25em;
    border-radius: 0.75rem;
    width: 60px;
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: normal;
    color: #ffffff;
    border: 3px solid #c5c5c5;
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;

}

.hr {
    margin-bottom: 10px;
    margin-top: 10px;
    height: 1px;
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 5%, rgba(204,204,204,1) 50%, rgba(0,0,0,0) 100%);
}

.ticket-selected{
    border: 6px solid;
    border-color: #6ccbff;
}
.partyMix { padding: 0px; width: min-content; display: block; vertical-align: middle; white-space: nowrap; }
.partyMix.hide { display: none; }
.partyMix .short { width: 50%; }
.partyMix .partyMix_label { margin: 0px 6px; vertical-align: middle; font-size: 12px; font-family: Avenir-Heavy, sans-serif; text-align: left; font-weight: normal; color: rgb(37, 48, 80); }
.partyMix_label_container { line-height: 1; }
.partyMix .partyMix_span:focus { color: rgb(37, 59, 86); }
.partyMix .partyMix_value { vertical-align: middle; font-weight: 200; border: 0px; width: 50px; height: 50px; margin: 0px; text-align: center; padding: 0px; }
.webfont-char { font-family: pepmdx, sans-serif; text-rendering: geometricprecision; padding-top: 16.8px; }
.partyMix-counter { margin-top: 4px; border: 1px solid rgb(138, 155, 174); border-radius: 4px; background-color: rgb(255, 255, 255); }
.partyMix.partyMix-container { display: flex; }
.partyMix ._Color { height: 40px; margin: 0px; }
.partyMix-separator { display: inline-block; background-color: rgb(228, 232, 236); width: 1px; height: 24px; margin: 8px 0px; }
.partyMix-mask { font-size: 14px; font-family: Avenir-Roman, sans-serif; text-align: center; color: rgb(37, 48, 80); background: rgb(255, 255, 255); border-radius: 4px; width: 32px; height: 32px; margin: 4px; }
.partyMix-mask:hover:not([disabled]) { background-color: rgb(229, 236, 253); z-index: 10; }
.partyMix-mask:hover:active, .partyMix-mask:active { background-color: rgb(187, 194, 213); }
.partyMix-mask.selected { font-family: Avenir-Heavy, sans-serif; color: rgb(255, 255, 255); background: linear-gradient(45deg, rgb(0, 51, 204) 0%, rgb(0, 91, 255) 100%); z-index: 10; }
.partyMix-mask.non-eligible, .partyMix-mask:disabled, .partyMix-mask[disabled] { background-color: rgb(240, 242, 244); margin: 0px; width: 40px; height: 40px; }
.partyMix-mask:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }
.partyMix-mask:last-child { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.partyMix .partyMix_span { border-radius: 50%; height: 34px; width: 34px; text-indent: -5.5px; }
.partyMix .partyMix_value { font-size: 35px; width: 40px; }
.boltStore .partyMix { margin: 0px 0px 0px 50px; }
.boltStore .partyMix:first-child { margin: 0px; }
.boltStore .partyMix .partyMix_value { border-radius: 6px; box-shadow: rgb(119, 119, 119) 0px 1px 3px 0px; width: 130px; }
.boltStore .partyMix .partyMix_value:focus { box-shadow: rgb(29, 150, 215) 0px 0px 4px 1px; }