.clearfix {
	clear: both;
}

.eupopup-container {
	background-color: rgba(0,0,0,.85);
	padding: 15px 40px;
	font-size: 12px;
	line-height: 1.2em;
	display: none;
	z-index: 9999999;
	transition: all ease-in .2s;
}

.eupopup.open{
	transform: translate3d(-50%,0,0);
    opacity: 1;
    pointer-events: auto;
}

.eupopup-container-top,
.eupopup-container-fixedtop {
	position: fixed;
	bottom: 0; 
	left: 0; 
	right: 0;
	left: 0;
	display: flex;
	max-width: 90%;
	margin:0 auto;
	
}

.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: 100;
	line-height: 1;
	color: #a2a2a2;
	filter: alpha(opacity=20);
	position: absolute;
	font-family: helvetica, arial, verdana, sans-serif;
	top: 0; right: 0;
	padding: 5px 10px;
}
.eupopup-closebutton:hover,
.eupopup-closebutton:active {
	color: #fff;
	text-decoration: none;
}

.eupopup-head {
	font-size: 1.2em;
	font-weight: bold;
	padding: 7px;
	color: #fff;
	display:none;
}

.eupopup-body {
	color: #fff;
    line-height: 20px;
	font-size:15px;
	padding-right: 20px;
}

.eupopup-buttons {
	padding: 7px 0 5px 0;
	display: inherit;
}

.eupopup-body a{ color:#2c89ff;}


.eupopup-button_1 {
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	border-radius: 5px;
    padding: 15px 40px 12px;
    transition: all 0.3s ease 0s;
	background: #23518c;
	border:solid 2px #fff;
}

.eupopup-button_1:hover {
	text-decoration: none !important;
	background: #aca1a1  !important;
	color: #fff  !important;
}

.eupopup-button_2 {
	color: #f6a21d;
	font-weight: normal;
	font-size: 12px;
	display:none;
}

.eupopup-button {
	margin: 0 10px;
}

.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;
}


@media (max-width:1000px){
	.eupopup-container-top, .eupopup-container-fixedtop{
		display:inherit;	
	}
	.eupopup-buttons{
		display:inline-flex;	
	}
}

