﻿@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
        color: yellow;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
        color: yellow;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
        color: red;
    }

    100% {
        opacity: 1.0;
    }
}

blink, .blink {
    animation: 1s blinker linear infinite;
    -webkit-animation: 1s blinker linear infinite;
    -moz-animation: 1s blinker linear infinite;
}

noscript {
    display: block;
    position: fixed;
    background-color: #ea1d2c;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 10000;
}

    noscript > div {
        width: 100%;
        height: auto;
        position: relative;
        width: 100%;
    }

.flash-message {
    max-width: 100%;
    width: 400px;
    margin: 10px;
    float: right;
}

.view-header .header-icon {
    margin-top: 0;
}

#login-logo {
    height: 55px;
    margin-top: 3px;
}

    #login-logo path {
        fill: #f6a821;
    }

small .extra {
    font-weight: 500;
    margin-top: -5px;
    position: relative;
    display: block;
}

#Environment-Wrapper {
    width: 100%;
    background-color: #007bff;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    text-align: center;
    color: white;
    padding: 3px 5px;
    text-transform: uppercase;
    font-weight: 500;
}

/*html, body {
    min-height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #22262e;
}

body {
    background: #f9f9f9;
    background-repeat: no-repeat;
    background-size: cover;
}

.loginContainer {
    width: 100%;
    min-height: 100%;
}

    .loginContainer .loginBox {
        width: 450px;
        margin: 0px auto;
        padding-top: 100px;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

        .loginContainer .loginBox .loginBody {
            background: rgba(255, 255, 255, 0.2);
        }

        .loginContainer .loginBox .tituloLogin {
            font-size: 24px;
            font-weight: 200;
            text-align: center;
            margin-bottom: 25px;
        }

        .loginContainer .loginBox .logo {
            display: block;
            text-align: center;
            margin: 0 auto;
            vertical-align: middle;
            margin-bottom: 25px;
        }

        .loginContainer .loginBox .loginBody {
            width: 100%;
            margin: 0 auto;
            max-width: 425px;
            background: white;
            padding: 20px;
            border-radius: 7px;
            border: 1px solid #ddd;
        }
            .loginContainer .loginBox .loginBody .form-group {
                margin-bottom: 15px;
            }

            .loginContainer .loginBox .loginBody .form-control {
                background: rgba(255, 255, 255, 0.4);
                color: #333;
                border: 1px solid #ccc;
                border-radius: 5px;
                padding: 6px 10px;
                height: auto;
            }

            .loginContainer .loginBox .loginBody .field-validation-error {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }

            .loginContainer .loginBox .loginBody label {
                font-size: 14px;
                font-weight: 600;
            }

            .loginContainer .loginBox .loginBody .btn-link {
                color: #FFF;
                border: 0px;
            }

            .loginContainer .loginBox .loginBody button[type="submit"] {
                margin-top: 10px;
                background: #2A3F54;
                border: none;
                text-transform: capitalize;
            }

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animated {
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (max-width: 999px) {
    #logo-corner {
        display: none;
    }
}

@media (max-height: 674px) {
    #logo-corner {
        display: none;
    }

    .loginContainer .loginBox {
        padding-top: 50px;
    }
}

@media (max-height: 500px) {
    .loginContainer .loginBox {
        padding-top: 20px;
    }
}

#logo-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    padding: 10px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

#logo-corner:hover {
    opacity: 1;
}*/

.mb-3{
    margin-bottom:1rem;
}
