/* CSS for printer */
.new-page {
    page-break: before;
    page-break-before: always;
}
.keep-together {
    page-break-inside: avoid;
}

#summary_tab{
  overflow: initial;
  height: 100%;
}
/* Loading message CSS */

#loader_logo {
	position: relative;
    width: 40%;
	z-index: 99997;
}
.ttable {
  border-collapse: collapse;
  width: 100%;
}

.ttable td, .ttable th {
	cursor: pointer;
  border: 1px solid #ddd;
  vertical-align: top;
}
.ttable th {
  /* padding-top: 12px;
  padding-bottom: 12px; */
  padding: 10px 20px;
  text-align: center;
  background-color: var(--main-color);
  color: white;
}

.ttable tr {
    page-break-inside: auto;
}
.ttable tr:nth-child(even){background-color: #f2f2f2;}

.ttable tr:hover {background-color: #ddd;}


#report_body{
    /* position: absolute; */
    display: flex;
    flex-flow: row wrap;
    /* top: 10%; */
    /* width: 90%; */
    /* left: 5%; */
}
#left_side{
	left:0;
	margin-right: 2%;
    width: 100%;
}
#right_side{
    display: none;
	width: 40%;
    height: 90vh;
    overflow-y: auto;
    padding: 10px;
}
#vframe{
	width: 100%;
	height: 30%;
}
#error_report_div{
    position: relative;
	width: 80%;
    height: 60vh;
    margin: auto;
}

/* #test_list{
	height: 500px;
	overflow-y: auto;
} */

#main_logo{
	height: 43px;
	float: left;
	margin-left: 5px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.navbar {
  width: 100%;
  overflow: auto;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: var(--main-color);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: var(--main-color);
  padding: 14px 16px;
  background-color: inherit;
  font: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: var(--main-color);
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content .header {
  background-color: white;
  padding: 16px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  background-color: #ccc;
  height: 250px;
}

.column a {
  float: none;
  color: black;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.column a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    height: auto;
  }
}

#powered_by{
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: var(--main-color);
}

.ttable_linkbut{
  color: var(--main-color);
  text-decoration: none;
  padding: 7px;
}

.ttable_linkbut:hover{
  color: white;
  background-color: var(--main-color);
}

.linkbut{
  color: var(--main-color);
  text-decoration: none;
  padding: 2px;
}

.linkbut:hover{
  color: white;
  background-color: var(--main-color);
}
.active{
  color: white;
  background-color: var(--main-color);
}

#layout_div{
	width: 40%;
	height: 70%;
	overflow-y: auto;
}
#video_viewer{
    display: none;
	flex-flow: row wrap;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding-left: 5%;
	padding-top: 5%;
	background-color: white;
	
}
#video_close_but{
	position: absolute;
	left: 1%;
	top: 2%;
	color: var(--main-color);
	font-size: 6vh;
	cursor: pointer;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}


/* Snooze menu */
#snooze_menu{
    display: none;
    position: absolute;
    right: 20px;
    top: 10px;
}
#snooze_menu_but{
    position: relative;
    color: green;
    font-size: 50px;
    cursor: pointer;
    
}
#snooze_menu_tab{
    display: none;
	flex-flow: row wrap;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding-left: 5%;
	padding-top: 5%;
	background-color: white;
    z-index: 99;
}
#snooze_menu_close_but{
	position: absolute;
	left: 1%;
	top: 2%;
	color: var(--main-color);
	font-size: 6vh;
	cursor: pointer;
}
#snooze_menu_text{
    position: relative;
    bottom: 20px;
}

#contacts_editor{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: white;
    z-index: 9999;
    overflow-y: scroll;
}

.input_textarea{
    width: 60vw;
    height: 10vh;
    height: 10vh;
}