.corona-virus-button{
	position: absolute;
	top:50%;
	left: 50px;

	margin-top: -154px;
	
	display: block;
	
	width: 328px;
	height: 328.5px;
	
	background: url(corona-button-info.png) center center no-repeat;
	background-size:cover;

	z-index: 2;
}

body{
	overflow-x: hidden;
}

.quicknews{
	position: absolute;
	top: 230px;
	right: 0;

	z-index: 2;

	display: flex;
	align-items: flex-start;

	transform: translateX(330px);

	transition: 0.4s all ease-in-out;

	font-family: Rokkitt, serif;
	font-weight: 300;
}

.quicknews.active{
	transform: translateX(-50px);
}

.quicknews .left{
	width: 58px;
	height: 239.5px;

	background: url(quicknews.png) center center no-repeat;
	background-size:cover;

	cursor: pointer;
}

.quicknews .content{
	position: relative;
	width: 330px;
	padding: 35px;

	background: #bab15d;
	
}

.quicknews .content .close-quicknews{
	position: absolute;
	top: 0;
	right: 0;

	width: 25px;
	height: 25px;

	background: url(quicknews-close.png) center center no-repeat #000;

	border: 1px solid #fff;
	border-radius: 100%;

	cursor: pointer;

	transform: translate( 50%, -50% );
}

.quicknews .text-title, .quicknews .text-content{

	text-align: center;
	color:#fff !important;
}

.quicknews .text-title {
	position: relative;
	font-size: 32px;
	padding-bottom: 15px;
}

.quicknews .text-title::after {
	position: absolute;
	bottom: 0;
	left: 50%;

	content: ' ';

	width: 100px;
	height: 1px;
	background: #fff;

	transform: translateX(-50%);

}

.quicknews .text-content{
	padding-top: 15px;

}

.quicknews .text-content p{
	color:#fff;
}

.quicknews .text-content a{
	color:#fff;
	text-decoration: underline;
}

.quicknews .text-mehr{
	position: relative;
	padding-top: 15px;

	text-align: center;
}

.quicknews .text-mehr::before {
	position: absolute;
	top: 0;
	left: 50%;

	content: ' ';

	width: 100px;
	height: 1px;
	background: #fff;

	transform: translateX(-50%);

}

.quicknews .text-mehr a{
	color:#fff;
	text-transform: uppercase;
	font-weight: 700;
}

@media(max-height: 730px ){

	.corona-virus-button{
		margin-top: -50px;
		width: 200px;
		height: 200px;
	}

}

@media(max-width: 1040px ){

	.corona-virus-button{
		margin-top: -50px;
		width: 200px;
		height: 200px;
	}

}

@media(max-width: 690px ){

	.corona-virus-button{
		margin-top: 0px;
		top:65%;
		left: 15px;
		width: 120px;
		height: 120px;
	}

	.quicknews{
		transform: translateX(250px);
	}

	.quicknews .left{
		width: 29px;
		height: 120px;
	}

	.quicknews.active{
		transform: translateX(-15px);
	}

	.quicknews .content{

		width: 250px;
		padding: 15px;
		
	}

}