.modal_gobo {
	/** black bg between page and modal */
	background-color: rgba(0,0,0,0.7);
}
.modal_box_large {
	width:50%;
	height:50%;
	position: fixed;
	top: 50%;
	background-color: white;
	left: 50%;
	transform: translate(-50%, -70%);
	border:1px solid #efefef;
	z-index:1000;
}
.modal_box_large.modal_clip_play {
	height:inherit;
}
.modal_box_small {
	position: fixed;
	transform: translate(-50%, -70%);
	background-color: white;
	top: 30%;
	left: 50%;	
	z-index:1000;
	height:120px;
	width:250px;
	border:1px solid #efefef;


}

.confirmation_modal {
	position: fixed;
	transform: translate(-50%, -50%);
	background-color: white;
	top: 50%;
	left: 50%;
	z-index:1000;
	min-width: 250px;
	max-width: 50%;
	border:1px solid #efefef;
}

.confirmation_box {
	margin: 30px;
}

.confirmation_button_holder {
	margin-top: 7px;
}

.confirmation_button_holder > button {
	cursor: pointer;
	border-radius: 4px;
	border-style: none;
	padding: 7px;
	margin: 0 7px 0 0;
}

.confirmation_button_holder > button:hover {
	background-color: #c2c2c2;
}

.modal_box_large_inner {
	padding:20px;
}
.modal_gobo {
	position: fixed;
	width:100%;
	height: 100%;
	z-index:999;
	top:0;
	left:0;
	background-color: rgba(0,0,0,0.05);
}

.floating_close_lnk {
	float:right;
	text-decoration: none;
	font-size:18px;
	font-weight: bold;
	width:40px;
	text-align: right;
	text-decoration: none;
	color:#333;
	margin:10px 20px 5px 10px;
	cursor: pointer;
}
.floating_close_lnk:hover {
	text-decoration: none;
	color:#3cbcfe;
}
.video_loading_box {
	/*text-align: center;*/
	text-indent: 10px;
	padding-top:30px;
	width:100%;
}


.motion_grid {
    width: 640px;
    height: 360px;
    position: absolute;
    top: 36px;
    left: 20px;
    pointer-events: none;
}

.motion_grid .row {
    height: 20%;
}

.motion_grid .cell {
    float: left;
    background: rgb(255, 0, 0);
    opacity: 0;
    width: 11.111%;
    height: 100%;
    transition: opacity 0.8s;
    box-sizing: border-box;
    border: 1px solid black;
}

.motion_grid .cell.active {
    opacity: 0.3;
    transition: opacity 0s;
}
