.chekout-coupon {
    width: 600px;
    margin: 45px auto 5px;
    text-align: center;
}
.checkout-charge {
    width: auto;
    margin: 0 auto;
}
.checkout-charge ul {
    /*border-top: 3px solid var(--primary);*/
}
.checkout-charge ul li {
    padding: 12px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}
.checkout-charge ul li:last-child {
    /*border-bottom: none;*/
    margin-bottom: 15px;
}
.checkout-charge ul li:last-child span {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}
.checkout-charge ul li span {
    font-weight: 500;
    color: var(--heading);
    text-transform: capitalize;
}
.checkout-charge ul li span small {
    font-size: 14px;
    font-weight: 400;
    margin-left: 3px;
}
.checkout-check {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 25px;
    margin-top: 50px;
}
.checkout-check input {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    margin-top: 4px;
    cursor: pointer;
}
.checkout-check label {
    line-height: 22px;
}
.checkout-check label a {
    color: var(--primary);
}
.checkout-check label a:hover {
    text-decoration: underline;
}
.checkout-proced .btn {
    width: 100%}
.table-action .view i, .table-action .trash i {
    background: var(--chalk);
}
.table-list thead tr th {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    text-transform: capitalize;
    padding: 5px 7px;
    color: var(--white);
    border-right: 1px solid var(--border);
}
.table-list tbody tr td {
    padding: 8px 5px;
    text-align: center;
}
@media (max-width: 767px) {
    .chekout-coupon, .checkout-charge {
        width: 100%}
    .checkout-check {
        margin-top: 15px;
    }
}

.trash {
    position: absolute;
    background: rgb(255, 56, 56);
    color: #fff;
    padding: 5px 5px;
    border-radius: 5px;
    line-height: 18px;
    font-size: 17px;
    margin: 7px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.trash:hover {
    background: rgba(255, 0, 0,.8);
    color: #fff;
}
.account-title {
    margin-bottom: 15px;
}
