@font-face {
    font-family: 'fakepearl';
    src: url('../assets/FakePearl-Regular.woff') format('woff'),
         url('../assets/FakePearl-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'fakepearl';
    src: url('../assets/FakePearl-SemiBold.woff') format('woff'),
         url('../assets/FakePearl-SemiBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'fakepearl';
    src: url('../assets/FakePearl-Medium.woff') format('woff'),
         url('../assets/FakePearl-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'fakepearl';
    src: url('../assets/FakePearl-Light.woff') format('woff'),
         url('../assets/FakePearl-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fakepearl';
    src: url('../assets/FakePearl-ExtraLight.woff') format('woff'),
         url('../assets/FakePearl-ExtraLight.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

#container {
    padding-top: 85px;
    padding-bottom: 50px;
}
.form-inline > .form-group > label{
    margin: 10px;
}
.form-inline > .form-check{
    margin:10px;
}
.center_div{
    margin: 0 auto;
    width:80% /* value of your choice which suits your alignment */
}
.sticky-header-grey{
    position: -webkit-sticky;
    position: sticky;
    background-color:rgb(214,214,214);
    top: 0px;
}
.sticky-header-white{
    position: -webkit-sticky;
    position: sticky;
    background-color:white;
    top: 0px;
}
@media only screen and (max-width:798px){
    .responsive-table-text{
        font-size:1.5vh;
    }
}
/*For Bootstrap*/
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.dropdown-item:hover{
    background-color: rgba(0, 98, 84, 0.8);   
}

/* BODY */

#app {
}
html{
  height: 100%
}
body {
  margin: 0 auto;
  text-align: center;
  background: rgb(100,100,100,.2) !important;
  font-family: 'fakepearl' !important;
  border-left: 7px solid rgba(80,80,80,.4);
  border-right: 7px solid rgba(80,80,80,.4);
  min-height: 100%;
}
body:before, body:after{
    content: "";
    position: fixed;
    background: rgba(80,80,80,.4);
    left: 0;
    right: 0;
    height: 7px;
    z-index: 999;
}
body:before{
    top: 0;
}
body:after{
    bottom: 0;
}

.btn-block:not(.flat){
    height: 50px;
    border: 6px outset rgba(0,149,128, 0.2) !important;
}

.btn-block.btn-secondary{
    height: 50px;
    border: 6px outset rgba(108, 117, 125, 0.2) !important;
}
.btn-block:disabled {
    border: 6px outset rgba(100,117,125, 0.2) !important;
}

/* NAV */
#logo {
    -webkit-filter: drop-shadow(5px 5px 5px #666666);
    filter: drop-shadow(5px 5px 5px #666666);
    margin-right: 20px;
}
#nav {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,149,128,.1))), -webkit-gradient(linear,left top, left bottom,from(rgba(100,100,100,.2)),to(rgb(100,100,100,.2))), -webkit-gradient(linear, left top, left bottom, from(white), to(white));
    padding: 0.8rem 1.2rem;
    border: 7px solid rgba(50,50,50,0.3);
    border-bottom: 0px;
}

/* MAIN BODY */
.AppBody {
    padding-top: 85px;
    padding-bottom: 50px;
}

/* LOCATION DROPDOWN */
.dropdown-menu:not(.typeahead){
    top: -2px !important;
    padding: 0px !important;
    border: 2px solid rgb(0,149,128);
    -webkit-filter: drop-shadow(3px 3px 3px #666666);
    filter: drop-shadow(3px 3px 3px #666666);
    background-color: #009580;
}
div.dropdown-menu .dropdown-item, ul.dropdown-menu:not(.typeahead) .dropdown-item{
    padding: 0.5rem 1.5rem !important;
    color: white;
}
.dropdown-item:not(:last-child){
    border-bottom: 2px solid rgba(255,255,255,.5) !important;
}

/* Table */
.table:not(.notDarkHeader) > thead > tr > th:not(.table-active), .table:not(.notDarkHeader) > tbody > tr > th:not(.table-active) {
    background-color: #484e54 !important;
}
.table > thead > tr > th.table-active {
    background: linear-gradient(rgba(0, 0, 0, 0.075),rgba(0, 0, 0, 0.075)),
    linear-gradient(rgba(80,80,80,.4),rgba(80,80,80,.4)),
    linear-gradient(white, white) !important;
}
.table:not(.notDarkHeader) > thead > tr > th, .table:not(.notDarkHeader) > tbody > tr > th{
    color: white !important;
}
.table > tbody > .table-active > th.b-table-sticky-column{
    background:
    linear-gradient(rgba(80,80,80,.4),rgba(80,80,80,.4)),
    linear-gradient(white, white) !important;
}
.sticky-header-grey{
    background: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075)), linear-gradient(rgba(80, 80, 80, 0.4), rgba(80, 80, 80, 0.4)), linear-gradient(white, white);
}
.table:not(.notDarkHeader) td {
    border-top: 1px solid #000;
}
.inventory-table td, .inventory-table thead th{
    border: none;
}
.table thead th, .table th{
    border: none;
}
.table-no-border td{
    border:none;
}

/* Transfer Location Input*/

.locations .input-group-prepend, .locations .input-group-append{
    width: 50%;
}
.locations .input-group-text{
    width: 24%;
}
.locations .custom-select{
    width: 76%;
}

/* Order Form */
.w-33{
    width: 33.3%;
}
.w-20{
    width: 20%;
}
.w-25{
    width: 25%;
}
.w-75{
    width: 75%;
}
.w-80{
    width: 80%;
}
.custom-control-label:not(.not-custom):before{
    background-color: #484e54;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: rgb(0,149,128);
}
.topBorder{
    border-top: 1px solid #999;
    margin-left: 0;
    margin-right: 0;
}
.withBorder {
    border: 1px solid #a4a4a4;
}
.header {
    background-color: #484e54;
    color: white;
}
@media only screen and (min-width: 600px) {
  .table-responsive {
      margin: 0 auto;
  }
}
.col-md-auto{
    max-width: 100%;
}

.input-group-text.required:after { 
   content:"*";
   color:red;
}
