
.add-list{
    height: 9em;
    text-align: center;
    padding: 2em;
}
.item-new{
  font-size:medium;    
}
/* Autocomplete input */
.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: var(--colorBrightBackGround);
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
  }
  
  .ui-autocomplete > li > div {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333333;
    white-space: nowrap;
  }
  
  .ui-state-hover,
  .ui-state-active,
  .ui-state-focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
    cursor: pointer;
  }
  
  .ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .ui-autocomplete a{
    color: grey;
  }
  
  .ui-autocomplete a:hover{
    color: black;
  }

  .auto-list{
    display: none;
  }

/* Over lay button*/
  .show-overlay{
    position: relative;
    width: 100%;
    height: auto;
  }

  .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;  
  }
.show-overlay:hover .overlay {
    display: block;
    background: rgba(0, 0, 0, 0.315);
  }
    
  .btn-overlay {        
    text-align: center;  
    opacity: 0;
    transition: opacity .35s ease;
  }
  
  .btn-overlay button, label {
    z-index: 1;
  }
  
  .show-overlay:hover .btn-overlay {
    opacity: 1;
  }

  .item-boxes {
    text-align: center;
    padding: 0px;
    margin: 0px;
 
  }
  
  .item-boxes .icon {
    width: 40px;
    height: 40px;
    text-align: center;    
    display: inline-block;    
    padding: 8px;

  }

  .selected .icon{
    border-radius: 30px;
    border: 2px solid #7db208;
    background-color: #fff;
  }
  
  .item-boxes h4 {
    font-size: 13px;
    font-weight: 500;
    margin-top: 0.5em;
    margin-bottom: 0px;    
  }

  .selected h4{
    font-weight: 800 !important;
  }

  .item-boxes p {
    font-size: 12px;
    font-weight: 200;    
  }

  hr.process{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .canceled, .soldout {
    text-decoration: line-through;
  }

  .attention {
    font-weight: bold;
  }
  .font-weight-bold{
    color: var(--colorTextGray);
  }
  span.item-price{
    color: var(--colorAccent);
    float: right;
  }
  
.map-input{
  height: 300px;
  width: 100%;
}

input.optional:valid {
  background-image: none !important;
  border: 1px solid #ced4da !important;
}

.tab-list{
  height: 60px;
}

.tab-icon-badge{
  height: 30px;
  width: 20px;
  margin-right: 1em;
}

.tab-icon{
  height: 20px;
  width: 20px;
  margin-right: 1em;
  margin-top: 10px;
}

.tab-lbl{
  color: var(--colorPrimaryDark);
}

.tab-lbl:hover{
  color: var(--colorPrimary);
}
.tab-active{
  border-bottom: 3px solid var(--colorPrimaryDark);
  border-radius: 0px;
}

.sup {
  top: -0.5em;
  right: -1em;
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

a.code{
  color: var(--colorAccent);
  text-decoration: underline;
}

input.item-price, input.item-unit-price, input.price{ 
  text-align: right; 
}

::placeholder {
  color: var(--colorGray);
  font-size: 0.8em;
  font-weight: 200;
}

input.form-control, textarea.form-control{
  color: var(--colorDark);;
}

.show-overlay .mark{
  position: absolute;
  top: -18px;
  left: -5px;
  color: var(--colorPrimary);  
  font-weight: bold;
  font-size: larger;  
  background: none;
}
.dot-info {
  height: 10px;
  width: 10px;
  background-color: var(--colorPrimary);
  border-radius: 50%;
  display: inline-block;
}

.dot-warning {
  height: 10px;
  width: 10px;
  background-color: var(--colorAccent);
  border-radius: 50%;
  display: inline-block;
}
.btn-top-right{
  position: absolute;
  top: -18px;
  right: -5px;
}

.item-code{
  font-size:smaller;
  font-style: italic;
  font-weight: lighter;
}

.btn.product-code{
  font-size: x-small;
  color: var(--colorAccent) !important;
  text-decoration: underline;
}