body, html {
	font-family: sans-serif;
}

.fixed {
      table-layout:fixed;
      width:100%;
}
.w70 {
	width:70%;
}
.w30 {
	width:30%;   
}

.menu {
	text-align: center;
	border: 1px solid black;
	height: 30px;
	font-weight: bold;
	
}
.menu:hover {
	background-color: #F0F0F0;
	font-size: 18px;
	cursor: pointer;
}
.null {
	background: #FFFFFF;
	vertical-align: top;
	border-width: 0;
	text-align:left;
}

.button {
	border-radius: 7px;
	border-style: solid;
    border-width: thin;
    background: #009955;
    color: #ffffff;
    width: 80px;
    height: 30px;
}

.ctrl {
	width: 120px;
	height: 40px;
	margin:5px;
	font-size:14px;
}

.red {
	background: red;
}

.blue {
	background: blue;
}


.editorline {
	line-height : 25px;
	text-align: left;
    border-left-width: 1px;
	border-right-width: 1px;
    border-color: black;
    border-left-style: solid;
	border-right-style: solid;
	background-color:#FAFAFA;
	white-space: nowrap;
	color:black;
}

#tdedit {
	display: table-cell;
}
#editor {
	width:100%;
	overflow:auto;
}


input {
	height: 25px;
    border-radius: 7px;
    padding-left: 10px;
    border-style: solid;
    border-width: thin;
	
}

input[type="text"] {
	.input;
	width: 95%;
}

input[type="list"], input[type="date"] {
	.input;
	width: 130px;
}

.cmd {
	width:70% !important;
}

table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.table100-head th{
  font-family: OpenSans-Regular;
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  font-weight: unset;
}

.tdsmall {
	font-size: 15px;
}


tbody tr.data:hover {
  color: #555555;
  background-color: #FFFFF0 !important;
  cursor: pointer;
}

tbody tr.data:nth-child(even) {
  background-color: #f5f5f5;
}

tbody tr {
  font-family: OpenSans-Regular;
  font-size: 20px;
  color: #808080;
  line-height: 1.2;
  font-weight: unset;
  text-align: center;
}

table thead tr {
  height: 60px;
  background: #36304a;
}
table tbody tr {
  height: 50px;
}
.column1 {
  width: 100px;
  padding-left: 10px;
  white-space: nowrap;
}

.column2 {
  width: 300px;
  white-space: nowrap;
}

.column3 {
  width: 200px;
  white-space: nowrap;
}

.column4 {
  width: 200px;
}

.column5 {
  width: 160px;
}

.column6 {
  width: 180px;
}
.column7 {
  width: 180px;
}
.column8 {
  width: 90px;
}
.column9 {
  width: 90px;
}

.weekDays-selector input {
  display: none!important;
}

.weekDays-selector input[type=checkbox] + label {
  display: inline-block;
  border-radius: 6px;
  background: #dddddd;
  height: 30px;
  width: 25px;
  margin-right: 3px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

.weekDays-selector input[type=checkbox]:checked + label {
  background: #2AD705;
  color: #ffffff;
}

.option-selector input {
  display: none!important;
}

.option-selector input[type=checkbox] + label {
  display: inline-block;
  border-radius: 6px;
  background: #dddddd;
  height: 30px;
  width: 65px;
  margin-right: 3px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

.option-selector input[type=checkbox]:checked + label {
  background: #2AD705;
  color: #ffffff;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.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: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2AD705;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2AD705;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}
.check {
  display: inline-block;
  color: #2AD705;
  font-size: 30px;
}

.cross {
  display: inline-block;
  color: #FF0000;
  font-size: 30px;
}

.nocheck {
  pointer-events: none !important;
}

#help { 
	padding-top:10px;
    height: 10%; 
    position: fixed; 
    bottom:0%;
	left:0%;
    width:100%; 
    background-color: #FFAA00; 
    opacity: 1;
	font-weight: bold;
	text-align:center;
	overflow:auto;
	font-size: 20px;
}


.logs {
  font-size:12px;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  white-space: nowrap;
  line-height:12px;
  height: 12px;
  border-radius:unset;
  
}

.logs table {
	width: 100%;
}
.logs td, .logs th {
  border: 1px solid #ddd;
  padding: 8px;
}

.in {background-color: #f2f2f2;}

.logs tr:hover {background-color: #ddd;}

.logs th {
  text-align: left;
  background-color: #009955;
  color: white;
}

.limited {
    border: 1px solid red;
    width: 99%;
    height: 200px;
    overflow: auto;
	
	
}

.link {
  width:30px;
}

.quick_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.quickEl {
	border-radius: 7px;
    border-style: solid;
    border-width: thin;
	margin:10px;
	padding:10px;
	width:300px;
	border-color:#000000;
	text-align:center;
}

.offline {
color: red;
    font-size: xx-large;
    border: 2px;
    border-style: solid;
	background-color: yellow;
}