#empty-cart {
    margin: 150px 0px;
    text-align: center;
}

.disFlex {
    display: flex;
    flex-direction: row;
}

.cartList {
    width: 65%;
}

.cartItem {
    margin-bottom: 10px;
    padding: 20px 20px 20px 0;
    position: relative;
}

.itemPrice {
    text-align: right;
}

.itemPrice h3 {
    margin-bottom: 0;
}

.cartSummary {
    width: 35%;
    margin-left: 10px;
    height: fit-content;
    padding: 20px;
}

.promoInfo {
    display: none;
    align-items: center;
    background: #edf7ee;
    padding: 5px 10px;
    /*animation: bounceIn;
    animation-duration: 0.5s;*/
}

.promoInfo span {
    font-size: 14px;
}

#discountPercent {
    margin-left: auto;
}

.cartItem,
.cartSummary {
    border: 1px solid lightgrey;
    border-radius: 10px;
    background-color: white;
}

.btnCheckOut {
    width: 100% !important;
}

#tblCartSummary td:nth-child(2) {
    text-align: right;
    font-weight: bold;
    padding-left: 10px;
}

/* #tblCartSummary td:nth-child(1) {
    min-width: 100px;
} */

#tblCartSummary {
    margin: 30px 0;
    width: 100%;
}

#tblCartSummary td {
    padding: 5px 0;
}

.promoCodeInput input,
.promoCodeInput a {
    border: none !important;
    min-width: unset;
    margin: unset;
    height: unset;
    border-radius: unset;
    text-align: center;
}

.promoCodeInput {
    display: flex;
    flex-direction: row;
    outline: 1px solid lightgrey;
    border-radius: 30px;
    overflow: hidden;
}

.imageWrapper {
    width: 25%;
    padding: 0px 20px;
}

.btnRemove {
    margin-left: auto;
    color: darkgrey;
    cursor: pointer;
    position: absolute;
    top: 1em;
    right: 1em;

}

.divDetails p,
.promoInfo p {
    margin-bottom: 0px;
    line-height: unset !important;
}

.inputCounter {
    max-width: 135px;
    outline: 1px solid rgba(0, 0, 0, .15);
    border-radius: 30px
}

.inputCounter button {
    border: none;
    background: unset;
}

.inputCounter button:disabled {
    color: darkgrey !important;
}

.minus,
.plus {
    width: 100px;
    color: #00A057;
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

.inputCounter input {
    height: unset;
    border-radius: unset !important;
    text-align: center;
    border: none !important;
}

.divDesc {
    justify-content: space-between;
    margin-top: 13%;
    align-items: center;
}

.divDetails {
    width: 70%;
}

.swal2-actions button {
    margin: 5px;
}

@media only screen and (max-width: 768px) {

    .solarecsbtn_notSelected,
    .solarecsbtn-primary {
        margin-left: 0px !important;
    }

    .disFlex {
        flex-direction: column;
    }

    .cartList {
        width: 100%;
    }

    .solarecsbtn-primary {
        min-width: 200px;
    }

    .imageWrapper {
        width: 70%;
        margin: auto;
    }


    .cartItem {
        padding: 20px 20px 20px 20px;
    }

    .divDetails {
        width: 100%;
        margin-top: 20px;
        /* margin-left: 10px; */
    }

    .divDetails h5 {
        font-size: 16px;
    }

    .divDetails p {
        font-size: 14px;
    }

    .divDetails h3 {
        font-size: 20px;
    }

    .inputCounter {
        flex-direction: row !important;
    }

    .divDesc {
        margin-top: 15px;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }

    .cartSummary {
        width: 100%;
        margin-left: 0;
    }

    #tblCartSummary td:nth-child(1) {
        min-width: 100px;
        font-size: 14px;
    }

    .promoCodeInput a {
        min-width: 50px;
        font-size: 12px;
        padding: 10px 10px;
    }

    #divBilling,
    #divShipping {
        padding: 20px 15px !important;
    }

}