<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div.videobox {
    position: absolute;
    z-index: 6;
    top: 70px;
    left: 70px;
    width: 520px;
    height: auto;
    border: 1px white solid;
    background: black;
    display: none;
    overflow: hidden;
}

.videobox video{
    width: 100%;
    height: auto;
    outline: 0;
    position: relative;
    bottom: -3px;
}

.videobox .viddragger {
    position: absolute;
    display: block;
    width: 100%;
    height: 95%;
    top: -40px;
    background: none;
    opacity: 0.6;
}


@media (max-width: 1026px) {
	.videobox .viddragger {
		height: calc(100% - 80px);
		top: 40px;
	}
}

.videoclose {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    /* background: rgba(128,128,128,0.6); */
    width: 40px;
    height: 40px;
    color: white;
    font-size: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.AtlasViewMediaItem::before {
    content: '';
    position: absolute;
    background-image: url('../images/measurements/video.png');
    background-size: contain;
    width: 25%;
    height: 25%;
    background-repeat: no-repeat;
    z-index: 2;
}

.videobox &gt; .ui-resizable-e {
    width: 12px;
}
.videobox &gt; .ui-resizable-s {
    height: 12px;
}

/* Play/Pause circle btn */
.videobox .playcircle {
    width: 64px;
    height: 64px;
    position: absolute;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
    z-index: 2;
    background: white;
    clip-path: circle();
    color: black;
    margin-top: -10px;
    cursor: pointer;
    display: none;
}
.videobox .playcircle:before {
    content: '\25BA';
    vertical-align: bottom;
    line-height: 160%;
    font-size: 333%;
    text-align: center;
    width: 108%;
    height: 100%;
    display: inline-block;
    background: none;
}
.videobox .playcircle[state=paused]:before {
    content: '\25BA';
    transform: scale(.8,1);
}
.videobox .playcircle[state=playing]:before {
    content: '=';
    width: 100%;
    font-weight: bold;
    line-height: 150%;
    transform: scale(1,1) rotate(90deg);
    margin-left: 12%;
    font-size: 444%;
    margin-top: 2%;
}


/*********************************************************************************************************/
/********************************************* IE 10+ Specific *******************************************/
/*********************************************************************************************************/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.videobox .playcircle[state=playing]:before {
        font-size: 54px;
    }
}
</pre></body></html>