@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;700&family=Permanent+Marker&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul: #118ab2;
}

body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    max-width: 100vw;
    min-height: 100vh;
}

.nav {
    width: 100vw;
    display: flex;
    height: 60px;
    flex-wrap: wrap;
}

.menu {
    background: #0077b6;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    width: 100%;
}

.menu ul {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
}

.menu ul li {
    margin: 10px;
    padding: 5px 10px;
}

.menu ul li a {
    font-size: 1.3rem;
    color: #FFF;
    font-weight: bold;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 2px 2px #000;
}

.menu ul li a:hover {
    text-shadow: 2px 2px #FFF;
    color: #000;
    transition: .5s;

}


.content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    width: 80vw;
    max-width: 100vw;
}

.titulo {
    width: 100%;
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
}

.titulo b {
    color: #F00;
    padding: 0 0 0 10px;
}

form {
    max-width: 80vw;
    flex: 1 1 60vw;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.form-inline {
    display: flex;
    width: 100%;
}

.form-group {
    max-width: 80%;
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    margin: 10px;
}

.label-control {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    font-size: 0.9rem;
    font-family: 'Permanent Marker', cursive;
}

.input-control,
.select-control {
    max-width: 100%;
    flex: 1 1 70%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 300px;
    font-family: 'Oswald', sans-serif;
    border-radius: 15px;
    padding: 3px 10px;
}

.select-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../images/seta_baixo.png) no-repeat center right #FFF;
    border: 1px solid #333;
    font-size: 0.9rem;
    padding: 3px 10px;
    border-radius: 15px;
}

.btn {
    width: 200px;
    padding: 10px;
    border-radius: 30px;
    border: 3px solid #000;
    box-shadow: 5px 5px #666;
    background: #FFF;
    font-size: 1rem;
    font-family: 'Permanent Marker', cursive;
    cursor: pointer;
    margin: 5px;
    text-align: center;
    color: #000;
}

.btn:hover {
    background: #1d3557;
    color: #FFF;
    border: 3px solid #1d3557;
    transition: .5s;
}

/*================== 			PARA RADIO E CHECKBOX		 =======================*/

.form-group1 {
    max-width: 80%;
    flex: 1 1 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 5px;
    margin-right: 10px;
}

.form-group1 label {
    padding-left: 10px;
    cursor: pointer;
}


.label-control-list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    font-size: 0.9rem;
    font-family: 'Permanent Marker', cursive;
    margin-right: 20px;
}

.radio,
.checkbox {
    cursor: pointer;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 3px solid #000;
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    outline: none;
}

.checkbox {
    border-radius: 0;
}

.radio:before,
.checkbox:before {
    content: '';
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    transition: all 600ms ease-in-out;
    position: absolute;
}

.checkbox:before {
    border-radius: 0;
    background: transparent;
    border: 4px solid #000;
    border-left: 0;
    border-top: 0;
    width: 4px;
    height: 9px;
    transform: rotate(45deg);
    top: -1px;
}

.radio:checked:before,
.checkbox:checked:before {
    opacity: 1;
}

.radio:focus,
.checkbox:focus {
    box-shadow: 0 0 5px #000;
}


/****************************************************
**************		TABELAS				*************
****************************************************/
table {
    border: 0px solid #000;
    margin: 10 auto;
    border-collapse: collapse;
    width: 80vw;

}

table .titulos {
    font-size: 1.5rem;
}

th,
td {
    padding: 8px;
    text-align: justify;
    border-bottom: 1px solid #000;
}

