/* =========================================================
   PFC PRODUCT ACTION BUTTONS
   File:
   /includes/templates/responsive_classic/css/
   stylesheet_pfc_product_actions.css
   ========================================================= */

.pfc-product-action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 0 auto;
}

.pfc-product-action-buttons a.pfc-product-action-button,
.pfc-product-action-buttons a.pfc-product-action-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: 0;
    padding: 0 18px;
    border: 0;
    border-radius: 0;
    background: #5b5b5b;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
    box-sizing: border-box;
}

.pfc-product-action-buttons a.pfc-product-action-button:hover,
.pfc-product-action-buttons a.pfc-product-action-button:focus,
.pfc-product-action-buttons a.pfc-product-action-button:active {
    background: #444444;
    color: #ffffff !important;
    text-decoration: none !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 600px) {

    .pfc-product-action-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pfc-product-action-button {
        width: 100%;
        height: 42px;
    }
}