/* The switch - the box around the slider */
.selector {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .selector input {display:none;}
  
  /* 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: #1E70DD;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #1E70DD;
  }
  
  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%;
  }

  .selectorSwitch {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 5px;
  }

  /* The Python 2 or 3 Labels flanking the toggle switch! */
  .label1 {
    padding-right: 10px;
    padding-left: 10px;
  }

/* Java code snippet */
/* Now with not inline CSS! */
#codeExampleJava {
  background: #ccc;
  width: 700px;
  border-radius: 5px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
  padding: 5px;
}

/* The deprication modal */
.modal {
  display: none;
  position: fixed;
  background-color: #2b2e38;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 5px;
  border: 3px solid #ccc;
  width: 50%;
}

/* The Close Button */
.close {
  color: black;
  float: right;
  font-size: 30px;
  font-weight: bold;
}

.close:hover{
  color: black;
  cursor: pointer;
}