/*
* @version      1.0.0 13.05.2024
* @author       MAXXmarketing GmbH
* @package      tpl_maxx
* @copyright    Copyright (C) 2010 webdesigner-profi.de. All rights reserved.
* @license      GNU/GPL
*/

.tpl_popup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	align-items: center;
	justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    overflow: auto;
	z-index: 10000;
}

.tpl_popup > .wrap {
    position: relative;
    max-height: 90dvh;
	max-width: 90dvw;
}

.tpl_popup > .wrap > .content {
    background: #ffffff;
}

.tpl_popup > .wrap > .content > video {
	display: block;
	max-width: 90dvw;
	max-height: 90dvh;
}

.tpl_popup > .wrap > .closer:after {
    content: '×';
    position: absolute;
    top: -25px;
    right: -25px;
    vertical-align: top;
    font-size: 50px;
    cursor: pointer;
    color: #ffffff;
}

.tpl_popup > .wrap > .closer:hover:after {
    opacity: 0.9;
}