body {
    font-family: Arial, sans-serif;
}

*{margin: 0; padding: 0}

#ad {
    display: block;
    overflow: hidden;
    width: 970px;
    height: 250px;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

#banner {
    position: absolute;
    display: block;
    width: 970px;
    height: 250px;
    background-color: #000;
    overflow: hidden;
}

#border {
	position: absolute;
	top: 0px;
	left: 0px;
  width: 970px;
  height: 250px;
	border: 1px solid #000;
	box-sizing: border-box;
	pointer-events: none;
	cursor: default;
}


/************************
CREATIVE CONTENT STYLES
************************/
#canvas {
	pointer-events: all;
	cursor: pointer;
}

#video-container{
	position: absolute;
  top: 0px;
  left: 600px;
	width: 370px;
	height: 250px;
	opacity: 0;
  display: none;
	transition: opacity .6s ease;
}
#video-container.fadeIn {
	opacity: 1;
}

.video-container {
    visibility: hidden;
}

video {
    height: 100%;
    width: 100%;
}

.ios-center-video-controls video::-webkit-media-controls {
    min-width: 0;
}
.sdk .sdk-video-player {
    height: 100%;
    width: 100%;
    position: relative;
    background-size: cover;
}
.sdk .sdk-video-player-button {
    cursor: pointer;
    position: absolute;
    width: 55px;
    height: 55px;
    background-size: cover;
}

#replayBtn {
	position: absolute;
	width: 370px;
	height: 250px;
	top: 0px;
  right: 0px;
	display: none;
	opacity: 0;
	transition: opacity .6s ease;
	cursor: pointer;
	pointer-events: all;
	box-sizing: border-box;
	background: url('images/play_video_button.png') no-repeat center;
}

#replayBtn.fadeIn{
	opacity: .5!important;
}

#replayBtn:hover {
	opacity: 1!important;
}
