input::-webkit-input-placeholder { color: white; }
input::-moz-placeholder { color: white; }

/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}
body{
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Poppins', sans-serif;
	position: relative;
	height: 950px;
}
.bg-cloudy{
	background-image: url('../img/main.jpg');
}
.bg-snow{
	background-image: url("../img/snow.jpg");
}
.bg-clear{
	background-image: url("../img/clear.jpg");
}
.bg-rain{
	background-image: url("../img/rain.jpg");
}
.container{
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.window{
	background-color: rgba(255, 255, 255, 0.7);
	width: 40%;
	height: 45%;
	border-radius: 55px;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.search{
	background: rgba(0, 0, 0, 0.2);
	width: 86%;
	height: 80px;
	border-radius: 55px;
	border: none;
	color: white;
	font-size: 2rem;
	margin: 44px 60px 42px 70px;
	padding: 22px 13px;
}
.search--box{
	position: relative;
}
.search-btn{
	position: absolute;
	background-color: white;
	padding: 14px 15px;
	border-radius: 90%;
	cursor: pointer;
	transform: translate(50%, -50%);
	top: 50%;
	right: 12%;
}
.text__no__permission{
	color: rgba(5, 5, 5, 0.98);
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	margin-top: 155px;
	display: none;
}
.weather__city{
	color: rgba(0, 0, 0, 0.98);
	font-size: 40px;
	font-weight: 600;
}
.weather__forecast{
	color: rgba(0, 0, 0, 0.98);
	font-size: 50px;
	font-weight: 800;
}
.pd{
	padding-left: 89px;
}
.text__weather{
	color: rgba(0, 0, 0, 0.98);
	font-size: 20px;
	font-weight: 500;
}
.flex{
	display: flex;
	text-align: center;
}
@media (max-width: 1440px) {
	body{
		background-size: auto;
	}
	.flex{
		justify-content: center;
	}
	.pd{
		padding-left: 0;
	}
	.window{
		text-align: center;
	}
	.search{
		margin-right: 0;
		margin-left: 0;
	}
	.search-btn{
		right: 17%;
	}
}
@media (max-width: 768px) {
	.pd{
		padding: 0 10px;
	}
	.window{
		width: 88vw;
	}
	.text__weather{
		font-size: 1.2rem;
	}
	.weather__city{
		font-size: 2rem;
	}
	.weather__forecast{
		font-size: 2rem;
	}

}
@media (max-width: 480px) {
.search-btn{
	right: 20%;
}
}
@media(max-height: 667px) {
	.window{
		top: 35%;
	}
	.user__city {
		margin-top: 21px;
	}
}
