/* Cabeçalho */

.main_header {
    display: flex;
    width: 100%;
    background: #515151;
    position: relative;
}

    .main_header .main_header_content {
        width: 1400px;
        margin: 0 auto;
    }

        .main_header .main_header_content .main_header_content_menu {
            flex-basis: 300px;
            display: flex;
            justify-content: flex-end;
            min-height: 30px;
            float: left;
        }

.main_header_content_menu ul {
    display: flex;
    justify-content: flex-end;
}

    .main_header_content_menu ul li {
        list-style: none;
        display: flex;
        align-items: center;
    }

        .main_header_content_menu ul li a {
            padding: 0 20px;
            display: flex;
            font-size: 12px;
            color: #ccc;
        }

            .main_header_content_menu ul li a:hover {
                text-decoration: underline;
            }

.main_header_content .main_header_content_menu_acessibilidade {
    flex-basis: 300px;
    display: flex;
    justify-content: flex-end;
    min-height: 30px;
    float: right;
    margin-right: 32px;
}

.main_header_content_menu_acessibilidade ul {
    display: flex;
    justify-content: flex-end;
}

    .main_header_content_menu_acessibilidade ul li {
        list-style: none;
        display: flex;
        align-items: center;
    }

        .main_header_content_menu_acessibilidade ul li a {
            padding: 0 20px;
            display: flex;
            font-size: 12px;
            color: #ccc;
        }

            .main_header_content_menu_acessibilidade ul li a:hover {
                text-decoration: underline;
            }

.main_header_content_menu_acessibilidade .separador {
    color: #ccc;
}


/* Capa */

.main_cta {
    display: flex;
    width: 100%;
    position: absolute;
}

.main_cta_content {
    width: 1400px;
    margin: 0 auto;
    z-index: 9999;
}

.main_cta_content_container {
    border-bottom: 1px solid #fff;
}

    .main_cta_content_container a {
        color: #fff;
        text-transform: uppercase;
    }

.main_cta_content .logo {
    flex-basis: 230px;
    justify-content: flex-end;
    margin-top: 15px;
    padding: 5px;
}

    .main_cta_content .logo img {
        margin-right: 131px;
        height: 60px;
    }

.main_cta_content_menu {
    flex-basis: calc(100% - 230px);
    display: flex;
    justify-content: space-between;
}

    .main_cta_content_menu .main_cta_content_menu_list {
        margin-top: 50px;
    }

    .main_cta_content_menu ul {
        display: table-row;
        padding: 0;
        z-index: 1;
        text-decoration: none;
    }

        .main_cta_content_menu ul a {
            display: flex;
            padding: 20px 10px;
            text-transform: uppercase;
            font-size: 0.8em;
            font-weight: bold;
            color: #FFF;
            margin-bottom: -8px;
        }

        .main_cta_content_menu ul li {
            display: inline-block;
            display: table-cell;
            list-style-type: none;
        }

        .main_cta_content_menu ul ul {
            display: none;
            position: absolute;
            background: #00446B;
            width: 14%;
        }

            .main_cta_content_menu ul ul li {
                width: 100%;
                display: inline-block;
                border-top: 1px solid #fff;
            }

                .main_cta_content_menu ul ul li a:hover {
                    font-size: 0.8em;
                    text-decoration: underline;
                }

        .main_cta_content_menu ul li:hover > ul {
            display: block;
        }

.main_cta_content .main_cta_content_menu ul li a:hover {
    width: 100%;
}

.main_cta_content h1 {
    font-size: 2em;
    color: #fff;
    font-weight: 700;
    text-align: left;
    padding-top: 50px;
    width: 70%
}

.main_cta_content p {
    font-size: 1.4em;
    color: yellow;
    font-weight: 400;
    text-align: left;
    margin: 20px 0;
}

