.payment-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.payment-header h1 {
    margin: 0;
    font-size: 18px;
    color: #0035ff;
}

.payment-header p {
    margin: 10px 0 0;
    font-size: 14px;
    color: #555;
}

.payment-content {
    padding: 20px;
}

.payment-selection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.payment-selection h2 {
    margin: 0;
    font-size: 16px;
    color: #0035ff;
}

.total-amount {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.payment-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    padding: 10px;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 5px;
    font-size: 14px;
    color: #555;
}

.payment-option.active {
    background: #e0e0e0;
}

.payment-conditions {
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    padding: 10px;
}

.payment-conditions .payment-discount {
    display: flex;
    align-items: center;

    width: 16%;
}

.payment-conditions .payment-desc {
    display: flex;
    justify-content: space-between;

    width: 60%;
    padding-left: 20px;
}

.payment-conditions .span-min {
    width: 116px;
}

.payment-conditions .condition-price {
    width: 24%;
    text-align: end;
}

@media (max-width: 969px) {
    .payment-conditions .span-min {
        display: none;
    }

    .payment-conditions .payment-discount {
        width: 24%;
    }

    .payment-conditions .payment-desc {
        width: 52%;
        padding-left: 10px;
    }
}


.payment-conditions label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-size: 12px;
    color: #555;
}

.payment-conditions label:last-child {
    border-bottom: none;
}

.payment-conditions input {
    margin-top: 0;
    margin-right: 10px;
}

.condition-price {
    font-weight: bold;
    color: #000;
}

.payment-conditions-disable {	
	color: #a9a9a9 !important;
}

.payment-conditions-enable {	
	color: #2f9328 !important;
}

.payment-conditions-enable-discount {	
	color: #2f9328 !important;
	background-color: #fef9d9;
}

.payment-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.close-button,
.apply-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.close-button {
    background: #ddd;
    color: #555;
}

.apply-button {
    background: #0035ff;
    color: #fff;
}

.payment-conditions::-webkit-scrollbar {
    width: 6px;
}

.payment-conditions::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.payment-conditions::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.payment-conditions::-webkit-scrollbar-thumb:hover {
    background: #555;
}