/**
 * Vertical “Request a Quote” side tab — only when ?fx_test + allowed page IDs (see footer.php + frontend.php).
 */

/* Standard pattern: narrow fixed ribbon at the viewport edge (not full-width). */

.fx-request-quote-tab {
    position: fixed;
    right: max(0px, env(safe-area-inset-right, 0px));
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;

    box-sizing: border-box;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    padding: 16px 0;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;

    color: #ffffff;
    background-color: #003467;
    border-radius: 8px 0 0 8px;
    box-shadow: -3px 4px 18px rgba(0, 52, 103, 0.35);

    writing-mode: vertical-rl;
    text-orientation: mixed;
}

@media (min-width: 768px) {
    .fx-request-quote-tab {
        display: flex;
    }
}



.fx-request-quote-tab:hover,
.fx-request-quote-tab:focus {
    color: #ffffff;
    text-decoration: none;
    background-color: #002a52;
}

.fx-request-quote-tab:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

@media print {
    .fx-request-quote-tab {
        display: none !important;
    }
}
