#webcam-tiles {
  width: 100%;
  /* Loading spinner */
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
#webcam-tiles #loadingSpinner {
  color: #2D3B53;
  box-sizing: border-box;
  display: flex;
  justify-self: center;
  position: relative;
  width: 80px;
  height: 80px;
}
#webcam-tiles #loadingSpinner div {
  margin: 0;
  box-sizing: border-box;
  position: absolute;
  border: 4px solid #2D3B53;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#webcam-tiles #loadingSpinner div:nth-child(2) {
  animation-delay: -0.5s;
}
#webcam-tiles .attention {
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  border-left: 4px solid #2D3B53;
  background-color: #fff;
  color: #2D3B53;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.5;
}
#webcam-tiles .intro-row {
  display: flex;
  flex-flow: row nowrap;
  gap: 3rem;
  max-width: 1190px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  #webcam-tiles .intro-row {
    flex-direction: column;
  }
}
#webcam-tiles .intro-row .column:first-child {
  flex-basis: 45%;
}
#webcam-tiles .intro-row .column:first-child h2 {
  font-family: nexa-light, sans-serif;
}
#webcam-tiles .intro-row .column:first-child h2 .bold {
  font-family: "nexa heavy webfont", sans-serif;
  font-weight: 900;
}
#webcam-tiles .intro-row .column:last-child {
  flex-basis: 55%;
}
#webcam-tiles .intro-row .column p {
  padding-bottom: 0;
}
#webcam-tiles .main-feed {
  margin: 4rem auto;
}
#webcam-tiles .main-feed #cam-title {
  font-family: "nexa heavy webfont", Helvetica, Arial, Lucida, sans-serif;
  font-size: 30px;
  text-align: center;
  margin-bottom: 1.5rem;
}
#webcam-tiles .main-feed #cam-video-wrap {
  position: relative;
}
#webcam-tiles .main-feed #cam-video-wrap #cam-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
  border-radius: 12px;
}
#webcam-tiles .main-feed #cam-video-wrap::after {
  content: "";
  position: absolute;
  top: 2%;
  left: 2%;
  width: 6vw;
  height: 4vw;
  z-index: 3;
  opacity: 0.9;
  pointer-events: none;
  background: url("../../img/overlay.png") no-repeat;
  background-size: contain;
}
#webcam-tiles .main-feed .note {
  margin: 1.5rem 0;
}
#webcam-tiles .cameras {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
#webcam-tiles .cameras .camera-tile {
  width: 100%;
  display: flex;
  flex-basis: calc(20% - 1.8rem);
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1200px) {
  #webcam-tiles .cameras .camera-tile {
    flex-basis: calc(33.3% - 1.5rem);
  }
}
@media (max-width: 900px) {
  #webcam-tiles .cameras .camera-tile {
    flex-basis: calc(50% - 1rem);
  }
}
@media (max-width: 500px) {
  #webcam-tiles .cameras .camera-tile {
    flex-basis: 100%;
  }
}
#webcam-tiles .cameras .camera-tile:hover .tile-inner::after {
  width: 4rem;
  height: 4rem;
}
#webcam-tiles .cameras .camera-tile:hover h3.title {
  color: #4F84B2;
}
#webcam-tiles .cameras .camera-tile .tile-inner {
  position: relative;
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1/1;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
#webcam-tiles .cameras .camera-tile .tile-inner::after {
  content: "";
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  background: url("../../img/play-button.svg") no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
#webcam-tiles .cameras .camera-tile h3.title {
  font-family: nexa-light, Helvetica, Arial, Lucida, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1rem;
  transition: all 0.3s ease-in-out;
}

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