.popup {
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 100000;
	transition: opacity 0.5s ease;
	overflow: hidden;
}

.open .popup {
	opacity: 1;
	pointer-events: all;
	transition: opacity 0.5s ease;
}

.popup .shader {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.47);
	cursor: pointer;
	z-index: 100001;
	transition: opacity 0.5s ease;
}

.popup .alert.center {
	position: relative;
	width: 335px;
	max-width: 85%;
	height: auto;
	transform: translate(0%, 15%);
	margin: 0 auto;
	transition: .5s ease-in-out;
	z-index: 100002;
	display: flex;
	flex-direction: column;
	text-align: center;
	background-color: #fff;
}

.popup .alert.center .content-section {
	display: flex;
	flex-direction: column;	
	align-items: flex-start;
	justify-content: center;
	position: relative;
	padding: 90px 25px;
	gap: 14px;
	background-image: url(../svg/popup_top_left_energy.svg), 
					url(../svg/energy_yellowavebluedot.svg);
	background-size: 128px, 216px;
	background-position: top 5px left -20px, bottom -47px right -85px;
	background-repeat: no-repeat, no-repeat;
}

.popup .alert.center .img-cont {
	width: 100%;
	max-width: 400px;

	img {
		width: 100%;
	}
}

.popup .alert.center .img-cont .desktop {
	display: none;
}

.popup .alert.center .content-section .close {
	position: absolute;
	top: 32px;
	right: 31px;
}

.popup .alert.center .content-section .logo {
	max-width: 148px;
	margin-bottom: 18px;
} 

.popup .alert.center .content-section .title {
	font-family: var(--font-bold);
	font-size: 25px;
	line-height: 1;
	text-align: left;
}

.popup .alert.center .content-section p {
	font-family: var(--font-reg);
	font-size: var(--text-lg);
	line-height: 1.2;
	text-align: left;
}

.popup .alert.center .content-section .cta-button {
	margin-top: 18px;
}

.popup .alert.center .content-section .cta-button a {
	--text-color: var(--sw-button-primary-color);
    --text-color-hover: var(--sw-button-primary-color-hover);
    --background-color: var(--sw-button-primary-bg);
    --background-color-hover: var(--sw-button-primary-bg-hover);
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--rounded-lg);
    background-color: var(--background-color);
    margin: 0 auto;
	display: flex;
    align-items: center;
	justify-content: center;
    border-radius: unset;
    clip-path: polygon(0 0, 95% 0, 100% 90%, 6% 99%);
    text-transform: uppercase;
    font-size: 14px;
	letter-spacing: 1.4;
    height: 55px;
    width: 172px;

	&:hover {
		color: var(--text-color-hover);
		background-color: var(--dark-pink);
	}
}

.popup .alert.center .content-section .cta-button a::after {
	content: '>';
	margin-left: var(--space-1);
}

@media screen and (min-width: 40em) {
	.popup .alert.center {
		width: 400px;
	}
}

@media screen and (min-width: 64em) {
	.popup .alert.center {
		width: 100%;
		max-width: 790px;
		flex-direction: row;
		transform: translate(0%, 42%);
	}

	.popup .alert.center .content-section {
		position:unset;
		padding: 0 40px 0 55px;
	}

	.popup .alert.center .img-cont,
	.popup .alert.center .content-section {
		width: 50%;
	}

	.popup .alert.center .img-cont .desktop {
		display: block;
	}

	.popup .alert.center .img-cont .mobile {
		display: none;
	}
}