:root {
	--banner-width-1: 300px;
    --banner-height-1: 250px;
    --banner-width-2: 300;
	--banner-height-2: 250;
}

* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    mobile webkit -moz-tap-highlight-color: rgba(255, 255, 255, 0);
    -ms-tap-highlight-color: rgba(255, 255, 255, 0);
    tap-highlight-color: rgba(255, 255, 255, 0);
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
    -webkit-perspective: 200px;
    -moz-perspective: 200px;
    -ms-perspective: 200px;
    perspective: 200px;
}

body {
    line-height: 1;
}

div {
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.exit {
    position: absolute;
    cursor: pointer;
    width: var(--banner-width-1);
    height: var(--banner-height-1);
    left: 0px;
    top: 0px;
    z-index: 10;
}

.main {
    background-color: #ffffff;
    visibility: hidden;
    overflow: hidden;
    cursor: pointer;
    width: var(--banner-width-2);
    height: var(--banner-height-2);
    left: 0px;
    top: 0px;
}

.frame {
    position: absolute;
    cursor: pointer;
    width: var(--banner-width-1);
    height: var(--banner-height-1);
}

.frame .base-element {
    position: absolute;
    top: 0;
    left: 0;
}

.frame .image-element {
    height: auto;
    opacity: 0;
}

.frame .background-element {
    height: auto;
}

.frame .text-element {
    padding: 0 10px;
    opacity: 0;
}

.frame .cta-element {
    text-align: center;
    line-height: normal;
    color: #ffffff;
    background: #000000;
    border-radius: 6px;
    padding: 6px 30px 6px 30px;
    font-size: 10px;
    font-family: Nunito, Arial;
    opacity: 0;
}

.frame .video-element {
    opacity: 0; 
}

.fixed-frame {
    visibility: visible;
}

.fixed-frame .fixed-element {
    position: fixed;
    top: 0px;
    left: 0px;
}

.fixed-frame .fixed-element-video {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.element-visible {
    opacity: 1 !important;
    display: block !important;
}

.element-not-visible {
    opacity: 0 !important;
    display: none !important;
}