
body {
  font-family: Arial;
  background: #eee;
}

.barfiller {
  width: 100%;
  height: 12px;
  background: #fcfcfc;
  border: 1px solid #ccc;
  position: relative;
  margin-bottom: 20px;
  box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,.5);
  -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,.5);
}

.barfiller .fill {
  display: block;
  position: relative;
  width: 0px;
  height: 100%;
  background: #333;
  z-index: 1;
}

.barfiller .tipWrap { display: none; }

.barfiller .tip {
  margin-top: -30px;
  padding: 2px 4px;
  font-size: 11px;
  color: #fff;
  left: 0px;
  position: absolute;
  z-index: 2;
  background: #333;
}

.barfiller .tip:after {
  border: solid;
  border-color: rgba(0,0,0,.8) transparent;
  border-width: 6px 6px 0 6px;
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  top: 100%;
  z-index: 9
}
/* ===== Services Nav Dropdown ===== */
.tpw-has-dropdown {
    position: relative;
}
.tpw-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    /* box-shadow: 0 12px 30px rgba(0,0,0,0.15); */
    margin: 0;
    padding: 18px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.tpw-has-dropdown:hover .tpw-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tpw-submenu li {
    display: block;
    width: 100%;
}
.tpw-submenu li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.tpw-submenu li a:hover {
    background: #f5f5f5;
    padding-left: 25px;
}
.tpw-caret {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    margin-bottom: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .25s ease;
    vertical-align: middle;
}
.tpw-has-dropdown:hover .tpw-caret {
    transform: rotate(225deg);
    margin-bottom: -2px;
}


@media (max-width: 991px) {
    .tpw-caret {
        display: none;
    }
    .tpw-has-dropdown {
        position: relative;
    }
    .tpw-dropdown-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 44px;
        height: 44px;
        cursor: pointer;
    }
    .tpw-dropdown-toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #222;
        border-bottom: 2px solid #222;
        transform: translate(-50%, -65%) rotate(45deg);
        transition: transform .25s ease;
    }
    .tpw-has-dropdown.tpw-open .tpw-dropdown-toggle::before {
        transform: translate(-50%, -35%) rotate(225deg);
    }
    .tpw-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.03);
        padding: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .tpw-has-dropdown.tpw-open .tpw-submenu {
        max-height: 300px;
        padding: 4px 0;
    }
    .tpw-submenu li a {
        padding: 10px 15px 10px 30px;
        font-size: 14px;
    }
    .tpw-submenu li a:hover {
        padding-left: 35px;
    }
}