.main_cta_content .btn {
    background-color: #d36833;
    color: #fff;
    font-size: 0.8em;
    padding: 10px 40px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.main_cta .main_cta_content .main_cta_content_banner {
    margin: 0 auto;
    max-width: 1300px;
    padding: 160px 40px;
}


/* Acesso Sistemas */

.main_sistemas {
    max-width: calc(1300px - 40px);
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .main_sistemas .main_sistemas_header {
        flex-basis: 100%;
        margin: 30px 0;
    }

        .main_sistemas .main_sistemas_header h1 {
            color: #00446b;
            margin: 15px;
            font-size: 1.8em;
            text-align: center;
        }

    .main_sistemas article {
        flex-basis: calc(30% - 20px);
        margin-bottom: 30px;
        opacity: 0.7;
    }

.card {
    margin: 20px auto;
    width: 280px;
    height: 280px;
    border-radius: 40px;
    box-shadow: 5px 5px 30px 7px rgba(0, 0, 0, 0.25), -5px -5px 30px 7px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: 0.4s;
}

    .card .card_image {
        width: inherit;
        height: inherit;
        border-radius: 40px;
    }

        .card .card_image img {
            width: inherit;
            height: inherit;
            border-radius: 40px;
            object-fit: cover;
        }

    .card .card_images {
        margin: 0 20px;
        text-align: center;
        margin-top: -110px;
        height: 40px;
    }

    .card:hover {
        transform: scale(0.9, 0.9);
        box-shadow: 5px 5px 30px 15px rgba(0, 0, 0, 0.25), -5px -5px 30px 15px rgba(0, 0, 0, 0.22);
    }

.main_sistemas article:hover {
    opacity: 1;
}

.main_sistemas article img {
    width: 100%;
}

.main_sistemas article p {
    margin: 10px 0;
}

.main_sistemas article .category {
    color: #d36833;
    font-size: 0.875em;
}

.main_sistemas article h2 {
    font-weight: 300;
    font-size: 1.2em;
}

    .main_sistemas article h2 a {
        color: #333;
    }

.main_sistemas .main_sistemas_meta {
    font-size: 0.8em;
    margin-top: 10px;
    background-color: #fbfbfb;
    padding: 10px 5px;
    text-align: center;
}

    .main_sistemas .main_sistemas_meta p {
        margin: 0;
        color: #999;
        font-weight: 400;
        margin-bottom: 10px;
    }

.main_sistemas .main_sistemas_meta {
    color: #999;
}

    .main_sistemas .main_sistemas_meta p a {
        color: #666;
    }

        .main_sistemas .main_sistemas_meta p a:hover {
            text-decoration: underline;
        }

    .main_sistemas .main_sistemas_meta img {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        margin-left: 5px;
    }

.main_fornecedor {
    width: 100%;
}

    .main_fornecedor .main_fornecedor_header {
        max-width: 780px;
        padding: 0 20px;
        margin: 0 auto 40px;
        text-align: center;
        color: #333;
    }

        .main_fornecedor .main_fornecedor_header img {
            margin-bottom: 20px;
        }

        .main_fornecedor .main_fornecedor_header h1 {
            font-size: 3em;
            margin-bottom: 10px;
        }

.main_fornecedor_content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

    .main_fornecedor_content article {
        flex-basis: calc(12% - 20px);
        margin: 10px 0;
        background-color: #ebebeb;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        padding: 20px;
    }

        .main_fornecedor_content article h2 {
            font-size: 1.3em;
            color: #333;
            margin-bottom: 4px;
        }

        .main_fornecedor_content article p {
            font-size: 0.9em;
            color: #333;
        }

.main_fornecedor_fullwidth {
    width: 100%;
    background-color: #00446b;
    padding: 80px 0;
    margin: 70px 0;
}

.main_fornecedor_t_content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.main_fornecedor_t_content_title {
    text-align: center;
    color: #fff;
}

    .main_fornecedor_t_content_title h2 {
        font-size: 2.4em;
        margin-bottom: 60px;
    }

.main_fornecedor_t_content_itens {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .main_fornecedor_t_content_itens > header {
        flex-basis: 100%;
        text-align: center;
        color: #fff;
        margin: 20px;
        font-size: 1.8em;
    }

    .main_fornecedor_t_content_itens > article {
        flex-basis: calc(12% - 20px);
        margin: 10px 0;
        background-color: #fff;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        padding: 20px;
    }

        .main_fornecedor_t_content_itens > article a {
            color: #666666;
        }

            .main_fornecedor_t_content_itens > article a:hover {
                font-size: 1.01em;
            }

        .main_fornecedor_t_content_itens > article h3 {
            font-size: 2.4em;
            margin-bottom: 4px;
            text-align: center;
            color: #00446b;
            margin-left: 8px;
        }

        .main_fornecedor_t_content_itens > article p {
            text-align: center;
        }

        .main_fornecedor_t_content_itens > article img {
            width: 15px;
            margin-top: 5px;
            margin-bottom: 2px;
        }

.footer {
    margin-top: 0;
    width: 100%;
    background: #346399;
}

.main_footer {
    max-width: 1400px;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #FFF;
    margin: 0 auto;
}

    .main_footer > header {
        flex-basis: 100%;
    }

        .main_footer > header h1 {
            font-size: 1.4em;
            margin-bottom: 40px;
        }

.main_footer_our_pages .main_footer_links {
    flex-basis: 25%;
}

.main_footer_about {
    flex-basis: 50%;
}

.main_footer > article h2 {
    margin-bottom: 20px;
}

.main_footer > article ul li {
    list-style: none;
    margin: 5px 0;
}

    .main_footer > article ul li a {
        color: #FFF;
    }

        .main_footer > article ul li a:hover {
            text-decoration: underline;
        }

.main_footer_rights {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #f7f7f7;
    border-top: 1px solid #ebebeb;
    font-size: 0.9em;
    color: #666;
    font-weight: 300;
}


/* Páginas internas */

.main_cta_pages {
    display: flex;
    width: 100%;
    background-color: #2E74BA;
}

.main_cta_pages_content {
    width: 1400px;
    margin: 0 auto;
}

.main_cta_pages_content_container {
    margin-bottom: 15px;
    border-bottom: 1px solid #fff;
}

    .main_cta_pages_content_container a {
        color: #fff;
        text-transform: uppercase;
    }

.main_cta_pages_content .logo {
    flex-basis: 330px;
    margin-top: 15px;
    padding: 5px;
}

    .main_cta_pages_content .logo img {
        margin-right: 60px;
        height: 60px;
    }

.main_cta_pages_content_menu {
    flex-basis: calc(100% - 330px);
    display: flex;
    justify-content: flex-end;
}

    .main_cta_pages_content_menu .main_cta_content_pages_menu_list {
        margin-top: 50px;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .main_cta_pages_content_menu ul {
        display: table-row;
        padding: 0;
        z-index: 1;
        text-decoration: none;
    }

        .main_cta_pages_content_menu ul a {
            display: flex;
            padding: 20px 15px;
            text-transform: uppercase;
            font-size: 0.8em;
            font-weight: bold;
            color: #FFF;
            margin-bottom: -8px;
        }

        .main_cta_pages_content_menu ul li {
            display: inline-block;
            display: table-cell;
            list-style-type: none;
        }

        .main_cta_pages_content_menu ul ul {
            display: none;
            position: absolute;
            background: #00446B;
            width: 14%;
        }

            .main_cta_pages_content_menu ul ul li {
                width: 100%;
                display: inline-block;
                border-top: 1px solid #fff;
            }

                .main_cta_pages_content_menu ul ul li a {
                    font-size: 0.8em;
                }

                    .main_cta_pages_content_menu ul ul li a:hover {
                        text-decoration: underline;
                    }

        .main_cta_pages_content_menu ul li:hover > ul {
            display: block;
        }

.main_cta_pages_content .main_cta_pages_content_menu ul li a:hover {
    width: 100%;
}

.main_pages_sub {
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/images/portal/bg_page_interna.png');
    background-size: cover;
}

.main_pages_sub_content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.main_pages_sub .main_pages_sub_header {
    flex-basis: 100%;
    margin: 80px 0;
}

.main_pages_sub .main_pages_sub_header_vinheta {
    width: 100%;
    background-color: #003f866b;
}

.main_pages_sub .main_pages_sub_header .main_pages_sub_header_vinheta h1 {
    color: #fff;
    padding: 5px;
    font-size: 1.8em;
    margin-left: 70px;
    text-transform: uppercase;
}

.main_pages_content {
    width: 100%;
    background: #f7f7f7;
}

.main_pages_content_t {
    max-width: calc(1300px - 40px);
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main_pages_content p {
    flex-basis: 100%;
    margin: 60px 0;
    line-height: 1.6em;
}

.main_pages_content_t_news {
    max-width: calc(1300px - 70px);
    padding: 35px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main_pages_content_t_news_title {
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
}

.main_pages_content_t_news_desc {
    font-size: 1.1em;
    font-weight: 400;
    text-align: center;
}

.main_pages_content_t_news p {
    color: #666666;
    margin: 15px;
}

p.content_news_date {
    font-weight: 600;
    color: #666666;
}

.main_pages_content_info {
    max-width: calc(1300px - 145px);
    padding: 40px 20px 0 20px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.main_pages_content_info_orgao {
    width: 100%;
}

    .main_pages_content_info_orgao p {
        flex-basis: 100%;
        margin: 10px 0;
        line-height: 1.6em;
        color: #666666;
    }

        .main_pages_content_info_orgao p span {
            font-weight: 600;
        }

h3.main_pages_content_info_title {
    color: #666666;
    font-size: 1.4em;
    margin: 40px 0;
}


/*  Slider */

.skdslider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    max-height: 690px;
    background: #0D6CC4;
}

    .skdslider ul.slides {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .skdslider ul.slides li {
            display: none;
        }

            .skdslider ul.slides li img {
                width: 100%;
                height: 100%;
                border: 0;
            }

    .skdslider ul.slide-navs {
        bottom: 130px;
        left: 50%;
        position: absolute;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .skdslider ul.slide-navs li {
            display: none;
            float: left;
            background: url("/images/portal/slide-bg.png") no-repeat scroll 0 0 transparent;
            height: 12px;
            width: 12px;
            margin-right: 4px;
            cursor: pointer;
        }

            .skdslider ul.slide-navs li.current-slide {
                background: url("/images/portal/slide-bg-active.png") no-repeat scroll 0 0 transparent;
            }

    .skdslider .slide-desc {
        left: 10%;
        padding: 0 15px 0 15px;
        position: absolute;
        bottom: 35%;
        max-width: 85%;
        display: inline-block;
    }

        .skdslider .slide-desc > h2 {
            font-size: 2em;
            font-weight: 700;
            text-align: left;
            padding-top: 50px;
            width: 70%;
        }

            .skdslider .slide-desc > h2 > a {
                color: #fff;
                text-decoration: none;
            }

                .skdslider .slide-desc > h2 > a:hover {
                    text-decoration: underline;
                }

        .skdslider .slide-desc > p {
            font-size: 1.4em;
            color: yellow;
            font-weight: 400;
            text-align: left;
            margin: 20px 0;
            width: 70%;
        }

            .skdslider .slide-desc > p a.more {
                color: #FFF;
                font-size: 20px;
                text-decoration: none;
            }

                .skdslider .slide-desc > p a.more:hover {
                    text-decoration: underline;
                }

    .skdslider a.prev {
        background: url("/images/portal/left.png") no-repeat scroll 0 0 transparent;
        width: 35px;
        height: 35px;
        display: block;
        cursor: pointer;
        position: absolute;
        top: 55%;
        left: 2%;
    }

    .skdslider a.next {
        background: url("/images/portal/right.png") no-repeat scroll 0 0 transparent;
        width: 35px;
        height: 35px;
        display: block;
        cursor: pointer;
        position: absolute;
        top: 55%;
        right: 2%;
    }

    .skdslider a.prev:hover {
    }

    .skdslider a.next:hover {
    }

    .skdslider a.play {
        background: url("/images/portal/play.png") no-repeat scroll center center transparent;
        width: 35px;
        height: 35px;
        display: none;
        cursor: pointer;
        position: absolute;
        top: 50%;
        left: 48%;
        margin-top: -17px;
    }

    .skdslider a.pause {
        background: url("/images/portal/pause.png") no-repeat scroll center center transparent;
        width: 35px;
        height: 35px;
        display: none;
        cursor: pointer;
        position: absolute;
        top: 50%;
        left: 48%;
        margin-top: -17px;
    }

/* Acessibilidade */

#font-setting-buttons {
    width: 200px;
}

    #font-setting-buttons .btn-group {
        text-align: center;
    }

        #font-setting-buttons .btn-group .title {
            font-size: 1em;
        }

        #font-setting-buttons .btn-group button {
            font-size: 1em;
            margin: 10px 0;
            background: #fff;
            padding: 5px;
            color: #000;
            border-radius: 8px;
            border: none;
        }

            #font-setting-buttons .btn-group button:hover {
                background-color: #2E74BA;
                color: white;
            }

.popover__wrapper {
    position: relative;
    display: inline-block;
}

.popover__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -100px;
    transform: translate(0, 10px);
    background-color: #bfbfbf;
    padding: 1.5rem;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    width: auto;
    margin-top: 28px;
}

    .popover__content:before {
        position: absolute;
        z-index: -1;
        content: "";
        right: calc(50% - 15px);
        top: -8px;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent #bfbfbf transparent;
        transition-duration: 0.3s;
        transition-property: transform;
    }

.popover__wrapper:hover .popover__content {
    z-index: 99999999;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.popover__message {
    text-align: center;
}


/* Form */

* {
    box-sizing: border-box;
}

#form input[type=text],
#form input[type=email],
#form input[type=date],
#form select,
#form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    background-color: #f3f6f9;
    border-color: #f3f6f9;
    font-size: 0.9rem;
    color: #666666;
    -webkit-transition: color .15s ease, background-color .15s ease, border-color .15s ease, -webkit-box-shadow .15s ease;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, -webkit-box-shadow .15s ease;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, -webkit-box-shadow .15s ease;
}

    #form input[type=text]:focus,
    #form input[type=date]:focus,
    #fome select:focus,
    #form textarea:focus {
        border-color: #575e6545;
        outline: 0;
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(158 164 175 / 60%)
    }

.row label {
    padding: 12px 4px 4px 50px;
    display: inline-block;
    font-size: 0.98rem;
    font-weight: 400;
    color: #666666;
}

input[type=submit], input[type=button], .btn-default {
    background-color: #346399;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

input[type=submit], input[type=button], .btn-default {
    background-color: #2E74BA;
}

.form-container {
    width: 95%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 2px solid #ebedf3;
    border-radius: .85rem;
    padding: 20px;
    margin: 50px;
}

    .form-container > span {
        font-size: 1.8em;
        margin-bottom: 4px;
        text-align: right;
        color: #00446b;
        margin-left: 8px;
    }

.wrapper {
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper-left {
    margin-top: 50px;
    display: flex;
}

.col-3 {
    float: left;
    width: 3%;
    margin-top: 6px;
}

.col-5 {
    float: left;
    width: 5%;
    margin-top: 6px;
}

.col-10 {
    float: left;
    width: 10%;
    margin-top: 6px;
}

.col-15 {
    float: left;
    width: 15%;
    margin-top: 6px;
}

.col-20 {
    float: left;
    width: 20%;
    margin-top: 6px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-30 {
    float: left;
    width: 30%;
    margin-top: 6px;
}

.col-40 {
    float: left;
    width: 40%;
    margin-top: 6px;
}

.col-45 {
    float: left;
    width: 45%;
    margin-top: 6px;
}

.col-50 {
    float: left;
    width: 50%;
    margin-top: 6px;
}

.col-center {
    float: left;
    padding-left: 10px;
    padding-top: 8px;
}

.col-60 {
    float: left;
    width: 60%;
    margin-top: 6px;
}

.col-65 {
    float: left;
    width: 65%;
    margin-top: 6px;
}

.col-70 {
    float: left;
    width: 70%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

.col-80 {
    float: left;
    width: 80%;
    margin-top: 6px;
}


/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}

.focus {
    background: yellow;
    color: #000;
    border: 1px solid red;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 900px) {
    .col-20,
    .col-75,
    input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}


/* Modal */


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 150px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.modal-content-table {
    position: relative;
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.align-button {
    text-align: center;
}


    .align-button span {
        font-size: 18px;
    }


/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}


/* The Close Button */

.close {
    color: white;
    float: right;
    font-size: 28px;
    margin-top: -10px;
}

    .close:hover,
    .close:focus {
        text-decoration: none;
        cursor: pointer;
    }

.modal-header {
    padding: 20px;
    background-color: #666666;
    color: white;
}

.modal-body {
    padding: 10px 30px;
}

    .modal-body > p {
        color: #666666;
        font-size: 1em;
        font-weight: 400;
        padding: 10px;
    }

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}


/* Table */

.container-table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 33px 30px;
}

.wrap-table {
    border-radius: 0.85em;
    border: 2px solid #ebedf3;
    border-bottom: none;
    overflow: hidden;
    margin-bottom: 30px;
}

.table {
    max-width: 1280px;
    display: table;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .table {
        display: block;
    }
}

.row-table {
    display: table-row;
    background: #fff;
}

    .row-table.header {
        color: #666666;
    }

.title-orgao {
    font-size: 1.6em;
    color: #666666;
    margin: 20px;
    padding-left: 20px;
}

    .title-orgao span {
        font-weight: 600;
        margin-left: 20px;
    }

@media screen and (max-width: 768px) {
    .wrap-table {
        width: 90%;
    }

    .row-table {
        display: block;
    }

        .row-table.header {
            padding: 0;
            height: 0px;
        }

            .row-table.header .cell {
                display: none;
            }

        .row-table .cell:before {
            font-size: 14px;
            color: #808080;
            line-height: 1.2;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 13px;
            content: attr(data-title);
            min-width: 98px;
            display: block;
        }

        .row-table .cell:nth-child(1) {
            max-width: 100% !important;
        }

        .row-table .cell:nth-child(2) {
            max-width: 100% !important;
        }

        .row-table .cell:nth-child(3) {
            max-width: 100% !important;
        }

        .row-table .cell:nth-child(4) {
            max-width: 100% !important;
        }

        .row-table .cell:nth-child(5) {
            max-width: 100% !important;
        }

        .row-table .cell:nth-child(6) {
            max-width: 100% !important;
        }

        .row-table .cell:nth-child(7) {
            max-width: 100% !important;
        }

        .row-table .cell:nth-child(8) {
            max-width: 100% !important;
        }

        .row-table .cell:nth-child(9) {
            max-width: 100% !important;
        }

    .table,
    .row-table {
        width: 100% !important;
    }
}

.cell {
    display: table-cell;
    padding: 0 15px;
}

@media screen and (max-width: 768px) {
    .cell {
        display: block;
    }
}

.row-table {
    font-size: 15px;
    color: #666666;
    line-height: 1.2;
    font-weight: unset !important;
    vertical-align: middle;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f2f2f2;
}

.cell {
    font-size: 15px;
    color: #666666;
    line-height: 1.2em;
    font-weight: unset !important;
    vertical-align: middle;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f2f2f2;
    word-wrap: break-word
}

.cell-full {
    font-size: 15px;
    color: #666666;
    line-height: 1.2em;
    font-weight: unset !important;
    vertical-align: middle;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f2f2f2;
    word-wrap: break-word
}

.cell-link {
    text-decoration: underline;
}

.row-table.header .cell {
    font-size: 15px;
    font-weight: 600 !important;
    color: #666666;
    line-height: 1.1em;
    vertical-align: middle;
    padding-top: 19px;
    padding-bottom: 19px;
}

.cell-full {
    font-size: 15px;
    font-weight: 600 !important;
    color: #666666;
    line-height: 1.1em;
    vertical-align: middle;
    padding-top: 19px;
    padding-bottom: 19px;
}

.row-table .cell:nth-child(1) {
    max-width: 140px;
    padding-left: 20px;
}

.row-table .cell:nth-child(2) {
    max-width: 140px;
}

.row-table .cell:nth-child(3) {
    max-width: 140px;
}

.row-table .cell:nth-child(4) {
    max-width: 185px;
}

.row-table .cell:nth-child(5) {
    max-width: 140px;
}

.row-table .cell:nth-child(6) {
    max-width: 140px;
}

.row-table .cell:nth-child(7) {
    max-width: 140px;
}

.row-table .cell:nth-child(8) {
    max-width: 140px;
}

.row-table .cell:nth-child(9) {
    max-width: 140px;
}

.table,
.row-table {
    width: 1040px;
}

@media (max-width: 768px) {
    .row-table {
        border-bottom: 2px solid #f2f2f2;
        padding-bottom: 18px;
        padding-top: 30px;
        padding-right: 15px;
        margin: 0;
    }

        .row-table .cell {
            border: none;
            padding-left: 30px;
            padding-top: 16px;
            padding-bottom: 16px;
        }

            .row-table .cell:nth-child(1) {
                padding-left: 30px;
            }

        .row-table .cell {
            font-size: 15px;
            color: #666666;
        }

    .table,
    .row-table,
    .cell {
        width: 100% !important;
    }
}


/* Pagination */

.pagination {
    display: inline-block;
    padding: 20px;
    float: right;
}

    .pagination a {
        color: #666666;
        float: left;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color .3s;
        border: 1px solid #ddd;
        ] margin: 0 4px;
    }

        .pagination a.active {
            background-color: #346399;
            color: white;
            border: 1px solid #346399;
        }

        .pagination a:hover:not(.active) {
            background-color: #ddd;
        }


/* Breadcrumb */

nav.breadcrumb {
    width: 100%;
    padding: 0.8em 5em;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 4px;
    background: #fff;
}

    nav.breadcrumb ol {
        margin: 0;
        padding-left: 0;
        list-style: none;
    }

    nav.breadcrumb li {
        display: inline;
        color: #666666;
    }

        nav.breadcrumb li a {
            display: inline;
            color: #2E74BA;
            font-weight: 500;
        }

        nav.breadcrumb li + li::before {
            display: inline-block;
            margin: 0 0.25em;
            transform: rotate(15deg);
            border-right: 0.1em solid currentColor;
            height: 0.8em;
            content: '';
        }

    nav.breadcrumb [aria-current="page"] {
        color: #666666;
        font-weight: 500;
        text-decoration: none;
    }

@media (max-width: 48em) {
    nav.breadcrumb {
        padding: 1em 0.4em;
    }
}


/* Datatable */

.container-datatable {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 33px 30px;
}

.wrap-datatable {
    width: 95%;
    border-radius: 0.85em;
    border: 2px solid #ebedf3;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
}

.dataTables_wrapper {
    background: #fff;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
    background-color: #f9f9f9;
    text-align: center;
}

table.dataTable.stripe tbody tr.even,
table.dataTable.display tbody tr.even {
    background-color: #f9f9f9;
    text-align: center;
}

table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
    background-color: #ffffff !important;
}

