/*==================================================
CART PAGE
==================================================*/

.cart-page{
    width:min(96%,1400px);
    margin:30px auto 60px;
}

/*==================================================
TABLE
==================================================*/

.table{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    table-layout:auto;
}

.table thead{
    background:#0d2d6f;
    color:#fff;
}

.table th,
.table td{
    vertical-align:middle;
    padding:18px 12px;
}

.table th:nth-child(2),
.table td:nth-child(2),
.table th:nth-child(4),
.table td:nth-child(4),
.table th:nth-child(5),
.table td:nth-child(5){
    text-align:center;
}

.table th:nth-child(3),
.table td:nth-child(3){
    width:90px;
    min-width:90px;
    text-align:center;
    white-space:nowrap;
}

.table th:nth-child(5),
.table td:nth-child(5){
    width:65px;
    min-width:65px;
}

.table td:nth-child(3) .btn{
    width:22px;
    height:22px;
    padding:0;
    font-size:12px;
    line-height:22px;
}

.table td:nth-child(5) .btn{
    width:44px;
    height:32px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
}

/*==================================================
QUANTITY
==================================================*/

.qty-value{
    display:inline-block;
    width:14px;
    text-align:center;
    font-weight:700;
    margin:0 2px;
    font-size:15px;
}

/*==================================================
CART SUMMARY
==================================================*/

.cart-summary{
    border:none;
    border-radius:18px;
    background:#fff;
}

.cart-summary h4{
    color:#0d2d6f;
    font-weight:800;
}

.cart-summary .alert{
    border-radius:18px;
}

.cart-summary p{
    font-size:18px;
    margin-bottom:10px;
}

/*==================================================
CUSTOMER DETAILS
==================================================*/

.card{
    border:none;
    border-radius:18px;
}

.card h4{
    color:#0d2d6f;
    font-weight:800;
}

.form-control{
    border-radius:12px;
    min-height:50px;
}

.form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

textarea.form-control{
    min-height:120px;
}

.text-danger{
    font-size:13px;
    font-weight:600;
}

/*==================================================
MINIMUM ORDER WARNING
==================================================*/

#minimumOrderWarning{
    border-radius:14px;
    font-size:15px;
    line-height:1.6;
}

/*==================================================
ORDER BUTTON
==================================================*/

#orderBtn{
    width:100%;
    height:58px;
    font-size:20px;
    font-weight:700;
    border-radius:14px;
    transition:.25s;
}

#orderBtn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(25,135,84,.30);
}

/*==================================================
EMPTY CART
==================================================*/

.alert-info{
    border-radius:18px;
    padding:25px;
    font-size:18px;
}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

    .cart-summary p{
        font-size:16px;
    }

    #orderBtn{
        font-size:18px;
    }
}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .table{
        font-size:12px;
    }

    .table th,
    .table td{
        padding:10px 5px;
    }

    .table td:nth-child(3) .btn{
        width:20px;
        height:20px;
        font-size:10px;
        line-height:20px;
    }

    .qty-value{
        width:12px;
        font-size:12px;
    }

    .cart-summary h1{
        font-size:28px;
    }

    .cart-summary p{
        font-size:14px;
    }

    #orderBtn{
        height:52px;
        font-size:16px;
    }

    .form-control{
        min-height:46px;
    }

    textarea.form-control{
        min-height:100px;
    }
}