.clearfix {
	clear: both;
}

.eupopup-container {
	background-color: rgba(0,0,0,.6);
	color: #efefef;
	padding: 5px 20px;
	font-size: 12px;
	line-height: 1.2em;
	text-align: center;
	display: none;
	z-index: 9999999;
}

.eupopup-container-top,
.eupopup-container-fixedtop {
	position: absolute;
	top: 0; left: 0; right: 0;
}

.eupopup-container-fixedtop {
	position: fixed;
}

.eupopup-container-bottom {
	position: fixed;
	bottom: 0; left: 0; right: 0;
}

.eupopup-container-bottomleft {
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 300px;
}

.eupopup-container-bottomright {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 300px;
}

.eupopup-closebutton {
	font-size: 25px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
    position: absolute;
    font-family: helvetica, arial, verdana, sans-serif;
    top: 10px;
    right: 10px;
    padding: 10px 15px;
    background: #f6a21d;
    border-radius: 50%;
}
.eupopup-closebutton:hover,
.eupopup-closebutton:active {
	color: #000;
	text-decoration: none;
}

.eupopup-head {
	font-size: 24px;
    font-weight: bold;
    padding: 7px 7px 14px 7px;
	color: #000;
	text-align: center;
}

.eupopup-body {
	color: #222;
	padding: 4rem 0;
    font-size: 16px;
    line-height: 22px;
}

.eupopup-buttons {
	display: flex;
    justify-items: center;
    flex-direction: column;
    align-items: center;
}

.eupopup-button_1 {
	color: #f6a21d;
	font-weight: bold;
	font-size: 14px;
}

.eupopup-button_2 {
	color: #f6a21d;
	font-weight: normal;
	font-size: 12px;
}

.eupopup-button {
	margin: 0 10px;
	padding: 1rem;
	border: 1px solid #f6a21d;
	margin-bottom: 1rem;
	width: 100%;
    text-align: center;
}

.eupopup-button:hover,
.eupopup-button:focus {
	text-decoration: underline;
	color: #f6a21d;
}

body .eupopup-color-inverse {
	color: #000;
	background-color: rgba(255, 255, 255, 0.9);
}

body .eupopup-color-inverse .eupopup-head {
	color: #000;
}

body .eupopup-style-compact {
	text-align: left;
	padding: 8px 30px 7px 20px;
	line-height: 15px;
}

body .eupopup-style-compact .eupopup-head,
body .eupopup-style-compact .eupopup-body,
body .eupopup-style-compact .eupopup-buttons {
	display: inline;
	padding: 0;
	margin: 0;
}

body .eupopup-style-compact .eupopup-button {
	margin: 0 5px;
}
.eupopup-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	position: fixed;
}

.eupopup-wrapper {
	background: #fff;
    padding: 2rem;
	border-radius: 10px;
	width: 700px;
	text-align: left;
}

@media (max-width: 768px) {
	.eupopup-head {
		line-height: 24px;
	}
	.eupopup-wrapper {
		width: 90vw;
		height: auto;
		overflow: scroll;
	}
	.eupopup-body {
		color: #222;
		padding: 2rem 0;
	}
}	
