.oo-popup {
	position: fixed;
	display: table;
	visibility: hidden;
	opacity: 0;
	/*z-index: -1000;*/
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(6,63,81,0.9);
}

.oo-popup.open {
	visibility: visible;
	opacity: 1;
	z-index: 100000;
}

.oo-popup .oo-popup-inner {
	display: table-cell;
	vertical-align: middle;
}

.oo-popup .oo-popup-inner .oo-popup-text {
	position: relative;
	display: none;
	visibility: hidden;
	opacity: 0;
	z-index: -1000;
	max-width: 600px;
	padding: 30px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.5em;
	background-color: #ffffff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.oo-popup .oo-popup-inner .oo-popup-text.open {
	display: block;
	visibility: visible;
	opacity: 1;
	z-index: 1000;
}

.oo-popup .oo-popup-inner .oo-popup-text .close {
	cursor: pointer;
	position: absolute;
	width: 20px;
	height: 20px;
	padding: 10px;
	top: -15px;
	right: -15px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #dd3333;
	background-image: url(/wp-content/themes/dt-the7-child/images/close-x.png);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
}

@media screen and (max-width: 768px) {

	/* TABLET & MOBILE ONLY */
	
	.oo-popup .oo-popup-inner .oo-popup-text {
		max-width: 100%;
		height: 100%;
		top: 0;
		bottom: 0;
		padding: 20% 10% 10%;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	.oo-popup .oo-popup-inner .oo-popup-text .close {
		position: fixed;
		top: 15px;
		right: 15px;
	}
}