body {
    background: #f2f2f2;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 200;
}

.row-no-gutter {
	margin-right: 0;
	margin-left: 0;
}

.row-no-gutter [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}


#card {
	background: #fff;
	position: relative;

	-webkit-box-shadow: 0px 1px 10px 0px rgba(207,207,207,1);
	-moz-box-shadow: 0px 1px 10px 0px rgba(207,207,207,1);
	box-shadow: 0px 1px 10px 0px rgba(207,207,207,1);

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;	
}

.city-selected {
	position: relative;
	overflow: hidden;
	background: #3D6AA2;
}

.link-article {
	text-decoration: none;
}

article {
	position: relative;
	z-index: 2;
	color: #fff;
	padding: 15px;

	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

#card article .logo-mf {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 40px;
}

.city,
.night {
	font-size: 24px;
	font-weight: 200;
	position: relative;
}

.city {
	flex: 0 0 100%;
	text-align: center;
}

.city span {
	color: #fff;
	font-size: 12px;
	line-height: 17px;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	margin-bottom: 7px;
	min-height: 34px;
}

.night {
	display: block;
	font-size: 12px;
	text-transform: none;
}

.icon {
	width: 84px;
	height: 84px;
	max-width: 50%;
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	overflow: visible;
}

.info {	
	max-width: 50%;
}

#weather-icon-now {
	display: block;
	text-align: center;
}

.icon svg {
	width: 50px;
}


.temp {
	font-size: 30px;
	line-height: 43px;
	display: block;
	position: relative;
	font-weight: bold;
}

#card svg {
	color: #fff;
	fill: currentColor;
}

.wind {
	font-size: 0;
}

.wind .wind_icon {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	vertical-align: bottom;
	display: inline-block;
}

.wind .wind_icon img {
	max-width: 100%;
}

.wind span {
	font-size: 12px;
	display: inline-block;
	vertical-align: bottom:
}

#wind_speed {
	font-weight: 700;
}

.city-selected:hover figure {
	opacity: 0.4;
}

#card figure {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.days .row [class*="col-"] {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;	
}

.days .row [class*="col-"]:hover{
	background: #eaeaea;
}

.day.active {
	background: #eaeaea;
}

.day {
	padding: 10px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: space;
	justify-content: space-between;
	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	border: 1px solid #dee2e6;
	border-top: 0;
}

.day h1 {
	font-size: 11px;
	line-height: 16px;
	color: #5f5f5f;
	font-weight: 500;
	margin-top: 10px;
	text-transform: capitalize;
}

.day .temperature,
.day svg {
	display: inline-block;
	vertical-align: middle;
}

.day .temperature {
	font-size: 13px;
	font-weight: 700;
	margin-left: 4px;
	min-width: 30px;
	text-align: right;
}

.day svg {
	color: #000;
	width: 32px;
	height: 32px;
}

@media only screen and (max-width: 150px) {

	article {
		padding-right: 10px;
	}

	.icon {
		height: 79px;
	}

	.temp {
		font-size: 22px;
	}

	.wind .wind_icon {
		margin-right: 2px;
		vertical-align: middle;
	}

	.wind span {
		font-size: 11px;
		vertical-align: middle;
	}

	#wind_speed {
		vertical-align: top;
	}

	.day {
		padding: 8px 10px;
	}

	.day.tomorrow {
		padding-top: 7px;
	}
}

@media only screen and (max-height: 299px) {

	#card {
		font-size: 0;
	}

	.icon {
		height: 79px;
	}

	.temp {
		font-size: 22px;
	}

	.wind .wind_icon {
		margin-right: 2px;
		vertical-align: middle;
	}

	.wind span {
		font-size: 10px;
		vertical-align: middle;
	}

	#wind_speed {
		vertical-align: top;
	}

	.city-selected,
	.days {
		display: inline-block;
		vertical-align: top;
		width: 50%;
	}

	.day {
		padding: 8px 10px;
	}

	.day.tomorrow {
		padding-top: 7px;
	}
}