.buttons-row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.buttons-row .btn-default {
    width: 330px;
    margin: 0 10px;
}

@media (max-width: 992px) {
    .buttons-row {
        display: block;
    }

    .buttons-row .btn-default {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
        margin: 0 0 30px;
    }

    .buttons-row .btn-default:last-of-type {
        margin-bottom: 0;
    }
}