#cwt-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, .55);
	display: flex;
	align-items: center;
	justify-content: center;
}

#cwt-popup-overlay.cwt-popup-hidden {
	display: none !important;
}

#cwt-popup-box {
	position: relative;
	background: #fff;
	max-width: 1080px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 6px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, .25);
}

#cwt-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #555;
	padding: 0;
	z-index: 99;
    width: 40px;
    height: 40px;
    min-height: 0;
    background: #fff;
    border-radius: 100%;
    margin-right: 0px;
}

#cwt-popup-close:hover {
	color: #000;
}