thead th {
    background: #0077b6;
    color: #FFF;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

tbody {
    font-family: 'Oswald', sans-serif;
}

tbody tr:nth-child(even) {
    background: #ade8f4;
}

tbody tr:hover {
    background: #118ab2;
    color: #FFF;
}

tfoot {
    font-family: 'Oswald', sans-serif;
    background: #0077b6;
    color: #FFF;
}

.msg {
    display: flex;
    width: 60%;
    border: 2px solid #000;
    font-size: 1.3rem;
    font-family: 'Oswald', sans-serif;
    padding: 10px;
    margin: 10px;
    border-radius: 50px;
    box-shadow: 2px 5px #000;
}

.msg b {
    padding: 0 10px;
    text-transform: uppercase;
    text-shadow: 1px 1px #ccc;
}

.sucess {
    background: #06d6a0;
}

.error {
    background: #ff8fa3;
}


/*
.wrapper{
    background: #ccc;
    padding: 5px;
}
*/

.lista-item {
    background: #8ecae6;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 80vw;
    box-shadow: 2px 6px rgba(162, 210, 255, 0.1);
    border-radius: 5px;
    margin: 10px 0;
}

.trigger-input {
    display: none;
}


.faq-titulo {
    flex: 1 1 100%;
    display: flex;
    background: #457b9d;
    color: #FFF;
    cursor: pointer;
    font-weight: bold;
    justify-content: center;
    width: 80vw;
    border-radius: 2px;
}

.faq-titulo::before {
    content: "+";
    margin: 0 10px;
    transition: transform .3s ease;
}

.faq-conteudo {
    display: none;
    width: 80vw;
}

.faq-conteudo-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.faq-conteudo-elemento {
    flex: 1 0 100%;
    display: flex;
    flex-wrap: wrap;
}

.faq-conteudo-elemento:nth-child(even) {
    background: #219ebc;
}

.faq-conteudo-elemento .titulo {
    font: 1rem 'Permanent Marker', cursive;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 20px;
    max-width: 30%;
    padding: 0 5px;
}

.faq-conteudo-elemento .dados {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 70%;
    font-family: 'Oswald', sans-serif;

}

.trigger-input:checked+.trigger-wrapper .faq-titulo::before {
    transform: rotate(45deg) scale(1.5);
    color: red;
}

.trigger-input:checked+.trigger-wrapper .faq-conteudo {
    display: block;
}


.operacao {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 80vw;
}

/* FAZER EFEITO COLLAPSED*/
.container-collapsed {
    border: 1px solid #000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    width: 300px;
    min-width: 250px;
    border-radius: 5px;
    box-shadow: 5px 5px #000;
    margin: 5px;
}

.input-collapsed {
    display: none;
}

.titulo-collapsed {
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 80%;
    flex-wrap: nowrap;
    background: #0077b6;
    color: #FFF;
}

.text-title-collapsed {
    justify-items: center;
    padding: 5px;
    cursor: pointer;
    font: 1.3rem 'Oswald', sans-serif;
    font-weight: bold;
}


.conteudo-collapsed {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    display: none;
}

.item-conteudo-collapsed,
.total-item-collapsed {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #219ebc;
    width: 100%;
    border-radius: 3px;
    font: 1rem 'Oswald', sans-serif;
}

.total-item-collapsed {
    background: #0077b6;
    color: #FFF;
    font-weight: bold;
}

.item-conteudo-collapsed:nth-child(even) {
    background: #FFF;
    color: #0077b6;
}

.input-collapsed:checked+.titulo-collapsed .conteudo-collapsed {
    display: block;
    transition: 0.5s;
}


/************************************************************************
**************************        GRAFICOS    ***************************
************************************************************************/

.sele-graf {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid #000;
    max-height: 350px;
    width: 200px;
    padding: 0;
}

.sele-graf .cabecalho {
    display: flex;
    align-content: space-around;
    width: 100%;
    border-bottom: 1px solid #000;
    padding: 0;
    margin: 0;
}

.sele-graf .titulo {
    display: flex;
    justify-content: flex-start;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    margin: 0;
}

.sele-graf img {
    width: 30px;
    cursor: pointer;
}

.sele-graf .botao {
    border: 0px solid #000;
    margin: 5px;
    padding: 5px 10px;
    display: flex;
    background: #0077b6;
    color: #FFF;
    font-weight: bold;
    min-width: 100px;
    box-shadow: #1d3557 3px 3px;
    border-radius: 5px;
}


#filter_img_ano {
    color: blue;
}

