.weather-informer__link {
	animation-name: weather-informer;
	animation-duration: 1.5s;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

	font-size: 12px;
	line-height: 18px;
	text-align: center;
}

@keyframes weather-informer {
	0%,
	80% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}