
#cd-cart-trigger {
  right: 0;
}

#cd-cart {
  position:fixed;
  height:100%;
  top:55px;
  /*width: 20vw;*/
  min-width: 228px;
  max-width: 450px;
  right: -100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #FFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 103;
  -webkit-transition: right 0.3s;
  -moz-transition: right 0.3s;
    -ms-transition: right 0.3s;
    -o-transition: right 0.3s;
    transition: right 0.3s;
    padding-bottom: 100px;
}

#cd-cart ul.cart-items li{
  padding:.7em 1.5em;
  position: relative;
}
#cd-cart ul.cart-items li > a + div {
    padding: 0 10px;
    font-size: 1em;
}

#cd-cart ul.cart-items li span.remove-item:hover{
  background:#B9B9B9;
}

#cd-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(67, 87, 121, 0.6);
  cursor: pointer;
  z-index: 2;
  display: none;
}
#cd-shadow-layer.is-visible {
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}

#cd-cart h2 {
  font-weight: bold;
  font-size: 100%;
  text-transform: uppercase;
    background: #f3f3f3;

  padding:1em 1.5em;
    color: #384047;
}

#cd-cart.speed-in {
  right: 0;
}
#cd-cart .cart-items li > a{
  color:#62605a;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 4px;
   background: rgba(44, 44, 44, 0.07);
   -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 5px 10px;
}

#cd-cart ul.cart-items li > div label{
color: #00a1d9;
font-weight: bold;
}
#cd-cart ul.cart-items .line{
    position: relative;
    margin-right: 25px;
    border-bottom: 1px dotted #999;
    margin-bottom: 5px;
}
#cd-cart ul.cart-items .line + .registrar {
    display: inline-block;
    padding: 5px;
}
#cd-cart ul.cart-items .registrar img {
    float: left;
    margin-right: 10px;
}
#cd-cart ul.cart-items .registrar span {
    line-height: 32px;
}
#cd-cart ul.cart-items .line a {
    float: left;
    padding-right: 10px;
    font-weight: bold;
}
#cd-cart ul.cart-items .line .price {
    float: right;
    padding-left: 10px;
}
#cd-cart ul.cart-items .line a,
#cd-cart ul.cart-items .line .price {
    position: relative;
    background: #fff;
    bottom: -4px;
}
#cd-cart ul.cart-items li span.remove-item {
    color:white;
  display:block;
  width:20px;
  height:20px;
  line-height: 18px;
  text-align: center;
  -ms-border-radius:50%;
  border-radius:50%;
  background: rgba(44, 44, 44, 0.15);
  position: absolute;
  right:-35px;
  top:0;
  cursor: pointer;
    font-size: .85em;
}
div#cd-cart ul.cart-items li > div i {
    font-size: 90%;
    color: #00a1d9;
}
.no-touch #cd-cart .cd-item-remove:hover {
  background-color: #e0e6ef;
}

#cd-cart .cd-cart-total {
  padding: 1em 1.5em;
    background: #f3f3f3;
    color: #384047;
}
#cd-cart .cd-cart-total span:first-child, #cd-cart .cd-cart-total span:last-child{
    font-weight:bold;
    text-transform: uppercase;
}
 #cd-cart .cd-cart-total span:last-child {
     float: right;
 }
#cd-cart .cd-cart-total::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

#cd-cart .checkout-btn {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 54px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight:bold;
    background: #00a1d9;
}
.no-touch #cd-cart .checkout-btn:hover {
  background: #a2dda8;
}
#cd-cart .cd-go-to-cart {
  text-align: center;
  margin: 1em 0;
}
#cd-cart .cd-go-to-cart a:hover{
  color:#000;
  border-bottom: 1px dotted #000;
}

#cd-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(67, 87, 121, 0.6);
  cursor: pointer;
  z-index: 101;
  display: none;
}
#cd-shadow-layer.is-visible {
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}
/*EMPTY CART*/

div.empty-cart > div.message {
    text-align: center;
    color: #888;
    font-size: 1em;
    margin-top: 50px;
}
div.empty-cart > div.message p {
    margin-top: 15px;
}
/* -------------------------------- 

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;
  }
}
