#lights-container {
  width: 380px;
  height: fit-content;
  display: flex;
  background-color: rgba(0,0,0,0.35);
  
  justify-content: center;
  align-items: center;
  padding:20px 10px 20px 10px;
  
}


#blurred-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); 
  backdrop-filter: blur(10px); 
  z-index: 5; 
}



.bulbs_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 55px;
  background-color: rgb(61, 61, 61);
  border-radius: 50px;
}

.bulb_up {
  background-color: rgb(34, 34, 34);
  width: 44px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 3px solid black;
  border-top: 13px solid black;
}

.bulb {
  background-color: rgb(34, 34, 34);
  width: 44px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid black;
  border-top: 13px solid black;
}

.red_light {
  background-color: red;
  transition: all 0.2s;
}
.loader-text-upper, .loader-text-lower{
  color:white;
  font-family: F1-wide;
  width:350px;
  background-color: rgba(0,0,0,0.5);
  color: white;
  text-align: center;
  padding:15px 25px 10px 25px;}

.loader-text-lower{
  border-radius:0 0 10px 10px;
  font-size:18px;
}
.loader-text-upper{
  border-radius: 10px 10px 0 0;
  font-size: 20px;


}


#loader-container{
  width: 400px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  z-index:6;
  visibility: hidden;

}
