.tb input {}

.tb {
	padding: 6px;
	padding-left: 10px;
}

input[type=text], input[type=password] {
	padding: 2px;
	margin: 2px 0 2px 0;
	font-size: 25px;
	width: 150px;
  border: none;
  background-color: #4CAF50;
  color: white;
}

.dd-select {position: relative;}
.dd-select select {display: none; }

.select-selected:after {
	position: absolute;
	content: "";
}

.select-items div,.select-selected {
	padding: 8px 16px;
	cursor: pointer;
}

.select-items {
	position: absolute;
	z-index: 10;
}

.select-hide {display: none;}


.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

.sticky + .content {
	padding-top: 60px;
}



.active {
	background-color: #4CAF50;
}

* {
	box-sizing: border-box;
}

.databox {
	text-align: center;
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
	background-color: #ccc;
	font-size: 18px;
}
.databox p {
	margin: 6px;
	
}

/* 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;
	z-index: 1;
}

.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: #4CAF50;
}

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%;
}




/* select */

.select-wrapper {
  width: 150px;
}
select::-ms-expand {
  display: none;
}
select{
	  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  
  -moz-padding-start: calc(10px - 3px);
  
  width: 100%;
  height: 120px;
  -moz-padding-start: calc(10px - 3px);
  padding-left: 10px;
  background-color: #BFBFBF;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  
	  box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
  border-radius: 3px;
  outline: none;
  
}
select option {
  color: #404040;
}
select option:checked  {
  color: #666;
  background-color: #84BD00;
}


.button {
	
	width: 100%;
	margin:2px;
	padding:10px;
	border: 1px;
  background-color: #4CAF50;
  color: white;
	
}