table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
    background-color: #ffffff !important;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
    background-color: #ffffff !important;
}

table.dataTable.stripe tbody tr.even,
table.dataTable.display tbody tr.even {
    background-color: #ffffff !important;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd a {
    color: #346399;
    font-weight: 400;
}

table.dataTable.stripe tbody tr.even,
table.dataTable.display tbody tr.even a {
    color: #346399;
    font-weight: 400;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #f2f2f2 !important;
}

table.dataTable thead th,
table.dataTable thead td {
    font-size: 14px;
    font-weight: 600 !important;
    color: #666666;
    line-height: 1.2em;
    border-bottom: 2px solid #f2f2f2 !important;
}

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td,
table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
    font-size: 14px;
    font-weight: 400 !important;
    color: #666666;
    line-height: 1.2em;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
    font-size: 14px;
    font-weight: 400 !important;
    color: #666666;
    line-height: 1.2em;
}

h3.title-table {
    padding: 30px;
    font-size: 1.6em;
    text-align: center;
    color: #666666;
}

span.icon-book {
    font-size: 14px;
    color: #346399;
    margin-left: 10px;
}

span.icon-hammer2 {
    font-size: 18px;
    color: #346399;
    margin-left: 10px;
}

span.icon-radio-unchecked {
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

span.icon-trophy {
    font-size: 20px;
    font-weight: 700;
    vertical-align: middle;
    color: #c5c500;
}

span.icon-star-full {
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
    color: #c5c500;
}

span.icon-search {
    font-size: 16px;
    font-weight: 700;
    vertical-align: middle;
    color: #fff;
}

span.icon-eye:before {
    margin-right: 0;
    font-size: 16px;
    color: #666;
    vertical-align: middle;
}

span.icon-download:before {
    margin-right: 0;
    font-size: 16px;
    color: #666;
    vertical-align: middle;
}

table.dataTable {
    padding: 0px!important;
}

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: none!important;
    border-collapse: separate;
    border-spacing: 0;
}

