/* ==========================================================================
   theBREWROOM Popups — frontend popup styling
   ========================================================================== */

.tbr-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	padding: 20px;
	box-sizing: border-box;
}

.tbr-popup-overlay.tbr-popup-visible {
	opacity: 1;
}

.tbr-popup-box {
	position: relative;
	max-width: 92vw;
	max-height: 88vh;
	overflow-y: auto;
	background: #fff; /* Fallback only; overridden inline per popup via the Background Color setting. */
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.25 );
	padding: 40px 32px;
	box-sizing: border-box;
	transform: translateY(12px);
	transition: transform 0.3s ease;
}

.tbr-popup-overlay.tbr-popup-visible .tbr-popup-box {
	transform: translateY(0);
}

.tbr-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	padding: 4px 8px;
}

.tbr-popup-close:hover,
.tbr-popup-close:focus {
	color: #000;
}

.tbr-popup-content img {
	max-width: 100%;
	height: auto;
}

@media ( max-width: 600px ) {
	.tbr-popup-box {
		padding: 28px 20px;
		width: 100% !important;
	}
}

/* ==========================================================================
   Admin settings panel tabs
   ========================================================================== */

.tbr-popup-tabs .tbr-tab-panel {
	padding: 20px 0 0;
}

.tbr-popup-tabs .form-table th {
	width: 220px;
}
