@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Extrabld.woff") format("woff");
  font-weight: 800;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Proxima Nova", sans-serif;
  height: 100%;
}

.header {
  background-color: #e7d9d3;
  height: 204px;
}

.header-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 170px;
  justify-content: space-around;
  padding-top: 38px;
}

.container-wrapper {
  margin: 0 auto;
  padding-left: 240px;
  padding-right: 240px;
}

.weather-block {
  display: flex;
  flex-direction: row;
  margin-right: 220px;
}

.location {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  width: 320px;
  margin-right: 45px;
}

.auto-geolocation {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.geo-icon {
  display: block;
}

.city-name {
  font-size: 34px;
}

.city-name--error {
  font-size: 15px;
  color: #E7426A;
}

.input-geolocation {
  display: flex;
  position: relative;
  flex-direction: row;
}

.city-input {
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 30px;
  border: none;
  text-indent: 15px;
  color: gray;
  outline: none;
}

.search-icon {
  position: absolute;
  top: 7px;
  right: 12px;
  height: 30px;
  padding: 5px;
}

.weather-output {
  display: flex;
  gap: 45px;
  align-items: center;
  flex-direction: row;
}

.weather-icon {
  width: 100px;
}

.temperature {
  font-size: 100px;
}

.autorization {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.autorization-icon {
  width: 67px;
  cursor: pointer;
}

.account,
.account-name {
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
}

.header-cart {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.cart-icon {
  width: 35px;
}

.p_quantity {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  color: #FF7F56;
}

.header-btn {
  background-color: #E7426A;
  border: none;
  border-radius: 3px;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 50px;
  cursor: pointer;
}
.header-btn:hover {
  background-color: #FF7F56;
}

#section-nav__contacts {
  color: #E7426A;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.nav-link:hover {
  color: #FF7F56;
}

.section-nav {
  text-align: center;
  padding-top: 22px;
  padding-bottom: 50px;
}

li {
  display: inline;
  margin-right: 80px;
}/*# sourceMappingURL=header.css.map */