.toggle1-container h7 {
  font-size: 17px;
  background: #c30000;
  margin-bottom: 15px;
  margin-top: -32px;
  border: 2px solid #ffffff;
  padding: 10px 25px 10px 25px;
  box-shadow: #b9ff01 0px 0px 10px 1px;
  border-radius: 10px;
}

.toggle1-container h8 {
  font-size: 25px;
  color: #ff4c4c;
  text-shadow: #f00 2px 0 7px;
  animation:berkedip 1.2s infinite;
}

@keyframes berkedip{
    0%{     color: #ff4c4c;    }
    49%{    color: #ff4c4c; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #ff4c4c;    }
}

.toggle1-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: Arial, sans-serif;
  width: 100%;
  margin-top: 40px;
}
.toggle1 {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #fd6e6e;
  border-radius: 30px;
  cursor: not-allowed;
}
.toggle1:before {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: 0.3s;
}
