﻿/*se sobreescribe comportamiento del footer para que se ajuste*/
@media (min-width: 768px) {
    footer.sticky-footer {
        width: calc(100% - 90px);
    }
}

body.sidebar-toggled footer.sticky-footer {
    width: 100%;
}

@media (min-width: 768px) {
    body.sidebar-toggled footer.sticky-footer {
        width: calc(100% - 225px);
    }
}

footer.sticky-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 90px);
    height: 50px;
    background-color: #e9ecef;
}