#abandonedPayment {
	position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    padding: 20px 10px;
    background-color: rgba(0, 0, 0, 0.5);
}
#abandonedPayment .content {
	position: relative;
    width: 100%;
    max-width: 450px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
}
#abandonedPayment .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
#abandonedPayment .title {
    font-size: 18px;
    font-weight: bold;
}
#abandonedPayment .subtitle {
    font-size: 16px;
    margin-top: 10px;
}
#abandonedPayment .reasons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding-left: 15px;
}
#abandonedPayment .reasons .input {
    flex: 1;
    border: none;
    border-bottom: 1px solid black;
}
#abandonedPayment .btn-box {
    gap: 15px;
    margin-top: 25px;
}
#abandonedPayment .button {
    flex: 1;
    color: white;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
    border-radius: 30px;
}
#abandonedPayment .continue {
    background-color: #F37A00;
}
#abandonedPayment .submit {
    background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}