/*****************************
         BOOKING STEP 3
******************************/

.shopping-cart-table .table {
    border-radius: 5px;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 0;
}

.shopping-cart-table .table thead th {
    font-weight: 600;
    text-transform: capitalize;
    padding: 20px 18px;
    background: #ffffff;
    border-bottom: 0;
    border: solid 2px #f5f5f5;
}

tbody, tfoot{
    background-color: white;
}

.shopping-cart-table .table tr td:not(:first-child),
.shopping-cart-table .table tr th:not(:first-child) {
    text-align: center;
}

.shopping-cart-table .table tr {
    margin: 10px 0;
}

.shopping-cart-table .table .cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.shopping-cart-table .table td {
    border: solid 2px #f5f5f5;
    padding: 18px;
    text-transform: capitalize;
    font-size: 13px;
    vertical-align: middle;
}

.shopping-cart-table thead {
    font-size: 13px;
    border: solid 2px #f5f5f5;
}
.cart-buttons li{
    list-style: none;
}

input.qty {
    min-width: 40%;
    width: 40%;
}

.delete-btn {
    height: 25px;
    width: 25px;
    display: inline-block;
    text-align: center;
    background-color: #f7f8f9;
    color: #232323;
    line-height: 25px;
    border-radius: 50%;
}

.delete-btn:hover {
    color: #f74444;
}

.qty-wrap {
    display: flex;
    justify-content: center;
    align-content: center;
}

.qty-wrap input {
    text-align: center;
    border: 1px solid #c5c5c5;
    border-left: 0;
    border-right: 0;
    padding: 8px 0;
}

.qty-elements {
    background-color: #fff;
    border: 1px solid #c5c5c5;
    padding: 8px 0;
    width: 30px;
    text-align: center;
    cursor: pointer;
}
/*.qty-elements:first-child{
    border-radius: 6px 0 0 6px;
    -webkit-border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
    -ms-border-radius: 6px 0 0 6px;
    -o-border-radius: 6px 0 0 6px;
}
.qty-elements:last-child{
    border-radius:0 6px 6px 0;
    -webkit-border-radius:0 6px 6px 0;
    -moz-border-radius:0 6px 6px 0;
    -ms-border-radius:0 6px 6px 0;
    -o-border-radius:0 6px 6px 0;
}*/
.qty-elements a {
    display: block;
    color: #222;
    height: 100%;
    line-height: 1;
    font-size: 19px;
    padding: 8px 0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    width: 30px;
    text-align: center;
}

.cart-block {
    border-radius: 15px;
    border: solid 2px #f5f5f5;
    background-color: #fff;
}

.final-cart {
    padding: 10px;
}
.final-cart h5 {
    padding: 10px;
    color: #232323;
    text-align: center;
    border-radius: 0;
    border-bottom: solid 2px #f5f5f5;
    margin-bottom: 0px;
    padding-bottom: 13px;
    margin-left: 15px;
    margin-right: 15px;
}

.cart-value {
    padding: 20px;
}
.cart-value ul{
    padding: 0px;
}

.final-cart li {
    display: flex;
    justify-content: space-between;
    text-transform: capitalize;
    font-size: 14px;
    color: #3b3b3b;
    margin-bottom: 15px;
}

.cart-value-detail li:last-child {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: solid 2px #f5f5f5;
    margin-bottom: 15px;
}

.coupons-base-content {
    padding-bottom: 15px;
    border-bottom: solid 2px #f5f5f5;
}

.mb-0{
    margin-bottom: 0px !important;
}

/* .couponDiscountBox{
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    margin-bottom: 15px;R
} */
.final-cart li span:nth-child(2) {
    font-weight: 600;
    color: #434343;
}

.remove-button
{
    display: block;
    text-align: center;
    width: 85px;
}

.cart-buttons .btn:nth-child(1) {
    background-color: transparent;
    color: #000;
    margin: 0 5px;
    border: 1px solid #e9e9e9;
    font-size: 13px;
    width: 95px;
    text-align: center;
}

.cart-buttons .btn:nth-child(2) {
    background-color: var(--secondary-color);
    color: #fff;
    margin: 0 5px;
    border: 1px solid #e9e9e9;
    font-size: 13px;
}

.cart-buttons .btn:hover {
    opacity: 0.8;
}

::placeholder{
    font-size: 13px;
}
.input-group input{
    border: 0px;
    background-color: #f7f8f9;
}
.input-group-prepend button{
    font-size: 13px;
    border: 0;
    border-radius: 0rem .25rem .25rem 0rem !important;
    color: #000;
}

#applyCouponBox .input-group-prepend button{
    background-color: #e2e2e2;
    width: 125px;
    text-align: center;
    display: block;
}


@media (max-width: 992px) {
    #applyCouponBox .input-group-prepend button {
        background-color: #e2e2e2;
        width: 135px;
        text-align: center;
        display: block;
        border-radius: 2px !important;
    }
}

@media (max-width: 767px) {
    #coupon {
        width: 100%;
    }
}


