#loading {
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: fixed;
	display: block;
	opacity: 0.7;
	background-image: url("../img/overlay.png");
	background-color: #fff;
	z-index: 9999999;
	text-align: center;
}

.dispNone {
	display:none;
}

.SingleContCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  /*
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 5px;
	background-color: white;
	border: 0px solid blue;
	overflow: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  */
}

.productTable {
	width: 100%;
	table-layout: auto;
	margin-bottom: 30px
}

.productTable th {
	background-color: #253a47;
	color: white;
	text-align: center;
	height: 30px;
	font-size: 11px;
}

.productTable td {
	height: 30px;
	font-size: 11px;
	text-align: center;
	padding: 3px;
	border: 1px solid #ddd;
}

.productTable tr:last-child {
	
}

.productTable tr td:first-child {
	padding-left: 10px;
}

.productTable td input, .productTable td select {
	border: 0px;
}

.toast-box-bottom {
  position: fixed;
  left: 50%;
  bottom: 40px; 
  transform: translateX(-50%);
  z-index: 9998;
}

.toast-box {
  position: fixed;
  left: 50%;
  top : 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
}

.toast {
  display: flex;
  align-items: center;
  height: 55px;
  padding: 0 34px;
  max-width: 504px;
  width: calc(100vw - 80px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(201, 201, 201, 0.4705882353);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
}
.toast.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.toast .icon {
  width: 24px;
  margin-right: 14px;
}
.toast-success {
  color: #68CB30;
}
.toast-warning {
  color: #E9AA56;
}
.toast-error {
  color: #F7737A;
}
.toast-info {
  color: #909496;
}