/**SIDEBAR COMPONENT*/
.sidebar--left {
	left: 0;
	transform: translateX(-110%);
}

.sidebar--left.sidebar__container.open {
	transform: translateX(0);
}

.sidebar--right {
	right: -320px;
}

@media screen and (min-width: 768px) {
	.sidebar--right {
		right: -320px;
	}
}

.sidebar--right.sidebar__container.open {
	transform: translateX(-100%);
	box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
	.sidebar--right.sidebar__container.open {
		transform: translateX(-320px);
	}
}

.sidebar__title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: white;
	color: #232323;
	border-bottom: 1px solid #a10b0b;
	font-size: 1.2rem;
	text-transform: none;
	font-weight: 400;
	padding: 10px 10px;
	background-size: cover;
	z-index: 9;
}

.sidebar__container {
	display: flex;
	flex-direction: column;
  /*min-width:300px;
        max-width:350px;*/
	width: 320px;
	min-height: 100vh;
	position: fixed;
	top: 0;
	height: 100%;
	background: #fff;
	z-index: 9999;
	transition: transform .5s;
}

.sidebar__close__btn {
	height: auto !important;
	padding: 0;
}

.sidebar__close__btn svg {
	margin-bottom: 0;
}

.sidebar .btn-outline-dark {
	border-radius: 0;
}
/**CART**/
.slideCart__products {
	list-style: none;
	margin: 0;
	padding: 0 10px;
	overflow-y: scroll;
  /*display:flex;
    align-items: center;
    flex-direction: column;*/;
}

.slideCart__products::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.slideCart__product {
	padding: 10px 0;
	margin: 5px 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	border-bottom: 1px solid #fafafa;
}

.slideCart__product:last-child {
	border-bottom: none;
}

.slideCart__product .quantity {
	font-size: .775rem;
}

.slideCart__product .name {
	font-size: .875rem;
	display: block;
	font-weight: 600;
}

.slideCart__product .price {
	text-align: center;
}

.slideCart__product .price-vaule {
	color: #333;
	font-weight: 900;
}

.slideCart__product .remove-from-cart {
	position: absolute;
	right: 0px;
	top: 0px;
}

.slideCart__img {
	align-self: center;
	flex: 0 0 100px;
  max-width: 100px;
}
.slideCart__img img{
  max-width: 100%;
}
.slideCart__desc {
	padding: 0 15px 0 5px;
	text-align: center;
}
#header .slideCart a{
	white-space: wrap;
 }
#header .slideCart__desc a{
  white-space: wrap;
}
.slideCart__totals {
	position: static;
	bottom: 0;
	background: white;
	padding: 5px 10px;
	border-top: 1px solid #fefefe;
}

.slideCart__totals .cart-subtotal {
	margin: .5rem 0;
	text-align: center;
	font-size: .875rem;
	font-weight: 300;
}

.slideCart__totals .cart-total {
	text-align: center;
	font-size: 1rem;
	font-weight: 900;
	display: block;
	text-transform: uppercase;
	margin: .5rem 0;
  color:#2f2f2f;
}

.slideCart__buttons {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.slideCart__buttons .btn {
	width: 70%;
	margin: 5px 0;
}
/*CUSTOM*/
#header .header-nav .blockcart{
  background:transparent;

}
.cart-preview{
  font-weight: 700;
  font-size: 16px !important;
  color: #414141;
  display: flex;
  justify-content: center;
  align-items: center;
  background:transparent;
}
.cart-preview >svg{
  margin-right:.5rem;
}
.cart-preview span{
  padding: 2px;
  font-size: 10px;
  width: 18px;
  height: 18px;
  margin-left: 3px;
  background: #a10b0b;
  font-weight: 900;
  border-radius: 50%;
  text-align: center;
  color:white;
  text-indent: initial;
}
.overlay{
  z-index:1010;
  top:0;
  position:fixed;
  width:100%;
  height:100vh;
  background:#0005;
  visibility: hidden;
  transition: all .5s ease-in;
  &.visible{
    visibility: visible;
  }
}
.z-0{
  z-index:0!important;
}
.slideCart__totals .btn.btn-primary{
	min-height: initial;
  min-width: initial;
  padding: .76rem;
}
.slideCart__totals .collapse-button svg{
width:25px;
height:25px;
}
.slideCart__product [type="number"]{
	-moz-appearance: initial;
	width: 75px;
  background: #fff;
  padding: 5px;
  margin: 0 auto;
}