.darkbgd{
    background-color: #6d9f81;
}
.lightbgd, body{
    background-color: #A7C5B3;
}

.font-white{
 color: #fff;   
}

.center{
    text-align: center;
    margin: auto;
}

.bingoSquare{
    aspect-ratio: 1/1;
    background-color: rgba(0,0,0,0);
    border: none;
    position: relative;
    padding: 0px;
    color: #000 !important;
}

td{
    border: 2px solid #6d9f81;
    width: 20%;
}

th{
    aspect-ratio: 1/1;
    width: 20%;
    background-color: #6d9f81;
    color: #fff;
    font-size: 40px;
    font-weight: bolder;
}

.hidden{
    display: none;
}

.checkMark{
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;
    top: 0;
    left: 0;
}

.sqPic{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.tinyfont{
    font-size: 12px;
    line-height: 0.5;
}



/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* 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: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #032b01;
}

input:focus + .slider {
  box-shadow: 0 0 1px #032b01;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