.dataTables_wrapper .dataTables_filter input {
    padding: 12px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    resize: vertical !important;
    background-color: #f3f6f9 !important;
    border-color: #f3f6f9 !important;
    font-size: 0.9rem !important;
    color: #666666 !important;
    -webkit-transition: color .15s ease, background-color .15s ease, border-color .15s ease, -webkit-box-shadow .15s ease !important;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, -webkit-box-shadow .15s ease !important;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease !important;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, -webkit-box-shadow .15s ease !important;
}

    .dataTables_wrapper .dataTables_filter input:focus {
        border-color: #575e6545;
        outline: 0;
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(158 164 175 / 60%)
    }

.dataTables_wrapper .dataTables_filter label {
    font-size: 0.98rem;
    font-weight: 400;
    color: #666666;
}

.dataTables_wrapper .dataTables_length label {
    font-size: 0.98rem;
    font-weight: 400;
    color: #666666;
}

.dataTables_wrapper .dataTables_info {
    font-size: 0.98rem;
    font-weight: 400;
    color: #666666 !important;
}


/* Alertas */

.alert-danger {
    color: #712b29;
    background-color: #f7dddc;
    border-color: #f4cfce;
}

.alert {
    width: 149px;
    margin-top: 5px;
    padding: .70rem 1.20rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-success {
    color: #a92824;
    background-color: #ccf1e3;
    border-color: #b8ebd8;
}

#button:disabled,
#button[disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

.red-border {
    border: 1px solid #f70f07 !important;
}

.green {
    color: green;
}

.red {
    color: red !important;
}


/* Table Legenda */

.container-legenda {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.wrap-legenda {
    border-radius: 0.85em;
    overflow: hidden;
    margin-bottom: 30px;
    background: #666666;
}

.legenda {
    max-width: 1400px;
    display: table;
}

.date-legenda {
    color: #666666;
    font-weight: 500;
    padding: 5px;
    width: 1110px;
    display: flex;
    justify-content: flex-end
}

@media screen and (max-width: 768px) {
    .legenda {
        display: block;
    }
}

.row-legenda {
    display: table-row;
    background: #fff;
}

    .row-legenda .header-legenda {
        color: #666666;
    }

.title-legenda {
    font-size: 1.3em;
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
}

    .title-legenda span {
        font-weight: 600;
        margin-left: 20px;
    }

@media screen and (max-width: 768px) {
    .wrap-legenda {
        width: 90%;
    }

    .row-legenda {
        display: block;
    }

        .row-legenda.header-legenda {
            padding: 0;
            height: 0px;
        }

        .row-legenda.header .cell-legenda {
            display: none;
        }

        .row-legenda .cell-legenda:before {
            font-size: 14px;
            color: #808080;
            line-height: 1.2;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 13px;
            content: attr(data-title);
            min-width: 98px;
            display: block;
        }

        .row-legenda .cell-legenda:nth-child(1) {
            max-width: 100% !important;
        }

        .row-legenda .cell-legenda:nth-child(2) {
            max-width: 100% !important;
            padding-left: 30px !important;
        }

        .row-legenda .cell-legenda:nth-child(3) {
            max-width: 100% !important;
        }

        .row-legenda .cell-legenda:nth-child(4) {
            max-width: 100% !important;
        }

        .row-legenda .cell-legenda:nth-child(5) {
            max-width: 100% !important;
        }

        .row-legenda .cell-legenda:nth-child(6) {
            max-width: 100% !important;
        }

        .row-legenda .cell-legenda:nth-child(7) {
            max-width: 100% !important;
        }

        .row-legenda .cell-legenda:nth-child(8) {
            max-width: 100% !important;
        }

        .row-legenda .cell-legenda:nth-child(9) {
            max-width: 100% !important;
        }

    .legenda,
    .row-legenda {
        width: 100% !important;
    }
}

.cell-legenda {
    display: table-cell;
    padding: 0 15px;
}

@media screen and (max-width: 768px) {
    .cell-legenda {
        display: block;
    }
}

.cell-legenda {
    font-size: 15px;
    color: #666666;
    line-height: 1em;
    vertical-align: middle;
    padding-top: 12px;
    padding-bottom: 12px;
    word-wrap: break-word
}

.cell-legenda-full {
    font-size: 15px;
    color: #666666;
    line-height: 1.2em;
    font-weight: unset !important;
    vertical-align: middle;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f2f2f2;
    word-wrap: break-word
}

.cell-legenda-link {
    text-decoration: underline;
}

.row-legenda.header-legenda .cell-legenda {
    font-size: 15px;
    font-weight: 600 !important;
    color: #666666;
    line-height: 1.1em;
    vertical-align: middle;
    padding-top: 19px;
    padding-bottom: 19px;
}

.cell-legenda-full {
    font-size: 15px;
    font-weight: 600 !important;
    color: #666666;
    line-height: 1.1em;
    vertical-align: middle;
    padding-top: 19px;
    padding-bottom: 19px;
}

.row-legenda .cell-legenda:nth-child(1) {
    max-width: 140px;
    padding-left: 80px;
    font-weight: 600;
    font-size: 16px;
}

.row-legenda .cell-legenda:nth-child(2) {
    max-width: 140px;
    padding-left: 80px;
}

.row-legenda .cell-legenda:nth-child(3) {
    max-width: 140px;
    padding-left: 30px;
}

.row-legenda .cell-legenda:nth-child(4) {
    max-width: 185px;
}

.row-legenda .cell-legenda:nth-child(5) {
    max-width: 140px;
}

.row-legenda .cell-legenda:nth-child(6) {
    max-width: 140px;
}

.row-legenda .cell-legenda:nth-child(7) {
    max-width: 140px;
}

.row-legenda .cell-legenda:nth-child(8) {
    max-width: 140px;
}

.row-legenda .cell-legenda:nth-child(9) {
    max-width: 140px;
}

.legenda,
.row-legenda {
    width: 1110px;
}

@media (max-width: 768px) {
    .row-legenda {
        border-bottom: 2px solid #f2f2f2;
        padding-right: 15px;
        margin: 0;
    }

        .row-legenda .cell-legenda {
            border: none;
            padding-left: 30px;
        }

            .row-legenda .cell-legenda:nth-child(1) {
                padding-left: 30px;
            }

        .row-legenda .cell-legenda {
            font-size: 15px;
            color: #666666;
        }

    .legenda,
    .row-legenda,
    .cell-legenda {
        width: 100% !important;
    }
}


/* Table Chat */

.container-chat {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    width: 100%;
}

.wrap-chat {
    border-radius: 0.85em;
    overflow: hidden;
    margin-bottom: 30px;
    background: #666666;
}

.chat {
    max-width: 1400px;
    display: flex;
}

.chat-date {
    width: 100%;
}

.date-chat {
    color: #666666;
    font-weight: 400;
    padding: 10px;
    width: 1110px;
    display: flex;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    .chat {
        display: block;
    }
}

.row-chat {
    display: table-row;
    background: #fff;
}

    .row-chat .header-chat {
        color: #666666;
    }

.title-chat {
    font-size: 1.3em;
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
}

    .title-chat span {
        font-weight: 600;
        margin-left: 20px;
    }

@media screen and (max-width: 768px) {
    .wrap-chat {
        width: 90%;
    }

    .row-chat {
        display: block;
    }

        .row-chat.header-chat {
            padding: 0;
            height: 0px;
        }

        .row-chat.header .cell-chat {
            display: none;
        }

        .row-chat .cell-chat:before {
            font-size: 14px;
            color: #808080;
            line-height: 1.2;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 13px;
            content: attr(data-title);
            min-width: 98px;
            display: block;
        }

        .row-chat .cell-chat:nth-child(1) {
            max-width: 100% !important;
        }

        .row-chat .cell-chat:nth-child(2) {
            max-width: 100% !important;
        }

        .row-chat .cell-chat:nth-child(3) {
            max-width: 100% !important;
        }

        .row-chat .cell-chat:nth-child(4) {
            max-width: 100% !important;
        }

        .row-chat .cell-chat:nth-child(5) {
            max-width: 100% !important;
        }

        .row-chat .cell-chat:nth-child(6) {
            max-width: 100% !important;
        }

        .row-chat .cell-chat:nth-child(7) {
            max-width: 100% !important;
        }

        .row-chat .cell-chat:nth-child(8) {
            max-width: 100% !important;
        }

        .row-chat .cell-chat:nth-child(9) {
            max-width: 100% !important;
        }

    .chat,
    .row-chat {
        width: 100% !important;
    }
}

.cell-chat {
    display: table-cell;
    padding: 0 15px;
}

@media screen and (max-width: 768px) {
    .cell-chat {
        display: block;
    }
}

.cell-chat {
    font-size: 15px;
    color: #666666;
    line-height: 1em;
    vertical-align: middle;
    padding-top: 12px;
    padding-bottom: 12px;
    word-wrap: break-word
}

.cell-chat-full {
    font-size: 15px;
    color: #666666;
    line-height: 1.2em;
    font-weight: unset !important;
    vertical-align: middle;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f2f2f2;
    word-wrap: break-word
}

.chat,
.row-chat {
    width: 1110px;
}

#divExibeChat {
    width: 100%;
    padding: 20px;
}

@media (max-width: 768px) {
    .row-chat {
        border-bottom: 2px solid #f2f2f2;
        padding-bottom: 18px;
        padding-top: 30px;
        padding-right: 15px;
        margin: 0;
    }

        .row-chat .cell-chat {
            border: none;
            padding-left: 30px;
            padding-top: 16px;
            padding-bottom: 16px;
        }

            .row-chat .cell-chat:nth-child(1) {
                padding-left: 30px;
            }

        .row-chat .cell-chat {
            font-size: 15px;
            color: #666666;
        }

    .chat,
    .row-chat,
    .date-chat {
        width: 100% !important;
    }

    h3.main_pages_content_info_title {
        font-size: 1em;
    }

    .date-legenda {
        font-size: 0.8em;
        margin-right: 10%;
    }
}


/* Table Objetos */

.container-edital {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    width: 100%;
}

.wrap-edital {
    border-radius: 0.85em;
    overflow: hidden;
    margin-bottom: 30px;
    background: #666666;
}

.edital {
    max-width: 1400px;
    display: flex;
}

.item-edital {
    border-bottom: 1px solid #ddd;
    margin: 0 10px 20px 10px;
    table-layout: fixed;
}

.lote-edital {
    border-bottom: 1px solid #ddd;
    margin: 0 10px 20px 10px;
    table-layout: fixed;
}

.edital-title {
    margin: 10px;
    padding: 40px;
    color: #FFF;
    vertical-align: middle;
    height: 120px;
    text-transform: uppercase;
}

.edital-title-modal {
    width: 100%;
    height: 40px;
    color: #FFF;
    vertical-align: middle;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.item-edital-table {
    border-collapse: collapse;
    width: 100%;
}

.lote-edital-table {
    border-collapse: collapse;
    width: 100%;
}

.item-data-edital {
    border-collapse: collapse;
    width: 100%;
}

.lote-data-edital {
    border-collapse: collapse;
    width: 100%;
}

.lote-modal-item {
    margin: 10px 0 25px 0;
}

.edital-title-item-header {
    border-bottom: 1px solid #fff;
    font-size: 1.1em;
    color: #666666;
    font-weight: 500;
    margin: 10px;
    vertical-align: middle;
    text-align: center;
    padding: 0 3px;
}

.edital-title-item-modal {
    border-bottom: 1px solid #fff;
    font-size: 1em;
    font-weight: 500;
    margin: 30px;
    vertical-align: middle;
    text-align: center;
    padding: 0 3px;
    height: 30px;
}

.edital-title-blue {
    background-color: #25416F;
}

.edital-title-light-blue {
    background-color: #3762a8;
    color: #fff;
}

.edital-title-orange {
    background-color: rgba(226, 76, 13, 1);
}

.title-sub-item {
    padding: 6px;
    font-size: 1em;
    color: #666666;
    vertical-align: middle;
    text-align: center;
}

.title-sub-item-header {
    padding: 6px;
    font-size: 1em;
    color: #FFF;
    vertical-align: middle;
    text-align: center;
}

.title-header {
    background-color: #b7b7b7;
    color: #666666;
}

.title-header-item {
    font-size: 0.9em;
    padding: 7px;
}

.title-sub-item-l {
    text-align: left;
}

.title-header-sub > div {
    font-size: 1em;
    color: #666666;
    display: block;
}

    .title-header-sub > div > span {
        margin-left: 10px;
    }

}

.titulo-subtitulo {
    margin: 20px 0;
}

table#item-edital-table {
    margin: 40px 0 0 0;
    border-collapse: collapse;
}

