@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');



html body {
    background: #f6f6f6;

    font-size: 14px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #555;
    text-align: justify;
}

section {
    margin-bottom: 20px;
}


b,
strong {
    font-weight: 600;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 14px;
    color: #555;
}


a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}


a {
    color: #4f4f4f;
    -moz-transition: all 0.2s;
}

a:hover,
a:focus {
    color: #ab162b;
    text-decoration: none;
    outline: none;
}


.container {
    max-width: 1140px;
}




/* HEADER */

/* Barra top */

.bar-top {
    background: #fff;
    padding: 1px;
}


/* Lingua */

.lingua ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.lingua li a {
    font-size: 12px;
    padding: 2px 7px 0 0;
    background: transparent;
    color: #bbb;
    float: left;
    display: inline;
    line-height: 20px;
    font-weight: 500;
}


/* Descricão */

.bar-top .descricao p {
    font-size: 12px;
    margin: 0;
    line-height: 20px;
    font-weight: 500;
    color: #888;
}

/* Portal */

.portal {
    text-align: right;
}

.portal p {
    margin: 0;
    text-align: right;
    }

.portal p a {
    text-align: right;
    text-decoration: none;
    color: #ab162b;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.portal img {
    width: 10px;
    margin: 0 0 4px 2px;
}


/* barra de menu */

.menu-unicv {
    background: #ab162b;
    height: auto;
    width: 100%;
    color: #f5f5f5;
    margin-bottom: 1px;
}


.header .navbar {
    max-width: 100%;
    height: auto;
    padding: 0;
}


.navbar ul {
    margin: 0;
}

.header .menu>.menu-item {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.header .menu>.menu-item>a {
    display: block;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    padding: 15px 0;
    border: none;
    outline: none;
    color: #eee;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
}

.header .menu>.menu-item:hover>a {
    color: #ccc;
}

.header .opened-menu {
    position: relative;
    display: none;
    cursor: pointer;
    width: 1.6rem;
    height: auto;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    padding: 10px 0;
}

.header .opened-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #eee;
}

.header .opened-menu span:nth-child(1) {
    top: 0;
}

.header .opened-menu span:nth-child(2),
.header .opened-menu span:nth-child(3) {
    top: 0.5rem;
}

.header .opened-menu span:nth-child(4) {
    top: 1rem;
}

.header .closed-menu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
}

.header .closed-menu img.closed-icon {
    display: block;
    width: 1rem;
    height: auto;
}

.header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

@media only screen and (max-width: 992px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .movel {
        padding: 16px 0;
    }



    .header .navbar {
        position: fixed;
        top: 0;
        left: -18rem;
        width: 18rem;
        height: 100%;
        padding: 1rem 0;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: #393939;
        color: #aeaeae;
        -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
            0 2px 4px -1px rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
            0 2px 4px -1px rgba(0, 0, 0, 0.06);
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }

    .header .navbar::-webkit-scrollbar {
        width: 5px;
    }

    .header .navbar::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background: #e6e6e6;
        -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    .header .menu {
        width: 100%;
        height: auto;
        padding: 0 20px;
        margin-top: 40px;
    }

    .header .menu>.menu-item {
        display: block;
        margin: 0;
    }

    .header .menu>.menu-item>a {
        padding: 0.75rem 1rem;
        color: #eee;
        border-bottom: 1px solid #434343;
    }

    .header .menu>.menu-item:first-child>a {
        border-top: 1px solid #434343;
    }

    .navbar {
        display: inline-block;
    }


    .header .opened-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        float: right;
    }

    .header .closed-menu {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: 1rem;
        right: 0.5rem;
    }
}

.main {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 6rem 0;
}

/* Logo*/

.menu-unicv .logo {
    text-align: left;
    padding: 10px 0;
}

.menu-unicv .logo img {
    padding: 0px 0;
    width: 68px;
    height: auto;
}

.breadcrumb-item a{
    font-size: 12px;
    color: #888;

}



/* Assinatura */

.menu-unicv .assinatura {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    height: 100%;
    width: 100%;
}

.menu-unicv .assinatura a {
    text-transform: uppercase;
    color: #eee;
    font-weight: 600;
    font-size: 20px;
    outline: none;
    white-space: nowrap;
    letter-spacing: .2px;
    line-height: 42px;
    padding: 5px 0;
    display: inline-block;
}

