.cart {
  background: #1a1a1a;
  position: absolute;
  z-index: 100;
  padding: 30px;
  width: 480px;
  top: 29px;
  right:0;
  display: none;
  box-shadow: 0 0 15px black;
}
.cart:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;  
  border-left: 17.5px solid transparent;
  border-right: 17.5px solid transparent;
  border-bottom: 30.3px solid #1a1a1a;
  position: absolute;  
  top: -30px;
  right:9px;
}
.cart .cart__empty {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  color: #CCC;
}
.cart .cart__close {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  float: right;
  position: relative;
}
.cart .cart__close:before {
  position: absolute;
  content: '';
  width: 29px;
  height: 2px;
  left: 0;
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: #999999;
  display: block;
  border-radius: 10px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ie-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.cart .cart__close:after {
  position: absolute;
  content: '';
  width: 29px;
  height: 2px;
  left: 0;
  top: 9px;
  background-color: #999999;
  display: block;
  border-radius: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ie-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.cart .cart__close:hover:before {
  background-color: #666;
}
.cart .cart__close:hover:after {
  background-color: #666;
}
.cart .cart__title {
  font-family: NVIDIA;
  font-weight: lighter;
  font-size: 32px;
  line-height: 32px;
  color: #76b900;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.cart .cart__items li {
  padding: 30px 0px;
  /*border-bottom: 1px solid #616161;*/
  display: inline-block;
}
.cart .cart__total {
  font-family: NVIDIA;
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
  padding: 30px 0px 60px 0px;
  text-align: right;
}
.cart .cart__checkout-button {
  width: 100%;
  margin-bottom: 30px;
}
.cart .cart__continue-shopping {
  display: block;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.cart.cart--shown {
  display: block;
}

.cart_desc {
    padding-left: 10px;
    vertical-align: top;
}
.cart__promotions{
	margin-top:10px;
	border-bottom: 1px solid #616161;
}

.cart_bundle_link {
    float: right;
    text-transform: uppercase;
}

.quantity-selector .quantity-selector__dec, .quantity-selector .quantity-selector__inc {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 2px;
}

.quantity-selector .quantity-selector__dec:before, .quantity-selector .quantity-selector__inc:before {
  border-color: transparent #999999 transparent transparent;
  border-image: none;
  border-style: solid;
  border-width: 6px;
  content: " ";
  height: 0;
  pointer-events: none;
  position: absolute;
  top: -1px;
  right: 0;
  width: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ie-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.quantity-selector .quantity-selector__dec:hover:before, .quantity-selector .quantity-selector__inc:hover:before {
  border-color: transparent #666 transparent transparent;
}
.quantity-selector .quantity-selector__dec.disabled, .quantity-selector .disabled.quantity-selector__inc {
  opacity: 0.5;
  cursor: default;
}
.quantity-selector .quantity-selector__inc {
  margin-left: 4px;
}
.quantity-selector .quantity-selector__inc:before {
  border-color: transparent transparent transparent #999999;
}
.quantity-selector .quantity-selector__inc:hover:before {
  border-color: transparent transparent transparent #666;
}
.quantity-selector .quantity-selector__inc.disabled {
  opacity: 0.5;
  cursor: default;
}

.cart-item {
  width: 100%;
}
.cart-item .cart-item__quantity-selector {
  float: left;
  width: 65px;
  margin-right: 15px;
}
.cart-item .cart-item__name {
  font-family: NVIDIA;
  font-weight: lighter;
  font-size: 24px;
  color: #eeeeee;
  float: left;  
  padding-right: 20px;
}
.cart-item .cart-item__sub-name {
  font-size: 16px;
  color: #eeeeee;
}
.cart-item .cart-item__price {
  font-family: NVIDIA;
  font-weight: lighter;
  font-size: 24px;
  color: #eeeeee;
  text-align: right;
  float: right;
  margin-right: 20px;
}
.cart-item .cart-item__remove {
  /*width: 15px;*/
  width: auto;
  height: 15px;
  cursor: pointer;
  display: inline-block;
  /*float: right;*/
  position: relative;  
  top: 3px;
  font-size: 10px;
  line-height: 10px;
  text-decoration: underline;
}
.cart-item .cart-item__remove:before {
  position: absolute;
  /*content: '';*/
  width: 14px;
  height: 2px;
  left: 0;
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: #999999;
  display: block;
  border-radius: 10px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ie-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.cart-item .cart-item__remove:after {
  position: absolute;
  /*content: '';*/
  width: 14px;
  height: 2px;
  left: 0;
  top: 9px;
  background-color: #999999;
  display: block;
  border-radius: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ie-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.cart-item .cart-item__remove:hover:before {
  background-color: #666;
    text-decoration: underline !important;
}
.cart-item .cart-item__remove:hover:after {
  background-color: #666;
    text-decoration: underline !important;
}
.cart-item .cart-item__product-limit-reached {
  clear: both;
  padding-top: 10px;
  color: #76b900;
}
.nv-button {
    background-color: #76b900;
    border: medium none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    line-height: 1em;
    padding: 15px 25px 10px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease 0s;
}

.disable-out-of-stock{display:none; cursor: default;
    height: 43px;
    padding-left: 19px;
    padding-top: 10px;
    width: 100%;
	background: rgba(0, 0, 0, 0) url("../img/dropdown-arrow-disable.png") no-repeat scroll 31px center;
    border: 1px solid #747474;
    color: #747474;
}

.js-out-of-stock__with-date, .js-out-of-stock__without-date{display:none;}

@media (min-width: 768px) and (max-width: 1023px) {
  /*.cart {    
    top: 75px;
  }*/
  .cart:before { right: 60px; }


.cart-main-section {
    
    height: 95%;
    margin-top: 5%;
    overflow-y: auto;
    position: fixed;
    right: 40px;
    width: 480px;
    z-index: 103;
}

.cart-section {
    display: block;
    overflow-y: visible;
    position: relative;
  /*  right: 60px;*/
}



}

@media (min-width: 768px)  {
    .cart-section { right: 0; position: absolute; }
    .cart-item .cart-item__name { max-width: 314px; width:50%; }
    .cart.cart--shown {  }
}

@media only screen and (min-width: 1024px) and (max-width:1309px) {


    .cart-section {
        position: absolute;
        right: 20px;
    }
}

@media (max-width: 767px) {
.cart-item .cart-item__name { margin-bottom: 15px; max-width: 390px; width: 58%; }
  .cart {    
	top: 40px;
	position: fixed;
	overflow-y: auto;
    left: 0;
    width: 100%;
    bottom: 0;    
  }
  .cart:before {
    display: none;
  }
  .cart .cart__title {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0px;
  }
  .cart .cart__total {
    font-size: 28px;
    padding: 30px 0px;
  }
  .quantity-selector .quantity-selector__dec, .quantity-selector .quantity-selector__inc {
    width: 12px;
    height: 12px;
  }
  .quantity-selector .quantity-selector__dec:before, .quantity-selector .quantity-selector__inc:before {
    border-width: 8px;
  }
  
  
   .cart-item .cart-item__quantity-selector {
    float: left;
    margin-right: 10px;
    width: 70px;
}
   
  .quantity-selector__value {
    margin-right: 4px;
} 
 


}

@media (max-width: 600px) {
.cart-item .cart-item__name { font-size: 18px; line-height: 24px; display: inline-block; float: none; max-width: calc(100% - 75px); width: auto; margin-bottom:0; }
.cart-item .cart-item__quantity-selector { margin-right: 3px; width:70px; }
/*.cart-item .cart-item__price { clear: both; float: none; position: relative; right: 10px; }*/
.cart-item .cart-item__price { clear: both; float: right; position: relative; right: 10px; width:auto; }
.cart-item .cart-item__remove { clear: both; top: 18px; }
.cart__promotions{
	margin-top:10px;
}
}

@media (max-width: 400px) {
.cart { padding: 26px 10px; }	
.cart__promotions{
	margin-top:10px;
}
}	

