/* Mini-cart (#ShoppingCart) e badge do carrinho.
   Vive no _Layout (todas as paginas), por isso saiu de Search/Search.css. */

.cartMiniList {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 180px;
}

.sidenav {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 1030;
  top: 100px;
  color: white;
  right: -50px;
  background-color: #252525;
  overflow-x: hidden;
  transition: 0.5s;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.scrollbar {
  float: left;
  height: 300px;
  width: 65px;
  overflow-y: scroll;
  margin-bottom: 25px;
  border-radius: 10px;
}

.cute_scroll::-webkit-scrollbar {
  width: 10px;
  background-color: black;
}

.cute_scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px whitesmoke;
  border-radius: 10px;
  background-color: whitesmoke;
  border-left: 3px solid black;
  border-right: 3px solid black;
}

.cute_scroll::-webkit-scrollbar-thumb {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 6px #a17a25;
  background-color: #cb9b34;
}

/* Tabela do mini-cart: fundo escuro herdado do .sidenav */
.cart-table-list {
  margin-bottom: 0;
  color: #fff;
  background-color: transparent;
}

.cart-table-list > thead > tr > th,
.cart-table-list > tbody > tr > td {
  border-color: #3a3a3a;
  color: #fff;
  vertical-align: middle;
  font-size: 12px;
}

.cart-table-list .cart-thumb {
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.cart-table-list .cart-thumb img {
  max-width: 100%;
  max-height: 100%;
}

.cart-table-list a.close {
  color: #cb9b34;
  opacity: 1;
  text-shadow: none;
  font-size: 14px;
  cursor: pointer;
}

.cart-empty {
  padding: 15px 20px;
  color: #bbb;
  font-size: 12px;
}

.total-cart {
  padding: 5px 20px;
  color: #fff;
}

.s-cart-btn {
  clear: both;
  padding: 10px 20px 15px;
}

.s-cart-btn .btn {
  width: 100%;
}

/* Badge com o numero de linhas do carrinho. Escondido quando vazio (:empty). */
#tableCount {
  display: inline-block;
  min-width: 18px;
  padding: 0 5px;
  margin-left: 4px;
  border-radius: 9px;
  background-color: #cb9b34;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

#tableCount:empty {
  display: none;
}
