body {
  background: #343638;
  min-width: 120px;
  overflow: overlay;
}
.alert-info-card {
  background: #1f1f21;
  padding: 5px 6px;
  border-radius: 5px;
}
* {
  padding: 0;
  margin: 0;
  font-family: Assistant, Arial, Helvetica, sans-serif;
}

.seprator {
  color: #edf1f4;
}
.header {
  z-index: 2;
  position: sticky;
  top: 0;
  background: linear-gradient(to right, rgb(237, 33, 58), rgb(147, 41, 30));
  text-align: center;
  color: white;
  padding: 5px 2px;
  box-shadow: 0 0 22px 0 rgb(0 0 0 / 35%);
}
.content {
  width: 95%;
  margin: 15px auto;
  max-width: 600px;
}
.map-container h2 {
  margin-top: 10px;
  margin-bottom: 5px;
}
.map {
  width: 100%;
  padding-top: 100%;
}
.logo {
  position: absolute;
  z-index: 999;
  margin: 15px;
  inset-inline-start: 10px;
  height: 60px;
  display: flex;
  text-decoration: none;
  color: unset;
}
.logo h1 {
  margin: unset;
  align-self: center;
  padding: 0 15px;
  font-size: 25px;
  font-weight: 700;
  pointer-events: none;
}
.logo img {
  pointer-events: none;
  height: inherit;
}
@media only screen and (min-width: 600px) {
  .map {
    padding: unset;
    height: calc(85vh);
  }
  .logo {
    width: 64px;
    margin: 10px;
  }
  .content {
    display: flex;
    max-width: 1500px;
  }
  .alert-info {
    min-width: 100%;
  }
  .alert-info-container {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
  }
  .map-container {
    flex-grow: 1.6;
    flex-basis: 0;
    min-width: 0;
    position: sticky;
    top: 67px;
    align-self: flex-start;
  }
  html[dir="rtl"] .alert-info-container {
    margin-left: 15px;
  }
  html[dir="ltr"] .alert-info-container {
    margin-right: 15px;
  }
}
.map-container h2 {
  margin-top: 1px;
  margin-bottom: 5px;
}

.alert-info {
  margin-top: 5px;
}

.alert-info-card:not(:first-child) {
  margin-top: 10px;
}
.alert-info-card .time {
  color: rgb(255, 94, 98);
  width: 100%;
  border-bottom: solid 2px #dedede;
  border-bottom: solid 2px #5d5d5d;
  padding-bottom: 1px;
  display: flex;
  justify-content: space-between;
}
.alert-info-card .time .threat {
  color: white;
  font-size: 15px;
}
#all-threats {
  font-size: 15.1px;
  background-color: white;
  background-color: #5d5d5d;
  padding: 1.5px 3.5px;
  border-radius: 4px;
}
.polygon {
  color: #ca1108;
  padding: 5px;
}
.polygon-numbers-container {
  margin-top: 3px;
  display: flex;
  align-items: stretch;
  flex-flow: wrap;
  gap: 5px;
}

.polygon-number {
  cursor: pointer;
  color: white;
  text-align: center;
  background: #ca1108;
  padding: 1px 12px;
  border-radius: 10px;
  font-size: 16px;
}

h2 {
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  height: 15%;
  width: 13px;
  border-radius: 8px;
  border: 4px solid transparent;
  background-clip: content-box;
  background-color: rgb(194, 194, 194);
  -webkit-text-size-adjust: none;
}

::-webkit-scrollbar {
  padding-top: 30px;
  height: 15%;
  width: 13px;
  background-color: transparent;
}

.float-btn {
  cursor: pointer;
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 10px;
  inset-inline-end: 10px;
  font-size: 20px;
  line-height: 20px;
  background: linear-gradient(to right, rgb(237, 33, 58), rgb(147, 41, 30));
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  width: 100%;
  position: fixed;
  height: 100%;
  background: #343638;
  z-index: 100000;
  justify-content: center;
  display: flex;
  color: white;
  font-size: xxx-large;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.loading.show {
  opacity: 1;
}
.loading img {
  height: 150px;
  margin: auto;
}


.instruction-box{
  background: #1f1f21;
  color: white;
  padding: 8px 5px;
      position: sticky;
    top: 52px;
    border-bottom: solid white 2px;
}

.instruction-box p{
  color: #bfbfbf;
}

