﻿/* ======================================= */
/* FEDA-WEB STICKY FOOTER (BASIS) */
/* ======================================= */

.feda-web-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid #ddd;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 10px 20px;
}

.feda-web-sticky-footer-inner {
    max-width: 1234px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.feda-web-sticky-footer-left {
    justify-self: start;
}

.feda-web-sticky-footer-center {
    justify-self: center;
    text-align: center;
    font-weight: 600;
}

.feda-web-sticky-footer-right {
    justify-self: end;
}

.feda-web-sticky-footer-btn-nowrap {
    white-space: nowrap;
}

.feda-web-sticky-footer-left .btn,
.feda-web-sticky-footer-right .btn {
    min-width: 120px;
}


.feda-web-sticky-mobile-spacer {
    display: none;
}

@media (max-width: 991.98px) {
    .feda-web-sticky-mobile-spacer {
        display: block;
        height: 50px;
    }
}