/* ========================================
   BLOC BOUTONS
   ======================================== */

.blocboutons {
    width: 100%;
    margin-bottom: 25px;
}

.blocboutons__inner {
    width: 100%;
}

.blocboutons__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.blocboutons__buttons--left {
    justify-content: flex-start;
}

.blocboutons__buttons--right {
    justify-content: flex-end;
}

.blocboutons__buttons--center {
    justify-content: center;
}

.blocboutons__button-item {
    display: inline-flex;
}

/* Responsive */
@media (max-width: 768px) {
    .blocboutons {
        padding: 30px 0;
    }
    
    .blocboutons__buttons {
        gap: 10px;
    }
}
