.overlayBox {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	top: 0; 
	left: 0;
}
.overlayBox.show
{
	opacity: 1.0;
	visibility: visible;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#jef-popup 
{
	display: none;
}
#jef-popup .overlayBox 
{
	background-color: rgba(0,0,0,0.5);
}
#jef-popup #contentPopup 
{
	background-color: white;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	max-width: 90vw;
	width: 767px;
	text-align: left;
	max-height: 90vh;
	overflow: auto;
}

#jef-popup #contentPopup ._button-wrapper._full_width
{
    text-align: center;
}
#closePopupBox 
{
    width: 100%;
    display: flex;
    justify-content: space-between;
	align-items: center;
	margin-block-end: 10px;
}
#closePopupBox  .iconAlert
{
    display: flex;
	align-items: center;
	gap:5px;
}
#closePopupBox  .iconAlert span
{
    text-transform: uppercase;
	font-size: 12px;
	line-height: 14px;
	font-weight: 700;
	color: var(--heading);
}
#closePopupBox .close {
	text-align: right;
	cursor: pointer;
	display: flex;
	justify-content: end;
	align-items: center;
}
#closePopupBox svg {
	height: 28px;
	width: auto;
}
#closePopupBox .close svg {
	height: 32px;
}
#closePopupBox svg path {
	fill: var(--heading);
}

.contentPopupInner {
	padding-top: 15px;
	border-top: 1px solid lightgrey;
}

.contentPopupInner .titlePopup 
{
	margin-top: 0;
	font-size: 24px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 15px;
	text-align: center;
} 

.contentPopupInner .textPopup 
{
	font-size: 0.9rem;
	line-height: 1rem;
	color: var(--text);
}
.contentPopupInner .textPopup p
{ 
	margin-bottom: 15px;
}
