/* BASE POPUP */
.bw-popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
}

.bw-popup.active {
	display: block;
}

/* OVERLAY */
.bw-popup-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.7);
}

/* WINDOW */
.bw-popup-window {
	position: relative;
	max-width: 900px;
	width: 90%;
	max-height: 90vh;
	margin: 5vh auto;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

/* CONTENT */
.bw-popup-content {
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px;
}

/* SCROLL LOCK */
body.bw-popup-open {
	overflow: hidden;
}

/* CLOSE BUTTON */
.bw-popup-close {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 30px;
	background: none;
	border: none;
	cursor: pointer;
	color: #ccc;

	transition: none !important;
	outline: none;
}

.bw-popup-close:hover,
.bw-popup-close:active,
.bw-popup-close:focus {
	color: #ccc !important;
	background: none !important;
	transform: none !important;
	opacity: 1 !important;
	box-shadow: none !important;
	outline: none !important;
}

/* TRIGGER */
.bw-popup-trigger {
	cursor: pointer;
}