.container {
	width: 100%;
	overflow-x: hidden;
}

.content {
	display: flex;
	align-items: center;
	width: 100%;
	overflow-x: hidden;
	background-color: #f4f4f4;
}

.legend {
	width: 80px;
}

.legend ul {
	display: block;
	margin: 5px 0 5px 5px;
}

.legend ul li {
	display: flex;
	align-items: center;
}

.legend ul li:not(:last-child) {
	margin-bottom: 2px;
}

.legend ul li i {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 5px;
	border-radius: 50%;
}

.legend ul li span {
	font-size: 9px;
}

#flag {
	display: flex;
	align-items: center;
	margin-right: -13px;
	margin-left: -5px;
	z-index: 1;
	clip-path: circle(17px at center);
}

#flag:not(.world) {
	width: 34px;
	height: 34px;
}

#flag.world {
	width: 34px;
	height: 34px;
}

#flag img {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
}

#places {
	position: relative;
	display: flex;
	align-items: center;
	width: calc(100% - 100px);
	overflow-x: hidden;
	height: 46px;
}

#places > div.place-content {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	position: absolute;
	overflow: hidden;
	animation: marquee 20s linear infinite;
}

#places > div.place-content > div {
	display: flex;
	justify-content: space-around;
	padding: 8px 10px;
	border-radius: 15.5px;
	background-color: #FFFFFF;
	border: 1px solid #DEDEDE;
}

#places > div.place-content > div:not(:last-child) {
	margin-right: 10px;
}

#places > div.place-content > div strong {
	white-space: nowrap;
	font-weight: bold;
	margin-right: 10px;
}

#places > div.place-content > div strong, #places > div.place-content > div span {
	display: inline-block;
	font-size: 10px;
}

#places > div.place-content > div span {
	margin-right: 10px;
}

@keyframes marquee {
	0% { left: 0; }
	100% { left: -100%; }
}

@media (max-width: 900px) {
	#flag {
		display: none;
	}
	
	#places {
		width: calc(100% - 80px);
	}
}