/*
 * HostDEV Module name
 *
 * @Version 1.0
 * @author Eugeny Panikarowsky - evgenii_panikaro@mail.ru
 * @copyright © year Eugeny Panikarowsky
 * @url https://hostdev.pw/
 *
 */

.hdiml__wrapper {
    margin: 1rem 0;
}

.hdiml__wrapper--border-radius img,
.hdiml__wrapper--border-radius iframe {
    border-radius: 10px;
    background: #000;
}

.hdiml__item {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max-content !important;
    padding-bottom: 56.25%;
}

.hdiml__item .hdiml__play {
	top: 50%;
	margin-top: -45px;
}
.hdiml__item img,
.hdiml__item iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border: 0;
}

.hdiml__item img {
    object-fit: cover;
}

.hdiml__play {
    position: absolute;
	/*    top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);*/
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 90px;
    height: 90px;
    transition: .3s;
}

.hdiml__play:hover {
    transform: scale(1.1);
}

.hdiml__play--youtube {
    background-image: url('/modules/hostdev/iframemedialite/assets/youtube.svg');
}