.menu-unicv .assinatura a:hover {
    color: #ddd;

}

/* Pesquisar */

.menu-unicv .pesquisar {
    padding: 12px 0;
    display: inline-block;
    width: 100%;
    text-align: right;
    color: #ddd;
    font-size: 18px;
    opacity: .2;
}



/* CONTEUDO */

/* conteudo */

.conteudo {
    padding: 10px 0 30px 0
}



/* Paginação */

.pagination {
    margin: 15px;
}

.pagination li a,
.prev span {
    padding: 2px 5px;
    background: none;
    margin-right: 6px;
}


/* Formulário */
.select2-container--krajee-bs4:not(.select2-container--disabled) .select2-dropdown {
    box-shadow: none;
    border: 1px solid #eee;
}

.select2-container--krajee-bs4.select2-container--open:not(.select2-container--disabled) .select2-selection,
.select2-container--krajee-bs4:not(.select2-container--disabled) .select2-selection:focus {
    border-color: #ccc;
    box-shadow: none;
}

.select2-container--krajee-bs4 .select2-selection--single .select2-selection__rendered {
    line-height: 22px;
}

.select2-container--krajee-bs4 li.select2-results__option {
    color: #666;
    background: #eee;
    font-size: 13px;
}

.select2-container--krajee-bs4 .select2-search--dropdown .select2-search__field {
    box-shadow: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    color: #555;
}

.select2-dropdown {
    border: none;
}

.form-group {
    margin: 0;
    height: auto; 

}


.select2-container--krajee .select2-selection--single .select2-selection__rendered {
    color: #666;
    padding: 0;
    text-align: left;
}

.select2-container--krajee-bs4 .select2-selection--single .select2-selection__arrow b {
    left: 20%;
    top: 40%;
    }

option {
    font-size: 12px;
    color: #666;
}

.select2-container .select2-selection--single,
.form-group .form-control {
    height: 34px !important;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #ddd;
    font-size: 12px;
    letter-spacing: 1px;
}

.select2-container--krajee li.select2-results__option {
    background-color: #f9f9f9;
    color: #999;
    font-size: 12px;
}


.select2-container--krajee .select2-search--dropdown .select2-search__field {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
}



/* FOOTER */

/* rodape */

.footer-unicv {
    padding: 20px 0 0 0;
    background: #555;
    height: auto;
    overflow: hidden;
}


.footer-unicv h5 {
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase !important;
    font-weight: 700;
    font-size: 13px;
}

.footer-unicv ul li a:hover,
.footer-unicv ul li:hover {
    color: #fff !important;
}

.footer-unicv ul {
    list-style: none;
    padding-left: 0;
}

.footer-unicv ul li {
    padding-left: 0;
    color: #ddd;
    font-size: 12px;
    line-height: 20px;
    cursor: pointer;
    letter-spacing: .2px;
}

.footer-unicv ul li a {
    color: #eee;
    line-height: 20px;
    cursor: pointer;
}

.footer-unicv .social {
    width: 100%;
    text-align: center;
    padding: 5px 0 0 0;
    display: inline-block;
    border: 1px solid #666;
    border-left: none;
    border-right: none;
}

.footer-unicv .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    text-align: center;
}

.footer-unicv .social-icons li {
    float: left;
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1px solid #eee;
    margin: 5px;
    border-radius: 15%;
}

.footer-unicv .social-icons li a {
    font-size: 12px;
    line-height: 23px;
    margin: 1px;
    padding: 4px;
    background: transparent;
    color: #eee;
}

.footer-unicv .copright {
    text-align: center;
    font-size: 10px;
    width: 100%;
    line-height: 10px;
    font-weight: 400;
    display: inline-block;
    margin: 10px 0;
    color: #999;
}

.footer-unicv .copright a {
    color: #999;
}


/* Helper Class */

.exemplares {
    border: 1px solid #ddd;
    padding: 5px;
    margin: 5px 5px 0 0;
    display: inline-block;
    width: auto;
    font-size: 11px;
    width: auto;
    text-align: centers;
}

.exemplares a {
    color: #555; 
}