.hi{
    position: relative;
    cursor: pointer;
}
.header_notice{
    border-radius: 50%;
    background-color: red;
    color: white;
    padding: 1.5px;
    font-size: 9px;
    position: absolute;
    top:5px;
    left: 10px;
}
.shopping-cart{
    position: absolute;
    top: 6%; right: -115%;
    background: #ffff;
    border-radius: .5rem;
    width: 35rem;
    padding: 2rem;
    z-index: 999;
    transition: 1s linear;
}
.shopping-cart-a{
    right: 2rem;
    transition: 1s linear;
}
.shopping-cart .box{
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    position: relative;
}
.shopping-cart .box .fa-times{
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #63bcde;
    cursor: pointer;

}
.shopping-cart .box .fa-times:hover{
    color: green;

}
.shopping-cart .box img{
    height: 7rem;
}
.shopping-cart .box .content h3{
    font-size: 1rem;
    margin-bottom: .5rem;
    color: black;
}
.shopping-cart .box .content span{
   font-size: 1rem;
   color: #63bcde;
}
.shopping-cart .total{
    color: #63bcde;
    text-align: center;
    font-size: 2.2rem;

}
.shopping-cart .total span{
    color:black;
}
.shopping-cart .btn{
    width: 100%;
}
@media (max-width: 991px){
    .shopping-cart{
        width: 100%;
        right: 0rem;
    }

}