* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  position: absolute;
  transition: 0.5s ease;
}

.weather_bg_image {
  overflow-y: scroll !important;
  background: rgba(0, 0, 0, 0.3215686275);
  overflow: hidden;
  height: 100%;
  position: relative;
}
.weather_bg_image .current_details {
  position: absolute;
  width: 100%;
  bottom: 80px;
}
@media screen and (max-width: 991px) {
  .weather_bg_image .current_details {
    left: 0;
  }
}
@media screen and (max-width: 576px) {
  .weather_bg_image .current_details {
    bottom: -110px;
    left: 0;
  }
}

.celsuis_day_details .searchfield {
  background-color: rgba(0, 0, 0, 0.1490196078);
  border: 1px solid rgba(206, 212, 218, 0.3098039216);
  color: #fff;
  border-right: unset;
}
.celsuis_day_details .searchfield::placeholder {
  color: #fff;
}
.celsuis_day_details .searchfield:focus {
  box-shadow: unset;
}
.celsuis_day_details #suggestion_div {
  background-color: rgba(0, 0, 0, 0.1490196078);
  border: 1px solid rgba(206, 212, 218, 0.3098039216);
  border-radius: 5px;
}
.celsuis_day_details #suggestion_div a {
  color: #fff;
  text-decoration: none;
}
.celsuis_day_details #suggestion_div a li {
  list-style: none;
  margin: 5px 14px;
}
.celsuis_day_details .input_group {
  background-color: rgba(0, 0, 0, 0.1490196078);
  border: 1px solid rgba(206, 212, 218, 0.3098039216);
  border-left: unset;
  margin-left: unset !important;
}
.celsuis_day_details .input_group img {
  width: 25px;
}
.celsuis_day_details .celcius p {
  font-size: 9rem;
}
@media screen and (max-width: 576px) {
  .celsuis_day_details .celcius p {
    font-size: 5rem;
  }
}
.celsuis_day_details .city_name span {
  font-weight: bold;
  font-size: 34px;
}
@media screen and (max-width: 576px) {
  .celsuis_day_details .city_name span {
    font-size: 19px;
  }
}
.celsuis_day_details .city_name p {
  font-size: 15px;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .celsuis_day_details .city_name p {
    font-size: 14px;
  }
}
.celsuis_day_details .location_details {
  width: 350px;
  position: relative;
  min-height: 350px;
  backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.3490196078) 0px 5px 15px;
  border-radius: 20px;
}
@media screen and (max-width: 576px) {
  .celsuis_day_details .location_details {
    width: 100%;
    min-height: 300px !important;
  }
}
.celsuis_day_details .location_details .location_small_details {
  position: absolute;
  width: 100%;
  top: 0;
}
.celsuis_day_details .location_details .location_small_details div {
  margin: 40px 0;
}
@media screen and (max-width: 576px) {
  .celsuis_day_details .location_details .location_small_details div {
    margin: 34px 0;
  }
}
.celsuis_day_details .location_details .location_small_details span {
  font-weight: bold;
}

.weather_details {
  border: 3px solid #fff;
  border-radius: 20px;
  position: relative;
  top: 200px;
  height: 85px;
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 576px) {
  .weather_details {
    top: 20px;
    margin-bottom: 30px;
  }
}
.weather_details .details_box_ins {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 576px) {
  .weather_details .details_box_ins {
    grid-template-columns: 100px 100px 100px 100px;
    overflow-x: scroll;
  }
}
.weather_details .details_box_ins p {
  font-weight: bold !important;
  font-size: 18px;
}
.weather_details .details_box_ins small {
  font-weight: 600;
}

.loading {
  position: relative;
}
.loading::after {
  z-index: 999999999;
  position: fixed;
  content: "";
  background-image: url(/images/loader.gif);
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: red; */
  background-repeat: no-repeat;
  background-size: contain;
}
.loading::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.968627451);
  z-index: 9999999;
}

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