/* -------------------------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------------------------- */
.nav-tabs .nav-link {
	color: #000000;
	border-color: #e9ecef #e9ecef #dee2e6;
	border-bottom-color: transparent;
	margin-right: 2px;
}

.nav-tabs .nav-link:hover {
	border-bottom-color: transparent;
}

.nav-tabs .nav-link.active {
	background-color: #C3D4E6;
}

.btn-color {
	background-color: #C3D4E6;
}

/* -------------------------------------------------------------------------- */
/* COLORS */
/* -------------------------------------------------------------------------- */
.colorOK {
	color: #59B165;
}
.colorError {
	color: #FDA1A5;
}

.backgroundError {
	background-color: #FDA1A5;
}

.portal_comment {
    color: #59B165;
    font-weight: bold;
    font-style: italic;
}

.borderOK {
	border: solid #59B165;
	border-width: 3px;
}
.borderError {
	border: solid #FDA1A5;
	border-width: 3px;
}

/* -------------------------------------------------------------------------- */
/* FILE LIST */
/* -------------------------------------------------------------------------- */
table.listTable td.listDir {
  border: solid #99BBE8;
	border-width: 0px 0px 2px 0px;
	cursor: pointer;
}
table.listTable td.listDir span.listDir {
	background: #FFFFFF url(/pics/expand.gif) no-repeat 5px -48px;
	padding-left: 20px;
}
table.listTable tr.listDirHover td {
  background-color: #F3F3F3;
}
table.listTable tr.listFileHover td {
  background-color: #FFFFD0;
}
table.listTable tr.listFile {
	cursor: pointer;
}

table.searchTable tr.searchRowHover td {
	background-color: #FFFFD0;
}

table.incompleteTable tr.incompleteRow {
	cursor: pointer;
}
table.incompleteTable tr.incompleteRowHover td {
	background-color: #FFFFD0;
}

/* -------------------------------------------------------------------------- */
/* FOLDER */
/* -------------------------------------------------------------------------- */
div.divImageBox {
	width: 200px;
	margin: 0px 10px 10px 0px;
	float: left;
	display: inline-block;
  border: solid #99BBE8;
	border-width: 1px;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
	opacity: 0.4;
}
div.divImageBoxSelected {
	opacity: 1;
}
div.divImageBoxDone {
  border: solid #59B165;
	border-width: 3px;
	margin: 0px 10px 6px 0px;
}
div.divImage {
	width: 200px;
	height: 200px;
}
img.imgImage {
	max-width: 100%;
	max-height: 100%;
}

/* -------------------------------------------------------------------------- */
/* FOLDER MODAL */
/* -------------------------------------------------------------------------- */
.folder_modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.folder_modal_content {
	position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0px;
  border: 1px solid #888;
  width: 500px;
  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;
}
@-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}
}

.folder_modal_header {
  padding: 16px;
  /*background-color: #5cb85c;*/
	color: #5C8CC7;
  font: 10pt Arial,Verdana;
	font-weight: bold;
	border-bottom: 2px solid #BEC3C7;
}
.folder_modal_body {
	padding: 16px;
}

.folder_modal_close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-top: -10px;
}
.folder_modal_close:hover,
.folder_modal_close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/* NAV PROCESS */
/* -------------------------------------------------------------------------- */
span.cd_props {
	display: inline-block;
	width: 60px;
	margin-top: 10px;
}

/* -------------------------------------------------------------------------- */
/* PAGES */
/* -------------------------------------------------------------------------- */
.pain_img_div {
	position: relative;
	display: inline;
}
.pain_img {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: -1;
}

/* -------------------------------------------------------------------------- */
/* TOAST */
/* -------------------------------------------------------------------------- */
.portal_toast {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.portal_toast.showToast {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 1.5 seconds */
  /*-webkit-animation: fadein 0.5s, fadeout 0.5s 1.5s;*/
  /*animation: fadein 0.5s, fadeout 0.5s 1.5s;*/
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