/************************************************************************
**************************        DASHBOARD    **************************
************************************************************************/
.patrimonio,
.distribuir,
.dividendo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background: #06d6a0; */
    width: 80%;
    max-width: 90%;
    margin: 10px 0;
    padding: 10px;
}

.pat-total,
.pat-invest,
.pat-varia {
    display: flex;
    flex-wrap: wrap;
    /* background-color: #0077b6; */
    border: 0px solid #000;
    border-radius: 10px;
    width: 30%;
    box-shadow: 5px 5px #118ab2;
}

.pat-img {
    flex: 1;
    width: 15%;
    background: #118ab2;
    border-radius: 10px 0 0 10px;
    border-right: 5px solid #118ab2;
    display: flex;
    align-items: center;
}

.pat-img span {
    font-size: 4rem;
    color: #FFF;
}

.pat-vlr {
    width: 80%;
    padding: 10px;
}

.pat-vlr .texto,
.vlr {
    flex: 1 0 30%;
    display: flex;
    font-size: 2rem;
    font-weight: bold;
}

.pat-vlr .texto {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* area que mostra a distribuição por ativo na carteria */
.distribuir {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #000;
    width: 80vw;
    height: 50vh;
}

.distribuir .dados {
    flex: 1 1 30%;
    border-right: 5px solid var(--azul);
    /* background-color: #8ecae6; */
}

.distribuir .dados .titulo {
    flex: 1 0 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 5px;
    margin-bottom: 50px;
    border-radius: 0 0 0 15px;
    border-bottom: 2px solid var(--azul);
    box-shadow: 0px 3px var(--azul);
}

.distribuir .dados .titulo .simbol {
    background: var(--azul);
    width: 20%;
    text-align: center;
    border-radius: 15px 0 0 15px;
}

.distribuir .dados .titulo .simbol span {
    font-size: 4rem;
    color: #FFF;
}

.distribuir .dados .dados-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}


.distribuir .dados .titulo .texto {
    padding: 0 10px;
}

.distribuir .graficos {
    flex: 1 1 70%;
    display: flex;
    align-content: center;
    align-items: center;
    /* background: pink; */
}

/* .distribuir .graf{
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    background: yellowgreen;
    margin: 0;
    padding: 0;
    height: 80%;
} */


.item-graf {
    /* border: 1px solid yellow; */
    /* background-color: green; */
    display: flex;
    width: 100%;
    height: 100%;
}



.dividendo {
    background: #ade8f4;
}

.dividendo .dados {
    background: #118ab2;
    display: flex;
    flex-wrap: wrap;
    width: 30%;
}

.dividendo .dados .dados-cond-ano,
.dados-cond-tipo {
    border: 1px solid #000;

}






.dividendo .graficos {
    background-color: #1d3557;
    color: #ccc;
}

/************************************************************************
**************************        RODAPÉ      ***************************
************************************************************************/
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    width: 100%;
    font-family: 'Oswald', sans-serif;
    background: #0077b6;
    color: #FFF;
    margin-top: 10px;
    height: 50px;
    bottom: 0;
}


.error {
    color: red;
    background: #FFF;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    margin: 20px;
}
.msg-error{
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    color: #F00;
}
.msg-success, .msg-error{
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    color: #06d6a0;
    width: 100%;
    text-align: center;
}

i{
    color: #F00;
}

.obs, .obs2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid #F00;
    border-radius: 30px;
    padding: 20px;
    background: #ff4d6d;
    box-shadow: 5px 5px #c9184a;
    color: #FFF;
    margin: 20px;
    width: 100%;
}

.obs2{
    background: #f5b7c2 !important;
}



.obs b{
    width: 100%;
    font-size: 1.3em;
}