@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');

body {
  background-color: #ccc;
  font-family: 'Source Sans Pro', sans-serif;
}

p10 {
  font-size: xx-large;
}

p13 {
  font-size: 200%;
}

p16 {
  font-size: 150%;
}

p17 {
  font-size: 150%;
  color: white;
}
p19 {
  font-size: 200%;
  font-family: 'Nunito', sans-serif;
  color: white;
  border: 0px solid;
}

.Hide {
  opacity: 0;
}

.Submit {
  width: 25%;
  height: 100px;
  background-color: rgb(231, 231, 231);
  border-radius: 5px;
  border-width: 0px;
}

.Submit:hover {
  background-color: #ccc;
}



input[type="checkbox"][id^="op"] {
    display: none;
  }
  label {
    border: 1px solid #fff;
    padding: 0px;
    display: block;
    position: relative;
    margin: 0px;
    cursor: pointer;
  }  
  label::before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
  }
  
  label img {
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
  }
  
  :checked+label {
    border-color: rgb(58, 99, 212);
    border-width: 3px;
  }
  
  :checked+label::before {
    content: "✓";
    background-color: rgb(87, 131, 250);
    transform: scale(1);
  }
  
  :checked+label img {
    transform: scale(0.95);
    box-shadow: 0 0 30px rgb(58, 99, 212);
    z-index: -1;
  }





  .slider {
    -webkit-appearance: none;
    height: 2%;
    width: 250px;
    border-radius: 10px;
    background: #ccc;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    margin-bottom: 3px;
    background: white;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: white;
    cursor: pointer;
  }







  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 15px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .Slide {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(214, 214, 214);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
  }
  
  .Slide:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .Slide:before {
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
  }


 
  .PassInput {
    width: 200px;
    height: 25px;
    top: 0.4;
  }


  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }



  .column {
    float: left;
    width: 17%;
  }
  .row:after {
    content: "";
    display: table;
    clear: both;
    width: 100%;
  }



.checkmark {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 0;
  background-color: rgb(214, 214, 214);
  border-width: 0px;
}

.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container input:checked ~ .checkmark {
  background-color: rgb(168, 168, 168);
  content: "";
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 24px;
  height: 18px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  overflow: hidden;
  box-sizing: border-box;
  content: "";
  display: block;
  border-radius: 100px;
  position: absolute;
  box-sizing: border-box;
  top: 2px;
  box-shadow:
      inset 0 -8px 0 2px,
      inset 0 0 0 2px;
  width: 24px;
  height: 24px;
  width: 8px;
  height: 8px;
  border: 2px solid transparent;
  box-shadow:
      inset 0 0 0 6px,
      0 0 0 4px,
      6px 0 0 0,
      -6px 0 0 0 ;
  color: white;
  left: 11px;
  top: 10px
}
