* {
  padding: 0;
  margin: 0;
  color: #ffffff;
}

html {
  font-family: Roboto, sans-serif;
}

.weather {
  width: 100%;
  min-height: 100vh;
}

.brand {
  position: relative;
  left: 47%;
  cursor: pointer;
}

.logo {
  position: relative;
  bottom: -6px;
  width: 95px;
  margin-right: 14px;
}

.brand>a {
  text-decoration: none;
}

.brand>a:hover {
  color: rgb(255, 187, 0);
}

html[data-theme="day"] .weather,
.weather {
  background: -webkit-gradient(linear, left bottom, left top, from(#3594bf), to(rgba(255, 255, 255, 0))), #53a6cb;
  background: linear-gradient(360deg, #3594bf 0%, rgba(255, 255, 255, 0) 100%), #53a6cb;
}

html[data-theme="night"] .weather {
  background: -webkit-gradient(linear, left bottom, left top, from(#55707e), to(rgba(255, 255, 255, 0))), #042232;
  background: linear-gradient(360deg, #55707e 0%, rgba(255, 255, 255, 0) 100%), #042232;
}

.weather__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1em;
}

.current {
  text-align: center;
  margin-bottom: 2em;
}

.current__city {
  font-size: 3em;
}

.current__description {
  font-size: 1.5em;
  margin-top: 13px;
}

.current__temperature {
  font-size: 3em;
}

.forecast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2em;
}

.forecast__item {
  text-align: center;
}

.forecast__time,
.forecast__icon {
  margin-bottom: 1em;
}

.forecast__icon {
  width: 50px;
  height: 50px;
}

.forecast__temperature {
  font-size: 1.5em;
}

.details__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2em;
}

.details__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.details__name {
  margin-bottom: 1em;
}

.details__value {
  font-size: 1.5em;
}

html.transition,
html.transition * {
  -webkit-transition: all 2000ms !important;
  transition: all 2000ms !important;
  -webkit-transition-delay: 0 !important;
  transition-delay: 0 !important;
}

.icon__01d,
.icon__01n,
.icon__02d,
.icon__02n,
.icon__03d,
.icon__03n,
.icon__04d,
.icon__04n,
.icon__09d,
.icon__09n,
.icon__10d,
.icon__10n,
.icon__11n,
.icon__11n,
.icon__13d,
.icon__13n,
.icon__50d,
.icon__50n {
  background-size: 50px;
  background-repeat: no-repeat;
}

.icon__01d,
.icon__01n {
  background-image: url("../images/01d.png");
}

.icon__02d,
.icon__02n {
  background-image: url("../images/02d.png");
}

.icon__03d,
.icon__03n {
  background-image: url("../images/03d.png");
}

.icon__04d,
.icon__04n {
  background-image: url("../images/04d.png");
}

.icon__09d,
.icon__09n {
  background-image: url("../images/09d.png");
}

.icon__10d,
.icon__10n {
  background-image: url("../images/10d.png");
}

.icon__11n,
.icon__11n {
  background-image: url("../images/11d.png");
}

.icon__13d,
.icon__13n {
  background-image: url("../images/13d.png");
}

.icon__50d,
.icon__50n {
  background-image: url("../images/50d.png");
}

/*# sourceMappingURL=main.css.map */



select {
  color: #7380b5;
  margin: 0 auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 28%;
  padding: 10px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #bdbdbd;
}

select:hover {
  cursor: pointer;
}

option {
  color: black;
  font-size: 13px;
  font-weight: 300;
}

/* Создаем псевдоэлемент для индикатора */
select {
  /* Стилизация основного элемента select */
  /* Добавляем паддинг справа для места под индикатор */
  padding-right: 20px;
  /* Размер паддинга, в котором будет размещен индикатор */
  /* Задаем фоновый цвет для подложки индикатора */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px top 50%;
  /* Фоновая картинка (SVG стрелка) будет отображаться справа и по центру вертикально */
  /* Можете изменить размер и цвет стрелки, заменив URL на свою SVG-стрелку или картинку */
}

@media only screen and (max-width: 960px) {
  .brand {
    position: relative;
    left: 0%;
    cursor: pointer;
    bottom: 17px;
  }

  .forecast {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 2em;
    flex-wrap: wrap;
  }

  select {
    width: 48%;
  }
}

@media only screen and (max-width: 767px) {
  .brand {
    position: relative;
    left: 0%;
    cursor: pointer;
    bottom: 17px;
  }

  .forecast {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 2em;
    flex-wrap: wrap;
  }

  select {
    width: 48%;
  }
}