.buttonunder{
 font-size: 2em;
 border-radius: 10px;
 margin:10px;
 padding-left: 10px;
 padding-right: 10px;
 background-color: grey;
 color:honeydew;
}

div {
	display: block;
	width: 99%;
	float: left;
	padding-left:10px;
}

.equa{
	float:left;
	font-size:24px;
}

.over{
	border-style: solid; 
	padding-left:10px;
}

input[type="number"]{
	width:100px;
}

h1{
	display: inline-block;
	float: left;
	    -webkit-margin-before: 0em;
		-webkit-margin-after: 0em;
	
}
small{
	font-size: 0.5em;
}

/* body { padding-top: 70px; } */
.fixed-top {
  max-height: 100vh;
  overflow: auto;
}

table.center {
    margin-left:auto; 
    margin-right:auto;
  }

table, th, td {
    border: 2px solid black;
    border-collapse: collapse;
	text-align: center;
}

th, td {
    padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
}

th{
	background-color: Grey;
}

.sub { 
    vertical-align: sub;
    font-size: smaller;
}

.sup { 
    vertical-align: super;
    font-size: smaller;
}

.slider {
    -webkit-appearance: none;
    width: 80%;
    height: 15px;
    border-radius: 5px;   
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; 
    background: #008000;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #008000;
    cursor: pointer;
}

img{
	width: 100%;
	max-width: 1000px;
}

.tswitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.tswitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.tslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: red;
  -webkit-transition: .4s;
  transition: .4s;
}

.tslider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .tslider {
  background-color: #2196F3;
}

input:focus + .tslider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .tslider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.tslider.round {
  border-radius: 34px;
}

.tslider.round:before {
  border-radius: 50%;
}