@charset "UTF-8";

.button {
  border: none;
  color: white;
  padding: 3px 3px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  margin: 2px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  width: 40px;
 }

.button1 {
  background-color: white; 
  color: black; 
  border: 2px solid #04AA6D;
}
.button1:hover {
  background-color: #04AA6D;
  color: white;
}
.button1:active {
  background-color: white;
  color: black;
  border: 2px solid white;
}
.button1:disabled {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}
.button1:disabled:hover {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}

.button2 {
  background-color: white; 
  color: black; 
  border: 2px solid #008CBA;
}

.button2:hover {
  background-color: #008CBA;
  color: white;
}
.button2:active {
  background-color: white;
  color: black;
  border: 2px solid white;
}
.button2:disabled {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}
.button2:disabled:hover {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}

.button3 {
  background-color: white; 
  color: black; 
  border: 2px solid #FA8C00;
}
.button3:hover {
  background-color: #FA8C00;
  color: white;
}
.button3:active {
  background-color: white;
  color: black;
  border: 2px solid white;
}
.button3:disabled {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}

.button3:disabled:hover {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}

.button4 {
  background-color: white; 
  color: black; 
  border: 2px solid #FF0000;
}
.button4:hover {
  background-color: #FF0000;
  color: white;
}
.button4:active {
  background-color: white;
  color: black;
  border: 2px solid white;
}
.button4:disabled {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}
.button4:disabled:hover {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}

.button5 {
  background-color: white; 
  color: black; 
  border: 2px solid #FF00FF;
}
.button5:hover {
  background-color: #FF00FF;
  color: white;
}
.button5:active {
  background-color: white;
  color: black;
  border: 2px solid white;
}
.button5:disabled {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}
.button5:disabled:hover {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}
.button6 {
  background-color: lightyellow; 
  color: red;
  font-weight: bold;
  border: 2px solid #FF00FF;
}
.button6:hover {
  background-color: #ccccFF;
  font-weight: bold;  
  color: red;
}
.button6:active {
  background-color: white;
  color: red;
  font-weight: bold;
  border: 2px solid white;
}
.button6:disabled {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}
.button6:disabled:hover {
  background-color: lightgray;
  color: whitesmoke; 
  border: 2px solid lightgray; 	
}

.button-f {
  margin-left: 12px;
  width: 45px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 17px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 17px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

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

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