/* CSS Document */
body{
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    background-color:#333;
    color:#ccc;
   
    
}
#container{
	width:500px;
	
}
.button{
	width:150px;
	height:50px;
	font-size: 1.5em;
	line-height: 1.5em;
	margin-top:20px;
	cursor:pointer;
}
.widebutton{
	width:300px;
	height:50px;
	font-size: 1.5em;
	line-height: 1.5em;
	margin-top:20px;
	padding:10px;
}
.swplacer{
display:flex;
	justify-content: center;	
}
#wrapper{
	width:100%;
	
	display:flex;
	justify-content:space-around;
}
h1{font-size:1.4em;}
#kopbovenlampjes{
	display:flex;
	justify-content: center;
}
.switch_container{
	width:400px;
	padding:30px 0;
	margin:0 auto;
	display:flex;
	justify-content: space-around;
	
}
table{
    width:95%;
    border:1px #999 solid;
}
td{
    border:1px #999 solid;
}
form{
    float:right; width:110px; margin-top:15px;
}
form.normal{
	float:left;
	width:300px;
}
 
.mychart{
     margin-right:30px; width:50%;height:500px;
}
select{
    width:100px;
    color:white;
    background-color:#333;
}
#data{
	margin-top:30px;
}
#deletebtn{
	
	margin:30px 0 30px 0;
	padding:10px;
	width:140px;
	height:20px;
	border-radius:4px;
	background-color: #aaa;
	color:#333;
	font-size: 1.1em;
	text-align: center;
	cursor:pointer;
	transition:all .8s;
}
#deletebtn:hover{
	background-color: #ddd;
}
a{text-decoration: none;}
.deletebtn_main29, .deletebtn_main30 {
	
	margin:10px 10px 10px 0;
	padding:10px;
	width:140px;
	height:20px;
	border-radius:4px;
	background-color: #aaa;
	color:#333;
	font-size: 1.1em;
	text-align: center;
	cursor:pointer;
	transition:all .8s;
}

.deletebtn_main29:hover{
	background-color: #0f0;
}

.deletebtn_main30:hover{
	background-color: #f6f;
}
#msg{
	margin-top:20px;
	font-size:1.5em;
}
.testforminput{padding:10px; margin:10px; display:block;}

/* 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: #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);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.svg{
	height:200px;
	display:block;
	margin-bottom:30px;
}
#apiform{
	float:left;
	
}
#apiform>input{
	margin:10px;
	padding:5px;
	
}
@media screen and (max-width:1000px){
	#wrapper{
		width:100%;
	}
	#container{width:350px;}
	.chart{width:500px;}
	
	
}