* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

li {
  list-style: none; }

.a {
  text-decoration: none; }

.img {
  width: 100%;
  height: auto;
  display: block; }

.burger-menu {
  width: 35px; }

.burger-menu:hover {
  cursor: pointer; }

.burger-menu-line {
  width: 100%;
  height: 3px;
  background: #fff;
  margin: 15% 0;
  transition: all .3s ease-in-out;
  transform-origin: right; }

.burger-menu-line_2 {
  width: 60%;
  height: 3px;
  background: #fff;
  margin: 15% 0;
  transition: all .2s ease-in-out;
  transform-origin: right; }

.hover {
  width: 100%;
  transition: all .2s ease-in-out; }

.click-2 {
  width: 0;
  animation: line2 .5s ease-in-out;
  transition: all .3s ease-in-out; }

.cross-right {
  transform-origin: right;
  transform: rotate(28deg);
  transition: all .3s ease-in-out;
  transition-delay: .5s;
  animation: cross-right 1s ease-in-out; }

.cross-left {
  transform-origin: right;
  transform: rotate(-27deg);
  transition: all .3s ease-in-out;
  transition-delay: .5s;
  animation: cross-left 1s ease-in-out; }

@keyframes line2 {
  0% {
    width: 100%; }
  30% {
    width: 120%; }
  100% {
    width: 0; } }

@keyframes cross-left {
  0% {
    transform: translateY(0); }
  90% {
    transform: translateY(10px);
    transform-origin: right; }
  100% {
    transform: rotate(-32deg); } }

@keyframes cross-right {
  0% {
    transform: translateY(0); }
  90% {
    transform: translateY(-10px);
    transform-origin: right; }
  100% {
    transform: rotate(35deg); } }

.weather__graph {
  width: 90%;
  margin: 0 auto; }

.progress-container {
  width: 95%;
  height: 8px;
  background: #fff;
  margin: 0 auto 15px auto; }

.progressBar {
  height: 8px;
  background: #296ce9;
  width: 0%; }

.dateList {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto 15px auto; }
  .dateList .dateList__item {
    width: 25px;
    text-align: center; }

.daysList {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto 15px auto; }

.weatherIconsList {
  display: flex;
  width: 95%;
  justify-content: space-between;
  margin: 0 auto; }
  .weatherIconsList .weatherIcon__item {
    width: 6%; }
    .weatherIconsList .weatherIcon__item .weatherIcon__img {
      width: 100%;
      margin-bottom: 5px;
      filter: brightness(1.4); }

.forecastDegrees {
  width: 40px; }

.body {
  background: #01102d;
  padding: 5vh 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif; }

.wrapper {
  max-width: 90%;
  margin: 0 auto; }

.header {
  display: flex;
  justify-content: space-between;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 10px; }

.main {
  margin-bottom: 50px; }

.info__time {
  margin-bottom: 10px; }

.header__day {
  color: #ffdeb8;
  text-align: center;
  font-size: 4em;
  margin-bottom: 50px; }

.tempeture__Container {
  display: flex;
  justify-content: space-around;
  min-width: 40vw;
  max-width: 50vw;
  margin: 0 auto;
  margin-top: 50px; }

.degrees {
  text-align: center;
  font-size: 2.5em;
  width: 50%;
  align-self: center; }
  .degrees .degree__number {
    color: #0090ff;
    font-weight: bold; }

.weatherContainer {
  display: flex;
  width: 70%;
  margin: 0 auto; }

.weather__img {
  filter: brightness(1.4); }

.wind_container {
  width: 50%; }
  .wind_container .wind {
    text-align: center;
    font-size: 1.5em; }
    .wind_container .wind .wind__number {
      color: #0090ff; }
  .wind_container .wind_img {
    width: 30%;
    margin: 0 auto; }

.weather__img {
  width: 20%;
  margin: 0 auto;
  padding-bottom: 10px; }

.message {
  opacity: 0;
  position: absolute;
  top: 240px;
  left: 50px;
  transition: all 1s ease-in-out; }

.toggle {
  opacity: 1;
  transition: all 2s ease-in-out; }
