/* Allgemein */

li:active,
a:active{
    background-color: transparent !important;
    color: #000 !important;
}

.bootstrap-icon-font {
	font-family: bootstrap-icons !important;
}

/* Header */
#selected-customer-banner {
	margin-bottom: -1rem!important;
}

/* Artikelliste */
.card .product-img {
	height: 359px;
	justify-content: center;
}
#product-list .card.card:hover .card-img-overlay {
    visibility: visible;
    opacity: 1;
}
#product-list .card.card .card-img-overlay {
    background: rgba(0,0,0,.2);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

/* Artikeldetails */
#add-to-cart-container form {
	display: flex;
	justify-content: flex-start!important;
}
#add-to-cart-container .add-to-cart-quantity {
	width: 60px;
	display: inline;
	margin-right: 10px;
}

/* Warenkorb */
.table-cart img {
	max-width: 100px;
}
.table-cart input[type=number] {
	width: 80px;
}

/* Seitennavigation (Buttons ohne Links) */
.page-item.active.page-link {
	z-index: 3;
	color: #fff;
}

.live-search-container
{
  position:absolute;
  z-index:1100;
  top:50px;
  left:0;
  width:150%;
  background-color:white;
  border:2px solid #b4b5bc;
  padding:10px;
  border-radius:0 0 5px 5px;
  margin-left:-2px;
}

.live-search-pic
{
  width:50px;
  height:50px;
}

/* CUSTOM */

.mw-80{
    min-width: 80px;
}

.overflow-x-auto{
    overflow-x: auto;
}

.scroll {
}
.scroll::-webkit-scrollbar {
    height: 10px;
}

.scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(158, 162, 186,0.3); 
    border-radius: 50vh;
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: 50vh;
    -webkit-box-shadow: inset 0 0 6px rgba(158, 162, 186,0.5); 
}

.btn-cart-esc
{
  background-color:#212529;
  display:inline-block;
  font-weight:600;
  letter-spacing:.08px;
  line-height:1;
  position:relative;
  text-transform:uppercase;
  z-index:5;
  border:none;
  padding:17px 15px;
  color:#fff;
  transition: background-color .2s ease-in-out; 
}

.btn-cart-esc:hover
{
    background-color:#2e3769;
}

.btn-cart-esc:disabled
{
    background-color:#9ea2ba;
    pointer-events: none;
}


.no-arrows::-webkit-inner-spin-button,
.no-arrows::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.border-radius-0
{
    border-radius: 0;
}

.qty-input{
    transition: .2s ease-in-out;
}

.qty-input:not([disabled])
{
    background: #f5f5f5;
    color: #000;
    box-shadow: none;
}

.qty-input:disabled{
    opacity: .3;
}

.qty-input:focus{
    background-color:#e6e6e6;
    //color: #fff;
}

.outline-none{
    outline: none;
}

.outline-none:focus{
    outline: none;
}

.trash-btn{
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #f5f5f5;
    transition: .2s ease-in-out; 
}

.trash-btn:hover{
    background: #2e3769;
    color: #fff;
}

.trash-btn:disabled
{
    opacity: .3;
    pointer-events: none;
}

/* Cart Preview */

/*.cart-link a
{
  font-weight:bold;
  text-transform:uppercase;
  vertical-align:middle;
  color:#070b21!important;
}*/

.cart-link:hover > .cart-preview
{
  visibility:visible;
  opacity:1;
  top:100%;
}

.cart-link i
{
  font-size:20px;
  margin-right:4px;
  position:relative;
  top:-2px;
}

.cart-count
{
  border-radius:50px;
  display:inline-block;
  font-size:10px;
  font-weight:bold;
  height:20px;
  line-height:20px;
  margin-left:5px;
  text-align:center;
  min-width:20px;
  background-color:#8185a0;
  color:#fff;
}

.cart-preview
{
  visibility:hidden;
  position:absolute;
  border-radius:10px;
  opacity:0;
  padding:20px 20px;
  right:0;
  top:100%;
  transition:all .3s ease;
  min-width: 500px;
  max-width: 600px;
  z-index:9999;
  margin-top:10px;
  background:#fff none repeat scroll 0 0;
  box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

.img-w-100{
    width: 100%;
}

.cart-btn
{
  display:inline-block;
  font-weight:bold;
  letter-spacing:.5px;
  line-height:1;
  padding:12px 21px 10px;
  text-transform:uppercase;
  border:1px solid #666666;
  color:#070b21;
}

.cart-btn:hover
{
  border:1px solid #000;
  color:#fff!important;
}

.cart-delete
{
  display:flex;
  flex-grow:100;
  justify-content:flex-end;
}

.cart-title h5,.cart-title h6,.cart-title span
{
  font-size:14px;
  margin-bottom:6px;
  text-transform:capitalize;
  color:#070b21;
}

.cart-title h5 a,.cart-title h6 a
{
  color:#070b21;
}

.cart-delete > a
{
  font-size:18px;
  margin-top:18px;
  color:#070b21;
}

.cart-title > span
{
  display:block;
  margin:9px 0 0;
}

.btn-hover::before
{
  bottom:0;
  content:"";
  left:0;
  position:absolute;
  right:0;
  top:0;
  transform:scaleX(0);
  transition-duration:.3s;
  transition-property:transform;
  transition-timing-function:ease-out;
  z-index:-1;
  background:#000 none repeat scroll 0 0;
}

.cart-preview-order {
    background-color: transparent;
    font-weight: bold;
    text-transform: uppercase;
    vertical-align: middle;
    color: #070b21!important;
    position: relative;
}

.cart-preview-order:hover {
  background-color:#000;
  cursor: pointer;
}

.cart-price
{
  font-size:14px;
  letter-spacing:.5px;
  color:#070b21;
}

.cart-sub
{
  font-size:18px;
  letter-spacing:.5px;
  text-transform:capitalize;
  color:#070b21;
}

header{
    box-shadow: 6px 6px 12px rgba(33, 37, 41,.2);
}

.customer-filter{
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.3s ease-in-out;
    box-sizing: border-box;
}

.customer-filter::-webkit-scrollbar {
    width: 10px;
}

.customer-filter::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(158, 162, 186,0.3); 
    border-radius: 50vh;
}

.customer-filter::-webkit-scrollbar-thumb {
    border-radius: 50vh;
    -webkit-box-shadow: inset 0 0 6px rgba(158, 162, 186,0.5); 
}

#cbo-dd:checked ~ .customer-filter{
    max-height: 200px;
    transition: max-height 0.33s ease-in-out;
}

#cbo-dd{
    display: none;
}

#cbo-dd:checked{
    accent-color: red;
}

#cbo-dd-lbl{
    cursor: pointer;
}