table.table-data-edital {
    margin: 0;
    border-collapse: collapse;
}

.row-edital {
    display: table-row;
    background: #fff;
}

    .row-edital .header-edital {
        color: #666666;
    }

.title-edital {
    font-size: 1.3em;
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
}

    .title-edital span {
        font-weight: 600;
        margin-left: 20px;
    }


.cell-edital {
    display: table-cell;
    padding: 0 15px;
}

.cell-edital {
    font-size: 15px;
    color: #666666;
    line-height: 1em;
    vertical-align: middle;
    padding-top: 12px;
    padding-bottom: 12px;
    word-wrap: break-word
}

.cell-edital-full {
    font-size: 15px;
    color: #666666;
    line-height: 1.2em;
    font-weight: unset !important;
    vertical-align: middle;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f2f2f2;
    word-wrap: break-word
}

.edital,
.row-edital {
    width: 1110px;
}

.btn {
    background-color: #E24C0D; /* Green */
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    padding: 7px;
    cursor: pointer;
    vertical-align: middle;
    border-radius: 5px;
}

    .btn:hover {
        box-shadow: 0 12px 16px 0 rgb(0 0 0 / 9%), 0 17px 50px 0 rgb(0 0 0 / 10%)
    }


/* Menu Resposivo */
.nav .menu {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100%;
    position: relative;
    line-height: 70px;
    font-size: 14px;
    background: rgba(0, 229, 226, 0.8);
}

