*, *:before, *:after {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color: #444;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;    
}

:root {
    --red: #D00;
    --red-f: #F00;
    --red-b: #B00;
    --red-9: #900;
    --red-3: #300;
    --green: #2A2;
    --green-5: #5B5;
    --green-1: #191;
    --blue: #07F;
    --blue-1: #19F;
    --blue-0: #05C;
    --orange: #F90;
    --orangen-a: #FA3;
    --orangen-6: #F60;
    --yellow: #FE9;
    --yellow-c: #FFC;
    --yellow-9: #ED9;
    --black: #000;
    --black-1: #111;
    --gray: #666;
    --gray-9: #999;
    --gray-c: #CCC;
    --gray-a: #AAA;
    --gray-d: #DDD;
    --gray-e: #EEE;
    --gray-4: #444;
    --white: #FFF;
    --radius: 7px;
    --curved: 10px;
    --rounded: 50%;
    --transition: 0.8s;
    --scale: 1.1;
    --seconds: 1s;
}

body { background-color: #000;
background-image: url(../../storage/images/bg.jpg?br);
background-attachment: fixed;
background-size: cover;
}
h1 { font-size: 2em; font-weight: 400 }
h2 { font-size: 1.8em; font-weight: 600 }
h3 { font-size: 1.5em; font-weight: 800 }
h4 { font-size: 1.2em; font-weight: 500 }
p { margin-bottom: 15px }
b, strong { font-weight: bold }
mark { padding: 5px 10px; background: var(--gray-e) }
ul { list-style: none }
img { border: none; max-width: 100%; vertical-align: middle }
small { font-size: 0.75em; color: var(--gray) }
a { text-decoration: none; color: var(--blue) }
a img { border: 0 }
label { cursor: pointer }
object, embed, video, frame, iframe, iframe[style] { max-width: 100%; height: auto }
textarea { resize: none }
select { background: var(--white) }

.container { float: left; width: 100% }
.content { position: relative; display: block; margin: 0 auto; padding: 10px 0; width: 96%; max-width: 1100px }
.contrast { color: var(--red); font-size: 1.8em; text-align: center }
.paragraph { margin-top: 35px; }
.indent { text-indent: 4em; text-align: justify; margin-bottom: 0px }
.p-top {
    margin-top: 35px;
}
.paragraph:first-letter { font-size: 1.2em }
.fontzero { font-size: 0px }
.left { text-align: left }
.justify { text-align: justify }
.center { text-align: center }
.right { text-align: right !important }
.pointer { cursor: pointer }
.bold { font-weight: 800 }
.radius { border-radius: var(--radius); -webkit-border-radius: var(--radius); -moz-border-radius: var(--radius) }
.curved { border-radius: var(--curved); -webkit-border-radius: var(--curved); -moz-border-radius: var(--curved) }
.ratio { position: relative; padding-bottom: 56.25%; float: left; width: 100%; height: 0 }
.media { position: absolute; width: 100%; height: 100%; left: 0; top: 0 }
.map { border: 1px solid var(--red-d); box-shadow: 2px 6px 12px var(--gray-l) }
.active { color: var(--red-d); text-decoration: underline }
/*
.paginator { display: inline-block; width: 100%; margin: 20px 0px; color: var(--gray-c); text-align: center; }
.paginator ul { display: block; background: var(--red); padding: 10px; text-align: center; border-radius: var(--radius); -webkit-border-radius: var(--radius); -moz-border-radius: var(--radius) }
.paginator ul li { display: inline }
.paginator ul li a,
.paginator ul li span { padding: 5px; font-size: 1.1em; font-weight: bold }
.paginator ul li a { color: var(--white); text-decoration: none }
.paginator ul li a:hover { text-decoration: underline }
*/
.paginator {
    display: inline-block;
    width: 100%;
    margin: 20px 0px;
    color: var(--gray);
    text-align: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;    
}
.paginator_item {
    display: inline-block;
    margin: 0 3px;
    padding: 4px 12px;
    background: #000;
    color: #fff;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.paginator_item:hover {
    background: #333;
}

