body{
    background: rgb(246, 246, 247);
    font-family: 'Lato', sans-serif;
}
#cartCont{
    width: 66%;
    margin: auto;
    /* border: 1px solid red; */
}
#cartCont>h1{
    margin: 16px;
}
#leftCart{
    width: 65%;
    /* height: 30vh; */
    float: left;
    /* border: 1px solid green; */
}
.cartSlider{
    height: 110px;
    border-radius: 10px;
    margin-bottom: 14px;
    /* border: 1px solid grey; */
}
.cartSlider>img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.mainCart{
    width: 95.2%;
    background: white;
    padding: 15px;
    border-radius: 10px;
    /* border: 1px solid rgb(140, 145, 140); */
}
.mainCart>h5, #rightCart>h5{
    color: rgb(102, 101, 101);
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}
.cartDivPro{
    height: 120px;
    width: 100%;
    margin-top: 16px;
    border-bottom: 1px solid rgb(164, 167, 164);
    display: flex;
    gap: 16px;
}
.cartDivPro>div:first-child{
    /* width: 2.5%;
    height: 13%;
    padding: 14px; */
    border-radius: 50%;
    background: rgb(231, 225, 225);
}


.cartDivPro>div img{
    width: 107px;
    height: 100%;
    border-radius: 50%;
}
.cartDivPro>div:last-child{
    width: 79%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* border: 1px solid red; */
}
.cartDivPro>div:last-child>div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* border: 1px solid green; */
}
.cartDivPro>div:last-child>div:first-child>p:first-child{
    width: 55%;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cartDivPro>div:last-child>div:first-child>p:last-child{
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: bold;
    color: rgb(253, 103, 83);
}
.cartDivPro>div:last-child>div:nth-child(2) p{
    color: #6f7284;
    font-size: 13px;
    font-style: italic;
}
.cartDivPro>div:last-child>div:nth-child(2) div{
    border: 1px solid #6f7284;
    padding: 6px 4px;
    border-radius: 5px;
    font-size: 14px;
    color: #6f7284;
}
.cartDivPro>div:last-child>div:nth-child(2) div>select{
    border: none;
    font-weight: bold;
    outline: none;
}
.cartDivPro>div:last-child>div:nth-child(3) p{
    color: #6f7284;
    font-size: 13px;
    /* font-style: italic; */
}
.cartDivPro>div:last-child>div:nth-child(3) button{
    background: none;
    border: none;
    color: #6f7284;
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
}

/* ! Payment */

#rightCart{
    width: 30%;
    height: 170px;
    float: right;
    padding: 14px;
    border-radius: 10px;
    background: white;
    /* border: 1px solid green; */
}
#rightCart>div{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 35px;
    /* border: 1px solid red; */
}
#rightCart>div>div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid red; */
}
#rightCart>div>div:first-child p{
    font-size: 14px;
    color: #6f7284;
}
#rightCart>div>div:nth-child(2) p{
    font-size: 15px;
}
#rightCart>div>div:nth-child(3) button{
    background: #23adb0;
    color: white;
    padding: 11px;
    width: 150px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}
#rightCart>p{
    font-size: 10px;
    font-style: italic;
    color: #6f7284;
    text-align: justify;
    padding: 0 14px;
}