@media screen and (min-width: 992px) {
    .menu {
        background: rgba(0, 229, 226, 0.8);
        height: 70px;
        min-height: auto;
        position: fixed;
    }
}

.menu a.active-parent {
    background: #FFF;
    color: #00446B;
}

@media screen and (min-width: 992px) {
    .menu > ul > .menu__item.to-left > ul {
        right: 0;
    }

    .menu ul > .menu__sub-menu__item.to-left > ul {
        left: -300px;
    }

    .menu .menu__sub-menu.to-left-ul > li > a {
        text-align: right;
    }

        .menu .menu__sub-menu.to-left-ul > li > a .arrow {
            text-align: right;
            transform: rotate(135deg);
            right: auto;
            left: 0;
        }
}

.menu > ul {
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 992px) {
    .menu > ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

.menu > ul > li > a {
    padding: 0 30px;
}

.menu__item {
    position: relative;
    border-bottom: 1px solid #FFF;
    line-height: 50px;
    position: relative;
    list-style: none;
}

@media screen and (min-width: 992px) {
    .menu__item {
        border-bottom: none;
        line-height: 70px;
    }
}

.menu__item a .arrow {
    transform: rotate(-45deg);
    width: 50px;
    text-align: center;
    position: absolute;
    right: 0;
    display: inline-block;
    transition: transform 0.3s;
}

@media screen and (min-width: 992px) {
    .menu__item a .arrow {
        width: auto;
        margin: 0 10px;
    }
}

.menu__item a .arrow:before {
    border: solid #a7a7a7;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    content: '';
}

.menu__item a .arrow.open {
    transform: rotate(45deg);
}

@media screen and (min-width: 992px) {
    .menu__item > a .arrow {
        transform: rotate(45deg);
    }
}

.menu__item a {
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    position: relative;
    font-weight: 300 !important;
    transform: translate(0, 0) !important;
    background: #00446B;
    color: #FFF;
    text-transform: uppercase;
}

    .menu__item a:hover {
        background: #FFF;
        color: #00446B;
    }

        .menu__item a:hover .arrow:before {
            border: solid #00446B;
            border-width: 0 2px 2px 0;
        }

.menu__link {
    font-weight: 300 !important;
    transform: translate(0, 0) !important;
}

.menu__sub-menu {
    margin: 0;
    padding: 0;
    text-align: left;
    background: #00b2b0;
    pointer-events: none;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    position: relative;
}

@media screen and (min-width: 992px) {
    .menu__sub-menu {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        top: 70px;
        pointer-events: none;
        transition: all 0.3s;
        transform: translate(0, 60px);
        z-index: 999;
    }
}

.menu__sub-menu a .arrow {
    display: inline-block;
    margin-left: 10px;
    transform: rotate(-45deg);
}

    .menu__sub-menu a .arrow:before {
        border: solid white;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 2px;
        content: '';
    }

.menu__sub-menu.open {
    visibility: visible;
    opacity: 1;
    display: block;
    pointer-events: auto;
    transform: translate(0, 0);
}

.menu__sub-menu__item {
    display: block;
    width: 300px;
    position: relative;
    min-width: 100%;
}

@media screen and (min-width: 992px) {
    .menu__sub-menu__item {
        line-height: 50px;
        height: 50px;
        padding-right: 0;
    }
}

.menu__sub-menu__item a {
    display: block;
    font-size: 13px;
    font-weight: normal;
    text-align: left;
    background: #2E74BA;
    color: white;
}

    .menu__sub-menu__item a:hover {
        background: #00446B;
        color: white;
        font-weight: normal;
    }

        .menu__sub-menu__item a:hover .arrow:before {
            border: solid white;
            border-width: 0 2px 2px 0;
        }

.menu__sub-menu .menu__sub-menu {
    top: 0;
    left: 0;
    position: relative;
}

@media screen and (min-width: 992px) {
    .menu__sub-menu .menu__sub-menu {
        top: 0;
        left: 300px;
        transition: all 0.3s;
        transform: translate(-60px, 0);
        position: absolute;
    }
}

.menu__sub-menu .menu__sub-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}

.menu__sub-menu > li > a {
    padding-left: 2em;
}

.menu__sub-menu li ul a {
    padding-left: 3em;
}

.menu__sub-menu li ul li ul a {
    padding-left: 4em;
}

.menu__sub-menu li ul li ul li ul a {
    padding-left: 5em;
}

@media screen and (min-width: 992px) {
    .menu__sub-menu li a {
        padding: 0 1em !important;
    }
}

.menu-button {
    padding: 7px;
    background: #FFF;
    border: none;
    cursor: pointer;
    transition: 0s;
    border-radius: 3px;
    width: auto;
    position: absolute;
    top: 29px;
    right: 10px;
}

@media screen and (min-width: 992px) {
    .menu-button.visible-xs {
        display: none;
    }
}

