.nohrd-form-field-name {
    display:None;
}

.nohrd-action-bar {
    background-color: #EEE8E3 !important;
    border-color:#f1d8c3;
    padding: 5px;
    border-radius: 0px;
    color: #000;
}

.nohrd-menu-bar {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.nohrd-action-button{
    padding: 5px 10px 5px 10px !important;
    line-height: 20px !important;
    height: 35px;
    width: 120px;
    background-color: #4EC3C4;
    color: #ffffff;
    font-size: 14px;
    margin-top: 7px !important;
    margin-bottom: 7px !important;
    border: none !important;
}

.nohrd-action-button:hover{
  background-color: #44a9ab !important;
  color: #ededed;
}

.nohrd-action-button:disabled,
[disabled]{

  background-color: #bcbaba;
  color: #8d8c8c;
}

.nohrd-back-button{
    padding: 5px 5px 5px 0px !important;
    line-height: 20px !important;
    height: 35px;
    width: 120px;
    background-color: #a09d9d;
    color: #ffffff;
    float: left;
    position: relative;
    left: 10px;
    font-size: 14px;
    margin-top: 7px !important;
    margin-bottom: 7px !important;
    border: none !important;
}

.nohrd-back-button:hover{
  background-color: #898787 !important;
  color: #ededed;
}

.nohrd-select-button{
    height: 30px !important;
    width: 100px !important;
    line-height: normal;
    padding: 0px !important;
    background-color: #EEE !important;
    color: #707070;
    border-style: none !important;
}
.nohrd-select-button:hover{
    background-color: #454444 !important;
    color: #ededed;
}

.nohrd-delete-button{
    height: 30px !important;
    width: 100px !important;
    line-height: normal;
    padding: 0px !important;
    margin: 3px !important;
    background-color: #ee776f !important;
    color: #ededed;
    border-style: none !important;
}
.nohrd-delete-button:hover{
    color: #f6f3f3;
    background-color: #ab554f !important;
}

.nohrd-select-button-mobile{
    height: 35px !important;
    width: 100px !important;
    line-height: normal;
    padding: 0px !important;
    background-color: #EEE !important;
    color: #707070;
    border-style: none !important;
    margin-top: 5px;
    margin-bottom: 10px;
}

.nohrd-unselect-button{
    height: 30px !important;
    width: 100px !important;
    line-height: normal;
    padding: 0px !important;
    background-color: #ee776f !important;
    color: #ffffff;
    border-style: none !important;
}
.nohrd-unselect-button:hover{
    background-color: #ae3930 !important;
    color: #ededed;
}
.nohrd-unselect-button-mobile{
    height: 35px !important;
    width: 100px !important;
    line-height: normal;
    padding: 0px !important;
    background-color: #dc493f !important;
    color: #ededed;
    border-style: none !important;
    margin-top: 5px;
    margin-bottom: 10px;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.grid-striped .row:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.nohrd-header-col{
    font-size: 18px;
    font-weight: 800;
    /* background-color: #c8c8c8 !important;
    border-color:#f1d8c3;
    color: #545454; */
}

.nohrd-alert-info{
    width: 100%;
    margin-top: 5px;
    background-color: #EEE8E3;
    color: #000;
}

.nohrd-alert-danger{
  width: 100%;
  margin-top: 5px;
  background-color: #dc5858;
  color: #ffffff;
}

.frc-banner{
    visibility: hidden !important;
}

.nohrd-form-header {
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0px;
    font-weight: 600;
    font-size: 16px;;
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.nohrd-no-padding {
  padding: 0px !important;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  /* white-space: nowrap; */
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

body{
  color: #545353;
}

.nohrd-active-sign{
  border-style: solid;
  border-color: #02c028;
  border-width: 1px;
  padding: 2px;
  border-radius: 3px;
  margin-right: 3px;
  margin-top: 1px;
  margin-bottom: 1px;
  font-size: 10px;
  font-weight: 700;
  color: #02c028;
}

.vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

label{
  margin-bottom: 2px;
}

.loading-overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}
