/* public/css/footer.css */

.space-footer {
    height: 6.25rem;
}
.app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: #fff;
    height: 7rem;
    padding-top: 2rem;
    z-index: 9;
}
.app-footer .footer-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.app-footer .footer-item {
    text-align: center;
    min-width: 4.5rem;
}
.app-footer .footer-item .footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #a1a3b5;
    text-decoration: none;
}
.app-footer .footer-icon {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}
.app-footer .footer-label {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
.app-footer .footer-label::after {
    content: "";
    height: 4px;
    width: 100%;
    background-color: transparent;
    display: block;
    margin-top: 0.75rem;
}
.footer-rounded {
    background: #f3f3f6;
    display: block;
    width: 100%;
    height: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 25rem 25rem;
    -webkit-border-radius: 0 0 25rem 25rem;
    -moz-border-radius: 0 0 25rem 25rem;
    -ms-border-radius: 0 0 25rem 25rem;
    -o-border-radius: 0 0 25rem 25rem;
}
#main-content.home-page .home svg path {
    fill: #0c2340;
}
#main-content.accidents-page .accidents svg path,
#main-content.requests-page .requests svg path,
#main-content.calendar-page .calendar svg path {
    stroke: #0c2340;
}
#main-content.home-page .home .footer-label,
#main-content.accidents-page .accidents .footer-label,
#main-content.requests-page .requests .footer-label,
#main-content.calendar-page .calendar .footer-label {
    color: #0c2340;
    font-weight: 600;
}
#main-content.home-page .home .footer-label::after,
#main-content.accidents-page .accidents .footer-label::after,
#main-content.requests-page .requests .footer-label::after,
#main-content.calendar-page .calendar .footer-label::after {
    background-color: #0072ce;
}
@media (min-width: 768px) {
    .footer-menu {
        justify-content: space-evenly;
    }
    .footer-item .footer-label {
        font-size: 0.875rem;
    }
    .footer-icon {
        font-size: 1.625rem;
    }
}