.burger-icon {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .burger-icon,
    .burger-icon::before,
    .burger-icon::after {
        display: block;
        width: 20px;
        height: 5px;
        background-color: #2E74BA;
        outline: 1px solid transparent;
        -webkit-transition-property: background-color, -webkit-transform;
        -moz-transition-property: background-color, -moz-transform;
        -o-transition-property: background-color, -o-transform;
        transition-property: background-color, transform;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }

        .burger-icon::before,
        .burger-icon::after {
            position: absolute;
            content: "";
        }

        .burger-icon::before {
            top: -10px;
        }

        .burger-icon::after {
            top: 10px;
        }

.menu.open .burger-icon {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .menu.open .burger-icon,
    .menu.open .burger-icon::before,
    .menu.open .burger-icon::after {
        display: block;
        width: 30px;
        height: 4px;
        background-color: #222;
        outline: 1px solid transparent;
        -webkit-transition-property: background-color, -webkit-transform;
        -moz-transition-property: background-color, -moz-transform;
        -o-transition-property: background-color, -o-transform;
        transition-property: background-color, transform;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }

        .menu.open .burger-icon::before,
        .menu.open .burger-icon::after {
            position: absolute;
            content: "";
        }

        .menu.open .burger-icon::before {
            top: -10px;
        }

        .menu.open .burger-icon::after {
            top: 10px;
        }

.menu-button.is-active .burger-icon {
    background-color: transparent;
}

    .menu-button.is-active .burger-icon::before {
        -webkit-transform: translateY(10px) rotate(45deg);
        -moz-transform: translateY(10px) rotate(45deg);
        -ms-transform: translateY(10px) rotate(45deg);
        -o-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }

    .menu-button.is-active .burger-icon::after {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }

.menu-content {
    position: absolute;
    height: 100%;
    transform: translate(-100%, 0);
    width: 0;
    overflow: hidden;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .menu-content {
        width: 100%;
        transform: translate(0, 0);
        height: 70px;
        overflow: visible;
    }
}

.menu-content.open {
    transform: translate(0, 0);
    transition: all 0.5s;
    transition-timing-function: cubic-bezier(0.62, 0.04, 0.82, 0.13);
    width: 100%;
    box-shadow: 5px 5px 15px 0 rgb(0 0 0 / 10%);
    margin-top: 100px;
    z-index: 9999;
}

@media screen and (min-width: 992px) {
    .menu-content.open {
        width: 100%;
    }
}

.menu-content.close {
    transform: translate(-100%, 0);
    transition: all 0.5s;
    transition-timing-function: cubic-bezier(0.62, 0.04, 0.82, 0.13);
    text-shadow: none;
    width: 0;
}

@media screen and (min-width: 992px) {
    .menu-content.close {
        width: 100%;
    }
}

.page-content {
    position: relative;
    width: 80%;
}

@media screen and (min-width: 992px) {
    .page-content {
        width: 70%;
        padding: 15%;
    }
}

.page-content__text {
    padding: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5em;
    color: white;
    background: linear-gradient(-90deg, rgba(0, 229, 226, 0.2), #00b2b0);
}

    .page-content__text h1 {
        font-size: 30px;
        line-height: 30px;
        color: white;
    }

@media screen and (min-width: 992px) {
    .page-content__text h1 {
        font-size: 50px;
        line-height: 50px;
    }
}


.table-detail {
    max-width: 1200px;
    display: table;
    margin: 0;
    border-radius: 0.85em;
}

.table-detail-itens {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

    .table-detail-itens caption {
        font-size: 1.4em;
        text-align: center;
        color: #FFF;
        margin: .5em 0 .75em;
        background: #666;
        padding: 5px;
        font-weight: 600;
    }

    .table-detail-itens tr {
        color: #666666;
        padding: .20em;
    }

        .table-detail-itens tr span {
            font-weight: 500;
        }

    .table-detail-itens th {
        font-size: 1em;
        padding: .625em;
        border: none;
    }

    .table-detail-itens td {
        font-size: 1em;
        padding: .625em;
        border: 1px solid #ddd;
    }

    .table-detail-itens th {
        font-size: .85em;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

@media screen and (max-width: 600px) {
    .table-detail-itens {
        border: 0;
    }

        .table-detail-itens caption {
            font-size: 1.3em;
        }

        .table-detail-itens thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

        .table-detail-itens tr {
            display: block;
            margin-bottom: .225em;
        }

        .table-detail-itens td {
            border: 1px solid #ddd;
            display: block;
            font-size: .8em;
            text-align: center;
        }

            .table-detail-itens td::before {
                /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
                content: attr(data-label);
                float: left;
                font-weight: bold;
                text-transform: uppercase;
            }

            .table-detail-itens td:last-child {
                border-bottom: 1px solid #ddd;
            }
}


.table-detail-calendario {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

.table-detail-calendario caption {
    font-size: 1.4em;
    text-align: center;
    color: #FFF;
    margin: .5em 0 .75em;
    background: #666;
    padding: 5px;
    font-weight: 600;
}

.table-detail-calendario tr {
    color: #666666;
    padding: .20em;
}

.table-detail-calendario tr span {
    font-weight: 500;
}

.table-detail-calendario th {
    font-size: 1em;
    padding: .625em;
    border: none;
}

.table-detail-calendario td {
    font-size: 1em;
    padding: .625em;
    border: 1px solid #ddd;
}

.table-detail-calendario th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    .table-detail-calendario {
        border: 0;
    }

    .table-detail-calendario caption {
        font-size: 1.3em;
    }

    .table-detail-calendario thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .table-detail-calendario tr {
        display: block;
        margin-bottom: .225em;
    }

    .table-detail-calendario td {
        border: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: center;
    }

    .table-detail-calendario td::before {
        /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

            .table-detail-calendario td:last-child {
                border-bottom: 1px solid #ddd;
            }
}


.detail {
    max-width: 1200px;
}

.detail-documents {
    max-width: 1200px;
}

.detail h3 {
    font-size: 1.4em;
    text-align: center;
    color: #FFF;
    margin: 1em 0 .75em;
    background: #666;
    padding: 5px;
}

.detail-documents p {
    color: #666;
    ;
    font-size: 1em;
    margin: .5em 0 .75em;
    font-weight: 500;
}

.detail-documents span {
    color: #666;
    font-size: 0.9em;
    font-weight: 400;
}

.detail-documents p > a > span {
    font-size: 1.4em;
    margin: 1em 0 1em;
    padding: 5px;
    margin-right: 40px;
}

.detail-avisos ul {
    list-style-type: none;
}

    .detail-avisos ul li {
        color: #2E74BA;
        font-size: 1em;
        padding-top: 5px;
    }

        .detail-avisos ul li:hover {
            text-decoration: underline;
        }


.detail-question {
    width: 100%;
}

    .detail-question h4 {
        padding: 10px 0;
        color: #666;
        margin-top: 15px;
    }


.container-question {
    display: flex;
    width: 100% margin: 10px 0;
}

.column-q.left {
    width: 100%;
    color: #666;
    padding: 0 10px;
}

.container-question,
.column-q.left {
    vertical-align: middle;
}

    .column-q.left span {
        margin: 0 10px;
        display: block;
    }

.column-q.right {
    width: 8%;
    text-align: center;
}

.column-q.center {
    width: 8%;
    text-align: center;
}

.column-q.center, .column-q.left,
.column-q.right {
    padding: 10px 5px;
    border: 1px solid #fff;
    background: #dcdcdc;
}

.detail-other-documents {
    max-width: 1200px;
}

    .detail-other-documents p {
        color: #666;
        font-size: 1em;
        margin: .5em 0 .75em;
        font-weight: 500;
    }

.container-question .texto {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    -webkit-box-orient: vertical;
}

    .container-question .texto p {
        margin: 0;
    }

.btn-question {
    padding: 5px;
    margin-top: 10px;
    color: #666;
    font-size: 0.9em;
}

.detail-other-documents p > a > span {
    color: #666;
    font-size: 1.4em;
    margin: 1em 0 1em;
    padding: 5px;
    margin-right: 40px;
}


.popup-box {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 500;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

    .popup-box.open {
        visibility: visible;
        opacity: 1;
    }

    .popup-box .popup-content {
        background-color: #ffffff;
        width: 800px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        border-radius: 8px;
    }

    .popup-box .popup-header {
        padding: 15px 40px 15px 15px;
        background: #666666;
        color: #fff;
    }

        .popup-box .popup-header h3 {
            margin: 0;
            color: #E91E63;
            font-size: 20px;
        }

        .popup-box .popup-header .popup-close-icon {
            position: absolute;
            height: 30px;
            width: 30px;
            text-align: center;
            color: #FFFFFF;
            font-size: 28px;
            line-height: 30px;
            right: 5px;
            top: 5px;
            cursor: pointer;
        }

    .popup-box .popup-body {
        padding: 15px;
        max-height: 300px;
        overflow-y: auto;
    }

        .popup-box .popup-body img {
            width: 100%;
            display: block;
            margin-top: 15px;
        }

        .popup-box .popup-body p {
            font-size: 16px;
            color: #555555;
            margin: 0 0 15px;
        }

    .popup-box .popup-footer {
        padding: 15px;
        border-top: 1px solid #dddddd;
        text-align: center;
    }

        .popup-box .popup-footer .btn {
            padding: 8px 15px;
            color: #FFF;
            font-size: 16px;
            cursor: pointer;
            border-radius: 4px;
        }

            .popup-box .popup-footer .btn:focus {
                outline: none;
            }


/*responsive*/

@media(max-width: 767px) {
    .services .service-items .item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .popup-box .popup-content {
        width: calc(100% - 30px);
    }
}


/*Some Responsive CSS */

@media screen and (max-width:767px) {
    .skdslider {
        height: 500px !important;
        margin-top: -90px;
        background: none;
        margin-bottom: -90px;
    }

        .skdslider .slide-desc {
            left: 20%;
            padding: inherit;
            position: absolute;
            bottom: 18%;
            width: 100%;
            display: inline-block;
        }

        .skdslider a.next {
            top: 65%;
        }

        .skdslider a.prev {
            top: 65%;
        }

        .skdslider ul.slide-navs {
            bottom: 15px;
        }

        .skdslider .slide-desc > h2 {
            font-size: 20px;
            margin-bottom: 5px;
            margin-top: 5px;
        }

        .skdslider .slide-desc > p {
            font-size: 14px;
            line-height: 15px;
            margin-top: 5px;
        }

            .skdslider .slide-desc > p a.more {
                font-size: 14px;
            }
}


/* Medias */

@media only screen and (min-width: 960px) {
    .hidedesktop {
        display: none;
    }
}


/* 1024px */

@media (max-width: 64em) {
    .main_cta .main_cta_content h1 {
        font-size: 2.5em;
    }

    .main_cta .main_cta_content .main_cta_content_banner {
        padding: 100px 30px;
    }
}


/* min 1366px */

@media (min-width: 1366em) {
    .main_header_content .main_header_content_menu_acessibilidade {
        margin-right: 20px;
    }
}


/* 768px */

@media (max-width: 48em) {
    .item-edital {
        overflow-x: scroll;
    }

    .lote-modal-item {
        overflow-x: scroll;
    }

    .lote-edital-table {
        overflow-x: scroll;
    }

        .lote-edital-table .lote-modal-item tr th {
            min-width: 200px;
        }

    .lote-data-edital {
        overflow-x: scroll;
    }

    .item-edital td {
        min-width: 400px;
    }

    .lote-edital {
        overflow-x: scroll;
    }

        .lote-edital td {
            min-width: 400px;
        }

    .main_cta_content .logo img {
        height: 60px;
    }

    .edital-title-item-header {
        font-size: 1em !important;
        text-align: left !important;
        padding: 5px;
    }

    .main_cta_content .logo {
        width: 100px;
    }

    .main_header_content_menu {
        display: none !important;
    }

    .main_cta .main_cta_content h1 {
        font-size: 2em;
    }

    .main_cta .main_cta_content .main_cta_content_banner {
        padding: 60px 30px;
    }

    .main_cta .main_cta_content .btn {
        font-size: 0.6em;
    }

    ..main_pages article {
        flex-basis: calc(33% - 10px);
    }

    .main_fornecedor_t_content_title h2 {
        font-size: 1.8em;
    }

    .main_footer_our_pages,
    .main_footer_links {
        flex-basis: calc(50% - 10px);
    }

    .main_footer_about {
        flex-basis: 100%;
        margin-top: 20px;
    }

    .main_cta_content_container {
        border: none;
    }

    .main_cta {
        position: none;
    }

    .main_pages_sub .main_pages_sub_header .main_pages_sub_header_vinheta h1 {
        padding: 20px;
        font-size: 1.2em;
    }

    .main_header_content,
    {
        display: none;
    }

    .main_cta_content_menu .main_cta_content_menu_list,
    .main_header {
        display: none;
    }

    .main_cta_pages_content_menu .main_cta_content_pages_menu_list {
        display: none;
    }

    .main_cta_pages_content_container {
        border: 0;
    }
}


/* 640px */

@media(max-width:40em) {
    .main_sistemas article {
        flex-basis: calc(50% - 10px);
    }

    .main_fornecedor_t_content_title h2 {
        font-size: 1.6em;
    }

    .main_fornecedor_t_content_itens > header {
        font-size: 1.2em;
    }

    .main_fornecedor_t_content_itens > article {
        flex-basis: 100%;
    }
}


/* 540px */

@media (max-width: 36em) {
}

@media (max-width: 31em) {
}


/* 520px */

@media (max-width: 32em) {
}


/* 480px */

@media (max-width: 30em) {
    .main_cta_pages_content .logo img {
        height: 50px;
    }

    .main_header .main_header_content .logo {
        flex-basis: 220px !important;
    }

        .main_header .main_header_content .logo img {
            width: 100% !important;
        }

    .main_sistemas article {
        flex-basis: 100%;
    }

    .main_fornecedor_content article {
        flex-basis: calc(100% - 40px);
        margin: 10px 0;
    }

    .main_cta {
        position: relative;
    }

    .menu-content.open {
        margin-top: 94px !important;
    }
}

 .icone-help {
display: flex;
justify-content: flex-end;
}


.icone-help > span {
    font-size: 1.8em;
    margin-bottom: 4px;
    text-align: right;
    color: #00446b;
    margin-left: 8px;
}

.main_pages_content_t_page_title {
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
}

.main_pages_content_t_page {
    max-width: calc(1300px - 70px);
    padding: 35px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main_pages_content_t_page_title {
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
}

.main_pages_content_t_page p {
 color: #666666;
    margin: 15px;
}
.crc {
    display: flex;
    justify-content: center;
    margin-bottom: 3%;
}
.radio-label {
    padding: 12px 4px 4px 15px !important;
}

.invalid-tooltip {
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 15%;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.8);
    border-radius: .2rem;
}

.is-invalid, .was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
    border-color: #dc3545 !important;
}

    .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
    .custom-select:invalid:focus,
    .custom-select.is-invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

    .was-validated .form-control:invalid ~ .invalid-feedback,
    .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
    .form-control.is-invalid ~ .invalid-tooltip, .was-validated
    .custom-select:invalid ~ .invalid-feedback,
    .was-validated
    .custom-select:invalid ~ .invalid-tooltip,
    .custom-select.is-invalid ~ .invalid-feedback,
    .custom-select.is-invalid ~ .invalid-tooltip {
        display: block;
    }

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545;
}

    .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
        background-color: #efa2a9;
    }

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545;
}

    .was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
        border-color: inherit;
    }

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}


.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    width: 100%;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

    .alert-warning hr {
        border-top-color: #ffe8a1;
    }

.text-center {
    text-align: center !important;
}
.col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.offset-3 {
    margin-left: 25%;
}


.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0069d9;
        border-color: #0062cc;
    }

    .btn-primary:focus, .btn-primary.focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #0062cc;
        border-color: #005cbf;
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
        }

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
    }

    .btn-secondary:focus, .btn-secondary.focus {
        box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d;
    }

    .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
    .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: #545b62;
        border-color: #4e555b;
    }

        .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
        }

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

    .btn-success:hover {
        color: #fff;
        background-color: #218838;
        border-color: #1e7e34;
    }

    .btn-success:focus, .btn-success.focus {
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    }

    .btn-success.disabled, .btn-success:disabled {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745;
    }

    .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
    .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #1e7e34;
        border-color: #1c7430;
    }

        .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
        .show > .btn-success.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
        }

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

    .btn-info:hover {
        color: #fff;
        background-color: #138496;
        border-color: #117a8b;
    }

    .btn-info:focus, .btn-info.focus {
        box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
    }

    .btn-info.disabled, .btn-info:disabled {
        color: #fff;
        background-color: #17a2b8;
        border-color: #17a2b8;
    }

    .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
    .show > .btn-info.dropdown-toggle {
        color: #fff;
        background-color: #117a8b;
        border-color: #10707f;
    }

        .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
        .show > .btn-info.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
        }

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

    .btn-warning:hover {
        color: #212529;
        background-color: #e0a800;
        border-color: #d39e00;
    }

    .btn-warning:focus, .btn-warning.focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    }

    .btn-warning.disabled, .btn-warning:disabled {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107;
    }

    .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
    .show > .btn-warning.dropdown-toggle {
        color: #212529;
        background-color: #d39e00;
        border-color: #c69500;
    }

        .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
        .show > .btn-warning.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
        }

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

    .btn-danger:hover {
        color: #fff;
        background-color: #c82333;
        border-color: #bd2130;
    }

    .btn-danger:focus, .btn-danger.focus {
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    }

    .btn-danger.disabled, .btn-danger:disabled {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545;
    }

    .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
    .show > .btn-danger.dropdown-toggle {
        color: #fff;
        background-color: #bd2130;
        border-color: #b21f2d;
    }

        .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
        .show > .btn-danger.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
        }

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    padding-top: 5px;
    padding-bottom: 5px;
}


