[type=checkbox],[type=radio]{padding:0}
body, html {margin:0;padding:0;}
#exxtoast {
  	position: fixed;
  	top: 0px;
	color: #1d4477;
	height: 100%;
  	width: 100%;
  	background: rgba(245, 243, 246,.8);
  	xtransition: all 1s ease-in-out;
  	user-select: none;
  	-moz-user-select: none;
  	xanimation: slide-in 1s ease-out;
	xanimation-fill-mode: forwards;
	xanimation-delay: 100ms;
	padding: 3vw;
	z-index: 999;
	max-height: calc(var(--vh, 1vh) * 100);
	
}
#exxtoast #exxcontent {
	position: relative;
	top:50%;
	left:50%;
	overflow-y: auto;
	box-sizing: border-box;
	font-size: 16px;
	text-align: left;
	padding: 4.5rem;
	background-color: #fff;
	transform: translate(-50%,-50%);
	min-height: 320px;
}
#exxtoast #exxcontent a:-webkit-any-link {
	text-decoration: none;
}
#exxtoast #exxcontent a:hover {
	text-decoration: none;
}
#exxtoast #exxlangbox {
	position: absolute;
	top: 50%;
	margin-top: -18px;
	right: 70px;
}
#exxclose {
	position: absolute;
	top: 50%;
	cursor: pointer;
	margin-top: -145px;
	right: 75px;
	color: #1d4477;
	font-family: medium;
	font-size: 17.6px;
}
#exxtoast .exxradio {
	display: inline-block;
	min-width: 140px;
	height: 55px;
	padding: .75rem 1.5rem;
	text-transform: capitalize;
	text-align: center;
	vertical-align: middle;
	line-height: 36px;
	background: #fff;
	cursor: pointer;
	border: 2px solid #1d4477;
	border-radius: 5px;
	color: #1d4477;
}
#exxtoast .exxradio.xexxradiosmall {
	width: 18px;
	height: 18px;
	font-size: 11px;
}
#exxtoast .exxradioactive {
	background: #09cee0;
}
#exxtoast .exxradio:active {
	transform: translateY(2px);
}
#exxtoast .exxradioactive:hover {
	background: #00a19f;
	transition: none;
}
#exxtoast #exxbtnbox {
	position: absolute;
	top: 50%;
	margin-top: 70px;
	right: 125px;
}
#exxtoast #okBtn_de{
	font-family: medium;
	font-size: 17.6px;
}
#exxtoast #okBtn_en{
	font-family: medium;
	font-size: 17.6px;
}
@media screen and (max-width: 700px){
  .exxpopup {
    margin: 4% auto;
  	width: 85%;
  	height: 88%;
  	padding: 12px;
  }
}
@keyframes slide-in {
	from { bottom: -200px; left: 0; }
  	to   { bottom: 0; left: 0; }
}