@import url("../../../index.css");

body {
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: url("../../../assets/img/MEDELLIN/FondoPodcastDianaMetaute.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


/* Volver Al Mapa */

.VolverContainer {
    width: 250px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    right: 0;
    max-height: 100px;
    padding: 0;
    margin: 0;
    top: 10px;
    border: none;
    z-index: 1;
}

.VolverContainer:hover {
    padding: 0;
}

.VolverContainer img {
    width: 40%;
    max-height: inherit;
    object-fit: contain;
}

.VolverContainer h5 {
    color: var(--mainColorTextWhite);
    font-size: 25px;
    font-weight: 800;
}

.VolverContainer h5:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}

/* Contenido */
.PrimerJuezContainer {
    position: absolute;
    z-index: 5;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60%;
    max-width: 1200px;
}

.PrimerJuezContainer video {
    position: absolute;
    width: 100%;
    object-fit: cover;
    height: 30%;
    display: block;
    margin: auto;
}

.PrimerJuezContainer h3 {
    font-size: 4.5vw;
    color: var(--mainColorTextWhite);
    z-index: 1;
}

.PrimerJuezContainer .AudioPostCast {
    width: 100%;
    background: none;

}

.MapaRelatosContainer {
    position: absolute;
    bottom: 5%;
    left: 1%;
    width: 8%;
    z-index: 5;
}

.MapaRelatosContainer img {
    width: 100%;
}

.MapaRelatosContainer img:hover {
    transform: scale(1.1);
}
/* Menu */

/*  */

.MenuContainer {
    width: 60%;
    left: 0%;
    background-position: -6rem 0;
    position: absolute;
    z-index: 1;
    top: 40%;
    background-image: url("../../../assets/img/FONDO\ BOTONES\ RELATOS.png");
    background-repeat: no-repeat;
    background-size: contain;
    padding: 1rem;
    display: none;
}

.MenuContainer2 {
    width: 10%;
    height: 260px;
    left: 0%;
    padding: 0;
    position: absolute;
    z-index: 1;
    top: 40%;
    border: none;
    background: none;
}

.MenuContainer2 img {
    width: 100%;
    height: inherit;
}

.actived {
    display: initial !important;
}

.none {
    display: none;
}

.itemMenuContimer {
    display: flex;
    margin: 1rem 0;
}

.MenuContainer .itemMenuContimer img {
    width: 25px;
    height: 25px;
}

.MenuContainer .itemMenuContimer h3 {
    color: var(--mainColorTextWhite);
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

.MenuContainer .itemMenuContimer .actived {
    color: var(--mainColorTextHover);
}

.MenuContainer .itemMenuContimer h3:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}

/* Fin menu */
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-panel {
    background-color: var(--mainColorTextWhite) !important;
    backdrop-filter: blur(300px) !important;
    color: var(--mainColorTextWhite);
}

/* Footer */

.FooterContainer {
    width: 100%;
    height: 35px;
    bottom: 0;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}

.FooterContainer a {
    margin: 0 2%;
}

.FooterContainer h6 {
    color: var(--mainColorTextWhite);
    font-size: 15px;
    font-weight: 400;
}

.FooterContainer h6:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}

/* Playing */


.playing {
    width: 100%;
    height: 7rem;
    border-radius: .3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: .5rem;
    box-sizing: border-box;
}

.playing img {
    width: 10%;
}

.rotate {
    animation: rotation 5s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.playing__bar {
    display: inline-block;
    background: white;
    width: 4%;
    height: 100%;
}

.animation {
    animation: up-and-down 1.3s ease infinite alternate;
}

.playing__bar1 {
    height: 60%;
}

.playing__bar2 {
    height: 30%;
    animation-delay: -2.2s;
}

.playing__bar3 {
    height: 75%;
    animation-delay: -3.7s;
}

.playing__bar4 {
    height: 90%;
    animation-delay: -3.1s;
}

.playing__bar5 {
    height: 55%;
    animation-delay: -3.0s;
}

.playing__bar6 {
    height: 37%;
    animation-delay: -2.1s;
}

.playing__bar7 {
    height: 15%;
    animation-delay: -2.8s;
}

.playing__bar8 {
    height: 74%;
    animation-delay: -2.9s;
}

.playing__bar9 {
    height: 70%;
    animation-delay: -3s;
}


@keyframes up-and-down {
    10% {
        height: 30%;
    }

    30% {
        height: 100%;
    }

    60% {
        height: 50%;
    }

    80% {
        height: 75%;
    }

    100% {
        height: 60%;
    }
}