.payment-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 100px 0px;
}
.payment-result .icon.success {
    background: #59EF79;
}
.payment-result .icon.failed {
    background: #ff5d5d;
}
.payment-result .icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    /* background: rgba(255, 255, 255, 0.2); */
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment-result .icon svg {
    width: 32px;
    height: 32px;
}
.payment-result .title {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}
.payment-result .description {
    font-size: 16px;
    max-width: 300px;
    text-align: center;
}
.payment-result .description b {}
.payment-result .button {
    max-width: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(253deg, #635FF5 -17.61%, #892AF1 99.54%);
    box-shadow: 0px 0px 32.1px -2px rgba(128, 55, 242, 0.50);
    height: 50px;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-top: 40px;
}