.background_modal{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* para colar no topo */

    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(118, 118, 119, 0.70);
    top: 0;
    left: 0;
    overflow-y: auto;
    box-sizing: border-box;
}

.box_modal{
    padding: 24px;
    background-color: #2F2B3D;
    margin-top: 100px;
    border-radius: 6px;
    max-width: 600px;
    width: 90%;
    margin-bottom: 100px;
}

.box_modal_launch{
    padding: 24px;
    background-color: #fff;
    margin-top: 100px;
    border-radius: 6px;
    max-width: 800px;
    width: 90%;
    margin-bottom: 100px;
}

.header_modal{
    color: #fff;
    margin-bottom: 24px;
}

.close_modal{
    margin-bottom: 24px;
    cursor: pointer;
}

.btn_add_payment{
    padding: 10px 20px;
    background-color: rgba(40, 199, 111, 1);
    display: inline-block;
    margin: 24px 0;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
}