.flag-container
{
	position: absolute;
	z-index: 10;
	top: 3px;
	left: 0;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
}

.flag-container .flag
{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;	
	height: 32px;
	font-weight: 700;
	padding: 9px 15px;
	font-family: roboto, sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 13px;
	background-color: #E7131A;
	text-transform: uppercase;
	color: #ffffff;
	
	margin-bottom: 3px;
	transition: transform 200ms;
}

body.fr .flag-container .flag
{
	width: 200px;
}

@media screen and (max-width:480px)
{
	.flag-container .flag
	{
		font-size: 8pt;
		width: 125px;
		height: 25px;
	}
}