.quick_actions{
    display: flex;
}

.info .quick_actions button:first-child{
    margin-right: 20px !important;
}

/* MOBILE + TABLET */
@media screen and (max-width: 1349px) {
    .quick_actions{
        margin-top: 40px;
        justify-content: space-between;
    }
}

/* TABLET + DESKTOP */
@media screen and (min-width: 744px){
    .quick_actions{
        justify-content: center;
    }

    .quick_actions button:first-child{
        margin-right: 20px;
    }
}

/* DESKTOP */
@media screen and (min-width: 1350px) {
    .quick_actions{
        margin-top: 50px;
        justify-content: center;
    }
    
    .quick_actions button:first-child{
        margin-right: 125px;
    }
}