*{
    font-family: 'Sora', sans-serif;
}
body{
    background: black;
    color: white;
    
}

#Confirmed,#Active,#Recovered,#Deceased{
    margin-top: 1.5rem;
}
.middle span{
       color: #4c75f2;
}
#NewActiveCases{
    visibility: hidden;
}
#Vaccines{
    color: #db5581;
    padding: 1rem;
    background: rgba(219,85,129,.12549019607843137);
}
.ConfirmedDiv,.ActiveDiv,.RecoveredDiv,.DeceasedDiv{
    padding: 1rem;
    margin: 1rem;
    border-radius: 5px;
}
.ActiveDiv{
    background: rgba(66, 100, 212, 0.125);
}
.RecoveredDiv:hover{
    background: rgba(40,167,69,.12549019607843137);

}
.DeceasedDiv:hover{
    background: rgba(108,117,125,.06274509803921569);

}
.ConfirmedDiv:hover{
    background: rgba(255,7,58,.12549019607843137);

}
.VaccinatedDose2{
    color:rgb(47, 255, 158);
    padding: 1rem;
    background: rgba(142, 233, 142, 0.125);
}
.VaccinatedDose1{
    color:rgb(0, 204, 255);
    padding: 1rem;
    background: rgba(140, 224, 235, 0.125);
}
@media (max-width: 576px){
    .vaccine {
        flex-direction: column;
    }
}

.mode {
    float:right;
}
.dark{
    background-color:white;
    color: black;
}
.table{
    --bs-table-hover-color: white;
    --bs-table-hover-bg: rgba(124, 122, 122, 0.548);
}
.alerts, .alerts a {
    background: rgba(220,53,69,.12549019607843137);
    color: #dc3545;
    font-weight: 600;
}


.loader_bg{
    position: fixed;
    z-index: 999999;
    background: white;
    width: 100%;
    height: 100%;
}
.loader{
    border: 0 soild transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

@keyframes loader{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 0;
    }
}
.pl {
    display: block;
    width: 9.375em;
    height: 9.375em;
  }
  
  .pl__arrows,
  .pl__ring-rotate,
  .pl__ring-stroke,
  .pl__tick {
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .pl__arrows {
    animation-name: arrows42;
    transform: rotate(45deg);
    transform-origin: 16px 52px;
  }
  
  .pl__ring-rotate,
  .pl__ring-stroke {
    transform-origin: 80px 80px;
  }
  
  .pl__ring-rotate {
    animation-name: ringRotate42;
  }
  
  .pl__ring-stroke {
    animation-name: ringStroke42;
    transform: rotate(-45deg);
  }
  
  .pl__tick {
    animation-name: tick42;
  }
  
  .pl__tick:nth-child(2) {
    animation-delay: -1.75s;
  }
  
  .pl__tick:nth-child(3) {
    animation-delay: -1.5s;
  }
  
  .pl__tick:nth-child(4) {
    animation-delay: -1.25s;
  }
  
  .pl__tick:nth-child(5) {
    animation-delay: -1s;
  }
  
  .pl__tick:nth-child(6) {
    animation-delay: -0.75s;
  }
  
  .pl__tick:nth-child(7) {
    animation-delay: -0.5s;
  }
  
  .pl__tick:nth-child(8) {
    animation-delay: -0.25s;
  }
  
  /* Animations */
  @keyframes arrows42 {
    from {
      transform: rotate(45deg);
    }
  
    to {
      transform: rotate(405deg);
    }
  }
  
  @keyframes ringRotate42 {
    from {
      transform: rotate(0);
    }
  
    to {
      transform: rotate(720deg);
    }
  }
  
  @keyframes ringStroke42 {
    from,
      to {
      stroke-dashoffset: 452;
      transform: rotate(-45deg);
    }
  
    50% {
      stroke-dashoffset: 169.5;
      transform: rotate(-180deg);
    }
  }
  
  @keyframes tick42 {
    from,
      3%,
      47%,
      to {
      stroke-dashoffset: -12;
    }
  
    14%,
      36% {
      stroke-dashoffset: 0;
    }
  }
.orange{
    color: rgb(219, 85, 129);
}

/* The switch - the box around the slider */
.switch {
    --width-of-switch: 3.5em;
    --height-of-switch: 2em;
    /* size of sliding icon -- sun and moon */
    --size-of-icon: 1.4em;
    /* it is like a inline-padding of switch */
    --slider-offset: 0.3em;
    position: relative;
    width: var(--width-of-switch);
    height: var(--height-of-switch);
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f4f4f5;
    transition: .4s;
    border-radius: 30px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: var(--size-of-icon,1.4em);
    width: var(--size-of-icon,1.4em);
    border-radius: 20px;
    left: var(--slider-offset,0.3em);
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(40deg,#ff0080,#ff8c00 70%);
    ;
   transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #303136;
  }
  
  input:checked + .slider:before {
    left: calc(100% - (var(--size-of-icon,1.4em) + var(--slider-offset,0.3em)));
    background: #303136;
    /* change the value of second inset in box-shadow to change the angle and direction of the moon  */
    box-shadow: inset -3px -2px 5px -2px #8983f7, inset -10px -4px 0 0 #a3dafb;
  }

  
 