﻿:root {
    --primary: #2678BD;
    --border-color: #eaeaea;
}

/*
@font-face {
    font-family: "Roboto"; 
    font-weight: 700;
    src: url("fonts/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Roboto";
    font-weight: 500;
    src: url("fonts/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto";
    font-weight: 400;
    src: url("fonts/Roboto-Regular.ttf");
}*/

body {

    padding-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    min-height: calc(100vh - 70px - 201px) !important;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* Navbar */
.navbar-inverse {
    background-color: #0e3c6e;
    color: #fff;
    font-weight: 600;
    border: none;
    margin-bottom: 0px;
    border-radius: 0px;
}

    .navbar-inverse :hover,
    .navbar-inverse :focus {
        color: inherit;
    }

    .navbar-inverse .container {
        padding-top: 10px;
        padding-bottom: 10px;
        color: #000000;
    }


    .navbar-inverse .navbar-brand {
        color: #fff;
    }


    .navbar-inverse .navbar-nav {
        flex: 1;
    }


        .navbar-inverse .navbar-nav > li > a {
            color: #fff;
            font-weight: 400;
        }

        .navbar-inverse .navbar-nav > li.active > a {
            font-weight: 500;
            background-color: transparent;
        }

            .navbar-inverse .navbar-nav > li.active > a:focus,
            .navbar-inverse .navbar-nav > li.active > a:hover {
                background-color: transparent;
            }

        .navbar-inverse .navbar-nav > li > a:hover,
        .navbar-inverse .navbar-nav > li > a:focus {
            color: #adadad;
            background-color: transparent;
        }

    .navbar-inverse .logo_nomattitude {
        padding-left: 40px;
        position: relative;
        color: #fff;
        font-size: 17px;
        font-weight: 500;
        text-decoration: none;
        display: none;
    }

        .navbar-inverse .logo_nomattitude:before {
            position: absolute;
            content: '';
            width: 35px;
            height: 35px;
            top: -3px;
            left: 0;
            background: url("../Images/isotype.png") center center no-repeat;
            filter: brightness(0) invert(1);
        }

.navbar-light {
    background-color: #0e3c6e;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

    .navbar-light .container {
        border-bottom: 1px solid rgb(226 232 240 / 10%);
    }

.logo {
    padding-top: 7.5px;
    width: 200px !important;
    height: 45px !important;
}

    .logo a {
        text-decoration: none;
    }

.navbar-collapse {
    box-shadow: none;
}

/* Footer */
.footer {
    padding: 25px 0;
    color: rgb(113, 128, 150);
}

    .footer .links {
        display: flex;
        flex-direction: column;
        padding-top: 35px;
        padding-bottom: 35px;
        align-items: center;
        border-top: 1px solid rgb(226, 232, 240);
    }

        .footer .links .logo {
            width: 160px;
            margin-top: 15px;
        }

/* Responsive */
@media (min-width: 768px) {

    .navbar-light {
        background-color: transparent;
        position: absolute;
    }

    .navbar-inverse .container .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-inverse .logo_nomattitude {
        display: block;
    }

    .body-content {
        min-height: calc(100vh - 70px - 166px) !important;
    }

    .footer .links {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }

        .footer .links .logo {
            width: 200px;
            margin-top: 0;
        }

}