.paginator_active,
.paginator_active:hover {
    background: #CCC;
}
.result,.resulter { background-color: #FFC; border-bottom: 3px solid #FEA; padding: 1.3em; margin-bottom: 0px; font-size: 1em; text-align: center }
.input { border: 1px solid var(--gray-d); padding: 5px }
.input:focus { background-color: #FFF; box-shadow: 1px 1px 2px var(--gray-e) }
.textarea { resize: none; border: 1px solid #DDD; padding: 5px }
.fixed { width: 100% }
.btn { cursor: pointer; border: none; padding: 10px 25px; color: var(--white); background-color: #F90000; border-bottom: 2px solid var(--red-l); vertical-align: top }
.btn:hover { background-color: #F00; border-bottom: 2px solid var(--red-h) }
.btn:active { position: relative; top: 1px }
.btn_upload { background-color: var(--black-l); color: var(--black-l); }
.btn_upload:hover { background-color: var(--black-h); color: var(--black-h) }
.btn_padding { padding: 5px 15px }
.separator { display: inline-block; width: 100%; margin: 20px 0px; }
.zoom { -webkit-transition: all var(--transition) ease; -moz-transition: all var(--transition) ease; -ms-transition: all var(--transition) ease; -o-transition: all var(--transition) ease; transition: all var(--transition) ease }
.zoom:hover { -webkit-transform:scale(var(--scale)); -moz-transform:scale(var(--scale)); -ms-transform:scale(var(--scale)); -o-transform:scale(var(--scale)); transform:scale(var(--scale)) }
.upload { margin-bottom: 10px }
.clear { clear: both }
.red { color: var(--red) }
.blue { color: var(--blue) }
.white { color: var(--white) }
.gray { color: var(--gray) }
.green { color: var(--green) }
.orange { color: #F70 }
.circle { border-radius: var(--rounded); -moz-border-radius: var(--rounded); -webkit-border-radius: var(--rounded) }

.box-contrast {
    padding: 10px;
    border: 1px solid #BBB;
}
.blink {
    animation: blinker 1s linear infinite;
}
.topics {
    margin-top: 5px; 
    font-size: 2em; 
    font-weight: 800;
    background: #CCC;
    border: 1px solid #AAA; 
    padding: 20px; 
    text-align: center;
    color: #F60;
}
.line {
    background: #FC9;
    padding: 20px;
    margin: 20px 0px;
}
.box2,.box2-form,.box6,.box6,.b3,.box3 {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.adjust-text-box2-form {
    padding-top: 5px;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 60px;
    height: 60px;
}

.fileUpload input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 999;
    width: 100%;
    height: 100%;
}
.bgside {
    background: #555;
}
.sideA {
    float: left;
    width: 0px;
    margin-right: 0px;
    display: none;
}
.sideB {
    position: relative;
    width: 92%;
    background: #FFF;
    margin: 0 auto;
    text-align: center;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    margin-top: 20px;
    padding: 20px;
}
.sideA h1 {
    margin: 70px 0px 0px 100px;
    color: #FFF;
    font-size: 2em;
}
.sideA h2 {
    margin: 0px 0px 0px 100px;
    color: #FFF;
    font-size: 1.6em;
}
.fieldpass {
    position: relative;
    display: inline-block;
    width: 100%;
}
.viewpass {
    position: absolute;
    right: 7px;
    top: 4px;
    text-align: right;
}
.box-login-side {
    min-height: 320px;
}
.box-login-side .pass {
    margin-top: 15px;
    text-align: left;
}
.box-login-side .pass span {
    font-size: 0.9em;
}
.simplecopy {
    position: absolute;
    right: 10px;
    bottom: 10px;
    text-align: right;
    font-size: 0.8em;
    color: #999;
}
.simplecopy a {
    color: #999;
    text-decoration: underline;
}
.div-logo-side {
    float: left;
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}
.logo-side {
    max-width: 13em;    
}
.menu-configs {
    border-bottom: 2px solid #999;
    padding: 5px 0px 3px 0px;
}
.menu-configs-items {
    margin-right: 0px;
    padding: 3px 7px;
    border-top: 1px solid #777;
    border-left: 1px solid #777;
    border-right: 1px solid #777;
    background-color: #555;
    color: #FFF;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
}
.menu-configs-items:hover {
    position: relative;
    background-color: #777;
}

.report {
    display: inline-block;
    width: 100%;
    border: 1px solid var(--gray-c);
    padding: 5px;    
}

.report .results-statement {
    float: left;
    width: 19%;
    margin-right: 1.25%;
    font-size: 0.75em;
    border-right: 1px solid #ccc;
    padding-right: 10px;
}

.report .results-statement:nth-of-type(5n+0) {
    margin-right: 0px;
    border-right: none;
}

.report .results-7divs {
    float: left;
    width: 14%;
    margin-right: 0.28%;
    font-size: 0.75em;
    border-right: 1px solid #ccc;
    padding-right: 10px;
}

.report .results-7divs:nth-of-type(7n+0) {
    margin-right: 0px;
    border-right: none;
}

.report-hover:hover {
    background: #EFEFEF !important;
    cursor: pointer;
}

.totals {
    background: var(--gray-e);
}

.dash-home {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid var(--gray-c);
    padding: 20px;
    background: rgba(250,250,250,0.5);
}
.dash-home p, .dash-home li {
    font-size: 0.8em;
}

.dash,.dash-users {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    background: var(--gray-e);
    box-shadow: 1px 5px 10px var(--gray-c);
    border: 1px solid var(--gray-e);
    padding: 15px;    
}

.dash-users {
    padding: 5px 10px 10px 10px;
    background: rgba(90,176,217,0.8);
}

.dash-title {
    font-weight: 400;
    font-size: 1.3em;
    color: var(--red);
}

.dash-users .dash-title {
    text-shadow: 3px 6px 9px var(--gray-a);
    color: var(--white);
}

.dash-item {
    padding: 3px 0px;
    color: var(--red-d);
    font-size: 0.9em;
}

.dash-action {
    margin-top: 10px;
    text-align: right;    
}

.dash-action .btn {
    padding: 2px 12px !important;
    font-size: 0.9em;
}

.dash-users .dash-item {
    border-bottom: none;
}

.dash-users .dash-action .btn {
    padding: 1px 6px;
    font-size: 0.9em;
}

.dash-users .dash-action {
    margin-top: 5px;
}

.bgindex {
    background-color: #222;
    background-image: url(../../storage/images/bg.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.online {
    position: absolute;
    right: 5px;
    top: 5px;
    border: 1px solid var(--red);
    padding: 0px;
}

.on:nth-of-type(1n+0) {
    float: left;
    padding: 5px;
    text-align: center;
    color: var(--white);
    background: var(--red);
    font-size: 13px;
    font-weight: bold;    
}
.on:nth-of-type(2n+0) {
    float: left;
    text-align: right;
    background: transparent;
    color: var(--green);
    font-size: 13px;
    font-weight: bold;
    padding: 5px;
}
#on {
    color: var(--green);
    font-size: 13px;
    font-weight: bold;    
}

.slideshow {
    position: relative;
    display: inline-block;
    width: 100%;
    position: relative;
    height: 200px;
    padding: 0px;
    margin: 0px;
}

#slides {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.slide {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;   
    -webkit-transition: opacity var(--seconds);
    -moz-transition: opacity var(--seconds);
    -o-transition: opacity var(--seconds);
    transition: opacity var(--seconds);
}

.slide img {
    height: 250px;
}

.showing {
    opacity: 1;
    z-index: 2;
}

.header {
    position: relative;
}

.header .logo {
    float: left;
    max-width: 16em;
}

.header .mobile {
    position: absolute;
    right: 5px;
    top: 10px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    border-radius: var(--rounded);
    -moz-border-radius: var(--rounded);
    -webkit-border-radius: var(--rounded);
    background: var(--gray-c) url(../../storage/images/mobile.png) center center no-repeat;
    z-index: 9999;
}

.header .mobile:hover {
    background-color: var(--gray-l);
}

.header .mobile:active {
    background-color: var(--gray-h);    
}

.main {
    padding: 20px !important;
    background: #FFF;
}

.footer ul {
    text-align: center;
}

.footer ul li {
    display: inline;
    margin-right: 10px;  
}

.footer ul li:last-of-type {
    margin-right: 0px;
}

.footer p {
    color: var(--gray-l);
}

.footer b {
    color: var(--gray-l);
}

.footer a {
    color: var(--gray-l);
}

.footer .launcher {
    margin-top: 20px;
}

.footer .copyright {
    font-size: 0.8em;
    text-align: center;
    color: var(--gray-l);    
}

.footer .intellectual-property {
    text-transform: uppercase;
    margin-bottom: 0px;
    font-size: 11px;
}

.footer .intellectual-property a {
    text-decoration: underline;
    font-weight: bold;
    font-size: 11px;
}

.footer .copy {
    margin: 0px;
}

.findex p, .findex b, .findex a, .findex .copyright {
    color: #BBB;
}

.box-contact {
    border: 1px solid var(--gray-d);
    padding: 20px;
    max-width: 400px;
    background: var(--gray-e);
}

.box-contact input[type=file] {
    background: var(--white);
}

.box-login {
    border: 1px solid var(--gray-d);
    padding: 20px;
    max-width: 290px;
    background: var(--gray-e);
}
.box-login .pass {
    margin-top: 20px;
    font-size: 0.8em;    
}
.box-login .pass span {
    color: var(--gray-a);
}

.forms .input {
    margin-top: 15px;
}

.table-box {
    border: 1px solid var(--red);
}

.adm-configs {
    border: 1px solid var(--gray-d);
}

.table {
    border-collapse: collapse;
    font-size: 14px;
    width: 100%;
}

.table-border {
    border: 1px solid var(--red);
}

.tr-header th {
    background-color: var(--red);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
}

.table th, .table td {
    padding: 5px;
}

.tr-footer th {
    background-color: var(--red);
    color: var(--yellow);
    font-weight: 800;    
}

.title {
    margin: 0px 0px 20px 0px;
    font-weight: 300;
}

.payments {
    display: inline-block;
    width: 100%;
    border: 1px solid var(--gray-c);
    padding: 5px;
    background-color: var(--white);
    margin-bottom: 10px;    
}
.payments div {
    float: left;
    width: 23.5%;
    margin-right: 2%;
    font-size: 0.9em;
    text-align: center;
}
.payments div:nth-of-type(4n+0) {
    margin-right: 0px;
}

.last-background:hover {
    background-color: var(--yellow);
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 290px;
    background-color: #FEA;
    border: 1px solid #FE9;
    box-shadow: 3px 9px 18px var(--gray-a);
    color: #333;
    text-align: left;
    padding: 2px 5px;
    position: absolute;
    z-index: 1;
    top: -20px;
    left: 15px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.checkbox {
    display: inline-block;
    vertical-align: middle;
}
.checkbox input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.checkbox label {
    position: relative;
    padding-left: 2.2em;
    display: inline-block;
}
.checkbox label::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 1.5em;
    width: 1.5em;
    background: var(--white);
    margin-right: 0.5em;
    border: 1px solid #999;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.checkbox label::after {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 0.75em;
    transform: translate(-50%, -50%);
    font-size: 1em;
    color: var(--white);
    opacity: 0;
    transition: all 0.2s ease;
}
.checkbox label:focus::before, .checkbox label:hover::before {
    background: var(--gray-d);
}
.checkbox input:checked + label::before {
    background: #ff7212;
    border-color: #ff7212;
}
.checkbox input:checked + label::after {
    opacity: 1;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 18px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray-d);
    border-radius: 100%;
    background: var(--white);
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #f60;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* 319px */
@media (max-width: 19.9375em) {
    .content {
        padding: 20px 0; 
        width: 96%;
    }
}

/* 320px */
@media (min-width: 20em) {

}

/* 480px */
@media (min-width: 30em) {  
    .content {
        padding: 20px 0; 
        width: 94%;
    }
    .dash,.dash-users {
        width: 48.5%;
        margin-right: 3%;
    }
    .dash:nth-of-type(2n+0),.dash-users:nth-of-type(2n+0) {
        margin-right: 0px;
    }    
}

/* 600px */
@media (min-width: 37.5em) { 
    .content {
        padding: 20px 0; 
        width: 92%;
    }
}

/* 768px */
@media (min-width: 48em) { 
    .content {
        padding: 20px 0; 
        width: 90%;
    }
    .dash-home {
        width: 31%;
        margin-right: 3.5%;
    }    
    .dash-home:nth-of-type(3n+0) {
        margin-right: 0px;
    }

    .dash {
        width: 31%;
        margin-right: 3.5%;
    }
    .dash:nth-of-type(2n+0) {
        margin-right: 3.5%;
    }    
    .dash:nth-of-type(3n+0) {
        margin-right: 0px;
    }     

    .dash-users {
        width: 23.5%;
        margin-right: 2%;
    }
    .dash-users:nth-of-type(2n+0) {
        margin-right: 2%;
    }    
    .dash-users:nth-of-type(4n+0) {
        margin-right: 0px;
    }   
}

/* 919px */
@media (max-width: 57.4375em) {
    .nav {
        position: fixed;
        left: -100%;
        top: 0;
        width: 76%;
        height: 100%;
        min-width: 200px;
        max-width: 360px;
        background: #222;
        z-index: 99;
        overflow: hidden;
        overflow-y: auto;
    }

    .nav_item {
        float: left;
        width: 100%;
        position: relative;
    }

    .nav_item > a {
        float: left;
        width: 100%;
        padding: 15px;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--gray-e);
        font-weight: bold;
        font-size: 0.875em
    }

    .nav_item:hover,
    .nav_item > a:hover {
        background: #444;
        color: var(--white);
    }

    .nav_sub{
        float: left;
        width: 100%;
        padding: 10px;
        background: var(--black-l);
    }

    .nav_sub_item {
        float: left;
        width: 100%;
    }

    .nav_sub_item a {
        float: left;
        width: 100%;
        padding: 15px;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--white);
        font-size: 0.8em;
    }

    .nav_sub_item a:hover {
        background: var(--red);
    }
}

/* 960px */
@media (min-width: 60em) { 
    .content {        
        padding: 20px 0; 
        width: 92%;
    }
    .b3 {
        width: 31%;
        margin-right: 3.5%;
        margin-bottom: 0px;        
    }
    .b3:nth-of-type(3n+0) {
        margin-right: 0px;
    }    
    .box2 {
        width: 48.5%;
        margin-right: 3%;
        margin-bottom: 0px;        
    }
    .box2:nth-of-type(2n+0) {
        margin-right: 0px;
    }
    .box3 {
        width: 31%;
        margin-right: 3.5%;
        margin-bottom: 0px;        
    }
    .box3:nth-of-type(3n+0) {
        margin-right: 0px;
    }    
    .box6 {
        width: 16%;
        margin-right: 0.8%;
        margin-bottom: 0px;
        font-size: 0.9em
    }
    .box6:nth-of-type(6n+0) {
        margin-right: 0px;
    }
    
    .box2-form {
        width: 20%;
        margin-right: 1%;
        margin-bottom: 0px;
    }
    .box2-form:nth-of-type(2n+0) {
        width: 79%;
        margin-right: 0px;
    }
    
    .sideA {
        width: 65%;
        margin-right: 5%;
        display: block;
    }
    .sideB {
        float: left;
        width: 30%;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        margin: 0px;
        height: 100%;
        overflow: auto;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
    }    
}

/* 1024px */
@media (min-width: 64em) {
    .content {
        padding: 20px 0; 
        width: 94%;
    }
}

/* 920px */
@media (min-width: 57.5em) {
    .content {
        padding: 20px 0; 
        width: 96%;
    }    
    .header2 {
        height: 230px;
    }
    .header .mobile {
        display: none;
    }

    .nav {
        text-align: right;
        margin-top: 1em;
    }

    .nav_item {
        position: relative;
        display: inline-block;
        margin-right: 0px;
    }
    
    .nav_item .btn,.nav_item .btn:hover {
        margin-left: 12px; 
        margin-right: 9px; 
        border: 1px solid var(--red-l); 
        background: var(--red); 
        color: var(--white);
    }

    .nav_seta {
        padding-right: 20px !important;
    }

    .nav_item:last-of-type {
        margin-right: 0px;
    }

    .nav_item > a {
        float: left;
        padding: 5px 8px;
        text-transform: uppercase;
        text-decoration: none;
        color: #555;
        background: transparent;
        border: none;
        font-size: 0.75em;
        font-weight: bold;
        border-radius: var(--radius);
        -webkit-border-radius: var(--radius);
        -moz-border-radius: var(--radius);
    }

    .nav_item > a:hover {
        background: transparent;
        color: var(--red);
        border: none;
        border-radius: var(--radius);
        -webkit-border-radius: var(--radius);
        -moz-border-radius: var(--radius);
    }

    .nav_sub {
        display: none;
        position: absolute;
        top: 20px;
        left: 0;
        width: 210px;
        background: var(--red);
        padding: 5px;
        box-shadow: 4px 8px 16px var(--black-h);
        text-align: left;
        z-index: 99;
        border-radius: var(--radius);
        -webkit-border-radius: var(--radius);
        -moz-border-radius: var(--radius);  
        margin-top: 1px;
    }

    .nav_item:hover .nav_sub,
    .nav_item > a:hover .nav_sub {
        display: block;
    }

    .nav_sub_item {
        float: left;
        width: 100%;
        border-radius: var(--radius);
        -webkit-border-radius: var(--radius);
        -moz-border-radius: var(--radius);
        list-style-image: none;
        list-style-type: none;        
    }

    .nav_sub:focus {
        margin-bottom: -1px;
    }

    .nav_sub_item a {
        float: left;
        width: 100%;
        padding: 10px;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.8em;
        color: var(--white);
        border-radius: var(--radius);
        -webkit-border-radius: var(--radius);
        -moz-border-radius: var(--radius);       
    }

    .nav_sub_item a:hover {
        background: var(--white);
        color: var(--red);
    }

}

/* 1280px */
@media (min-width: 80em) { 

}

