/* 

@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
*/
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: large;
  color: #FFFFFF;
  background-color:#242525;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

h2 {
  font-family: 'Roboto'
}


.centringContainer {
  width: 96%;
	max-width: 512px;
  height: 100%;
	margin: auto;
  position: relative;
  top: 16px;
}

.main {
  height: calc(100% - 90px);
  overflow-y: auto;
  padding-left: 6px;
  padding-right: 6px;
}

.full {
	width: 100%;
	margin: auto;
	margin-bottom: 0px;
}

.table {
  display: table;
  width: 100%;
}

.row {
  display: table-row;
  height: 24px;
}

.left {
	min-width: 96px;
  height: 32px;
	text-align: right;
  display: table-cell;
  vertical-align: middle;
  font-family: 'Roboto', sans-serif;
}

.slidecontainer {
  width: 50%;
  height: 32px;
  display: table-cell;
  vertical-align: middle;
  padding-left: 6px;
}

#bitDepthText {
  width: 25%;
  height: 32px;
  display: table-cell;
  vertical-align: top;
  padding-left: 6px;
}

.togglecontainer {
  width: 50%;
  height: 32px;
  display: table-cell;
  vertical-align: middle;
  padding-left: 6px;
}


.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}


.button {
	background: #242525;
	cursor: pointer;
	border: 0px;
	color: #16f10b;
	width: 32px;
	height: 32px;
}

.button:hover {
	color: #16f10b;
	/* 8496b0*/
}

.slider {
	-webkit-appearance: none; 
	appearance: none;
	width: 100%;
	height: 16px;
	outline: none;
  background: #242525;
}


.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	background: #242525;
	cursor: pointer;
	margin-top: -6px;
	border: 2px solid #8496b0;
	border-radius: 8px;
}

.slider::-moz-range-thumb {
	width: 16px;
	height: 100%;
	background: #ff0000;
	cursor: pointer;
	border-width: 2px;
	border-color: #8496b0;
	border-radius: 50%;
}

.slider::-webkit-slider-thumb:hover {
	background: #EFEFFF;
}

.slider::-moz-range-thumb:hover {
	background: #EFEFFF;
}

input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 4px;
	cursor: pointer;
	background: #8496b0;
	border-radius: 2px;
}

input[type=range]::-moz-range-track {
	width: 100%;
	height: 4px;
	cursor: pointer;
	background: #8496b0;
	border-radius: 2px;
}

#responsive-canvas {
  width: 100%;
  color: #FFFFFF;
  background-color:#242525;
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  margin-left: 2px;
}


.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The toggle slider */
.toggleSlide {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #837c7c;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 24px;
}

.toggleSlide:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  left: 4px;
  bottom: 3.5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 24px;
}

input:checked + .toggleSlide {
  background-color: #e83b29;
}

input:checked + #orangeBack {
  background-color: #dd7d3b;
}

/*input:focus + .toggleSlide {
  box-shadow: 0 0 1px #8496b0;
}*/

input:checked + .toggleSlide:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}