@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;300;400&family=Roboto:wght@100;300;400;600&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.bg-dark.card-header {
    --bs-card-cap-color: white;
}

.pwFont {
  font-family: monospace;
}

.linkButton {
  background: none!important;
  border: none;
  padding: 0!important;
  /*optional*/
  /*font-family: arial, sans-serif;
  /*input has OS specific font-family*/
  color: #069;
  text-decoration: underline;
  cursor: pointer;
}

body.login{
  padding-top: 40px;
  padding-bottom: 40px;
}

.img-responsive{
  display: block;
  max-width: 100%;
  height: auto;
}

img{
  vertical-align: middle;
}
/*SIDEBAR NAV*/ 
  .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    background: #05808f;
    background-image: linear-gradient(180deg,#05808f 50%,#00a2d9 100%);
    z-index: 100;
    transition: all 0.5s ease;
    overflow-y: none;
  }

  .sidebar.closer{
    width: 78px;
  }

  .sidebar .logo-details{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .sidebar .logo-details i{
    font-size: 30px;
    color:  #fff;
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
  }

  .sidebar .logo-details .logo_name{
    font-size: 22px;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    transform: 0.3s ease;
    transition-delay: 0.1s;
  }

  .sidebar.closer .logo-details .logo_name{
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none;
  }

  .sidebar .nav-links{
    height: 100%;
    padding: 30px 0 150px 0;
    overflow: auto;
  }

  .sidebar .nav-links{
    overflow-y: auto;

  }
  .sidebar .nav-links:hover{
    color: #fff;
  }

  .sidebar.closer .nav-links{
    overflow: visible;
    
  }
  .sidebar .nav-links::-webkit-scrollbar{
    display: none;
  }

  .sidebar .nav-links li{
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
  }
  /*.sidebar .nav-links li:hover{
    color: #fffdda;
  }*/

  .sidebar .nav-links li .icon-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar .nav-links li .icon-link:hover{
    color: blue;
  }
  /*.sidebar .nav-links li .icon-link{
    color: #fff;
  }*/

  .sidebar.closer .nav-links li .icon-link{
    display: block;
  }

  .sidebar .nav-links li i{
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sidebar .nav-links li.showMenu i.arrow{
    transform: rotate(-180deg);
  }

  .sidebar.closer .nav-links i.arrow{
    display: none;
  }

  .sidebar .nav-links li a{
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .sidebar .nav-links li a .link_name{
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, .8);
    transition: all 0.4s ease;
  }

  .sidebar.closer .nav-links li a .link_name{
    opacity: 0;
    pointer-events: none;
  }

  .sidebar .nav-links li .sub-menu{
    padding: 6px 6px 14px 14px;
    margin-top: -10px;
    background: #fff;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 5px;
    display: none;
  }
  .sidebar .nav-links li.showMenu .sub-menu{
    display: block;
  }
  .sidebar .nav-links li .sub-menu a{
    color: black;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
  }

 .sidebar .nav-links li .sub-menu a:hover{
    opacity: 1;
    background: #f2f2f2;
    }

  .sidebar.closer .nav-links li .sub-menu{
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    transition: all 0.4s ease;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0s;
  }
  .sidebar.closer .nav-links li:hover .sub-menu{
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
  }
  .sidebar .nav-links li .sub-menu .link_name{
    display: none;
  }

  .subactive{
 /*background: #0a6f7a;*/
 width: 100%;
 color: #fff;
 font-weight: bold;
}
  .active{
 background: #0a6f7a;
 width: 100%;
color: #fff;
}

  .sidebar.closer .nav-links li .sub-menu .link_name{
    font-size: 18px;
    opacity: 1;
    display: block;
  }

  .sidebar .nav-links li .sub-menu.blank{
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
    transition: 0s;
  }
  .sidebar .nav-links li:hover .sub-menu.blank{
    top: 50%;
    transform: translateY(-50%);
  }
  .sidebar .profile-details{
    position: fixed;
    bottom: 0;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #056b78;
    padding: 6px 0;
    transition: all 0.5s ease;
  }
  .sidebar.closer .profile-details{
    background: none;
  }
  .sidebar.closer .profile-details{
    width: 78px;

  }

  .sidebar .profile-details .profile-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
  .sidebar .profile-details img{
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 14px 0 12px;
    background: #056b78;
    transition: all 0.5s ease;
    }

  .sidebar.closer .profile-details img{
    padding: 10px;
  }

  .sidebar .profile-details .profile_name,
  .sidebar .profile-details .job{
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
    
  }
  .sidebar.closer .profile-details i,
  .sidebar.closer .profile-details .profile_name,
  .sidebar.closer .profile-details .job{
    display: none;
  }
  .sidebar .profile-details .job{
    font-size: 12px;

  }
  .home-section{
  position: relative;
  background: #E4E9F7;
  height: 30px;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
  }
  .sidebar.closer ~ .home-section{
    left: 78px;
    width: calc(100% - 78px);

  }
  .home-section .home-content{
    height: 30px;
    display: flex;
    align-items: center;
  }

  .home-section .home-content .bx-menu,
  .home-section .home-content .text{
    color: #11101d;
    font-size: 35px;
  }

  .home-section .home-content .bx-menu{
    margin: 0 15px;
    cursor: pointer;
  }
  .home-section .home-content .text{
    font-size: 25px;
    font-weight: 600;
  }
/*END SIDBBAR NAV*/

.content{
  position: relative;
  width: calc(100% - 260px);
  min-width: 100%;
  transition: all 0.5s ease;
  padding: 15px;
  margin-bottom: 64px;
  padding-bottom: 74px;
  overflow-x: hidden;

}
/*LOGIN FORM*/
  .signup-form{
    margin: auto;
    background: #f6f6f6;
    width: 300px;
    height: 100%;
    padding: 20px 30px 30px 20px;
    border-radius: 4px;
    border-color: #ccd9df;
    border-style: solid;
    border-width: 2px;

  }
  .signup-form .heading{
    color: #f95c17;
    padding-bottom: 10px;
    font-size: 2.125rem;
    font-weight: 700;
    font-family: 'Roboto' Helvetica, Arial, sans-serif;
  }

  .signup-form .labelText{
    display: block;
    font-size: 60%;
    padding-bottom: 10px;
    padding-top: 10px;
    text-transform: uppercase;
    color: #f95c17;
    font-weight: bold;
  }

  .signup-form input:not([type="checkbox"]){
    width: 100%;
    padding: 12px;
    line-height: 15px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
  }
    .signup-form input[type="checkbox"]{
    width: 20px;
    height: 20px;
    padding: 0;
    border-width: 4px;
    border-style: solid;
    border-radius: 5px;
    background-color: lightgray;
    accent-color: #f85d13;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 6px;
  }
  
  .signup-form button{
    background-color: #f85d13;
    border-color: #f85d13;
    padding: 20px 44px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    border-radius: 2px;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    min-height: 20%;
    max-width: 100%;
    border-width: 3px;
    border: none;
    /*margin: 3px;*/
    cursor: pointer;
  }

  .signup-form p.error{
    color: red;
    font-weight: bold;
    padding-top: 2px;
    text-decoration: blink;
  }

  p.error{
    color: red;
    font-weight: bold;
    padding-top: 2px;
    text-decoration: blink;
  }

  .bgImg{
    height: 100%  auto;
    width: 100%;
    position: relative;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
/*END LOGIN FORM
/*BAN TABLE*/

.content .inf-tables li{
  list-style: none;
}

.content .inf-tables a{
  text-decoration: none;
  color: black;
}

.content .inf-tables #tbla:visited i.tarrow{
    transform: rotate(-180deg);
  }

    .content .table-links a{
      text-decoration: none;
    }
    .content .table-links li{
      list-style: none;
    }

    .content .table-links a .link_name{
      font-weight: 300;
      font-size: 20px;
      color: black;
    }
    .content .table-links li a .link_name{
      transition: all 0.4s ease;
    }
    .content .table-links li .sub-table{
    display: none;

  }
    .content .table-links li.showTable .sub-table{
    display: block;
  }

  .content .table-links li.showTable i.tableArrow{
    transform: rotate(-180deg);
  }
    .bantable{
    width: 100%;
    padding: 20px;
  }

  .bantable td{
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccd9df;
  }
  .bantable th{
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    font-size: 12px;
    text-align: left;
    border-bottom: 2px solid #ccd9df;
    border-top: 1px solid #ccd9df;
  }
  .bantable .btpwCell{
    text-transform: none;
  }

  .bantable th:hover{

  }

  .bantable tr:hover {
    background-color: #e3e3e3;
  }
  .bantable a:not(.btn){
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: black;
    text-decoration: none;
  }
  /**/
.industryConfigTable{
    width: 100%;
    padding: 20px;
  }

  .industryConfigTable td{
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid #ccd9df;
  }
  .industryConfigTable th{
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    border-bottom: 2px solid #ccd9df;
    border-top: 1px solid #ccd9df;
  }
  .industryConfigTable .btpwCell{
    text-transform: none;
  }

  .industryConfigTable th:hover{

  }

  .industryConfigTable tr:hover {
    background-color: #e3e3e3;
  }
  .industryConfigTable a{
    font-size: 12px;
    margin: 2px;
    font-family: Roboto;
    text-decoration: none;
    text-align: center;
  }
  /**/

 .bulTable{
    width: 100%;
    padding: 20px;
  }

  .bulTable td{
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccd9df;
  }
  .bulTable th{
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    font-size: 12px;
    text-align: left;
    /*border-bottom: 2px solid #ccd9df;
    border-top: 1px solid #ccd9df;*/
  }

  .bulTable th:hover{

  }

  .bulTable tr:hover {
    background-color: #e3e3e3;
  }
  .bulTable a{
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: black;
    text-decoration: none;
  }

  .details{
    font-size: 14px;
    padding: 20px;
  }
  .details ul{
    font-family: 'Roboto', monospace;
    line-height: 25px;

  }
  .details b {
    font-family: 'Roboto', monospace;
  }

  .details button{
    padding: 20px;
  }

  .details .alert {
  background-color: #FAEDED;
  width: auto;
  height: auto;
  margin-left: -3px;
  border: 1px solid #CC0000;
  font-family: 'Roboto', monospace;
}

.details table{
  width: 100%;
  padding: 20px;
  border-collapse: collapse;
}

.details td{
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccd9df;
  }

  .details th{
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    font-size: 12px;
    text-align: left;
    border-bottom: 2px solid #ccd9df;
    border-top: 1px solid #ccd9df;
  }

  .details li{
    margin-left: 20px;
  }

.details .buttonMiddle{
  margin-left: 3px;
}

  .pg-Heading{
    font-size: 20px;
    font-weight: 300;
  
  }
  .pg-Heading-2{
    font-size: 22px;
    font-weight: 600;
  
  }
    .pg-SubHeading{
    font-size: 16px;
    font-weight: 300;
  }


/*END BAN TABLE*/

/*body{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17;

}*/
.modalnb {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modalnb-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 5px;
  border: 5px solid #888;
  width: 38%; /* Could be more or less, depending on screen size */
  position: relative;
}

.modal_inst {
  font-weight: bold;
}

.modalTextBox{
  resize: none; 
  overflow: hidden; width: 100%;
}

/* The Close Button */
.close {
  position: absolute;
  color: #aaa;
  right: 14px;
  font-size: 28px;
  transform: rotate(45deg);
  margin: -9px;

}
.closes {
  position: absolute;
  color: #aaa;
  right: 14px;
  font-size: 28px;
  transform: rotate(45deg);
  margin: -9px;

}
.closeflag {
  position: absolute;
  color: #aaa;
  right: 14px;
  font-size: 28px;
  transform: rotate(45deg);
  margin: -9px;

}

.closeban {
  position: absolute;
  color: #aaa;
  right: 14px;
  font-size: 28px;
  transform: rotate(45deg);
  margin: -9px;

}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.closes:hover,
.closes:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.closeflag:hover,
.closeflag:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.closeban:hover,
.closeban:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.clear { 
  clear: both; 
  height: 100px; 
}
.footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #05808f;
  text-align: center;
  color: #fff;
  font-family: sans-serif;
  font-size: 75%;
  font-weight: bold;
  padding-top: 10px;
  }

.buttonMiddle{
  height: 40px;
  width: auto;
  background: #05808f;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 80%;
  border:  0px;
  margin-left: 2px;
  margin-right: 2px;
  padding: 10px;
  border-radius: 2px;
  text-transform: uppercase;
  border-right: 0px solid #006BB1;
  border-left: 0px solid #006BB1;
  text-decoration: none;
}


.buttonMiddle:hover{  
  background: #014e80;
}
.buttonMiddleRed{
  height: 40px;
  width: auto;
  background: #BB0033;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 80%;
  border:  0px;
  margin-left: 2px;
  margin-right: 2px;
  padding: 10px;
  text-transform: uppercase;
  border-right: 0px solid #BB0033;
  border-left: 0px solid #BB0033;
}
.buttonMiddleRed:hover{
  background: #730523;
}

.buttonMiddleRedC{
  
  width: auto;
  background: #BB0033;
  color: #fff;
  font-family: Courier;
  font-weight: bold;
  font-size:20px;
  border:  0px;
  margin-left: 2px;
  margin-right: 2px;
  padding: 10px;
  text-transform: uppercase;
  border-right: 0px solid #BB0033;
  border-left: 0px solid #BB0033;
  text-decoration: blink;
}
.buttonMiddleRedC:hover{
  background: #730523;
}

.deleteButtonSm{
  width: auto;
  background: #BB0033;
  color: #fff;
  height: 20px;
  font-family: 'Roboto', sans-serif;
  /*font-size: 80%;*/
  border:  0px;
  margin-left: 2px;
  margin-right: 2px;
  padding: 2px;
  text-transform: uppercase;
  border-right: 0px solid #BB0033;
  border-left: 0px solid #BB0033;
}
.deleteButtonSm:hover{
  background: #730523;
}
/*YARD DROP DOWN STYLE*/
.yardDropbtn{
  background-color: #04AA6D;
  color: white;
  padding: 5px;
  font-size: 12px;
  border: none;
  text-transform: uppercase;
}
.yardDropbtn:hover{
  background-color: #04AA6E;
}

.yardDropbtn i{
  font-size: 12px;
  top: 1px;
  position: relative;
}

.yardDropdown{
  position: relative;
  display: inline-block;
}

.yard-dropdown-content{
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 0;
}

.yard-dropdown-content a{
  color: black;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
}

.yard-dropdown-content a:hover {
  background-color: #ddd;
}

.yardDropBtnCt {
  display: none;
  background-color: #f1f1f1;
  color: black;
  /*margin-left: 5px;*/
  border: 1px;
  display: block;
  width: 100%;
  height: 30px;
  font-size: 15px;
  text-transform: uppercase;
  font-size: 12px;
}
.yardDropBtnCt:hover {
background-color: #ddd;
}
.trackBtn{
  display: none;
  background-color: #f1f1f1;
  color: black;
  margin-left: 5px;
  border: 1px;
  display: block;
  width: 100%;
  height: 30px;
  font-size: 15px;
}

.trackBtn:hover{
  background-color: #ddd;
}

/*.yard-dropdown-content:hover{
  background-color: #ddd;
}*/



.yardDropdown:hover .yard-dropdown-content {
  display: block;
}
.yardDropbtn{
background-color: #3e8e41;
}
/*END YARD DROP DOWN MENU*/
.yard1{
  background: #268028;
  color: #fff;
}
.yard2{
  background: #b8f2bd;
}
.yard0{
  background: none;
}
.yard3{background: #8ddef0;}
/*.yard4{background: #e8f08d;}*/
.yard5{background: #f0bb8d;}
.yard6{background: #d5f08d;}
.yard7{background: #f08d8d;}
.yard8{background: #e6dc73;}
.yard9{background: #3b35a6;
color: #fff;}

.progressContainer{
  
  text-align: center;
  
}

.tw{
  border: 1px solid;
}
.tw th td tr{
  padding: 5px;
}
.mark{
  color: #b8f2bd;
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
}
.progressNB{
  background: orange;
  border: 5px;
  font-family: 'Roboto Mono', monospace;
}
.progressFull{
  background: repeating-linear-gradient(
    45deg,
    #ff0000,
    #ff0000 5px,
    #fff 5px,
    #fff 10px
  );
  color: blue;
  font-weight: bolder;
}
.tableYard{
  width: 100%;
  border-collapse: collapse;

}
.tableYard td{
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccd9df;
    text-align: center;
  }
  
.tableYard th{
  text-align: center;
  font-size: 14px;
  text-transform: capitalize;
} 

  .yardNotes{
  width: 100%;
  border-collapse: collapse;

}
.yardNotes td{
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccd9df;
    text-align: left;
    font-weight: 600;
  }

.eighty{
  width: 80%;
}
.ninety{
  width: 90%;
}

.tableJob{
  width: 100%;
  border-collapse: collapse;
  background: #cccccc;

}
.tableJob td{
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccd9df;
    text-align: center;
  }

  .hide {
  visibility: hidden;
  border: none;
  width: 0%;
  font-size: 1px;
}

select.selectNBS {
  font-family: 'Roboto', sans-serif;
  background: #ededed;
  font-weight: 400;
  font-size: 15px;
  width: 300px;
  height: 20px;
}
select.selectNBS option {
  font-family: 'Roboto', sans-serif;
  background: #ededed;
  font-weight: 400;
  font-size: 15px;
}

.searchResult {
background: red;
width: 100%;
height: auto;
}

.reportTitle{
  font-family: 'Roboto Mono', monospace;
  text-align: center;
}
.report td{
  font-family: 'Roboto Mono', monospace;
}

.engine {
  width: 44%;
  margin-left: auto;
  margin-right: auto;
  /*font-size: 14pt;*/
  font-family: 'Roboto Mono', monospace;

}
.engine td{
  font-family: 'Roboto Mono', monospace;';
}

.report {
  width: 25%;
  margin-left: auto;
  margin-right: auto;
  /*font-size: 14pt;*/
  font-family: 'Roboto Mono', monospace;
}

.repbutton {
  background-color: #bfbfbf; /* Green */
  border: none;
  color: black;
  padding: 5px 22px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}
.notices{
  /*background-color: red;*/
  height: auto;
  width: 100%;

}
.noticetbl{
  border-collapse: collapse;
}
.noticetbl td{
  font-family: 'Roboto Mono',monospace;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px dashed;

}
.noticetbl th{
  font-family: 'Roboto Mono',monospace;
  text-align: center;
  text-transform: uppercase;
}
.noticetbl a{
  font-family: 'Roboto Mono',monospace;
  text-align: center;
}

@-webkit-keyframes yard4 {
  from { background-color: red; }
  to { background-color: inherit; }
}
@-moz-keyframes yard4 {
  from { background-color: red; }
  to { background-color: inherit; }
}
@-o-keyframes yard4 {
  from { background-color: red; }
  to { background-color: inherit; }
}
@keyframes yard4 {
  from { background-color: inherit; }
  50% { background-color: #e8f08d; }
  to { background-color: inherit; }
}
.yard4 {
  -webkit-animation: yard4 1s infinite; /* Safari 4+ */
  -moz-animation:    yard4 1s infinite; /* Fx 5+ */
  -o-animation:      yard4 1s infinite; /* Opera 12+ */
  animation:         yard4 1s infinite; /* IE 10+ */
}

.passwordBox{
  display: flex;
  background-color: #CEDAD9;
  border-style: solid;
  border-width: 2px;
  height: 60px;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto Mono', monospace;
  font-size: 20px;
  text-align: center;
  border-radius: 5px;
}

.noticeBox{
  display: flex;
  background-color: #DCF7C3;
  border-style: solid;
  border-width: 2px;
  border-color: #91DC4B;
  height: 30px;
  font-family: 'Roboto', sans-serif;
  text-align: left;
  align-items: center;
  padding-left: 10px;
  border-radius: 3px;
}
.noticeBoxError{
  display: flex;
  background-color: #F7C3C3;
  border-style: solid;
  border-width: 2px;
  border-color: #DC4B4B;
  height: 30px;
  font-family: 'Roboto', sans-serif;
  text-align: left;
  align-items: center;
  padding-left: 10px;
  border-radius: 3px;
}
.noticeBoxTSUID{
  display: fixed;
  background-color: #edc0c8;
  border-style: solid;
  border-width: 2px;
  border-color: #DC4B4B;
  height: 125px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  align-items: center;
  padding-left: 10px;
  border-radius: 5px;
}
.noticeBoxInfo{
  display: flex;
  background-color: #f6fbfe;
  border-style: solid;
  border-width: 3px;
  border-color: #2a76ac;
  height: auto;
  font-family: 'Roboto', sans-serif;
  color: #2a76ac;
  /*text-align: center;*/
  align-items: center;
  padding-left: 10px;
  border-radius: 5px;
  /*padding-top: 10px;
  padding-bottom: 10px;*/
  margin-top: 25px;
  margin-bottom: 25px;
}

.noticeBoxInfo .infoIcon{
  flex: 0 0 70px;
  display: flex;
  background-color: red;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.apparent-message {
  width: 100%;
  border-radius: 5px;
  border-style: solid;
  border-width: 3px;
  border-color: #2a76ac;
  margin-bottom: 25px;
  margin-top: 25px;
}
.apparent-message .apparent-message-icon {
  flex: 0 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #f6fbfe;
  text-shadow: 1px 1px 10px #000;
}

.apparent-message .apparent-message-icon .fa-2x {
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.45);
}

.message-container {
  display: flex;

}
.message-container .content-container {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: auto;
  padding-left: 15px;
  padding-bottom: 10px;
  
  
  position: relative;
}

.message-container .warning-message{
 background-color: #FEFBF5;
 color: #f39b0e;
}

.message-container .info-message{
 background-color: #f6fbfe;
 color: #2a76ac;
}

.message-container .error-message{
 background-color: #fcd4ce;
 color: #F5533E;
}

.message-container .content-container .message-header {
  font-size: 20px;
}
.message-container .content-container .message-body {
  margin-top: 10px;
  font-family: 'Roboto', sans-serif;
  
}
.message-container .content-container .message-action {
  position: absolute;
  bottom: 10px;
  right: 30px;
}

.info-message {
  background-color: #2a76ac;
  border-color: #2a76ac;
  border-radius: 5px;
}

.info-message .message-action,
.info-message .message-header{
  color: #2a76ac;
}

.warning-message {
  background-color: #f39b0e;
  border-color: #f39b0e;
  border-radius: 5px;
}

.warning-message .message-action,
.warning-message .message-header{
  color: #f39b0e;
}

.error-message {
  background-color: #F3290E;
  border-color: #F3290E;
  border-radius: 5px;
}

.error-message .message-action,
.error-message .message-header{
  color: #F3290E;
}

.message-body p {
    margin: 0;
    padding: 0;
}


.grid-container {
  display: grid;
  /*grid-template-columns: auto auto auto auto;*/
  grid-template-columns: auto auto auto;
}
.grid-item{
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 5px;
  margin: 2px;
}
/*Breadcrumbs*/
.breadcrumb-container {
    width: 100%;
    background-color: #f8f8f8;
    border-bottom-color: 1px solid #f4f4f4;
    list-style: none;
    margin-top: 72px;
    min-height: 25px;
    box-shadow: 0 3px 0 rgba(60, 57, 57, .2)
}

.breadcrumb-container li {
    display: inline
}
.breadcrumb {
    font-size: 12px;
    padding-top: 3px
}
.breadcrumb>li:last-child:after {
    content: none
}

.breadcrumb>li:last-child {
    font-weight: 700;
    font-style: italic
}
.breadcrumb>li>i {
    margin-right: 3px
}

.breadcrumb>li:after {
    font-family: FontAwesome;
    content: "\f101";
    font-size: 11px;
    margin-left: 3px;
    margin-right: 3px
}
.breadcrumb>li+li:before {
    font-size: 11px;
    padding-left: 3px
}

.toast-container {
  margin-top: 35px;
}



