*, *:before, *:after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: #00FF00;
}
.screen {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	/*background-image: url(../images/preview.png);
	background-size: cover;
	background-repeat: no-repeat;*/
	width: 1920px;
	/*height: 1080px;*/
	height: 260px;
	margin: auto;
}

.size-720p .screen {
	width: 1280px;
	/*height: 720px;*/
	height: 181px;
}

.banner {
	width: 417px;
	position: absolute;
	right: 0;
	bottom: 0;
}
.size-720p .banner {
	width: 340px;
}
.width_container {
	position: absolute;
	bottom: 0px;
	right: 0px;
	height: 223px;
	left: 0px;
	/*opacity: 0.5;*/
	
	background-color: rgb(234,128,33);
	border-top: solid 11px white;
}

.size-720p .width_container {
	height: 181px;
	border-top: solid 8px white;
}

#renderTweets {
	width: calc(100% - 417px);
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
}
.size-720p #renderTweets {
	width: calc(100% - 340px);
}
.tweet {
	font-family: 'Roboto', sans-serif;
	color: white;
	margin: 0;
	padding: 23px 60px;
	height: 100%;
	width: 100%;
	display: block;
	overflow: hidden;
	font-size: 1.5em;
	position: relative;
	/*background: white;*/
}
.size-720p .tweet {
	padding: 16px 40px;
}
.tweet .profile_photo {
	float: left;
	height: 166px;
	width: 166px;
	margin-right: 40px;
	padding: 8px;
	border-radius: 10px;
	overflow: hidden;
	
	background-color: white;
}
.size-720p .tweet .profile_photo {
	height: 140px;
	width: 140px;
	margin-right: 35px;
	padding: 5px;
}
.tweet .profile_photo img {
	width: 100%;
	overflow: hidden;
	border-radius: 5px;
}
.tweet .profile_info {
	padding-top: 5px;
	font-size: 40px;
}
.size-720p .tweet .profile_info {
	padding-top: 0;
	font-size: 30px;
}
.tweet .profile_info .user:before {
	content: "";
	display: inline-block;
	background-image: url(../images/ema15-twitter-ico.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 61px;
	height: 50px;
	vertical-align: text-bottom;
	margin-right: 20px;
}
.size-720p .tweet .profile_info .user:before {
	background-image: url(../images/ema15-twitter-ico-720p.png);
	width: 50px;
	height: 41px;
}
.tweet .profile_info a:link,
.tweet .profile_info a:visited {
	text-decoration: none;
	color: inherit;
}
.tweet .profile_info .user {
	font-weight: bold;
}
.tweet .profile_info .user_name {
	font-weight: 300;
	margin-left: 10px;
}
.tweet .text {
	font-size: 35px;
	font-weight: 500;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 133px;
}
.size-720p .tweet .text {
	font-size: 23px;
	height: 116px;
}
.tweet .other,
.tweet .follow,
.tweet hr {
	display: none;
}
