html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #121212;
  margin: 0;
  padding: 0;
}

.complete_container {
  font-family: "Roboto", sans-serif;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.complete_container .complete_container_top {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
}
.complete_container .complete_container_top .weather {
  border-radius: 10px;
  background-color: #282828;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}
.complete_container .complete_container_top .weather .weather_location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 20px;
}
.complete_container .complete_container_top .weather .weather_location .location_inner {
  display: flex;
  align-items: center;
}
.complete_container .complete_container_top .weather .weather_location .location_inner h3 {
  margin: 0;
  margin-left: 10px;
  padding: 0;
  font-size: 1rem;
}
.complete_container .complete_container_top .weather .weather_location .location_inner img {
  width: 15px;
  height: 15px;
}
.complete_container .complete_container_top .weather .weather_location h1 {
  margin: 0;
  padding: 5px 0px;
  font-weight: 700;
}
.complete_container .complete_container_top .weather .weather_location h4 {
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.complete_container .complete_container_top .weather .weather_icon {
  display: flex;
  align-items: center;
}
.complete_container .complete_container_top .weather_forecast {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  max-height: 100px;
  transition: max-height 0.5s ease;
}
.complete_container .complete_container_top .weather_forecast.show-all {
  max-height: 1000px;
}
.complete_container .complete_container_top .weather_forecast .forecast_item {
  display: none;
  position: relative;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  color: #ffffff;
  background-color: #282828;
  padding: 5px 40px;
  margin: 5px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.complete_container .complete_container_top .weather_forecast .forecast_item:first-child {
  display: flex;
  cursor: pointer;
}
.complete_container .complete_container_top .weather_forecast .forecast_item .weather_forecast.show-all .forecast_item {
  display: flex;
}
.complete_container .complete_container_top .weather_forecast .forecast_item span {
  width: 160px;
  align-items: center;
}
.complete_container .complete_container_top .weather_forecast .forecast_item img {
  width: 30px;
  height: 30px;
}
.complete_container .complete_container_top .weather_forecast .forecast_item .toggle_indicator {
  position: absolute;
  right: 40px;
  text-align: right;
  font-weight: 800;
}
.complete_container .complete_container_middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 5px;
}
.complete_container .complete_container_middle [data-link] {
  cursor: pointer;
}
.complete_container .complete_container_middle .site_shortcut_container {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  background-color: #282828;
  color: #ffffff;
  text-align: center;
  transition: 0.3s;
}
.complete_container .complete_container_middle .site_shortcut_container .site_shortcut_image {
  width: 50px;
  height: auto;
}
.complete_container .complete_container_middle .site_shortcut_container .site_shortcut_image img {
  width: 50px;
  height: 50px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.complete_container .complete_container_middle .site_shortcut_container .site_shortcut_title {
  font-size: 0.7rem;
}
.complete_container .complete_container_middle .site_shortcut_container .site_shortcut_title h2 {
  margin: 0;
  padding: 10px 0;
}
.complete_container .complete_container_middle .site_shortcut_container:hover {
  background-color: #3f3f3f;
}

@media only screen and (max-width: 975px) {
  .complete_container {
    padding: 0 20px;
  }
}/*# sourceMappingURL=style.css.map */