@charset "utf-8";
/* CSS Document */
#cd-cart-trigger {
	background: rgba(58,19,0,1.00);
	color: #fff;
	padding: 7px;
	cursor: pointer;
	border:solid 1px rgba(58,19,0,1.00);	
	margin-right: 5px;
	margin-left: 5px;
}
@media screen and (min-width: 1000px) {#cd-cart-trigger {	margin-right: 0px;}}

#cd-cart-trigger:hover {
	color:#B1B1B1;
	text-decoration:none; 
	transition: all .2s;	
	border:solid 1px rgba(134,134,134,1);
}
#cd-cart-trigger p {margin: auto;}

.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.overflow-hidden {overflow: hidden;}
#cd-cart {
  position: fixed;
    overflow-y: auto;
    height: max-content;
    max-height: 100%;
	padding-bottom: 20px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  display: none;
  background: #FFF;
  -webkit-transition: right 0.3s;
  -moz-transition: right 0.3s;
  transition: right 0.3s;
  font-family: arial;
  font-size: 10pt;
}
.product_name_in_cart {font-weight: 700; margin-top:5px; margin-bottom: 5px; text-transform: uppercase; padding-right: 35px;}
.product_name_link {color: black;}

#mask {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  background: rgba(120, 100, 100, 0.8);
  cursor: pointer;
  z-index: 999;
}
.active {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.5s ease !important;
}
#cd-cart li {
    padding: 10px;
	display: inline-block;
	position: relative;
  	border: 1px solid #e0e6ef;
	margin: 3px;
}
#cd-cart h6 {
  display: block;
  font-family: oswald;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin:30px auto 10px auto;
  text-align: center;
}
.cd-cart-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, 120px);
    grid-gap: 0;
    padding: 0;
    list-style: none;
    margin: auto;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
} 

.cd-cart-total .cd-price, .cd-cart-total .cd-price-text {
  color: #000;
  font-size: 24pt;
  font-weight: 600;
  vertical-align: bottom;
  font-family: oswald;
  margin: auto;
}
.cd-item-remove {
  position: absolute;
  z-index: 1004;
  right: 5px;
  top: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 0 0 0 10%;
	border-bottom: solid 1px #e0e6ef;
	border-left: solid 1px #e0e6ef;
	background: rgba(255,255,255,1.00) url("../img/cd-remove-item.svg") no-repeat center center;
}
#cd-cart li:hover .cd-item-remove{  
	background-color: #9F8888;

}
 .cd-item-remove:hover {
  background-color: #CB0003 !important;
}
 .cd-cart-total {
  padding-top: 30px!important;
  padding-bottom: 1em;
  font-weight: 500;
  color: #3D3D3D;
  text-align: center;
}
 .checkout-btn {
  display: block;
  width: max-content;
  padding: 20px;
  background: #C5203E;
  color: #FFF;
  text-align: center;
  font-family: oswald;
  font-size: 14pt;
  font-weight: 600;
  box-shadow:0px 4px 7px 0px rgba(0,0,0, 0.7); 
  overflow: hidden;
  margin: auto;
}
 .checkout-btn:hover {
  background: #800017;
}
.qty_btn {margin: 3px; width: 25px; height: 25px;background: #800017; border-radius: 20%; text-align: center; display: inline-block;}
.cart_img {
	position: relative; 
	margin: auto;
	width: 92px; 
	height: 92px;
	z-index: 1003;
}
.cart_info {
	position: relative; 
	padding-top: 12px;
}

 .cd-go-to-cart {
	 margin:10px auto 40px auto; text-align: center;
}
 .cd-go-to-cart a {
  text-decoration: none;
  padding-left: 0; 
  color: black;
}
 .cd-go-to-cart a:hover {
  text-decoration: underline;
}

/* -------------------------------- 

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
