

.larts-cart-box {
  display: block;
  position: relative;
  width: 40px;
  background-color: none;
}

.larts-cart-icon {
  font-size: 2.2em;
  color: rgb(46, 64, 94);
  padding-top: 10px;
  padding-left: 0x;
}
.larts-cart-amount {
  font-size: 1.0em;
  xfont-weight: 800;
  color: whitesmoke;
}

.larts-cart-overlay {
  position: absolute;
  top: 48%;
  left: 55%;
  transform: translate(-50%, -50%);
  padding: 0px;
  margin: auto;
  text-align: center;
  z-index: 1;
  color: red;
}


/* Cart sidebar */


#main-nav {
}
#main-nav .cart-button {
  cursor: pointer;
}

body.show-sidebar-cart {
  overflow: hidden !important;
  height: 100% !important;
}
body.show-sidebar-cart #sidebar-cart {
  right: 0;
  visibility: visible;
}

body.show-sidebar-cart {
  overflow: hidden !important;
  height: 100% !important;
}
body.show-sidebar-cart #sidebar-cart {
  right: 0;
  visibility: visible;
}

#sidebar-cart {
  background-color: rgb(240, 240, 240);
  padding: 0px 0px 0px 0px;
  margin: 0px;
  position: fixed;
  display: block;
  width: 300px;
  height: 100vh;
  z-index: 2500;
  top: 0;
  right: -340px;
  transition: right 0.5s ease-in-out;
  border: 1px solid rgb(27, 27, 27);
}

#sidebar-cart .close-button {
  position: absolute;
  height: 1.7em;
  width: 1.3em;
  margin: 2px 0px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  position: absolute;
  top: 10px;
  left: 10px;
  color:rgb(114, 114, 114);
  z-index: 1;
}
#sidebar-cart .close-icon {
  margin: 0px;
  padding: 2px;
  width: 16px;
  height: 16px;
  font-size: 20;
  text-indent: -9999px;
  overflow: hidden;
  transition: all 0.5s linear;
}
#sidebar-cart .close-button:active span.close-icon, 
#sidebar-cart .close-button:hover span.close-icon {
  background: rgb(221, 221, 221);
}

#sidebar-cart .bag-title {
  display: flex;
  position: relative;
  padding: 8px;
  width: 100%;
  margin: 0px 0px 20px 0;
  color: black;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
}

#sidebar-cart .products {
  margin: 10px;
  xpadding: 0 0 5px 0;
  list-style: none;
  height: calc(100vh - 250px);
  overflow-x: hidden;
  overflow-y: auto;
  display: block;
  position: relative;
  z-index: 0;
  xmargin-top: 40px;
  xmargin-left: -30;
  xborder: 1px solid rgb(27, 27, 27);
}

#sidebar-cart .cart-items {
	margin: 0px;
  padding: 0px;
  list-style: none;
  xheight: calc(100vh - 200px);
  overflow-x: hidden;
  overflow-y: auto;
  display: block;
  xfloat: left;
  xposition: relative;
  xz-index: 0;
  xfont: 1em courier;
  font-size: 14px;
}


#sidebar-cart .product {
	margin: 0px 0px 5px 0px;
	padding: 10px;
	width: 100%;
	min-height: 30px;
	background: #dee2ee;
	border-radius: 3px;
	color: #98989b;
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: row nowrap;
	xtransition: all 0.5s linear;
}

#sidebar-cart .product-link {
  width: 100%;
  color: #354165;
  padding: 0px;
  margin: 0px;
  xdisplay: flex;
  xflex-direction: row;
  xflex-wrap: nowrap;
}

#sidebar-cart .qty-price {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 5px;
  margin-top: 8px;
}

#sidebar-cart .remove-button {
  height: 1.5em;
  width: 1.5em;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  position: absolute;
  top: 8px;
  right: 5px;
  z-index: 2;
  border: 1px solid rgb(27, 27, 27);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-decoration: none;
  color: #505050;
}

#sidebar-cart .remove-icon {
  position: absolute;
  top: -2px;
  left: 5px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
}
  
#sidebar-cart .remove-button:active, 
#sidebar-cart .remove-button:hover {
  background: #cc0000;
}

#sidebar-cart .totals {
  position: absolute;
  margin: 0px;
  padding: 0px 15px;
  bottom: 5em;
  left: 0;
  right: 0;
  background-color: #e1e1e7;
  xborder-bottom: 1px solid #d7d7de;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
#sidebar-cart .subtotal, .ordertotal, .tax {
  margin: 0;
  padding: 4px 0px;
  text-align: center;
  color: #44444a;
  border-bottom: 1px solid #d7d7de;
  xtext-transform: uppercase;
  xletter-spacing: 1px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#sidebar-cart .action-buttons {
	padding: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 70px;
	background: #fff;
	display: block;
	white-space: nowrap;
}
#sidebar-cart .view-cart-button, .checkout-button {
	display: inline-block;
	padding: 10px;
	margin: 15px 70px;
	text-align: center;
	xtext-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
}

#sidebar-cart .view-cart-button {
	background: #fff;
	border-color: #4dc0e3;
	margin-right: 5px;
	color: #4dc0e3;
	width: 160px;
}
#sidebar-cart .view-cart-button:hover {
	background: lightsteelblue;
	color: #000;
}
#sidebar-cart .checkout-button {
	background: #22b0db;
	border-color: #22b0db;
	margin-right: 5px;
	color: #0a0a0a;
	width: 160px;
}




