.w3-bg-header {
    background-color: #8C3535;
    background-image: url("../assets/images/topo-header.png");
    background-repeat: repeat-x;
}

.w3-bordo, .w3-hover-bordo:hover {
    color: #fff !important;
    background-color: #8C3535 !important
}

.w3-text-bordo, .w3-hover-text-bordo:hover {
    color: #8C3535 !important
}

.w3-border-bordo, .w3-hover-border-bordo:hover {
    border-color: #8C3535 !important
}

.w3-dark-bordo, .w3-hover-dark-bordo:hover {
    color: #fff !important;
    background-color: #722020 !important
}

.w3-text-dark-bordo, .w3-hover-text-dark-bordo:hover {
    color: #722020 !important
}

.w3-border-dark-bordo, .w3-hover-border-dark-bordo:hover {
    border-color: #722020 !important
}

.w3-padding-text-header {
    padding-top: 22px;
    padding-bottom: 16px;
    line-height: 26px;
}

.w3-text-header {
    font-family: 'Space Grotesk',Arial,sans-serif;
    font-weight: bold;
    font-size: 4vmin;
}

.w3-icon-bar div {
    width: 35px;
    height: 5px;
    margin: 6px 8px;
}

.w3-fade-left {
    animation-name: fadeLeft;
    animation-duration: 1s;
}

@keyframes fadeLeft {
    from {
        left: 0px;
    }

    to {
        left: -300px;
    }
}

.w3-fade-opacty {
    animation-name: fadeOpacyty;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeOpacyty {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.w3-rotate-hours {
    animation-name: rotateHours;
    animation-duration: 0.8s;
    position: relative;
}

@keyframes rotateHours {
    from {
        transform: rotate(0deg);
        right: 200px;
    }

    to {
        transform: rotate(270deg);
        right: 0px;
    }
}

.w3-rotate-antHours {
    animation-name: rotateAntHours;
    animation-duration: 1s;
    position: relative;
}

@keyframes rotateAntHours {
    from {
        transform: rotate(270deg);
        right: 0px;
    }

    to {
        transform: rotate(0deg);
        right: 200px;
    }
}

.js-flip:before {
    font-family: "FontAwesome";
    content: "\f0d7";
    float: right;
    font-size: 16px;
    font-weight: normal;
    font-style: normal
}

.js-flip.active:before {
    content: "\f0d8"
}

#w3-go-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    z-index: 500;
    cursor: pointer;
}

.w3-link-bold, .w3-bold {
    font-family: 'Space Grotesk',Arial,sans-serif;
    font-weight: 600;
}

.w3-link-bold {
    text-decoration: none;
}
.caret-down {
    background-image: url("../assets/images/Vector_140.svg");
    background-repeat: no-repeat;
    background-position: 96% 50%;
    background-size:20px;
}
.w3-text-warning {
    color: #7a642b !important
}
.w3-text-danger {
    color: #752525 !important
}
.w3-padding-btnLine {
    text-align: right;
    padding: 23px 18px
}
.w3-round-top {
    border-radius: 4px 4px 0 0
}

.w3-round-bottom {
    border-radius: 0 0 4px 4px
}

.w3-round-top-large {
    border-radius: 8px 8px 0 0
}

.w3-round-bottom-large {
    border-radius: 0 0 8px 8px
}

.w3-round-top-left-large {
    border-radius: 0 8px 0 0
}

.w3-round-left-large {
    border-radius: 8px 0 0 8px
}

.w3-round-right-large {
    border-radius: 0 8px 8px 0
}
.w3-btn-detalhe {
    padding: 2px 6px;
}
/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color:#8C3535;
    padding: 8px 16px;
    background-color: inherit;
    font: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.w3-bar a:hover, .dropdown:hover .dropbtn {
    background-color: #8C3535;
    color:#fff
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 3;
}
/* Mega Menu header, if needed */
.dropdown-content .header {
    background: #8C3535;
    padding: 5px 16px;
    color: white;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Create three equal columns that floats next to each other */

/* Style links inside the columns */
.w3-col.a-menu a {
    float: none;
    color: black;
    padding: 5px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-left: 2px solid #8C3535;
    margin-bottom: 1px
}

/* Add a background color on hover */
.w3-col.a-menu a:hover {
    background-color: #ddd;
}


/* begin style table mobile */
@media (max-width:768px) {
    .w3-table-mobile tr, .w3-table-mobile td {
        display: block;
        width: 100%;
    }
    .w3-table-mobile td:first-child {
        padding-left: 9px;
        border-bottom: 1px solid #ddd;
    }
    .w3-table-line th:first-child, .w3-table-line td:first-child {
        padding-left: 50%;
    }
    table.w3-table-line, .w3-table-line thead, .w3-table-line tbody, .w3-table-line th, .w3-table-line tr, .w3-table-line td {
        display: block;
    }
    .w3-table-line thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .w3-table-line td, .w3-table-line th {
        padding: 1.8%;
    }
    .w3-table-line tr {
        border-bottom: 2px solid #616161;
        border-right: none;
    }
    .w3-table-line td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }
    .w3-table-line td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        white-space: nowrap;
        font-weight: bold;
        color: #005F8C;
    }
    /* Label the data */
    .w3-table-line td:before {
        content: attr(data-title);
    }

    .w3-height-box-privacidade {
        height: 75px
    }

    .w3-height-box-termos {
        height: 80px
    }

    .w3-striped-mobile tbody tr > td {
        background-color: #fff !important;
    }

    .w3-striped-mobile tbody tr > td:nth-child(even) {
        background-color: #f1f1f1 !important
    }

    .w3-hideTable-small {
        display: none !important;
    }    
}
/* end style table mobile */
.txtHeader2 {
    font-weight: bold;
    font-size: 14px;
    color: #cc0000;
   font-family: "Times New Roman", Times, serif
}
/* Início css impressão */
.w3-font-imp{
    font-size:9px;
}
.print-show{
    display:none;
}
.print-hide {
    display: block;
}
@media print {
    body * {
        visibility: hidden;
    }

    #printpage, #printpage * {
        visibility: visible;
        font-size: 14px;
        line-height:16px;
    }

    #printpage {
        position: fixed;
        left:20px;
        top: 0;
    }
    .w3-font-imp {
        font-size: 9px!important;
    }
    .print-hide {
        display:none;
    }
    .print-show {
        display: block;
    }
}
/* Fim css impressão */
@media (max-width:600px) {
    .w3-padding-btnLine {
        text-align: left;
        padding: 0
    }
}
@media (max-width:992px) and (min-width:601px) {
    .w3-padding-btnLine {
        text-align: left;
        padding: 0
    }
}
