nav {
    background-color: white;
}

p.responsabilidades {
    white-space: pre-line;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.page-link {
    cursor: pointer;
}

#contato {
    z-index: 100;
    position: fixed;
    left: 0%;
    bottom: 0;
    padding: 10px 10px 10px 13px;
    border-radius: 10px;
}

#espaco {
    display: none;
}

.corTema {
    background-color: #0d8acc;
    border-color: #0d8acc;
}

.corTema-outline {
    border-color: #0d8acc;
    color: #0d8acc;
}

.corTema-outline:hover {
    background-color: #0d8acc;
    border-color: #0d8acc;
    color: white;
}

.corTema:hover {
    background-color: #076aa0;
    border-color: #0d8acc;
}

.corTema:not( :hover) {
    background-color: #0d8acc;
    border-color: #0d8acc;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(22, 205, 230, 0.274);
}

.label_view {
    font-weight: 500;
}

#responsabilidades_view {
    white-space: pre-line;
}

.dropdown li {
    list-style: none;
}

.links {
    text-decoration: none;
}

.links:hover {
    text-decoration: underline;
}

.item-inicio {
    font-size: 13pt;
    text-decoration: none;
    color: #292b2c;
    cursor: pointer;
}

.item-inicio:hover {
    color: #292b2c;
}

.link-footer {
    text-decoration: none;
}

#footer-links {
    display: none;
    padding-bottom: 10px;
}

.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

#campo_vaga {
    width: 75%;
    display: block;
    margin: auto;
}

#parent_campo_vaga {
    display: none;
}

.vagaEncontrada>.vaga:hover {
    background-color: #F7F7F7;
    cursor: pointer;
}

#nome_empresa_vaga_visualizar:hover {
    text-decoration: underline;
}

.searchBar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#searchQuerySubmit {
    width: 3.5rem;
    height: 2.8rem;
    margin-left: -3.5rem;
    background: none;
    border: none;
    outline: none;
}

#searchQuerySubmit:hover {
    cursor: pointer;
}

#btnPesqUsuario {
    padding: 10px 50px 10px 50px;
}

.campos_pesquisa input,
button#pesquisa_desktop {
    height: 3.2rem;
    padding: 0 1.5rem 0 1.5rem;
    font-size: 1rem;
}

#pesquisa_mobile {
    width: 70%;
    border-radius: 30px;
    display: none;
    margin: auto;
    padding: 10px;
    margin-top: 10px;
}

.campos_pesquisa input#titulo_vaga {
    width: 60%;
}

.campos_pesquisa input#cidade_vaga {
    width: 30%;
}

.campos_pesquisa button {
    width: 10%;
}

.campos_pesquisa input:focus {
    /*
    border-color: rgba(126, 239, 104, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
    outline: 0 none;
    */
    border-color: none !important;
    box-shadow: none !important;
    outline: 0 none !important;
}

.wrapper_tab {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 60px;
    width: 55vw;
    background: #fff;
    line-height: 60px;
    border-radius: 50px;
    z-index: 999;
}

.wrapper_tab nav {
    position: relative;
    display: flex;
    text-align: center;
}

.wrapper_tab nav label {
    flex: 1;
    width: 100%;
    z-index: 1;
    cursor: pointer;
}

.wrapper_tab nav label a {
    position: relative;
    z-index: -1;
    color: #1d1f20;
    text-decoration: none;
    transition: color 0.6s ease;
}

.wrapper_tab nav .tab {
    position: absolute;
    height: 100%;
    width: 34%;
    left: 0;
    bottom: 0;
    z-index: 0;
    border-style: solid;
    border-width: 5px;
    border-color: #0d8acc;
    border-width: 0px 0px 8px 0px;
    /* 25px top, 10px right, 4px bottom and 35px left */
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper_tab nav #info:checked~.tab {
    left: 33%;
}

.wrapper_tab nav #empresa:checked~.tab {
    left: 66%;
}

.wrapper_tab nav input {
    display: none;
}

#logo_inicio {
    width: 55%;
}

#btns-inicio a,
#btns-inicio span {
    display: flex;
}

#btnPolo {
    z-index: 100;
    position: fixed;
    left: 60%;
    bottom: 0;
    padding: 10px 40px 10px 40px;
    border-radius: 10px;
}

#btnEmpresa {
    z-index: 100;
    position: fixed;
    left: 77%;
    bottom: 0;
    padding: 10px 40px 10px 40px;
    border-radius: 10px;
}

.select-text-disabled {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.animation-fadein {
    animation-name: content;
    animation-direction: normal;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@media (max-width: 1200px) {
    #col_pesquisa_avancada {
        text-align: center;
    }

    #pesquisa_avancada {
        margin-bottom: 30px;
    }

    #btns-inicio {
        display: none;
    }

    #footer-links {
        display: block;
        position: relative;
        top: 220px;
    }

    li.page-item {
        width: 100%;
    }

    .wrapper_tab {
        width: 100% !important;
    }

    #card-vaga {
        padding: 10px;
    }

    #pesquisa_mobile {
        display: block;
    }

    #pesquisa_desktop {
        display: none;
    }

    #logo_inicio {
        width: 80% !important;
    }
}

#logo_pcvplus_desktop {
    width: 30%;
}

#logo_pcvplus_mobile {
    display: none;
}

@media (max-width: 769px) {
    #logo_pcvplus_desktop {
        display: none;
    }

    #logo_pcvplus_mobile {
        display: inline;
        width: 55%;
    }

    #logo_inicio {
        width: 100% !important;
    }

    .campos_pesquisa input#cidade_vaga {
        margin-top: 10px;
        width: 100%;
    }

    #espaco {
        display: none;
    }

    #titulo {
        font-size: 50px;
    }

    #card-vaga {
        width: 100% !important;
        margin-top: 0 !important;
    }

    #infos-navbar {
        display: none;
    }

    #pesquisar {
        margin-bottom: 20px !important;
    }

    #nao_me_olha_hehe {
        display: none;
    }

    #btnPesqUsuario {
        width: 100%;
        margin-bottom: 10px;
    }

    #titulo_vaga {
        height: 60px;
    }

    #campo_vaga {
        width: 100%;
    }

    .has-search .form-control {
        padding-left: 3rem;
    }

    .has-search .form-control-feedback {
        width: 3.2rem;
        height: 3rem;
        line-height: 4rem;
    }

    p.responsabilidades {
        -webkit-line-clamp: 6;
    }
}