:root {
    --margin-top-footer: 20px;
    --height-footer: 60px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: calc(var(--margin-top-footer) + var(--height-footer));
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: var(--height-footer);
    background-color: #f5f5f5;
    margin-top: var(--margin-top-footer);
    padding-left: 16px;
    padding-right: 16px;
}

.navbar {
    background-color: #f5f5f5 !important;
}

main {
    padding-top: 20px;
}

.p-error {
    color: red;
}

.flex-grow-none {
    flex-grow: 0;
}

.flex-15p {
    flex: 0 0 15% !important;
}

.flex-center {
    display:flex;
    align-items: center;
}
