/*
 * WARNING!!!
 * Do not edit the .css file directly, it was created with sass.
 * Edit the .sass version and compile with sass file.scss file.css
 * Navigate into css directory then run: sass --watch sass:.
 * this will compile sass into the css directory, it will watch for changes in any of the sass files
 */
@import "../includes/fontello/css/fontello.css";
@import "../includes/fontello/css/animation.css";
[class^=icon-]:before, [class*=" icon-"]:before {
  width: 1.28571429em;
  text-align: center;
}

.icon-bell:before,
.icon-desktop:before,
.icon-globe-1:before {
  font-weight: bold;
}

.shared_loading {
  text-align: center;
  padding: 20px;
}
.shared_loading i::before {
  margin: 0;
}

.shared_popup {
  box-sizing: border-box;
}
.shared_popup i.close,
.shared_popup i._close {
  color: #888;
  transition: color 0.5s ease;
}
.shared_popup i.close:hover:not(.disabled),
.shared_popup i._close:hover:not(.disabled) {
  color: #222;
}
.shared_popup i.close.disabled,
.shared_popup i._close.disabled {
  color: #ddd;
  cursor: default !important;
}
.shared_popup .field_error {
  border: solid 1px #ff0000;
  background: #FDD;
}
.shared_popup table {
  font-size: 0.8em;
  width: 100%;
}
.shared_popup table th {
  text-align: left;
}
.shared_popup table th, .shared_popup table td {
  padding: 3px;
}
.shared_popup .response.error {
  color: red;
}
.shared_popup .response.success {
  color: green;
}
.shared_popup .response.success, .shared_popup .response.error {
  margin: 15px 0;
}
.shared_popup .notice {
  padding: 10px;
  background-color: #ddd;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  margin: 10px 0;
}
.shared_popup .notice::before {
  content: "\e80c";
  font-family: "fontello";
  font-weight: 900;
  margin-right: 5px;
}
.shared_popup .footer {
  all: unset;
}
.shared_popup .footer:after {
  content: "";
  clear: both;
  display: table;
}
.shared_popup .footer > .content {
  float: left;
}
.shared_popup .footer .buttons {
  float: right;
}

