:root {
  --body-background: #f3f1f1;
  --header-background: rgb(61, 118, 143);
  --light-blue: rgb(87, 168, 204);
  --light-gray: rgb(247, 247, 247);
}

html {
	font-size: 13px;
}

html a {
    -webkit-transition: .5s;
    transition: .5s;
    color: var(--color-deep-red);
    text-decoration: none
}

html a:hover {
    color: var(--color-deep-red);
    text-decoration: none
}

.table th {
	font-weight: normal;
}

.no-caret.dropdown-toggle::after {
    content: none !important;
}

.page-link {
	color: var(--color-deep-red);
}

.page-link:hover {
	color: var(--color-deep-red);
}

.nav-link, .nav-link:hover {
	color: var(--color-deep-red);
}

.black-anchors a,
	.black-anchors a:hover,
	.black-anchors a:visited {
	color: black;
}

.btn-red, .btn-red:hover, .btn-red:visited {
	background-color: var(--color-deep-red);
	color: var(--color-white);
}

.btn-red-outline,
	.btn-red-outline:visited {
	border-style: dashed;
	border-color: var(--color-deep-red);
}

.btn-red-outline:hover {
	border-style: solid;
	border-color: var(--color-deep-red);
}

.active>.page-link {
	color: var(--color-white);
	background-color: var(--color-deep-red);
	border-color: var(--color-deep-red);
}

body {
	background: var(--body-background);
	
}

.tips-container {
	font-size: var(--bs-base-font-size);
}

#header {
  background: var(--header-background);
  padding: 5px 15px 5px 10px;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.15);
  color: #ffffff;
  z-index: 2;
  height: 50px;
}

#header * {
	font-size: 16px !important;
}

#header img.logo {
  height: 40px;
  width: auto;
}

#header a.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s;
}

#header a.icon:hover {
  background: var(--light-blue);
}

#header button:hover,
	#header button:active,
	#header button:visited {
  background: var(--light-blue) !important;
}

#header a.iflex-white:visited {
  color: white;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#alert-wrapper {
	position: absolute;
	top: 0px;
	padding-top: 30px;
	z-index: 100;
	pointer-events: none;
}

#alert-wrapper .alert{
	pointer-events: all;
}

.iflex-white {
	color: #ffffff;
}

.btn .iflex-white {
	border-color: #FFFFFF;
}

.table {
	border-radius: .2rem;
	overflow: hidden;
}

.dashed-red-border {
	border-width: thin;
	border-style: dashed;
	border-color: var(--color-deep-red);
}

.border-dashed {
	border-width: thin;
	border-style: dashed;;
}

.border-color-development {
	border-color: var(--development-color);
}

.border-radius-8 {
	border-radius: 8px;
}

#sidebar {
	height: 100vh;
	z-index: 1;
	width: 225px;
	padding-top: 55px;
	background: var(--header-background);
	font-size: 16px;
}

#sidebar .nav .nav-title {
	height: 60px;
	text-align: center;
	font-size: 2em;
	font-weight: bold;
}

#sidebar .nav .nav-title, 
	#sidebar .nav .nav-link, 
	#sidebar .nav .nav-link:visited {
	color: white;
	font-size: var(--bs-var-link-font-size);
}

#sidebar .nav .nav-link:hover,
	#sidebar .nav .nav-link.active {
  background-color: var(--light-blue);
  color: white;
  opacity: 1;
}

.icon:hover {
	background-color: var(--light-blue);
}

.navbar-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-icon > li + li {
  margin-left: 10px;
}

.navbar-icon > li {
  color: #ffffff;
}

.navbar-icon > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s;
}

.navbar-icon > li > a:hover {
  background: rgb(87,168,204);
}


.sidebar-menu {
  position: fixed;
  left: 0;
  top: 50px;
  bottom: 0;
  width: 60px;
  z-index: 5; 
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fff;
  border-right: 1px solid #ddd;
  overflow: hidden;
 /* transition: all 0.3s; */
}

.sidebar-menu-header {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
}

.content {
  overflow: auto;
}

.content-body {
  height: 100%;
  padding: 10px;
  max-width: 1280px;
}

.clickable {
  cursor: pointer;
}


.nav-link.text-red:hover {
	color: var(--color-deep-red);
}

.btn-red, .btn-red:hover, .btn-red:active, .btn-red:visited {
    background-color: var(--color-deep-red) !important;
    color: var(--color-white) !important;
}

.is-invalid, .has-error {
	border-color: var(--color-deep-red);
	color: var(--color-deep-red);
}

.err-helper-message {
	color: var(--color-deep-red);
}

.auto-complete-container {
	background: var(--light-gray);
	border: thin solid var(--light-gray);
}

/* These may be able to go away */

/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: auto;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover:enabled {
  background-color: #ddd;
}

.tab button:hover:disabled {
  cursor: default;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 10px 12px;
  border: 1px solid #ccc;
  width: 70%;
  height: 'auto' !important;
}

.content-header {
    background: #fff;
    padding: 10px 30px;
   /* padding: 10px; */
    border-bottom: 1px solid #ddd;
}

.content-header {
    background: #fff;
    padding: 10px 30px;
    border-bottom: 1px solid #ddd;
}

.content-header h3 {
    margin: 0;
    line-height: 30px;
    font-size: 16px;
    font-weight: normal;
}
/*
.error {
        color: red;
}
*/

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
} 

.ui-autocomplete-group {
    font-weight: bold;
} 

.active-dev {
	background-color: var(--development-color) !important;
	border-color: var(--development-color) !important;
}

.tooltip-wrapper {
  display: inline-block; /* display: block works as well */
}

.tooltip-wrapper .btn[disabled] {
  /* don't let button block mouse events from reaching wrapper */
  pointer-events: none;
}

/*.tooltip-wrapper.disabled {*/
/*   OPTIONAL pointer-events setting above blocks cursor setting, so set it here */
/*  cursor: not-allowed;*/
/*}*/

.accordion-header .accordion-button {
	background-color: rgba(33, 37, 41, 0.03) !important;
}

.bg-blue {
	background-color: var(--header-background) !important;
	color: white !important;
}

.bg-beige {
	background-color: var(--body-background) !important;
}

