:root {

    --Fond1: #141414;
    --Fond2: #303030;
    --Gris1: #808080;
    --Gris2: #b1b1b1;
}


/* CART  */

.cart-shop-icon .p1[data-count]:after{
    position:absolute;
    right:10%;
    top:8%;
    content: attr(data-count);
    font-size:60%;
    padding:.2em;
    border-radius:50%;
    line-height:1em;
    color: white;
    background:rgba(255,0,0,.85);
    text-align:center;
    min-width: 1em;
    font-weight:bold;
}

.cart-shop-icon {

    color:  white;
    font-size: 16px;
    cursor: pointer;
    display: none!important;
}

.cart{

    position: fixed;
    top: 120px;
    right: 1em;
    width: 500px;
    z-index: 1050;
    background-color: rgba(78, 78, 78, 0.85);
    border-radius: 15px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    
}

.cart-body{

    overflow: auto;
    max-height: 325px;
}

.cart-header {
    border-radius: 0px;
    background-color: var(--Gris1);
    padding: 10px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.cart-header-tittle {
    font-family: var(--font1);
    color: white;
    font-size: 26px;
    font-weight: bold;
}

.cart-sub-header,.cart-row-info  {
    border-radius: 0px;
    background-color: var(--Gris1);
    padding: 5px;
}

.cart-sub-header-tittle {
    font-family: var(--font1);
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.cart-item{

    text-transform: uppercase;
    font-family: var(--font1);
}

.cart-item-img{

    background-color: #dddddd!important;
    width:80px;
    padding: 10px;
}

table.cart-body-list tr td {
    padding: 0px;
}

.cart-item-remove{

    background-color:var(--Orange1)!important;
    width:32px;
    color: black;
    font-weight: bold;
    font-size: 18px;
}

.cart-item-remove i:hover{
    color: white!important;;
}

.cart-item-price{

    /* background-color:var(--Orange1); */
    width:64px;
    /* color: black; */
    font-weight: bold;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

.cart-body-list tr td {

    background-color: rgba(41, 40, 40, 0.85);
}


.cart-body-list{

    margin-bottom: 0px!important;
}

.cart-item-menu li:first-child{
    font-weight: bold;
    font-size: 16px;
    color: white!important;
}

.cart-item-menu li{

    color: var(--Gris1);
    text-transform: none!important;
}


.cart-item-control{

    width: 128px;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
}

.cart-item-control i:hover{

   color: var(--Orange1);
}

.cart-row{

    margin: 0px!important ;
}

.cart-button{

    border: 1px white solid;
    padding: 5px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
}

.cart-button:hover, .cart-button.active{

    background-color: var(--Orange1);
    color: black;
}

.cart-info{

    text-transform: uppercase;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.cart-voucher-tittle{

    background-color: var(--Gris1);
    color: white;


}

.vouchers-list{

    color: white!important;
    border: 0px!important;
    padding: 8px 3px;
    margin-bottom: 6px;
}
.vouchers-list:active,.vouchers-list:focus,.vouchers-list:focus-within{

    /* color: green!important; */
    border: 0px!important;
}
.cart-voucher-send{

    background-color: var(--Orange1);
    color: black;
    font-weight: bold;
    cursor: pointer;
    height: 53px;
    line-height: 53px;
}

.cart-voucher-send:hover{

    background-color: var(--Gris1);
    color: white;
}

.cart-paid-button,.cart-paid-paypal{

    border-radius: 0px;
    background-color: var(--Orange1);
    padding: 10px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    text-align: center;
    font-weight: bold;
    font-family: var(--font1);
    font-size: 20px;
    cursor: pointer;
    color: black;
}

.cart-paid-button:hover{
    color: white;
}

.cart-paid-paypal{

    border-radius: 0px;
    background-color: var(--Primary);
    padding: 2px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    text-align: center;
    cursor: pointer;
}

.cart-paid-paypal:hover{

    background-color: var(--Primary);
}

::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--Primary)
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--Primary)
  }