.otapp{
	font-size: 12px;
	color: rgb(90, 90, 90);
	font-family: Arial,Helvetica Neue,Helvetica,sans-serif;
}

.hiddeninproductionmode{
	display: none;
}

.otapp table{
	border-collapse: collapse;
}

.otapp a {
	text-decoration: none;
	color: rgb(90, 90, 90);
}

.otapp blue, .otapp blue a{
	color: rgb(0,161,212);
}

.otapp gray{
	color: rgb(220,220,220);
}


/*
 *	STYLE 4
 * https://codepen.io/devstreak/pen/dMYgeO
 * scroll Y
 */

.otapp .scrollstyle-4::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0);
	background-color: rgba(150,150,150,0.0);
}

.otapp .scrollstyle-4::-webkit-scrollbar
{
	width: 5px;
	background-color: rgba(150,150,150,0.3);
}

.otapp .scrollstyle-4::-webkit-scrollbar-thumb
{
	background-color: rgba(90,90,90,0.3);
}


/*
 *	STYLE 5
 * https://codepen.io/devstreak/pen/dMYgeO
 * scroll X
 */

.otapp .scrollstyle-5::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0);
	background-color: rgba(210,210,210,0.0);
}

.otapp .scrollstyle-5::-webkit-scrollbar
{
	height: 5px;
	background-color: rgba(210,210,210,0.3);
}

.otapp .scrollstyle-5::-webkit-scrollbar-thumb
{
	background-color: rgba(150,150,150,0.3);
}

/*
 *	STYLE 6
 * scroll X
 */

.otapp .scrollstyle-6::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0);
	background-color: rgba(210,210,210,0.0);
}

.otapp .scrollstyle-6::-webkit-scrollbar
{
	width: 8px;
	/*background-color: rgba(210,210,210,0.3);*/
}

.otapp .scrollstyle-6::-webkit-scrollbar-thumb
{
	background-color: rgba(150,150,150,0.3);
}










input[type=checkbox] {
  accent-color: #2196F3;
}

.otapp .inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.otapp .inputfile + label {
	cursor: pointer; /* "hand" cursor */
	padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 3px;
    border: 1px solid rgb(150, 150, 150);
    background-color: rgb(150, 150, 150);
    color: white;
    font-size: 1.25em;
    font-weight: 700;
    display: inline-block;
    flex-grow: 0;
    justify-content: left;
    align-items: center;
}

/*
.otapp .inputfile + label img{
	height:  10px;
}


.otapp .inputfile + label {
    
    color: white;
    background-color: black;
    display: inline-block;
}
*/

.otapp .inputfile + label:hover {
   border: 1px solid rgb(90, 90, 90);
    background-color: rgb(90, 90, 90);
}

/*
.otapp .inputfile:focus + label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}
*/



/* The slider ***********************************************************/
/* The switch - the box around the slider */
/* from https://www.w3schools.com/howto/howto_css_switch.asp */
.otapp .switch {
  position: relative;
  display: inline-block;
  margin-top: 2px;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.otapp .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.otapp .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.otapp .slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

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

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

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

/* Rounded sliders */
.otapp .slider.round {
  border-radius: 17px;
}

.otapp .slider.round:before {
  border-radius: 50%;
}