/* ======Click on Bag====== */
.when-click-bag{
    top: 0;
    overflow-y: scroll;
    z-index: 15;
    position: fixed;
    max-width: 427px;
    height: 100vh;
    right: -450px;
    font-family: Roboto Condensed;
    transition:all 0.3s ease;
    background-color: var(--white);
}
.when-click-bag.active{
    visibility: visible;
    right: 0;
    transition:all 0.5s ease;
}
.when-click-bag h1{
    font-size: 22px;
    color: var(--blue);
}
.bag-header{
    background: var(--white);
    display: flex;
    padding: 10px;
    position: fixed;
    width: 100%;
    max-width: inherit;
    z-index: 3;
}
.bag-close-btn{
    display: flex;
    font-size: 25px;
    right: 0;
    margin-left: auto;
}
.click-bag-content{
    display: grid;
    grid-template-columns: 1fr 1fr 0.1fr;
    grid-gap: 20px;
    max-width: auto;
    margin: 0 auto;
    padding: 15px;
}
.click-bag-content img{
    width: 100%;
}
.bag-trush-btn{
    top: 0;
    display: flex;
}
.bag-trush-btn:hover{
    color: red;
}
.bag-close-btn{
    color: var(--blue);
}
.desc-bag , .price-bag{
    /* font: 1em sans-serif; */
    /* font-size: 14px; */
    letter-spacing: 1px;
    color: var(--black2);
}
.bag-size-qty{
    color: var(--black2);
}
.icon-inner{
    color: var(--blue);
}
.header-bag-padding{
    margin: 40px 0;
    margin-bottom: 230px;
}

/* Amount to pay */
.amount-pay{
    background: var(--white);
    padding: 10px;
    position: fixed;
    width: 100%;
    max-width: inherit;
    bottom: 0;
}
.pay-amount,.final-price{
    color: var(--black3);
}
.amount{
    display: flex;
    font-size: 22px;
    font-weight: 700;
    /* border-bottom: 1px solid; */
    justify-content: space-between;
    border-bottom: 0.5px solid #888;
    margin-top: 10px;
    padding-bottom: 10px;
}
.total-price,.save-price{
    display: flex;
    font-size: 18px;
    justify-content: space-between;
    margin: 10px 0;
    color: var(--black3);
}
.botton-check-price{
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    grid-gap: 20px;
    max-width: auto;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 20px;
}
.check-price{
    border: 1px solid var(--blue);
    color: var(--white);
    background: var(--blue);
    outline: none;
    font-weight: 500;
    width: 100%;
    padding: 12px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* margin-top: 15px; */
}

.check-price a{
    color: white;
}
/* Empty bag */
.empty-bag{
    height: 100%;
    display: -moz-box;
    display: flex;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    text-align: center;
    padding: 0 30px;
}
.empty-bag h1{
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}
.empty-bag p{
    margin-bottom: 10px;
    margin-top: 20px;
}
.empty-bag .check-price{
    margin-bottom: 10px;
}
.new-bag-close-btn{
    padding: 20px;
    position: absolute;
}

.fa-bag-shopping{
    color: transparent;
    -webkit-text-stroke: 2px var(--blue);
}