html, body {
    margin: 0;
    font-family: arial, "Microsoft YaHei";
    background-color: #272822;
    color: #FEFEFE;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#fileWrapper{
	transition:all 0.5s ease;
}
#fileWrapper:hover{
	opacity: 1!important;
}

#visualizer_wrapper{
	text-align: center;
}
footer{
	position: fixed;
	bottom: 2px;
	color:#aaa;
}

progress {
  background-color: #f3f3f3;
  border: 0;
  height: 18px;
  border-radius: 9px;
}

.pb {
  background-color:#222;/*same with thead th*/
  opacity: 0.5;
  display:block;
  width:0%;
  text-align: center;
  *text-align: right;
  *padding-top: 12px;
  *padding-bottom: 12px;
}

.myTableDiv {
  top: 210px;/*will be overriden*/
  bottom: 50px;
  max-width: 100%;
  /*
  max-height: 60%;
  */
  height: 290px;/*will be overriden*/
  overflow: scroll;
  position: fixed;
}

.myTable {
  table-layout:fixed;
  position: relative;
  border-collapse: collapse;
}

.myTable td {
  overflow: hidden;
}
.myTable tr, td, th {
  padding: 5px;
  *color: #FDFDFD;/*otherwise it cannot be changed by javascript*/
  *background-color: #000000;
  text-align: left;
  white-space: nowrap;
}

.myTable thead th { /*header bar */
  position: -webkit-sticky; /* for Safari */
  position: sticky;
  top: 0;
  background: #404040; /*header band color */
  *background: linear-gradient(0deg, rgba(51,51,51,1) 0%, rgba(102,102,102,1) 76%, rgba(153,153,153,1) 100%); 
  color: #0FF; 
  text-align: left;
}

.myTable thead th:first-child {
  left: 0;
  z-index: 1;
}

.myTable tbody th {
  position: -webkit-sticky; /* for Safari */
  position: sticky;
  left: 0;
  *background-color: #000; /*use certain color*/
  background-color: inherit; /*use row'a actual color. otherwise it is transparent*/
  border-right: 1px solid #555;
}

.myTable tbody tr:nth-child(even){
  background-color: #181818;
}
 
.myTable tbody tr:nth-child(odd){
  background-color: #282828;
}

button {
  background-image: linear-gradient(#554444, #442222);
  border: 0;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, .3) 0 5px 15px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  *font-family: Montserrat,sans-serif;
  *margin: 5px;
  font-size: .9em;
  padding: 10px 15px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}	


::-webkit-scrollbar {
    *width: 0.9em;
    *height: 0.9em;

    background-color:#ffffff;
    border-color: #808080;
    border-style: solid;
    border-width: 4px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;

    -webkit-overflow-scrolling: touch;	
}

::-webkit-scrollbar-thumb {
    background: #434343;
    border-radius: 16px;
    box-shadow: inset 2px 2px 2px hsl(0deg 0% 100% / 25%), inset -2px -2px 2px rgb(0 0 0 / 25%);
}

::-webkit-scrollbar-track {
    background: linear-gradient(90deg,#434343,#434343 1px,#111 0,#111);
	border-radius: 10px;
	width: 1em;

}

::-webkit-scrollbar-corner {
    background-color: #272822;/*same with body background-color*/
}

/* Hide scrollbar for MOBILE Chrome, Safari and Opera */
.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for MOBILE IE, Edge add Firefox */
.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}