/*WEATHER*/
.listNone {
	padding-left: 0px;
	list-style: none;
}

.flex {
	display: -webkit-flex;
	display: flex;
}

#weatherBlock {
	max-width: 386px;
	background-color: #FFFFFF;
	border: 1px solid #BBBBBB;
	border-bottom: 3px solid #BBBBBB;
	-webkit-flex-direction: column;
	flex-direction: column;
}

#headerWeather {
	max-width: 356px;
	min-width: 288px;
	width: -webkit-calc(100% - 30px);
	width: calc(100% - 30px);
	height: 36px;
	-webkit-align-items: center;
	align-items: center;
	border-bottom: 3px solid #126414;
	padding: 0px 15px;
	background-color: #429F46;
	vertical-align: middle;
	font-size: 18px;
	color: #FFFFFF;
}

#headerWeather > span {
	text-align: center;
	text-transform: uppercase;
}

#headerWeather > * {
	text-align: center;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

#headerWeather > div > img {
	float: left;
}

#headerWeather > div > button {
	float: right;
}

#headerWeather > div > button {
	width: 35px;
	height: 35px;
    background-color: transparent;
	background-image: url('images/iconMagnefier.svg');
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	cursor: pointer;
	-webkit-transition: background 0.5s;
	transition: background 0.5s;
}

#headerWeather > div > button:hover,
#headerWeather > div > button.active {
	background-image: url('images/iconMagnefierWhite.svg');
	background-color: #126414;
}

#weatherToday {
	height: 115px;
}

#headerToday {
	width: -webkit-calc(100% - 30px);
	width: calc(100% - 30px);
	-webkit-align-items: center;
	align-items: center;	
	height: 36px;
	border-bottom: 2px solid #BBBBBB;
	padding: 0px 15px;
	background-color: #D0D0D0;
	text-transform: uppercase;
	color: #808080;
	vertical-align: middle;
}

#weatherToday * {
	font-size: 18px;
	color: #429F46;
}

#weatherToday > div:nth-of-type(1),
#weatherToday > div:nth-of-type(2),
#weatherToday > div:nth-of-type(3) {
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

#weatherToday > div:nth-of-type(1) {
    max-width: 100px;
    width: 100%;
    min-width: 80px;
}

#weatherToday > div:nth-of-type(2) {
	max-width: 120px;
	width: 100%;
	min-width: 110px;
	margin: 0px 10px;
	-webkit-flex-direction: column;
	flex-direction: column;
}

#weatherToday > div:nth-of-type(2) > span:first-child {
	font-size: 54px;
	line-height: 54px;
}

#weatherToday > div:nth-of-type(2) > span:last-child {
	font-size: 14px;
}

#weatherToday > div:nth-of-type(3) {
	max-width: 135px;
	width: 100%;
	min-width: 94px;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

#weatherToday > div:nth-of-type(3) > span::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: center;
	margin: 2px 5px;
}

#weatherToday > div:nth-of-type(3) > span {
	display: -webkit-flex;
	display: flex;
	min-width: 50px;
	-webkit-align-items: center;
	align-items: center;
}

#weatherToday > div:nth-of-type(3) > span:first-child {
	margin-right: 29px;
}

#weatherToday > div:nth-of-type(3) > span:last-child {
	-webkit-flex-direction: column;
	flex-direction: column;
}

#weatherToday > div:nth-of-type(3) > span:nth-child(1)::before,
#weatherToday > div:nth-of-type(3) > span:nth-child(2)::before {
	background-image: url('images/iconArrow.svg');
	float: left;
}

#weatherToday > div:nth-of-type(3) > span:nth-child(2)::before {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

#weatherToday > div:nth-of-type(3) > span:nth-child(3)::before {
	margin: 2px auto;
	background-image: url('images/iconRain.svg');
}

#weatherOtherDays {
	-webkit-justify-content: center;
	justify-content: center;
}

#weatherOtherDays > div {
	height: 55px;
	max-width: 112px;
	width: 100%;
	min-width: 94px;
	background-color: #D0D0D0;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 6px;
}

#weatherOtherDays > div > img {
	height: 21px;
	margin: 0px 10px;
}

#weatherOtherDays > div > span {
	color: #808080;
	text-transform: uppercase;
}

#searchW {
	width: 200px;
	background-color: #43A047;
	padding: 10px;
}

#searchW > form > ul > li > input {
	width: -webkit-calc(100% - 22px);
	width: calc(100% - 22px);
	border: 1px solid #126414;
	padding: 5px 10px;
}

#searchW > form > ul > li:nth-child(2) > input {
	margin: 10px 0px;
}

#searchW > form > ul > li > input[type="submit"] {
	background-color: #126414;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
}

#searchW input::-webkit-input-placeholder {
	color: #808080;
}

#searchW input:-moz-placeholder {
	color: #808080;
}

#searchW input::-moz-placeholder {
	color: #808080;  
}

#searchW input:-ms-input-placeholder {  
	color: #808080;  
}

@media all and (max-width: 435px) {
	#weatherToday > div:nth-of-type(3) {
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	#weatherToday > div:nth-of-type(3) > span:last-child {
		-webkit-flex-direction: row;
		flex-direction: row;
	}

	#weatherToday > div:nth-of-type(3) > span:last-child::before {
		margin-right: 5px;
	}

	#weatherToday > div:nth-of-type(3) > span {
		margin: 5px 0px 5px 0px !important;
	}
}