
	

	
	
	
	
	
	
	
    
        
		
    

	

	

	

.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;
	width: 165px;
	height: 32px;
	font-weight: 400;
	padding-left: 29px;	
	background-color: var(--primary-bg-color);
	text-transform: uppercase;
	color: var(--white-font-color);	
	font-family: var(--font-primary);
	font-size: 13px;
	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;
	}
}