#alarms-popup {
  position: absolute;
  width: 458px;
  height: 447px;
  border-radius: 30px;
  border: 5px solid #FFF;
  background: #450920;
  box-shadow: 0px 0px 20px 0px #000;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
@media screen and (max-width: 820px) {
  #alarms-popup {
    width: 305px;
    height: 298px;
  }
}
#alarms-popup p {
  color: #FFF;
  font-size: 30px;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  #alarms-popup p {
    font-size: 20px;
  }
}
#alarms-popup #alarms-options {
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  width: 100%;
}
@media screen and (max-width: 820px) {
  #alarms-popup #alarms-options {
    font-size: 20px;
  }
}
#alarms-popup .alarms {
  list-style: none;
  padding: 12px;
  width: 100%;
  text-align: center;
}
#alarms-popup .alarms:hover {
  cursor: pointer;
  background-color: #E777A2;
}
#alarms-popup .alarms:active {
  background-color: #c56087;
}
#alarms-popup #selected-alarm {
  background-color: #AB295B;
}/*# sourceMappingURL=alarm.css.map */