* {
    transition: background-color 300ms ease, color 300ms ease;
}

*:focus {
    background-color: rgba(221, 72, 20, .2);
    outline: none;
}

html, body {
    color: rgba(33, 37, 41, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.8;
}

header {
    background-color: rgba(247, 248, 249, 1);
    padding: .4rem 0 0;
    float: left;
    width: 100%;
}

.menu {
    padding: .4rem 2rem;
}

header ul {
    border-bottom: 1px solid rgba(242, 242, 242, 1);
    list-style-type: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    text-align: right;
}

header li {
    display: inline-block;
}

header li a {
    border-radius: 5px;
    color: rgba(0, 0, 0, .5);
    display: block;
    height: 44px;
    text-decoration: none;
}

header li.menu-item a {
    border-radius: 5px;
    margin: 5px 0;
    height: 38px;
    line-height: 36px;
    padding: .4rem .65rem;
    text-align: center;
}

header li.menu-item a:hover,
header li.menu-item a:focus {
    background-color: rgba(221, 72, 20, .2);
    color: rgba(221, 72, 20, 1);
}

header .logo {
    float: left;
    height: 44px;
    padding: .4rem .5rem;
}

header .menu-toggle {
    display: none;
    float: right;
    font-size: 2rem;
    font-weight: bold;
}

header .menu-toggle button {
    background-color: rgba(221, 72, 20, .6);
    border: none;
    border-radius: 3px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font: inherit;
    font-size: 1.3rem;
    height: 36px;
    padding: 0;
    margin: 11px 0;
    overflow: visible;
    width: 40px;
}

header .menu-toggle button:hover,
header .menu-toggle button:focus {
    background-color: rgba(221, 72, 20, .8);
    color: rgba(255, 255, 255, .8);
}

header .heroe {
    margin: 0 auto;
    max-width: 1100px;
    padding: 1rem 1.75rem 1.75rem 1.75rem;
}

header .heroe h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

header .heroe h2 {
    font-size: 1.5rem;
    font-weight: 300;
}

section {
    margin: 0 auto;
    max-width: 1100px;
    padding: 2.5rem 1.75rem 3.5rem 1.75rem;
}

section h1 {
    margin-bottom: 2.5rem;
}

section h2 {
    font-size: 120%;
    line-height: 2.5rem;
    padding-top: 1.5rem;
}

section pre {
    background-color: rgba(247, 248, 249, 1);
    border: 1px solid rgba(242, 242, 242, 1);
    display: block;
    font-size: .9rem;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    white-space: pre-wrap;
    word-break: break-all;
}

section code {
    display: block;
}

section a {
    color: rgba(221, 72, 20, 1);
}

section svg {
    margin-bottom: -5px;
    margin-right: 5px;
    width: 25px;
}

.further {
    background-color: rgba(247, 248, 249, 1);
    border-bottom: 1px solid rgba(242, 242, 242, 1);
    border-top: 1px solid rgb(225, 225, 225);;
    width: 100%;
    float: left;
}

.further h2:first-of-type {
    padding-top: 0;
}

footer {
    background-color: rgba(221, 72, 20, .8);
    text-align: center;
    float: left;
    width: 100%;
}

footer .environment {
    color: rgba(255, 255, 255, 1);
    padding: 2rem 1.75rem;
}

footer .copyrights {
    background-color: rgba(62, 62, 62, 1);
    color: rgba(200, 200, 200, 1);
    padding: .25rem 1.75rem;
}

.col6 {
    width: 48%;
    padding: 1%;
    float: left;
}

.frmlogin {
    width: 400px;
    border: 1px solid #cdcdcd;
    background-color: #ffffff;
    padding: 20px;
    margin-top: 20px;
    margin-left: 50px;
}

.frmlogin label {
    float: left;
    width: 100%;
    margin: 20px 0 3px;
}

.textInput input, .textInput textarea {
    height: 44px;
    width: 100%;
    padding: 0 10px;
    border: 1px solid #9da3a6;
    background: #fff;
    background-clip: border-box;
    text-overflow: ellipsis;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #000;
    font-size: 1em;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    direction: ltr;
}

a.button, a.button:link, a.button:visited, .button {
    width: 100%;
    min-height: 44px;
    padding: 0;
    border: 0;
    display: block;
    background-color: #0070ba;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    color: #fff;
    font-size: 1em;
    text-align: center;
    font-weight: 700;
    font-family: HelveticaNeue-Medium, "Helvetica Neue Medium", HelveticaNeue, "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-shadow: none;
    text-decoration: none;
    -webkit-transition: background-color .4s ease-out;
    -moz-transition: background-color .4s ease-out;
    -o-transition: background-color .4s ease-out;
    transition: background-color .4s ease-out;
    -webkit-font-smoothing: antialiased;
    line-height: 44px;
}

.textInput .fieldLabel {
    position: absolute;
    color: #6c7378;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.textInput {
    margin-bottom: 20px;
}

.col6 {
    padding-top: calc(100VH - 152px - 580px);
}

.clearfix {
    width: 100%;
    margin-bottom: 20px;
}

.corral {
    margin: 0 auto;
    width: 460px;
    position: relative;
}

.response500 .headerText {
    line-height: normal;
}

.headerTextWarning {
    padding-top: 130px !important;
    filter: invert(48%) sepia(130%) saturate(5207%) hue-rotate(-15deg) brightness(95%) contrast(120%);
}

.headerText {
    margin-top: 20px;
    padding: 0 0 20px;
    padding-top: 0px;
    text-align: center;
    font-size: 24px;
    font-family: HelveticaNeue-Light, "Helvetica Neue Light", HelveticaNeue, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.contentContainer {
    position: relative;
    margin: 40px auto 0;
    padding: 30px 10% 50px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
.notifications {
    outline: 0;
    margin-bottom: 10px;
    font-size: 13px;
}
.notifications .notification.notification-critical {
    background-color: #fff7f7;
    background-position: 12px -387px;
    background-position: left 12px top -387px;
    border-color: #c72e2e;
}
.notifications .notification {
    margin: 0;
    padding: 15px 15px 15px 44px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    text-align: left;
    font-size: 1em;
    line-height: normal;
}
@media (max-width: 559px) {
    header ul {
        padding: 0;
    }

    header .menu-toggle {
        padding: 0 1rem;
    }

    header .menu-item {
        background-color: rgba(244, 245, 246, 1);
        border-top: 1px solid rgba(242, 242, 242, 1);
        margin: 0 15px;
        width: calc(100% - 30px);
    }

    header .menu-toggle {
        display: block;
    }

    header .hidden {
        display: none;
    }

    header li.menu-item a {
        background-color: rgba(221, 72, 20, .1);
    }

    header li.menu-item a:hover,
    header li.menu-item a:focus {
        background-color: rgba(221, 72, 20, .7);
        color: rgba(255, 255, 255, .8);
    }

    .col6 {
        width: 100%;
        padding: 10px;
        float: left;
    }
}