#weather-card-template {
  position: absolute;
  top: 0;
  right: 0;
  min-width: auto;
  max-width: 300px;
}
#weather-card-template p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100px;
}
#weather-card-template .btn {
  opacity: 50%;
}
#weather-card-template .btn:hover {
  opacity: 1;
  transition: 100ms;
}
#weather-card-template .btn:focus {
  outline: none;
  box-shadow: none;
}

#settings_box {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
}
#settings_box #settings_btn[aria-expanded=false] {
  border-top-left-radius: 5%;
  border-top-right-radius: 5%;
}
#settings_box .collapsed {
  transition: 1200ms;
}
#settings_box #settings_btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#settings_box #settings_btn:focus {
  outline: none;
  box-shadow: none;
}
#settings_box #settings_card {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#searchField {
  border: none;
  outline: none;
}
#searchField:focus {
  outline: none;
  box-shadow: none;
}

.weather-card {
  opacity: 1;
}

.loading {
  display: flex;
  flex-direction: row;
}

.loading__letter {
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Audiowide";
  animation-name: bounce;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.loading__letter:nth-child(2) {
  animation-delay: 0.1s;
}

.loading__letter:nth-child(3) {
  animation-delay: 0.2s;
}

.loading__letter:nth-child(4) {
  animation-delay: 0.3s;
}

.loading__letter:nth-child(5) {
  animation-delay: 0.4s;
}

.loading__letter:nth-child(6) {
  animation-delay: 0.5s;
}

.loading__letter:nth-child(7) {
  animation-delay: 0.6s;
}

.loading__letter:nth-child(8) {
  animation-delay: 0.8s;
}

.loading__letter:nth-child(9) {
  animation-delay: 1s;
}

.loading__letter:nth-child(10) {
  animation-delay: 1.2s;
}

@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-5px);
  }
  80%, 100% {
    transform: translateY(0px);
  }
}

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