#overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 2;
}

.pop-up {
	width: 100%;
    height: 100%;
    position: fixed;
    z-index: 105;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    top: 0;
}

.pop-up .wrapper {
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	transform: translate(-50%, -50%);
}

.pop-up .title-cont.desktop {
	display: none;
}

.pop-up .title-cont.mobile {
	/* padding-right: 40px; */
	margin-bottom: var(--space-3);
}

.pop-up .img-cont {
	margin-bottom: 20px;
	width: 100%;
	overflow: hidden;
    max-height: 240px;
}

.pop-up-description {
	text-align: center;
	padding: 10px;
}

.pop-up h4, .pop-up h4 a {
	font-size: 30px;
    line-height: 1.2;
	color: inherit;
	font-family: 'HanleyPro-SansInline';
	display: flex;
	justify-content: center;
	text-align: center;
	color: #fff;
}

.pop-up .wrapper .content-section p,
.pop-up .wrapper .content-section .read-more i {
	color: inherit;
	font-size: 26px;
    line-height: 1.4;
}

.pop-up .read-more {
	font-weight: bold;
	display: flex;
	justify-content: center;
	color: inherit;
	padding-bottom:20px;
    font-size: 4vw;
}

.pop-up .read-more a {
	padding: 10px 40px;
}

.pop-up .fa {
	margin-left: 8px;
}

.pop-up .close-announcement {
	position: absolute;
	width: 18px;
	height: 18px;
	right: 0;
	top: 0;
	background-color: #525254;
	outline: 0;
	padding: 0;
	margin-bottom: 0;
	color: inherit;
}

.pop-up .close-announcement .fas {
	font-size: 15px;
	color: #999089;
}

.pop-up .wrapper img {
    vertical-align: middle;
	width:100%;
}

@media screen and (min-width: 50em) {
	.pop-up .wrapper {
		padding: 20px 15px;
		height: 50%;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		max-width: 800px;
		width: 50%;
		max-height: 450px;
		box-shadow: 0px 0px 5px rgba(0 0 0 / 30%);
	}
	
	.pop-up .title-cont.desktop {
		display: block;
		/* padding-right: 40px; */
		margin-bottom: var(--space-2);
	}
	.pop-up .wrapper .content-section p,
	.pop-up .wrapper .content-section .read-more i {
		color: inherit;
		font-size: 26px;
		line-height: 2vw;
	}
	
	.pop-up .title-cont.mobile {
		display: none;
	}

	.pop-up .content-section {
		width: 50%;
		height: 100%;
		top: 0;
		right: 0;
		position: absolute;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0 30px;
    	text-align: center;
	}

	.pop-up .img-cont {
		max-width: 25%;
	}
	.pop-up .img-cont img {
		width: 50%;
		height: 100%;
		top: 0;
		left: 0;
		position: absolute;
		object-fit: cover;
	}
	.pop-up h4, .pop-up h4 a {
		font-size: 3vw;
		line-height: 1.2;
		color: inherit;
		color: #ffffff;
		/* margin-bottom: 20px; */
		font-family: 'HanleyPro-SansInline';
		display: flex;
	}
	.pop-up .read-more {
		font-size: 1.5vw;
	}
	
	/* .pop-up .close-announcement {
		top: -2px;
	} */

	/* .pop-up .close-announcement .fas {
			font-size: 25px;
	} */
}

@media (min-width: 2100px) {
	.pop-up .wrapper {
		max-width: 40vw;
		max-height: 45vh;
	}
}