#content {
    background-color: #F8F8F8;
}

#cartCenteredContent {
    display: block;
    position: relative;
    width: 70%;
    margin: 0 auto;
    margin-top: 40px;
    border-radius: 6px;
    height:auto;
    overflow: hidden;
}
.title {
    display: inline-block;
    color: #6F6F6F;
    width: fit-content;
    height: 30px;
    line-height: 30px;
    /* margin-left: 15px; */
}
.cartsQuantity {
    display: inline-block;
    color: #6F6F6F;
    width: fit-content;
    height: 30px;
    line-height: 30px;
    float: right;
    /* margin-right: 15px; */
}
.banner {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto;
    padding: 10px;
    font-size: 13px;
    line-height: 15px;
    color: white;
    background-color: #245472;
    border-radius: 6px;
    margin-top: 15px;
    font-family: 'RFDewi';
}
#cartMainContainer {
    display: block;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    height:auto;
    overflow: hidden;
}
.cartSummary {
    display: block;
    position: relative;
    background: white;
    border-radius: 9px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 140px;
}
.noOrders {
    height: 100px;
    display: block;
    position: relative;
    background: white;
    border-radius: 9px;
    margin-bottom: 20px;
    color: #737373;
    font-weight: normal;
    line-height: 100px;
    text-align: center;
}
.cartTopLine {
    display: block;
    position: relative;
    border-bottom: 1px solid #d1d1d1;
    height: 80px;
}
.cartIcon {
    height: 20px;
    margin: 0;
    margin-left: 15px;
    margin-top: 7px;
    margin-right: 20px;
    display: none;
}
.brandName {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    margin-left: 15px;
    font-size: 12px;
    height: 70px;
    line-height: 70px;
    color: #737373;
    font-weight: bold;
}
.brandImage {
    position: relative;
    width: 55px;
    margin-top: 7.5px;
    float: left;
    margin-left: 15px;
    border-radius: 5px;
}
.pendingText {
    display: inline-block;
    float: right;
    height: 27px;
    margin-top: 4px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 27px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 30px;
    color: #946E35;
    background: #FFD789;
    border-radius: 6px;
}
.cartBottom {
    display: block;
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 30px;
    margin-top: 10px;
}
.productsQuantity {
    position: relative;
    display: inline-block;
    color: black;
    font-size: 13px;
    font-weight: bold;
    font-family: 'RFDewi';
    vertical-align: middle;
    line-height: 30px;
}
.productsQuantity em {
    font-style: normal;
    color: #245472;
}
.orderTotal {
    display: inline-block;
    position: relative;
    font-size: 13px;
    font-family: 'RFDewi';
    color: black;
    font-weight: bold;
    margin-left: 20%;
    vertical-align: middle;
    line-height: 30px;
}
.continueBtn {
    position: relative;
    display: inline-block;
    font-size: 13px;
    color: #EFB463;
    border-radius: 4px;
    background-color: #245472;
    border: 1px solid #245472;
    height: 30px;
    width: 120px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    float: right;
    vertical-align: middle;
    cursor: pointer;
}

.pending.cartBottom {
    opacity: 0.3;
    pointer-events: none;
}

.continueBtn:hover {
    background-color: #EFB463;
    color: #245472;
    font-weight: bolder;
}

.totalSummary {
    color: white;
    display: block;
    position: relative;
    width: 100%;
    border-radius: 9px;
    height: 55px;
    margin-bottom: 50px;
    background: #245472;
}
.totalProducts {
    position: relative;
    display: inline-block;
    font-family: 'RFDewi';
    font-weight: bold;
    color: #EFB463;
    font-size: 15px;
    line-height: 55px;
    margin-left: 5%;
}
.totalPrice {
    position: relative;
    display: inline-block;
    font-family: 'RFDewi';
    font-weight: bold;
    font-size: 15px;
    color: #EFB463;
    line-height: 55px;
    float: right;
    margin-right: 5%;
}

@media all and (max-width: 1200px) {
    .brandImage {
    margin-left: 0;
}
    #cartCenteredContent {
        width: 85%;
    }
    .cartIcon {
        float: none;
        margin-right: 10px;
    }
    .brandName {
        vertical-align: top;
    }
    .cartBottom {
        margin-top: 0;
        height: 98px;
        width: 100%;
    }
    .cartSummary {
        height: auto;
        overflow: hidden;
        min-height: 155px;
    }
    .pendingText {
        margin-right: 5px;
        font-size: 10px;
        padding-right: 10px;
        padding-left: 10px;
    }
    .productsQuantity {
        width: 100%;
        font-size: 12px;
    }
    .orderTotal {
        font-size: 12px;
        margin: 0;
        width: 100%;
        float: none;
    }
    .continueBtn {
        margin: 0 auto;
        float: none;
        display: block;
        margin-top: 10px;
        width: 100%;
    }
    .totalProducts {
        font-size: 12px;
    }
    .totalPrice {
        font-size: 13px;
    }
    .noOrders {
        height: 80px;
        padding-top: 5%;
        display: block;
        position: relative;
        background: white;
        border-radius: 9px;
        margin-bottom: 20px;
        color: #737373;
        font-weight: normal;
        line-height: 30px;
        padding-left: 10%;
        padding-right: 10%;
        text-align: center;
        width: 80%;
        max-width: 100%;
    }
}