/*header > #goHomeBtn, header > #logoutBtn, header > #settingsBtn, header > #resetBtn, header > #username { float: right; margin-left: 5px; }*/
.container { padding: 0 !important; margin: 30px !important; }
/*header > #username { padding: 6px 12px; }*/
/*
Help Tip credit: https://tutorialzine.com/2014/07/css-inline-help-tips;
*/

header {
  overflow: auto;
}

header h4 {
  display: inline;
  float: right;
  margin: 5px;
}

h4#username {
  padding-right: 20px;
  padding-top: 7px;
}

.paysheet-mass-edit {
  margin-bottom: 15px;
}

.form-headers h4{
  display: inline;
  margin-right: 95px;
}

.form-headers {
  margin-bottom: 15px;
}

.highlight {
  background-color: #ffbb47;
}

.hide-field{
  display: none;
}

.show-field{
  display: inline-block;
}

/****STEP 4: Styles for multiple views******/

#weekTable_info,
#dayTable_info {
  margin-bottom: 20px;
}


.help-tip{
    position: absolute;
   /* top: 16px;*/
    right: 18px;
    text-align: center;
    background-color: #BCDBEA;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 26px;
    cursor: default;
}

.help-tip:before{
    content:'?';
    font-weight: bold;
    color:#fff;
}

.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;

    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{    /* The tooltip */
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -4px;
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
    z-index: 10;
}

.help-tip p:before{ /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#1E2021;
    right:10px;
    top:-12px;
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}

/* CSS animation */

@-webkit-keyframes fadeIn {
    0% {
        opacity:0;
        transform: scale(0.6);
    }

    100% {
        opacity:100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}


/*
Breadcrumbs credit: https://css-tricks.com/triangle-breadcrumbs/;
*/
.steps {
  padding: 0;
  overflow: hidden;
}
.steps a {
  color: white;
  text-decoration: none;
}
.steps li:nth-of-type(5) a em{
  font-size: 13.3px;
}
.steps em {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
}
.steps li {
  float: left;
  margin-left: 0;
  width: 180px; /* 100 / number of steps */
  height: 70px; /* total height */
  list-style-type: none;
  padding: 5px 5px 5px 30px; /* padding around text, last should include arrow width */
  border-right: 3px solid white; /* width: gap between arrows, color: background of document */
  position: relative;
}
/* remove extra padding on the first object since it doesn't have an arrow to the left */
.steps li:first-child {
  padding-left: 5px;
}
/* white arrow to the left to "erase" background (starting from the 2nd object) */
.steps li:nth-child(n+2)::before {
  position: absolute;
  top:0;
  left:0;
  display: block;
  border-left: 25px solid white; /* width: arrow width, color: background of document */
  border-top: 40px solid transparent; /* width: half height */
  border-bottom: 40px solid transparent; /* width: half height */
  width: 0;
  height: 0;
  content: " ";
}
/* colored arrow to the right */
.steps li::after {
  z-index: 1; /* need to bring this above the next item */
  position: absolute;
  top: 0;
  right: -25px; /* arrow width (negated) */
  display: block;
  border-left: 25px solid #33b7a5; /* width: arrow width */
  border-top: 40px solid transparent; /* width: half height */
  border-bottom: 40px solid transparent; /* width: half height */
  width:0;
  height:0;
  content: " ";
}

/* Setup colors (both the background and the arrow) */

/* Completed */
.steps li { background-color: #33b7a5; }
.steps li::after { border-left-color: #33b7a5; }

/* Current */
.steps li.current { background-color: rgba(239, 19, 19, 0.69); }
.steps li.current::after { border-left-color: rgba(239, 19, 19, 0.69); }

/* Following */
.steps li.current ~ li { background-color: #EBEBEB; }
.steps li.current ~ li::after {	border-left-color: #EBEBEB; }

/*Following but completed */
.steps li.current ~ li.completed { background-color: #33b7a5; }
.steps li.current ~ li.completed::after { border-left-color: #33b7a5; }

/* Hover for completed and current */
.steps li:hover {background-color: #696}
.steps li:hover::after {border-left-color: #696}
