.misticeasearc-thumbnail {
    position: relative;
    display: block;
    margin: 1em auto;
    max-width: 640px;
    width: 100%;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    container-type: inline-size;
}

.misticeasearc-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.misticeasearc-thumbnail .play-button {
	width: 30%;
	max-width: 60px;
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}

.play-button img {
	width: 100%;
	height: auto;
	display: block;
}



.misticeasearc-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
  background: rgba(0,0,0,0.2);
  backdrop-filter: brightness(0.2);
  -webkit-backdrop-filter: brightness(0.2);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}





.misticeasearc-popup-content {
    position: relative;
    background: #000;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 854px;
    width: 90vw;
    max-height: 90vh;
    height: auto;
}


@media screen and (max-width: 768px) {
    .misticeasearc-popup-content {
        max-width: 640px;
        width: 90vw;
        max-height: 90vh;
        height: auto;
    }
}
@media screen and (max-width: 480px) {
    .misticeasearc-popup-content {
        max-width: 95vw;
        padding: 5px;
    }
    .misticeasearc-thumbnail {
        margin: 0.5em auto;
    }
}
@media screen and (max-width: 320px) {
    .misticeasearc-popup-content {
        max-width: 98vw;
        padding: 3px;
    }
    .misticeasearc-thumbnail {
        margin: 0.3em auto;
    }
}


.misticeasearc-popup-content iframe {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    background: #000;
}