.p-1 {
    padding: .25rem !important
}
.p-2 {
    padding: .5rem !important
}
.p-3 {
    padding: 1rem !important
}
.p-4 {
    padding: 1.5rem !important
}
.p-5 {
    padding: 3rem !important
}
.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.m-0 {
    margin: 0 !important
}

.mt-0, .my-0 {
    margin-top: 0 !important
}

.mr-0, .mx-0 {
    margin-right: 0 !important
}

.mb-0, .my-0 {
    margin-bottom: 0 !important
}

.ml-0, .mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1, .my-1 {
    margin-top: .25rem !important
}

.mr-1, .mx-1 {
    margin-right: .25rem !important
}

.mb-1, .my-1 {
    margin-bottom: .25rem !important
}

.ml-1, .mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2, .my-2 {
    margin-top: .5rem !important
}

.mr-2, .mx-2 {
    margin-right: .5rem !important
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important
}

.ml-2, .mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3, .my-3 {
    margin-top: 1rem !important
}

.mr-3, .mx-3 {
    margin-right: 1rem !important
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important
}

.ml-3, .mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important
}

.mr-4, .mx-4 {
    margin-right: 1.5rem !important
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4, .mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5, .my-5 {
    margin-top: 3rem !important
}

.mr-5, .mx-5 {
    margin-right: 3rem !important
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important
}

.ml-5, .mx-5 {
    margin-left: 3rem !important
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #0062cc !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
    color: #545b62 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
    color: #1e7e34 !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
    color: #117a8b !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
    color: #d39e00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #bd2130 !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
    color: #dae0e5 !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
    color: #1d2124 !important;
}


.titulo {
    background-color: #25416F !important;
    color: #ffffff;
    text-transform: uppercase;
    vertical-align: middle !important;
}

.titulo-subtitulo {
    background-color: #3762a8 !important;
    color: #ffffff;
    text-transform: uppercase;
    vertical-align: middle !important;
}

.caption-asdci {
    caption-side: top;
    background-color: #3762a8;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #25416F;
    text-align: center;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding: 4.8px;
}


.titulo-head-proponente {
    background-color: rgba(226, 94, 51, 0.59) !important;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle !important;
}

tr.titulo-head-proponente {
    text-transform: none !important;
}


.titulo-head {
    background-color: lightgray !important;
    border-bottom: 1px solid #999;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle !important;
}

    .titulo > th,
    .titulo-subtitulo > th,
    .titulo-head-proponente > th,
    .titulo-head > th {
        vertical-align: middle !important;
    }


.td-not-paddding {
    padding: 2px !important;
}

.th-not-paddding {
    padding: 6px !important;
}
