#cartWrap {
    /* border: 1px solid red; */
    width: var(--appWidth);
    min-height: calc(100vh - var(--navHeight));
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
}
#cartWrap h1 {
    width: var(--appWidth);
    text-align: center;
    font-size: 36px;
    margin: 20px auto 30px auto;
}
#cartList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
#cartList div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cartHeadings {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--green);
    margin-bottom: 10px;
}
.cartRow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #dddddd;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
}
.cartHeadings div {
    font-weight: 700;
    padding: 6px 0;
}
.cartListImg {
    width: 5%;
    /* border-right: 2px solid var(--green); */
    padding: 2px 4px 2px 6px;
}
.cartListImg img {
    width: 100%;
}
.cartListName {
    width: 50%;
    /* border-right: 2px solid var(--green); */
}
.cartListSize {
    width: 10%;
    /* border-right: 2px solid var(--green); */
}
.cartListPrice {
    width: 10%;
    /* border-right: 2px solid var(--green); */
}
.cartListQty {
    width: 10%;
    /* border-right: 2px solid var(--green); */
    display: flex;
}
.cartListTotal {
    width: 10%;
    /* border-right: 2px solid var(--green); */
}
.cartListDelete {
    width: 5%;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    color: var(--green);
}
.cartListQty input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    font-size: 18px;
    border: 1px dashed #dddddd;
    border-radius: 5px;
    margin: 0 10px;
    font-weight: 700;
    padding: 5px 15px;
}
#cartSummary {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
#cartSummaryLabel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#cartContinue {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#cartContinueBtn {
    color: var(--green);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: -4px -4px 10px 0 #dfdfdf, 4px 4px 10px 0 #d1d1d1;
    border-radius: 11px;
    border: 1px dashed var(--green);
    cursor: pointer;
    margin: 20px 0 20px 0; 
}
.emptyCart {
    width: 100%;
    text-align: center;
    padding: 5%;
    font-size: 20px;
    font-weight: 700;
}
.mobile {
    display: none;
}
@media screen and (max-width: 768px) {
#cartList {
    justify-content: center;
}
.mobile {
    display: initial;
}#cartWrap {
    padding: 0 3%;
}
#cartWrap h1 {
    width: var(--appWidth);
    font-size: 30px;
    margin: 0px auto 30px auto;
    padding-top: calc(var(--navHeight) + 20px);
}
#cartList div.cartHeadings {
        display: none;
    }
    .cartRow {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        padding: 2px 2px 5px 2px;
    }
.cartListImg {
    width: 100%;
    border-right: none;
    padding: 4px 4px 2px 6px;
    /* border-bottom: 2px solid var(--green); */
}
.cartListImg img {
    height: 50px;
    width: auto;
}
.cartListName {
    width: 90%;
    border-right: none;
    /* border-bottom: 2px solid var(--green); */
    margin-bottom: 5px;
}
.cartListSize {
    width: 100%;
    border-right: none;
    /* border-bottom: 2px solid var(--green); */
    margin-bottom: 10px;
}
.cartListPrice {
    width: 100%;
    border-right: none;
}
.cartListQty {
    width: 100%;
    border-right: none;
}
.cartListQty input {
    width: 30%;
    text-align: center;
    font-size: 18px;
}
.cartListTotal {
    width: 100%;
    border-right: none;
}
.cartListDelete {
    width: auto;
    font-weight: 800;
    font-size: 18px;
    position: absolute;
    top: 10px;
    right: 15px;
}
}