:root {
    --dark-gray: #a8a8a8;
}

.banner-container {
    position: relative;
    margin-top: var(--header-height);
}

.logo-background {
    height: inherit;
    width: 100vw;
    overflow: hidden;
    bottom: 0;
    z-index: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;"
}

.titles-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-container .title-top {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: .5em;
    padding-bottom: 4px;
    color: white;
    white-space: pre;
}

.banner-container .title-bottom {
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-transform: uppercase;
    white-space: pre;
}

.banner-label-top > div:nth-child(1),
.banner-label-top > div:nth-child(2) {
    display: none;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    padding: 0 .3em;
    position: absolute;
    top: 2em;
    left: 2em;
}

.banner-label-top > div:nth-child(1) {
    border-radius: 8px;
    background-color: var(--primary);
    opacity: .6;
}

/* SLIDERSHOW */
.slide-dot-container {
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%);
    position: absolute;
}

.slide-dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot-active, .slide-dot:hover {
    background-color: #717171;
}

.slide-img, .slide-img > img {
    height: 32vw;
    object-fit: cover;
    width: 100vw;
}

/* Fading animation */
.fading {
    animation-name: fading;
    animation-duration: 1.5s;
}

@keyframes fading {
    from {opacity: .4}
    to {opacity: 1}
}

@media (min-width: 576px) {
    .banner-container .title-top {
        font-size: 30px;
    }
    .banner-container .title-bottom {
        font-size: 16px;
    }
    .slide-dot {
        height: 10px;
        width: 10px;
    }
}

@media (min-width: 992px) {
    .banner-container .title-top {
        font-size: 40px;
    }
    .banner-container .title-bottom {
        font-size: 20px;
    }
    .banner-label-top > div:nth-child(1),
    .banner-label-top > div:nth-child(2) {
        padding: 0.2em .4em;
        font-size: 20px;
        display: block;
    }
    .slide-dot {
        height: 12px;
        width: 12px;
    }
}

@media (min-width: 1200px) {
    .banner-container .title-top {
        font-size: 64px;
    }
    .banner-container .title-bottom {
        font-size: 24px;
    }
    .slide-dot {
        height: 15px;
        width: 15px;
    }
}

/* HEADER ----> resumen compra */

.header-compra {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
}

.details-banner {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
    margin-top: var(--header-height);
}

.details-banner:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: white;
}

.details-banner-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.details-banner-wrapper .title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.details-banner-wrapper .left {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.evento-imagen > img {
    height: 80px;
    margin: 0 1rem 0 2rem;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 300 / 450;
    object-fit: cover;
}

.details-banner-content {
    margin: 0 ;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

.details-banner .container {
    padding: 0;
}

.location-icon {
    align-content: center;
    margin-right: .5rem;
}

.calendar-icon {
    align-content: center;
    margin: 0 .5rem 0 1.5rem;
}

.back-button {
    cursor: pointer;
    margin: auto;
}

.resumenEvento{
    display: flex;
    font-size: 14px;
}

.resumenEvento div {
    display: flex;
    align-content: center;
}

.resumenEvento p {
    margin-bottom: 0 !important;
}

.eventoHeader-descripcion {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70vw;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text);

}

.compra-pasos {
    display: flex;
    flex-direction: row;
    margin: 1rem 1rem 1rem 6rem;
    z-index: 1;
}

.compra-paso {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    margin-right: 2rem;
}

.compra-paso-number {
    align-content: center;
    border: 2px solid var(--dark-gray);
    border-radius: 50%;
    color: var(--text);
    height: 30px;
    font-weight: bold;
    text-align: center;
    width: 30px;
}

.compra-paso-text {
    font-size: 14px;
    font-weight: bold;
}

.compra-paso-separador {
    height: 2px;
    width: 50px;
    background-color: var(--dark-gray);
    margin: auto;
}

.compra-paso.active .compra-paso-number {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
}

.compra-paso.active .compra-paso-text {
    color: var(--primary);
}


/* RESPONSIVE Smartphone*/

@media (max-width: 991px) {
    .compra-pasos {
        margin: 1rem 1rem 1rem 2rem;
    }
}

@media (max-width: 767px) {
    .compra-pasos {
        justify-content: center;
        margin: 1rem 1rem 0 2rem;
    }

    .header-compra {
        flex-direction: column;
        padding: 0;
    }
}


@media (max-width: 575px){
    .compra-paso {
        margin-right: 1rem;
    }

    .details-banner {
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
    }

    .details-banner-wrapper {
        position: relative;
        z-index: 1;
        text-align: center;
        display: flex;
        flex-direction: row;
    }

    .details-banner-content {
        display: flex;
        flex-direction: column;
        line-height: 1.2rem;
    }

    .details-banner .container {
        padding: 1rem;
    }

    .details-banner-wrapper .title {
        margin: 0;
    }

    .resumenEvento {
        flex-direction: column;
    }

    .calendar-icon {
        margin: 0 .5rem 0 0;
    }

    .location-icon {
        margin: 0 .5rem 0 0;
    }
}