:root{
    --background-color: rgba(0, 128, 255, 0.7);
    /* --text-color: #b45f5f; */
    --button-color: rgb(16, 146, 16);
    --button-color-dark: rgb(42, 154, 42);
    --bg-footer: linear-gradient(to bottom, #53a8fd, #0066cc);
    --heading-font-style : 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  
  }
.cartsd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.carts_container {
    margin: 0 50px;
    width: 730px;
    height: auto;
    top: 370px;
    left: 60px;
    gap: 0px;
    opacity: 0px;
    overflow-y: scroll;
    .cartsd{
            position: sticky;
            top: 10px;
            /* margin: 1px red solid; */
            width: 100%;
            background-color: #fefeff;
            padding: 10px;
    }
    }
.carts_data{
height:1000px;
display: flex;
flex-direction: row;
padding-top: 80px;
}
/* .carts_container::-webkit-scrollbar{
    display:none;
} */
.demp {
    /* width: 100%; */
    height: 130px;
    gap: 0px;
    border-radius: 5px;
    border: 1px 0px 0px 0px;
    opacity: 0px;
    /* border: 1px solid #E8E8E8; */
    box-shadow: 0.2px 0.2px 4px 0px #E8E8E80D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid #77297D;
    border-radius: 6px;
    height: 33px;
    width: 100px;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;   
    height: 18px;
}

.btn-decrement,
.btn-increment {
    color: #77297D;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    background: none;
    
}

.value > img {
    height: 69px;
    width: 69px;
}

.value {
    width: calc(100% / 16   ); /* Adjust the number based on the number of headings */
    text-align: center; /* Center align the content */
}



/* cart right */
.cart-right{
    height:fit-content;
    width: 400px;
    /* border: 1px red solid; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    position: sticky;
    top: 125px;
    background-color:#f9f9f9;
    padding: 30px;
    border-radius: 10px;
    justify-content: space-evenly;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;

}
.available_offers{
    /* height: 200px; */
    width: 100%;
    padding-bottom: 20px;
}

.selected_carts{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.total_item{
    display: flex;
    flex-direction: column;

}
/* end cart right */
.checkout{
    padding: 10px;
    background-color: var(--background-color);
    width: fit-content;
    border-radius: 5px;
    color: white;
    margin-bottom: 30px;
    a{
        color: white;
    }
}