.top_nav {
  z-index: 1001;
  position: relative;
  background-color: #EFEFEF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  height: 37px;
}
.top_nav:after {
  content: "";
  clear: both;
  display: table;
}
.top_nav .left {
  float: left;
}
.top_nav .right {
  float: right;
}
.top_nav form {
  display: inline;
}
.top_nav .ie_notification_cover {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.top_nav .nav-item {
  padding: 10px;
  display: none; /*toggle to inline-block on document load*/
  color: #222;
  text-decoration: none;
  cursor: pointer;
}
.top_nav .nav-item:hover {
  background-color: #e7e7e7;
}
.top_nav .nav-item.notification_wrapper {
  margin-right: 90px;
  position: relative;
}
.top_nav .nav-item.notification_wrapper .unread_count {
  display: none;
  margin-left: -5px;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  color: #fff;
  background-color: red;
  padding: 1px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 10px;
  padding: 1px 5px 1px 5px;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown {
  display: none;
  position: absolute;
  z-index: 10000;
  top: calc(100% + 10px);
  right: 0px;
  background: #fff;
  width: 250px;
  max-width: 100vw;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .triangle {
  position: absolute;
  top: -10px;
  right: 13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 10px 7.5px;
  border-color: transparent transparent #bbbbbb transparent;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color="rgb(114, 170, 0)");
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .title {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #ebebeb));
  background: -webkit-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #ebebeb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ebebeb", GradientType=0 );
  color: #000;
  padding: 10px;
  border-radius: 4px 4px 0px 0px;
  -moz-border-radius: 4px 4px 0px 0px;
  -webkit-border-radius: 4px 4px 0px 0px;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox {
  max-height: 300px;
  overflow-y: scroll;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  background-color: #eee;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li .subject {
  font-weight: bold;
  color: #555;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li .subject .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li .subject .dot.orange {
  background-color: rgb(255, 125, 4);
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li .subject .dot.red {
  background-color: rgb(255, 5, 5);
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li[data-read=""] {
  background-color: #fff;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li[data-read=""] .subject {
  color: #000;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li:last-of-type {
  border: 0;
  border-radius: 0px 0px 4px 4px;
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li:hover {
  background-color: #eee;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li p {
  margin-top: 5px;
  margin-bottom: 0;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li .action_button {
  float: right;
  margin-top: 10px;
  color: #888;
  font-weight: bold;
  font-size: 0.9em;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li .action_button:hover {
  color: #000;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li::after {
  content: "";
  clear: both;
  display: table;
}
.top_nav .nav-item.notification_wrapper .notification_dropdown .scrollbox ul li.empty {
  text-align: center;
  color: #555;
}
.top_nav .nav-item.notification_wrapper:hover {
  z-index: 4;
  overflow: visible;
}
.top_nav .nav-item.notification_wrapper.active, .top_nav .nav-item.notification_wrapper.focus {
  z-index: 4;
  overflow: visible;
  outline: 0;
}
.top_nav .nav-item.notification_wrapper.active .notification_dropdown, .top_nav .nav-item.notification_wrapper.focus .notification_dropdown {
  display: block;
}
.top_nav .nav-item.user_wrapper {
  overflow: hidden;
  width: 64px;
  height: 37px;
  position: absolute;
  top: 0px;
  right: 15px;
  padding: 0;
  background-color: none;
}
.top_nav .nav-item.user_wrapper .user {
  position: relative;
  top: -14px;
  background: rgb(114, 170, 0);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  border: 7px solid #fff;
  text-align: center;
  font-size: 18px;
  /*center the initials*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_nav .nav-item.user_wrapper .user_dropdown {
  display: none;
  list-style-type: none;
  position: absolute;
  top: 0px;
  right: 10px;
  z-index: 3;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 150px;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
  padding-left: 0;
}
.top_nav .nav-item.user_wrapper .user_dropdown li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
}
.top_nav .nav-item.user_wrapper .user_dropdown li:last-of-type {
  border: 0;
}
.top_nav .nav-item.user_wrapper .user_dropdown li:hover {
  background-color: #eee;
}
.top_nav .nav-item.user_wrapper:hover {
  z-index: 4;
  overflow: visible;
}
.top_nav .nav-item.user_wrapper.active, .top_nav .nav-item.user_wrapper:focus {
  z-index: 4;
  overflow: visible;
  outline: 0;
}
.top_nav .nav-item.user_wrapper.active .user_dropdown, .top_nav .nav-item.user_wrapper:focus .user_dropdown {
  display: block;
}
.top_nav .nav-item.user_wrapper.active .user, .top_nav .nav-item.user_wrapper:focus .user {
  z-index: 5;
}
.top_nav .chosen-container {
  height: 36px;
  top: 0;
}
.top_nav .chosen-container .chosen-single {
  margin-top: 5px;
  border: 0;
  background: none;
  box-shadow: none;
}
.top_nav .chosen-container .chosen-drop {
  min-width: 200px;
}
.top_nav .chosen-container .chosen-drop .disabled {
  background-color: #ddd;
}
.top_nav .chosen-container:hover, .top_nav .chosen-container.chosen-with-drop {
  background-color: #e7e7e7;
}

.nav_content_divider {
  margin-bottom: 20px;
  clear: both;
  float: none;
}

.main_nav {
  font-family: Arial, Helvetica, sans-serif;
  z-index: 4;
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ebebeb+100 */
  background: #ebebeb; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #ebebeb 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #ebebeb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ebebeb",GradientType=0 ); /* IE6-9 */
  height: 60px;
}
.main_nav:after {
  content: "";
  clear: both;
  display: table;
}
.main_nav .left {
  float: left;
}
.main_nav .right {
  float: right;
  padding-right: 15px;
  font-size: 0;
}
.main_nav .right .nav-item {
  position: relative;
  display: inline-block;
  color: #9B9B9B;
  font-size: 30px;
  line-height: 60px;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0px 5px;
  transition: background-color 0.3s ease;
}
.main_nav .right .nav-item.active {
  color: #619100;
  background-color: #E5E5E5;
}
.main_nav .right .nav-item:hover {
  background-color: #efefef;
}
.main_nav .right .nav-item .remedial_count {
  position: absolute;
  top: calc(50% - 6px);
  right: 10px;
  color: #fff;
  background-color: red;
  border-radius: 10px;
  padding: 1px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 10px;
  margin: 0 0 0 -5px;
  padding: 1px 5px 1px 5px;
}
.main_nav .right .nav-item .icon-desktop {
  position: relative;
}
.main_nav .right .nav-item .icon-desktop::after {
  position: absolute;
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e80f";
  left: 0;
  top: 3px;
  width: 100%;
  line-height: 1em;
  font-size: 0.5em;
}

.page_nav, .sub_nav {
  position: relative;
  z-index: 3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin: 0 -8px 0 -8px;
  white-space: nowrap;
  height: 40px;
}
.page_nav ul, .sub_nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page_nav ul .nav-item, .sub_nav ul .nav-item {
  visibility: hidden; /*visible on load*/
  position: relative;
  display: inline-block;
  margin-right: -4px;
  -webkit-transition: background-color 200ms ease-in-out;
  -moz-transition: background-color 200ms ease-in-out;
  -o-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}
.page_nav ul .nav-item a, .sub_nav ul .nav-item a {
  display: block;
  padding: 0 12px;
  line-height: 40px;
  text-decoration: none;
  color: #222;
  -webkit-transition: border-width 0.1s ease-in-out;
  -moz-transition: border-width 0.1s ease-in-out;
  -o-transition: border-width 0.1s ease-in-out;
  transition: border-width 0.1s ease-in-out;
  border-bottom: 0px;
}
.page_nav ul .nav-item .dropdown, .sub_nav ul .nav-item .dropdown {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s linear;
  background-color: #fff;
  position: absolute;
  z-index: 11;
  top: 100%;
  left: 0;
  min-width: 100%;
  padding: 5px 0;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(65, 65, 65, 0.75);
  -moz-box-shadow: 0px 2px 4px 0px rgba(65, 65, 65, 0.75);
  box-shadow: 0px 2px 4px 0px rgba(65, 65, 65, 0.75);
}
.page_nav ul .nav-item .dropdown > a, .sub_nav ul .nav-item .dropdown > a {
  display: block;
  line-height: 30px;
  border-bottom: 1px solid #f7f7f7;
}
.page_nav ul .nav-item .dropdown > a:hover, .sub_nav ul .nav-item .dropdown > a:hover {
  background-color: #f7f7f7;
}
.page_nav ul .nav-item .dropdown > a .indent, .sub_nav ul .nav-item .dropdown > a .indent {
  margin: 0 -10px;
}
.page_nav ul .nav-item .dropdown > a .indent > a, .sub_nav ul .nav-item .dropdown > a .indent > a {
  line-height: 30px;
  padding-left: 20px;
  font-size: 0.85em;
}
.page_nav ul .nav-item .dropdown > a .indent > a:hover, .sub_nav ul .nav-item .dropdown > a .indent > a:hover {
  background-color: #f0f0f0;
}
.page_nav ul .nav-item.overflow .icon-right-open:before, .sub_nav ul .nav-item.overflow .icon-right-open:before {
  -webkit-transition: -webkit-transform 0.2s linear;
  -ms-transition: -ms-transform 0.2s linear;
  transition: transform 0.2s linear;
}
.page_nav ul .nav-item.overflow .dropdown, .sub_nav ul .nav-item.overflow .dropdown {
  right: 0 !important;
  left: auto !important;
}
.page_nav ul .nav-item.overflow:hover .icon-right-open:before, .sub_nav ul .nav-item.overflow:hover .icon-right-open:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.page_nav ul .nav-item:before, .sub_nav ul .nav-item:before {
  background-color: rgba(0, 0, 0, 0.1);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  content: "";
  display: block;
  height: 16px;
  left: 0px;
  position: absolute;
  top: 12px;
  width: 1px;
}
.page_nav ul .nav-item:hover .dropdown, .sub_nav ul .nav-item:hover .dropdown {
  visibility: visible;
  opacity: 1;
}

.sub_nav {
  z-index: 2;
  background-color: #E5E5E5;
}
.sub_nav:not(.no-shadow) {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
}
.sub_nav ul .nav-item:hover {
  background-color: #dddddd;
}
.sub_nav ul .nav-item.active {
  background-color: #fff;
}
.sub_nav ul .nav-item.active > a {
  border-bottom: 16px solid #fff;
}
.sub_nav ul .nav-item.disabled a {
  color: #888888 !important;
}
.sub_nav.no-shadow ul .nav-item:hover {
  background-color: #dddddd;
}
.sub_nav.no-shadow ul .nav-item.active {
  background-color: #dddddd;
}
.sub_nav.no-shadow ul .nav-item.active > a {
  border-bottom: 0 !important;
}
.sub_nav.no-shadow ul .nav-item.disabled a {
  color: #888888 !important;
}

.top_bar {
  position: relative;
  z-index: 2;
  background-color: #E5E5E5;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
  margin: 0 -8px 20px -8px;
  box-sizing: border-box;
  font-family: Arial;
}
.top_bar:after {
  content: "";
  clear: both;
  display: table;
}
.top_bar button.no_style {
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  outline: 0;
}
.top_bar button.add_widgets {
  background: rgb(212, 212, 212);
  border: 0;
  padding: 10px;
  cursor: pointer;
  outline: 0;
  color: #000;
}
.top_bar button.add_widgets:hover {
  background: #c7c7c7;
}
.top_bar .left {
  float: left;
}
.top_bar .right {
  float: right;
}
.top_bar .left div,
.top_bar .right div {
  display: inline-block;
}
.top_bar .clear {
  clear: both;
  float: none;
}
.top_bar.padding {
  padding: 10px;
}
.top_bar input,
.top_bar select {
  border: solid 1px #cccccc;
  border-radius: 3px;
  moz-transition: all 0.3s ease-in;
  o-transition: all 0.3s ease-in;
  padding: 3px 5px;
  transition: all 0.3s ease-in;
  webkit-transition: all 0.3s ease-in;
}

.page_nav {
  font-size: 12px;
  height: 30px;
  background-color: #dddddd;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.page_nav .nav-item a {
  line-height: 30px !important;
}
.page_nav .nav-item:hover {
  background-color: #fff !important;
}
.page_nav .nav-item.active {
  background-color: #fff !important;
}
.page_nav .nav-item.active > a {
  border-bottom: 16px solid #fff;
}
.page_nav .nav-item:before {
  height: 10px !important;
  top: 10px !important;
}

/*
IE Styling to override default
*/
.ie .top_bar {
  border-bottom: 1px solid #bbb;
}
.ie .top_nav .nav-item.notification_wrapper .notification_dropdown {
  top: 47px;
}
.ie .top_nav .nav-item.notification_wrapper .notification_dropdown ul li {
  display: table;
  width: 100%;
  box-sizing: border-box;
}
.ie .top_nav .nav-item.user_wrapper .user {
  position: relative;
  box-sizing: border-box;
  top: 0;
  height: 37px;
  border: 0;
  line-height: 35px;
  border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  /*center the initials*/
  display: block;
}
.ie .top_nav .nav-item.user_wrapper .user > div {
  margin: 0;
}
.under_top_nav.persistent_notification {
  border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
  margin: 0 !important;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */
  .top_nav .nav-item.user_wrapper .user {
    position: relative;
    line-height: 55px;
    /*center the initials*/
    display: block;
  }
  .top_nav .nav-item.user_wrapper .user > div {
    margin: 0;
  }
}

/*# sourceMappingURL=navigation.css.map */
