@import url('https://fonts.googleapis.com/css?family=Roboto');

/* general section */
html, body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
   font-family: 'Roboto';
   font-size:0.9rem;
   color: #454545;
}

.navbar {
    padding: 0%;
    color: #fff !important;
}

.header{
    width: 100%;
    background-color: #4F2582;
    height: 73px;
}

.logo {
    width: 20%;
}
a.navbar-brand {
    padding: 0px;
    background: url(../Styles/Graphics/kellogg-desktoplogo-200pxwidth-SVG.svg) no-repeat left;
    width: 80%;
    height: 73px;
    background-size: contain;
    margin-top: -2px;
}

.app-title {
    font-size: 1rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* footer section */
footer {
    position: fixed;
    height: 50px;
    width: 100%;
    background: #ededed;
    clear: both;
    margin: 0;
    padding: 0;
    bottom: 0;
    font-size: 0.75rem;
    z-index: 9997;
}

.copyright {
    float: left;
    margin-top: 13px;
    margin-left: 4px;
}

    .copyright p {
        color: #a5a5a5;
        text-align: left;
        -webkit-font-smoothing: antialiased;
    }

.social-icons span {
    margin-right: 10px;
    text-align: right;
}

.social-icons {
    float: right;
    margin-top: 13px;
    margin-left: 4px;
}

footer a {
    text-decoration: none;
    color: #a5a5a5 !important;
}

    footer a:hover {
        text-decoration: none;
    }

.copyright a, .feedback-link {
    color: #a5a5a5 !important;
    cursor: pointer !important;
    vertical-align: bottom !important;
}

    .copyright a:hover, .feedback-link:hover {
        text-decoration: underline;
    }

.social-icons a i {
    opacity: 0.7;
}

    .social-icons a i:hover {
        opacity: 1;
    }
/* footer section - end */

@media print {
    footer {
        display: none;
    }

    a:link, a:visited {
        text-decoration: none;
    }
}

@media (max-width: 991.98px) {
a.navbar-brand {
    background: url(../Styles/Graphics/kellogg_logo_sm.png) no-repeat left;
    width: 100px;
    height: 60px;
    background-position: 20px 15px;
}
}

/* fixes for failing in particular breakpoints */
@media (max-width: 750px) {
    footer {
        height: 60px;
    }

    .copyright{
        float: none;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    .social-icons {
        float: none;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        padding-left: 20%;
    }

    .copyright p {
        margin-bottom: 0;
    }
}

@media (max-width: 650px) {
    footer {
        height: 80px;
    }

    .social-icons {
        padding-left: 15%;
    }
}

/* fixes for failing in particular breakpoints -end */