#gs-popup-wrapper {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
#gs-popup {
	position: relative;
	background: #fff;
	padding: 0 0 20px 0;
	border-radius: 8px;
	text-align: center;
	width: 500px;
    max-width: 80%;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

#gs-popup p {
    font-size: 32px;
    line-height: 1.2em;
    font-weight: bold;
    margin: 1rem auto 1rem auto;
    width: 80%;
}

#gs-popup img {
	max-width: 100%;
	height: auto;
    border-radius: 8px 8px 0 0;
}
.gs-close {
	position: absolute;
	top: -25px;
	right: -25px;
	font-size: 40px;
    color: white;
	cursor: pointer;
}
.gs-button {
	display: inline-block;
	margin-top: 15px;
	background: #00AB55;
	color: #fff;
	padding: 10px 50px;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
	border-radius: 50px;
    transition: all 0.3s ease;
}

.gs-button:hover {
	background: #FEDC00;
	color: #000;
}

.gs-arrows {
	font-size: 32px;
	margin-top: 10px;
}
