.weather {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding: 10px 15px;
	margin: 0px 100px 0 auto;
	height: 85px;
}

a.weather:hover {
	text-decoration: none;
	color: #fff;
}

.weather:focus {
	outline: 1px dashed white;
}

.weather .temp {
	color: white;
	font: 500 16px 'franklin-gothic-urw', sans-serif;
}

.weather .deg {
	padding-left: 3px;
	padding-right: 2px;
}

.weather .temp .fa {
	font-size: 14px;
}

.weather .weather-icon {
	margin-right: 3px;
	font-size: 16px;
	color: white;
}

@media screen and (min-width: 1024px) {
	.weather {
		margin: 0;
		margin-top: -7px;
		padding: 0;
	}
}

@media screen and (min-width: 1200px) {
	.weather {
		margin: 0;
	}
	.weather .weather-icon {
		font-size: 20px;
	}
	.weather .temp {
		font: 500 20px 'franklin-gothic-urw', sans-serif;
	}
}