#temp-details-modal {
  display: none;
  position: absolute;
  min-width: 100vw;
  min-height: 100vh;
  height: 100%;
  background-color: rgba(248, 246, 246, 0.25);
  top: 0px;
  z-index: 10;
}

#modal-date {
  text-align: center;
  font-size: xx-large;
  margin: 0px 8px 8px 8px;
  width: 200px;
}

@media (max-width: 760px) {
  #modal-date {
    margin: 0px;
  }
}

@media (max-width: 375px) {
  #modal-date {
    font-size: 2.5rem;
    width: 175px;
  }
}

#sunsetInfo {
  margin-bottom: 8px;
}

@media (max-width: 375px) {
  #sunsetInfo {
    p {
      font-size: 12px;
    }
    margin-bottom: 8px;
  }
}
.modal-titles-placeholder {
  display: flex;
  border-bottom: 2px solid gray;
  margin-bottom: 8px;
}
@media (max-width: 375px) {
  .modal-titles-placeholder p {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  #hourList p {
    font-size: 13px;
  }
  #hourList span {
    font-size: 10px;
  }
}

.extra-info-item-modal {
  padding: 8px;
}

.extra-info-item-modal img {
  width: 30px;
  height: 30px;
}

.modal-arrow {
  fill: #3ea6f6;
}

.darkmode .modal-arrow {
  fill: #fff;
}

@keyframes changemodalday {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

.hand-swipe-right {
  display: none;
}

@media (max-width: 760px) {
  .hand-swipe-right {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100000;
    pointer-events: none;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    animation: changemodalday 1.5s infinite linear;
    padding-bottom: 33%;
  }
}
