.marker-name-holder {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
    color: white;
    /* filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.8)); */
    background-color: rgba(0, 0, 0, 0.5);
    font-family: "Google Sans", sans-serif;
}

.content{
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    display: none;
    opacity: 0;
    position: absolute;
    top:0;
    left:0;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
}
.content.active{
    display: flex;
    opacity: 1;
}
.btn-close{
    z-index: 6;
    cursor: pointer;
    color: white;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.329));
    font-size: 8vmin;
    position: absolute;
    top: 2.5vmin;
    right: 2.5vmin;
    line-height: 0;
}
.video-wrapper{
    width: 100%;
    max-height: 100%;
    aspect-ratio: 16/9;
    position: relative;
    z-index: 4;
    /* filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.329)); */
}
.volume-button{
    /* background-color: rgba(0, 0, 0, 0.452); */
    /* border-radius: 5px; */
    z-index: 5;
    cursor: pointer;
    color: white;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.329));
    font-size: 8vmin;
    position: absolute;
    right: 2vmin;
    bottom: 2vmin;
    display: none;
}
.volume-button.show{
    display: block;
}
.video-content{
    width: 100%;
    height: auto;
    max-height: 100%;
    /* border-radius: 5px; */
}


@media (max-width: 575.98px) { 
    .video-wrapper{
        width: 95%;
    }
}