﻿.sma-navbar {
    background-color: #181617 !important;
    border-width: 0 0 0px !important;
}

.sma-main-container {
    min-height: 500px;
    padding-top: 75px;
}

    .sma-main-container .sma-body-header {
        background-color: #5B5A5A;
        vertical-align: middle;
        /* color: white; */
        color: #FDFDFD;
        border-bottom: solid;
        padding: 10px 15px;
        margin-top: 0px !important;
        font-weight: normal;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
    }

@media(min-width: 300px) {
    #imgSiteLogo {
        max-height: 55px;
    }
}

@media(min-width: 525px) and (max-width: 768px) {
    #imgSiteLogo {
        max-height: 55px;
    }
}

@media(min-width: 768px) and (max-width: 1060px) {
    #imgSiteLogo {
        max-height: 55px;
    }

    .sma-navbar form {
        line-height: 48px; /* 65 - 2*8 - 1 */
    }
}

@media(min-width: 1060px) {
    #imgSiteLogo {
        max-height: 55px;
    }

    .sma-navbar form {
        line-height: 53px; /* 70 - 2*8  - 1*/
    }
}

/* below media queris only applicable to fluid containers */
/*@media(min-width: 1200px) {
    #imgSiteLogo {
        max-height: 75px;
    }

    .sma-navbar form {
        line-height: 58px;
    }
}

@media(min-width: 1440px) {
    #imgSiteLogo {
        max-height: 85px;
    }

    .sma-navbar form {
        line-height: 68px;
    }
}

@media(min-width: 1600px) {
    #imgSiteLogo {
        max-height: 100px;
    }

    .sma-navbar form {
        line-height: 83px;
    }
}*/

/*.sma-navbar button, .sma-navbar a, .sma-login button, .sma-login a {
    color: black;
    background-color: #FFCC2A !important;
    border-color: #FFCC2A !important;
}

    .sma-navbar button:hover, .sma-navbar a:hover, .sma-login button:hover, .sma-login a:hover {
        color: black;
        background-color: #FFDD3B !important;
        border-color: #FFCC2A !important;
    }*/

.sma-login .form-control {
    margin-bottom: 8px;
}

.sma-navbar .welcome-text {
    color: #FFCC2A;
    font-weight: normal;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.sma-navbar .form-group {
    padding-left: 10px;
}

.footer {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #cccccc;
    background-color: #ffffff;
    position: static;
    bottom: 0;
    width: 100%;
}

.footer-tagline {
    padding: 15px;
    color: #777777;
}

.footer-links {
    margin: 10px 0;
}

    .footer-links li:first-child {
        padding-left: 0;
    }

    .footer-links li {
        display: inline;
        padding: 0 2px;
    }

.sma-app {
    font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
}

    .sma-app .tile-item {
        display: inline-block;
    }

        .sma-app .tile-item a span {
            font-size: 13px;
        }

    .sma-app .tooltip-inner {
        text-align: justify;
        max-width: 300px;
    }

    .sma-app .glyphicon-info-sign {
        color: #2377C1;
    }

.sma-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

​
/* Spinner styles - starts here*/
.has-spinner.active {
    cursor: progress;
}

.has-spinner .spinner {
    display: none;
    opacity: 0;
    width: 0;
    -webkit-transition: opacity 0.25s, width 0.25s;
    -moz-transition: opacity 0.25s, width 0.25s;
    -o-transition: opacity 0.25s, width 0.25s;
    transition: opacity 0.25s, width 0.25s;
}

.has-spinner.active .spinner {
    opacity: 1;
    margin-right: 10px;
    width: auto; /* This doesn't work, just fix for unkown width elements */
    display: inline-block;
}

.has-spinner.btn-mini.active .spinner {
    width: 10px;
}

.has-spinner.btn-small.active .spinner {
    width: 13px;
}

.has-spinner.btn.active .spinner {
    width: 16px;
}

.has-spinner.btn-large.active .spinner {
    width: 19px;
}

.fa-spin-custom, .glyphicon-spin {
    -webkit-animation: spin 1000ms infinite linear;
    animation: spin 1000ms infinite linear;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* Spinner styles - ends here*/

.sma-logo {
    padding: 0px;
    height: 150px;
}

h3 {
    margin-top: -10px;
}