


html {

	background-color: #c8bfce8a;
	height: 100%;
    margin: 0;
}

.hero {

} 

.rightjustify {
	display: flex; 
	justify-content: flex-end;
}

.centerjustify {
	display: flex; 
	justify-content: center;
}
.titleimg {
	max-height: 60px;
	max-width: 100%;
}
.header {
	height: 60px;
}
.fixedtop {
	position: relative;
	top: 10px;
	padding-bottom: 30px;
}

.transparent {
	background-color: transparent;
	box-shadow: none;
	   

}
.btnmenu:hover {
    color: white;
}
.btnmenu {
    color: white;
	min-width: 275px;
	font-family: Urbanist-Light,sans-serif;
	font-size: 16px;
	font-weight: 600;
	background-color: black;
	border: 1px solid #cfde3e;
	border-radius: 2px;
    min-height: 65px;
}
h1 {
	font-size: 24px;
	font-weight: 700;
	font-family: Urbanist-Light,Helvetica,sans-serif;
	color:  black;
}
h2 {
	font-size: 18px;
	font-weight: 600;
	font-family: HelveticaNeue-Bold,Helvetica,sans-serif;
}
font-family: HelveticaNeue-Bold,Helvetica,sans-serif;

.button {

}

.footer {
	background-color: transparent;
	position: absolute;
	bottom: 10px;
	width: 100%;
	padding:  3rem;

}
 #configdrop {
 	min-width: 210px;
 }
 #menubtn{
 	min-width: 125px;
 }
 #resetbtn{
 	min-width: 125px;
 	text-align: center;
 	float:  right;
 }
 .pencil {
 	float:  right;
 }
 
 .remainup {
     border-radius: 0px;

     color:  black;
         border: 1px solid black;
 	margin: 0 40px;
 }
 #remaining {
 	background-color: white;
 	font-size: 48px;
	font-weight: 600;
	font-family: HelveticaNeue-Bold,Helvetica,sans-serif;
	text-align: center;
	color:  black;
	
 }

 .menuitem {
 	margin-bottom: 32px;
 }
 #remaintitle {
 	text-align: center;
 	color:  black;
 }
 #hopper {
 	 display:block;
    margin:auto;
 }
 .hopper_section {
 	
 }
 .box {
 	display:block;
    margin:auto auto 10px auto;
    min-width: 110px;
    min-height: 64%;
    padding: 0.25rem;
    text-align: center;
     box-sizing: border-box;
     border-radius: 0px;

     color:  black;
         border: 1px solid black;

 }
 .notvisable {
 	visibility: hidden;
 	display: none;
 }

.visableon {
 	visibility: visible;
 	display: none;
 }
 .bottle {
 	height: 50%;
 }
 
 .dest {
 	height: 100%;
 }

 .from {
 	height: 70%;
 }

 .vcenter {
 	display: flex;
 	justify-content: center;
  	align-items: center;
  	height: auto;
 }
 .itemimage img {
    display:flex;
    

 }
 .itemimage {
 	    margin: 0 50px;
 }
 .footer_section {
 	margin:  3% 15%;
 }
 #footplace {
 display:block;
    margin:auto;
}
.cluster {
	padding: 0;
}
.tile.is-parent {
	padding:  3px 0;
}
.packtile {
	margin:  0 auto;
	font-family: HelveticaNeue-Bold,Helvetica,sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: black;
}
.scanreject {
	background-color: red;
}

.parentpackage {
	font-size: 36px;
	font-weight: 400;
	font-family: HelveticaNeue-Bold,Helvetica,sans-serif;
	background-color: #f15746;
	color: whitesmoke;
	border-radius: 0px;
	border: 1px solid black;
	box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
	padding: 0 20px;
}

.blink_me {
  animation: blinker 1.25s linear infinite;
}

@keyframes blinker {
  0%,50% {
    color: whitesmoke;
    background-color: #f15746;
  }
  51%,100% {
    color: #f15746;
     background-color: whitesmoke;
  }
}
.spacetop {
	margin-top: 16px;
}

.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  width: 40%;
  margin:  16px auto;
   font-size: 26px;
   border-radius: 0px;
	border: 1px solid black;
	box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.bottomborder {
	border-bottom: solid;
}

.dropdown-item {
	color:  black;
}
.dropdown-menu {
	border-radius: 0px;

     color:  black;
         border: 1px solid black;
}
.dropdown-trigger {
	border-radius: 3px;

     color:  black;
         border: 1px solid black;
}
.button {

	border-radius: 3px;
	border: 1px solid black;
}
.pencil {
	margin-left: -50px;
}

/* Modal */
#modal_wrapper.overlay::before {
    content: " ";
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background: #000;
    background: rgba(0,0,0,0.7);
  }

  #modal_window {
    display: none;
    z-index: 200;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 360px;
    overflow: auto;
    padding: 10px 20px;
    background: #fff;
    border: 5px solid #999;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

  #modal_wrapper.overlay #modal_window {
    display: block;
  }

  .middle {
  	margin: 16px 20%;
  	border: 1px solid black;
  	background-color: white;
  }

   
  .facilityoptions {
    display: flex;
  }
  .childs {
    max-height: 160px;
    overflow-y: scroll;
    width: 100%;
    text-align: center;
  }
  .nobullets {
 list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
  }
  .labelbold {
    font-family: Urbanist-Bold;
    font-weight: 700;
  }

  .codeinfotable {
    margin:  0 auto;
    width: 100%;
  }
  .spacer {min-width: 32px}
  .vspacer {min-height: 64px}
   .vspacer-sm {min-height: 16px}
  .table th {
        font-family: Urbanist-Bold;
    }

      .table td, {
        font-family: Urbanist-Light;
    }
    @media (max-width: 768px) {
        h1 {
            font-size: 16px;

    }
}
    @media (max-width: 768px) {
        .bpos {
            display: flex; 
            justify-content: center;
        }
    }
 .centercodedinfo {
    min-width: 240px;
 }


.highlightcode {
    background-color: lightgray;
    font-weight: bold;
}
#timing {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

#palletstatus {
    text-align: center;
}
#currenttable {
    margin: 0 auto 80px auto;

}
.table tr.is-selected {
    color: black;
}

.table thead {
     background-color: lightgray;
}
#newpallet {

    min-width: 125px;
    text-align: center;
    float:  right;
    z-index: 99;
}

@font-face {
  font-family: Urbanist-Light;  
  src: url("/fonts/Urbanist-Light.woff2");
}   
@font-face {
  font-family: Urbanist-Bold;
  src: url("/fonts/Urbanist-Bold.woff2");
}   
.enterkey {
    display: block;
}
.fixcols {table-layout: fixed;width: 100%;border: 1px solid black;}
tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th { background-color: #F9F9F9  ;}
table, th, td {
  border: 1px solid;
}
table {
    width:100%;
}
table, th, td {
    border:1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: left;
}
table#t01 tr:nth-child(even) {
    background-color: #eee;
}
table#t01 tr:nth-child(odd) {
   background-color:#fff;
}
table#t01 th {
    background-color: black;
    color: white;
}

.loginstyle {
    min-height: 56vh;
}
.hero.is-fullheight {
    min-height: 56vh;
}
.hero.is-primary {
    background-color: transparent;
}
#mapholder {
    width: 100%;
}
#d1 {
    width: 250px;
}
#dropbtn {
    width: 250px;
}