.popup-cover.active
{
	display:block;
	visibility:visible;
	opacity:1;
	z-index:2;
}

.popup-cover{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
	display:none;
	visibility:hidden;
	opacity:0;
	z-index:-2;
}


.popupbox{
    position: absolute;
    padding:20px;
    left: 50%;
    top: 50%;
    width: 90%;
    z-index: 2;
    height: 90%;
    border-radius:10px;
    background: #fff;
    transform:translate(-50%,-50%);
    overflow-y: auto;
}


.kcs-input {
    background: #fffdf2;
    border: 1px solid #8d8d8d !important;
    border-radius: 0px !important;
    font-size: 14px;
    min-height: 41px;
}
.kcs-input:active,
.kcs-input:focus
{
	border-color:#011652 !important;
}

input:focus
{
    outline:none;
}

div#party-result {
    background: #f8f8f8;
    margin: 20px 0px;
    border-radius: 4px;
    overflow: hidden;
}

input.search-party {
    background: #fffbe5;
    border: 1px solid #aaa !important;
    border-radius: 4px;
    font-size: 13px;
}
.result-row {
    font-size: 14px;
    padding: 10px;
	cursor:pointer;
	list-style:none;
}
.result-row:nth-child(odd) {
    background: #f3f3f3;
}

.result-row:hover,
.result-row.background
{
	background:#011652;
	color:#fff;
}




/* item list */

.item-added
{
	width:100%;
	float:left;
	height: auto;
	padding: 10px 0px;
}
.item-added:nth-child(odd) {
	background: #fff9df;
}

.itemdesc
{
	float:left;
	width: calc(100% - 510px);
	padding: 0px 10px;
	font-weight: 500;
	font-size: 14px;
	box-sizing:border-box;
}

.remove-item
{
	float:right;
	width: 50px;
	display: flex;
	align-items: center;
	height: 45px;
	cursor: pointer;
	justify-content: center;
}

.item-quantity
{
	width:120px;
	float:left;
}

.close-popup {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
	cursor:pointer;
}

div#subtotal {
    font-weight: bold;
    color: #011652;
    text-align: left;
    font-size: 18px;
}

.std-pkg {
    float: left;
    width: 100px;
    margin-left: 10px;
}
.add-pkg {
    float: left;
    width: 100px;
    margin-left: 10px;
}

.net-amount.na2 {
    float: left;
    width: 100px;
    font-weight: 600;
    padding-left: 10px;
    font-size: 15px;
}

.kcs-input::placeholder
{
	font-size:0px;
}

/* snackbar */


/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden;
    background-color: #fff0ae;
    color: #000000;
    text-align: center;
    border-radius: 5px;
    line-height: 20px;
	height:38px;
    font-size: 13px;
    position: fixed;
    z-index: 1;
    right: 20px;
    top: 130px;
    border: none;
    padding: 9px 12px;
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 16px 0 rgba(0,0,0,.08), 0 3px 6px -4px rgba(0,0,0,.12), 0 9px 28px 8px rgba(0,0,0,.05);
    align-items: center;
    justify-content: center;
}

#snackbar svg
{
	margin-right:10px;

}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.kcs-input[disabled] {
    background: #f1f1f1;
}



.plus {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #d7d7d7;
    text-align: center;
    line-height: 15px;
    border-radius: 2px;
    float: left;
	cursor:pointer;
}

.additional-info {
    width: 100%;
    float: left;
    background: #0000000d;
    padding: 5px 10px;
    margin-left: 0px;
    margin-top: 6px;
	display:none;
	position:relative;
}

.item-name {
    width: calc(100% - 35px);
    margin-left: 10px;
    float: left;
}

.additional-info.active {
    display: block;
    border: 1px solid #011652;
}

.additional-info.active:before {
    height: 7.5px;
    width: 1px;
    background: #011652;
    position: absolute;
    left: 10px;
    top: -8px;
    content: '';
}