body {font-family: Arial, Helvetica, sans-serif;}

/* DropDown */
.dropbtn {
	background-color: #E2F0FC;
	color: #444445;
	padding-left: 10px;
	font-size: 16px;
	border: none;
	width: 300px;
	height: 39px;
	text-align: left;
	border-radius: 0px;
}

.dropdown {
  float: right; /*to the right*/
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  padding: 5px;	
  text-align: left;
  
}

.dropdown-content a {
  color: black;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #03264B; color: white;}

/* ToolTips */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  font-size: 12px;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


/* Account Session Information */
.profile {
	height: 15px;
	width: 20px;
}

.profileInfo {
	font-size:12px;
}

.sessionInfo {
	font-size: 12px;
	color: #444445;
}


/* Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: #444445;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #E2F0FC;
  color: #444445;
}

.modal-body {
  padding: 2px 16px;
} 

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

/* SOS table */
.tableSOS {
  border: none;
  padding: 2px 2px 2px 2px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 8px; 
}

/* SOS Buttons */
.buttonSOS {
  background-color: lightgray;  
  color: black;
  border: none;
  padding: 10px 5px 10px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 8px; 
  min-width: 150px;
}

.buttonSOS:hover {
  background-color: #10046B;
  color: white;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.buttonSOS span:after {
  color: white;
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: 20px;
  transition: 0.5s;
}

.buttonSOS span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.buttonSOS:hover span {
  padding-right: 25px;
  color: white;
}

.buttonSOS:hover span:after {
  opacity: 1;
  right: 0;
}

.buttonSOS:disabled {
  background-color: lightgray; 
  color: #B8B8B8;
  box-shadow: 0 0;
}

/* div tables */
.rTable {
   display: block; 
   width: 100%;
}
.rTableHeading, .rTableBody, .rTableFoot, .rTableRow{
   clear: both;
}
.rTableHead, .rTableFoot{
   background-color: #DDD;
   font-weight: bold;
}
.rTableCell, .rTableHead {
   border: 1px solid #999999; 
   float: left;
   height: 17px;
   overflow: hidden;
   padding: 3px 1.8%;
   width: 25%; 
}
.rTable:after {
   visibility: hidden;
   display: block;
   font-size: 0;
   content: " ";
   clear: both;
   height: 0;
}

/* Animated SideNav*/
.sidenav {
	height: 90%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 5%;
	left: 5%;
	background-color: #F5F5F5;
	overflow-x: hidden;
	overflow-y: hidden;
	transition: 0.5s;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
	padding-right: 0px;
	text-align: left;
	border-radius: 8px;
	border-style: solid;
	border-width: 0px;
	border-color: #CCCCCC;
}

	.sidenav a {
		/* padding: 8px 8px 8px 32px; */
		text-decoration: none;
		font-size: 15px;
		color: #818181;
		/* display: block; */
		transition: 0.3s;
	}

		.sidenav a:hover {
			color: #ddd;
    }

	.sidenav .closebtn {
		position: absolute;
		top: 0;
		right: 25px;
		font-size: 36px;
		margin-left: 50px;
	}

@media screen and (max-height: 450px) {
	.sidenav {
		padding-top: 15px;
	}

		.sidenav a {
			font-size: 18px;
		}
}