* {
  margin: 0;
  padding: 0;
  list-style: none;
}

body, html {
  background: url("../img/sun.jpg") fixed no-repeat center/100% 100%;
}

body::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-button, html::-webkit-scrollbar-button {
  background-color: transparent;
}

body::-webkit-scrollbar-track-piece, html::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  border: 1px solid black;
  background-color: #ffc099;
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: 50px auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container .top_bar .title {
  text-align: center;
  font-size: 1.2rem;
  color: #0c4497;
}

.container .top_bar .search_bar {
  position: relative;
  width: 450px;
  margin: 30px auto 0;
}

.container .top_bar .search_bar .search_item {
  position: relative;
}

.container .top_bar .search_bar .search_item .search_input,
.container .top_bar .search_bar .search_item .search_btn {
  border: 0;
  padding: 10px;
  line-height: 20px;
  font-size: 1.5rem;
}

.container .top_bar .search_bar .search_item .search_input {
  width: 100%;
  background-color: #fee5dd;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

.container .top_bar .search_bar .search_item .search_input.change {
  border-radius: 10px 10px 0 0;
}

.container .top_bar .search_bar .search_item .search_btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  color: #27a680;
  cursor: pointer;
}

.container .top_bar .search_bar .match_list {
  width: 100%;
  height: 141px;
  background-color: #ffc099;
  border-radius: 0 0 10px 10px;
  visibility: hidden;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container .top_bar .search_bar .match_list.show {
  visibility: visible;
}

.container .top_bar .search_bar .match_list::-webkit-scrollbar {
  width: 10px;
}

.container .top_bar .search_bar .match_list::-webkit-scrollbar-button {
  height: 5px;
  background-color: transparent;
}

.container .top_bar .search_bar .match_list::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

.container .top_bar .search_bar .match_list::-webkit-scrollbar-thumb {
  border: 1px solid black;
  background-color: #ffc099;
  border-radius: 4px;
}

.container .top_bar .search_bar .match_list .match_value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid black;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.container .top_bar .search_bar .match_list .match_value:hover {
  background-color: #ff99c2;
}

.container .top_bar .search_bar .match_list .match_value .cityName {
  pointer-events: none;
}

.container .weatherContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 450px;
  height: 300px;
  margin: 100px auto 0;
  padding: 20px;
  background-color: #b5cef8;
  border-radius: 20px;
  visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container .weatherContent.show {
  visibility: visible;
}

.container .weatherContent .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .weatherContent .content .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .weatherContent .content .temp {
  font-size: 3rem;
  font-weight: 500;
}

.container .weatherContent .content .des {
  margin-left: 4rem;
  padding: 5px 0;
  font-size: 1.2rem;
}

.container .weatherContent .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container .weatherContent .detail .detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container .weatherContent .detail .detail_item .num {
  font-size: 0.875rem;
}

.alert_message {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 40px;
  padding: 5px;
  background-color: #0048b5;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.alert_message.show {
  top: 0;
}

.alert_message .message {
  color: #f9dcc4;
  line-height: 20px;
  font-weight: 400;
}

.loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.6);
  line-height: 100vh;
  z-index: 1000;
  text-align: center;
}

.loading.show {
  display: block;
}
/*# sourceMappingURL=index.css.map */