.roboyad_checkout_container {
    display: flex;
    justify-content: center;
    align-items: start;
}

.roboyad_checkout_label {
    width: 100%;
    max-width: 660px;

    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;

    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #ECF0FD;

    padding: 20px 56px;
}

/* title */

.roboyad_checkout_text {
    font-size: 20px;
    color: black;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.roboyad_checkout_text span{
    text-decoration: underline;
    color: #359644;
}

/* get user info */


.roboyad_checkout_get_info_user {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    margin-bottom: 17px;
}

.roboyad_checkout_input {
    margin-bottom: 10px;
}

.roboyad_checkout_title {
    font-size: 18px;
    color: black;
    margin-bottom: 10px;
    font-weight: 500;
}

.roboyad_checkout_input {
    background-color: #F5FFFC;
    border-radius: 8px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.09);
    outline: none;
    padding: 15px 20px;
    font-size: 17px;
}

.roboyad_checkout_input::placeholder {
    color: #939997;
}


/* many */

.roboyad_checkout_maney {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    flex-direction: column;
}

.roboyad_checkout_maney_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    background-color: #F5FFFC;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 15px 20px;

    margin-bottom: 16px;
}


.roboyad_checkout_maney_item_title {
    color: black;
    font-size: 17px;
    font-weight: 500;
}

.roboyad_checkout_maney_item_info {
    color: #00A543;
    font-size: 17px;
    font-weight: 500;
}

.roboyad_checkout_butten {
    background-color: #00A543;
    border-radius: 8px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    padding: 15px 20px;
    font-size: 17px;
    color: white;
    margin-top: 10px;
}

.roboyad_checkout_butten:hover {
    cursor: pointer;
}

/*-----------------------------------*/
/* checkout null */

.roboyad_checkout_container_null {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.roboyad_checkout_container_text {
    font-size: 23px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 25px;
}

.roboyad_checkout_container_butten {
    background-color: #8475ff;
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    padding: 15px 20px;
    font-size: 17px;
    color: white;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roboyad_checkout_container_butten svg {
    width: 100%;
    max-width: 25px;
    height: auto;
}

/*-----------------------------------*/

@media (max-width: 576px) {

    .roboyad_checkout_label {
        border-radius: 8px;
        padding: 19px 11px;
    }

    .roboyad_checkout_text {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 22px;
    }

    .roboyad_checkout_title {
        font-size: 15px;
    }

    .roboyad_checkout_input {
        padding: 11px 9px;
        font-size: 13px;
    }

    .roboyad_checkout_maney_item {
        padding: 11px 9px;
        margin-bottom: 11px;
    }

    .roboyad_checkout_maney_item_title {
        font-size: 13px;
    }

    .roboyad_checkout_maney_item_info {
        font-size: 13px;
    }

    .roboyad_checkout_butten {
        padding: 11px 9px;
        font-size: 13px;
        margin-top: 5px;
    }

    .roboyad_checkout_container_butten {
        padding: 11px 9px;
        font-size: 13px;
        margin-top: 5px;
    }

    .roboyad_checkout_container_text {
        font-size: 16px;
        margin-bottom: 15px;
    }

}























