/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--grey);
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #C8C8C8;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #a3a2a2;
}

.payment_content {
    max-height: 400px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.payment_content .payment_total span,
.payment_content .paiment_title span {
    font-weight: 600;
    color: var(--second-color);
}

.payment_content .payment_list {
    flex: 1;
    max-height: 100%;
    height: auto;
    overflow-y: auto;
    padding: 0 10px;
}

.payment_content .payment_list li {
    border-bottom: 1px solid #C8C8C8;
    border-top: 1px solid #C8C8C8;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 0 5px;
}

.payment_content .payment_list li:last-child {
    margin-bottom: 0px;
}

.content_info .info_title{
    font-weight: 600;
}


.total_payment {
    background-color: yellowgreen;
    height: 90px;
    width: 180px;
    border-radius: 10px;
    /* line-height: 90px; */
    font-size: 16px;
    text-align: center;
    justify-content: center;
    user-select: none;
}