/* ==========================================================
   GMA Shared Footer
   Used by:
     - Cockpit
     - GW3
     - GW4
     - future GMA applications
   ========================================================== */
/*
.gma-footer {
    width: 100%;
    margin: 0 auto;
    padding: 12px 18px 10px;
    border-radius: 7px;
    box-sizing: border-box;

    background: #006f8f;
    color: #ffffff;

    text-align: center;
    box-shadow: none;
}

*/



.gma-footer {
    width: calc(100% - 8px);
    margin: 10px auto 0 auto;
    padding: 12px 18px 10px;
    border-radius: 7px;
    box-sizing: border-box;

    background: #006f8f;
    color: #ffffff;

    text-align: center;
    box-shadow: none;
    overflow: hidden;
}


.gma-footer-top {
    font-size: 13px;
    line-height: 1.18;
    font-weight: 700;
    color: #d9efff;
}

.gma-footer-top strong {
    font-size: 12px;
    font-weight: 900;
}

.gma-footer-middle {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 500;
    color: #b8dff4;
}

.gma-footer-bottom {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
}

.gma-footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color .15s ease;
}

.gma-footer-bottom a:hover {
    color: #d9efff;
    text-decoration: underline;
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */

@media (max-width:900px) {

    .gma-footer {
        padding: 10px 12px 9px;
        border-radius: 0;
    }

    .gma-footer-top {
        font-size: 12px;
    }

    .gma-footer-middle {
        font-size: 10px;
    }

    .gma-footer-bottom {
        font-size: 11px;
        line-height: 1.5;
    }

}