@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{ 
    --font1: "Ubuntu", serif;  /*labels tabela*/
    --font2: "Montserrat", sans-serif;
    --font3: Arial, Helvetica, sans-serif;
    --font4: "Barlow Condensed", serif; /*Font titulo: Chat*/
    --colorWarning: #ffea7073; /* Cor aviso anos indisponíveis */
}

/* Classes para ORganização da Página */
html, body {
    width: 100%;
    height: 100vh;
    font-family: var(--font2);
    display: flex;
    flex-direction: row;
    align-items: center;
}
#labelTxt{
    color: black;
}
.select2-container{
    width: 200px !important;
}
.txtColorResponse{
    color: black !important;
    font-size: 1.2rem;
}

.logo-text-ciap{
    margin-top: 5px;
    /* text-indent: 10px; */
    display: block;
    /* background-color: red; */
    text-align: center;
    line-height: 32px;
    /* position: relative; */
    overflow: hidden;
    /* word-break: keep-all; */
    /* font-size: 17px; */
    /* margin: 85px 23px 15px 23px; */
}

.btn-recuo{
    /* width: 45%; */
    margin-top: -1vh;
    position: fixed;
    /* right: -20px; */
}

/* Estilo geral dos botões de feedback */
.btn.active {
    margin: 1px;  
    padding: 0px 10px; 
    font-size: 13px;  
    border-radius: 5000px; 
    opacity: 0.5;
    cursor: pointer; 
    transition: background-color 0.3s ease, transform 0.3s ease;  
}

/* Botão Like */
.btn.like {
    padding: 0px 10px; 
    background-color: #06ac3e;
    border-radius: 5000px; 
}

.btn.like:hover {
    padding: 0px 10px;
    background-color: #06ac3e;  
    transform: scale(1.1);  
}

/* Botão Dislike */
.btn.dislike {
    padding: 0px 10px;
    background-color: #e53935;
    border-radius: 5000px; 
}

.btn.dislike:hover {
    background-color: #e53935;
    transform: scale(1.1);
}

/* Botão Report - Laranja */
.btn.orange {
    padding: 0px 10px;
    background-color: #ff9800;
    border-radius: 5000px;
}

.btn.orange:hover {
    background-color: #fb8c00;
    transform: scale(1.1);
}

.btn.imagem {
    padding: 0px 10px;
    background-color: #143ADB;
    border-radius: 5000px;
}
.btn.imagem:hover {
    background-color: #143ADB;
    transform: scale(1.1);
}

.btn.csv {
    padding: 0px 10px;
    background-color: #143ADB;
    border-radius: 5000px;
}

.btn.csv:hover {
    background-color: #143ADB;
    transform: scale(1.1);
}

.triangle{
    cursor: pointer;
    width: 65px;
    position: relative;
    right: -31px;
    rotate: 90deg;
    animation: btn-recuoAbre 0.65s linear;

}


@keyframes btn-recuoAbre{

    0%{
        rotate: 270deg;
    }
    100%{
        rotate: 90deg;
    }

}


.triangle::after {
    content: attr(title); /* Obtém o texto do atributo personalizado */
    /* position: absolute; */
    bottom: 125%; /* Posição acima do elemento */
    z-index: 10;
    left: 50%;
    width: 65px;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}
.triangle::before {
    /* position: absolute; */
    bottom: 115%;
    bottom: 115%;
    width: 65px;

    /* left: 50%; */
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.triangle:hover::after,
.triangle:hover::before {
  opacity: 1; /* Exibe o tooltip ao passar o mouse */
}

.triangleAbre{
    width: 65px;
    cursor: pointer;
    left: 34px;
    position: relative;
    rotate: 270deg;
    animation: btn-recuoFecha 0.65s linear;
}

@keyframes btn-recuoFecha{

    0%{
        rotate: 90deg;
        left: 34px;

    }
    100%{
        rotate: 270deg;
        left: 34px;

    }

}
.text-intro{
    font-weight: 700;
    margin-top: 42px;
    text-indent: 10px;
    display: block;
    /* background-color: red; */
    text-align: center;
    line-height: 37px;
    position: relative;
    overflow: hidden;
    word-break: keep-all;
    font-size: 20px;
    margin: 85px 23px 15px 23px;
}

nav .nav-wrapper{
    position: relative;
    height: 10% !important;
    top: 0;
}
.initialNav{
    position: fixed;
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    z-index: 999;
    width: 0%;
    left: 0;
    margin-right: 5%;
    height: 100vh;
}

/* Barra Lateral Exposta */
.navMain {
    /* overflow: auto; */
    position: fixed;
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    z-index: 999;
    width: 25vw;
    left: 0;
    /* background-color: #012580 !important; */
    /*background: linear-gradient(180deg, rgba(1, 37, 128, 1) 61%, rgba(123, 163, 217, 1) 100%);*/
    background: linear-gradient(180deg, #446DFF 61%, #22D1EE 100%);
    
    margin-right: 5%;
    height: 100vh;
    animation: navAnimaInitial 0.65s linear;
    flex-direction: column;
}

@keyframes navAnimaInitial{

    0%{
        width: 0%;

    }
    25%{
        width: 5%;

    }
    50%{
        width: 10%;

    }
    75%{
        width: 16%;

    }
    100%{
        width: 25%;

    }

}

/* Barra Lateral Escondida */

.navRecuo{
    position: fixed;
    display: flex;
    z-index: 999;
    width: 0%;
    /* background-color:#012580; */
    /*background: linear-gradient(180deg, rgba(1, 37, 128, 1) 61%, rgba(123, 163, 217, 1) 100%);*/
    background: linear-gradient(180deg, #446DFF 61%, #22D1EE 100%);
    animation: navAnima 0.65s linear;
    left: 0;
    margin-right: 5%;
    height: 100vh;
    flex-direction: column;

}

@keyframes navAnima{
    0%{
        width: 25%;
    }
    25%{
        width: 16%;
    }
    50%{
        width: 10%;
    }
    75%{
        width: 5%;
    }
    100%{
        width: 0;
    }
}
/*Black div*/
.sidenav-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    height: 120vh;
    /* background-color: rgba(0,0,0,0.5); */
    z-index: 997;
    display: none;
}

/* Main Body */

.mainBody{
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 85%;
    position: absolute;
    right: 0;
    align-items: center;
}
@keyframes mainbody-animationclose{
    0%{
        width: 100%;
    }
    100%{
        width: 100%;
    }
}
@keyframes mainbody-animationopen{
    0%{
        width: 100%;
    }
    100%{
        width: 100%;
    }
}
.mainInput{
    position: fixed;
    right: 0;
    bottom: 4%;
    width: 85%;
    height: 13% !important;
    display: flex;
    flex:1;
    flex-direction: column;
    align-items: center;
    z-index: 99;
}
@keyframes mainInput-animationclose{
    0%{
        width: 100%;
    }
    100%{
        width: 100%;
    }
}
@keyframes mainInput-animationopen{
    0%{
        width: 100%;
    }
    100%{
        width: 100%;
    }
}

.ano-indisponivelEffect{ 
    animation: div-anima 0.8s ease-out;
    overflow: hidden;
    word-break: unset;
    height: 49px;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 5px;
    font-size: 17px;
    border-radius: 10px;
    justify-content: space-between;

}

.ano-indisponivel{
    background-color:var(--colorWarning); 
    height: 49px;
    width: 100%;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    gap: 16px;
    word-break: keep-all;
    font-size: 17px;
    padding: 5px;
    animation: blink 2s;
}

#button-year{
    /* width: 67px; */
    /* height: 33px; */
    font-size: 23px;
    /* border-radius: 2px; */
    /* margin-right: 10px; */
    color: black;
    /* border: 1px solid black; */
    background-color: var(--colorWarning);
}

@keyframes div-anima{
    0%{
        height: 100%;
        background-color: var(--colorWarning);
    }
    100%{
        height: 0%;
        background-color: var(--colorWarning);
    }
}
  
@keyframes blink{
    0%{
      opacity: 1;
    }
    25%{
      opacity: 0;
    }
    50%{
      opacity: 1;
    }
    75%{
      opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }

.imgChat{
    box-shadow: #DEDEDC 4px 3px, #DEDEDC 2px 1px, #DEDEDC 2px 7px 53px, #DEDEDC 2px 7px, #dededc85 8px 104px 10px 6px inset;
    border-radius: 11px;
    padding-bottom: -28px;
    padding: 7px;
    background-color: #446dff;
    margin-bottom: -8px;
    position: relative;
    z-index: 3;
  }

.logo-bottom{
    margin-top: 2vh;
    right: 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
  }
    
::selection{ 
    color: yellow;
    background-color:#2F4C9B
}

.selection > span{ 
    line-height: 1.5;
}

.selection > span > ul> li{ 
    margin-right: 10px;
}

#dadTable{ 
    overflow-x: auto;
    margin-bottom: 14px;
}

.imgUser{
    width: 45px;
    padding-top: 2px;
    padding-bottom: 0px;
    /* position: relative; */
    /* right: -44px; */
}

.history{
    /* margin-top: 14%; */
    margin: 5% 5% 8% 6%;
    width: 89%;
    /* margin: auto; */
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
    color: #080808;
}

.history li {
    float: none;
}

.history .collapsible-body{
    padding: 0.75rem;
    background-color: #cfcfcf;
}

/* .collapsible-body{
    display: block;
    height: fit-content;
    overflow: auto;
} */
.collapsible-body-handle{
    display:flex !important;
    flex-direction:column !important;
    padding-right: 1rem;
    padding-left: 1rem;
}
/* .collapsible-body-handle{
    display:flex !important;
    flex-direction:column !important;
    padding-right: 1rem;
    padding-left: 1rem;
    height: fit-content;
    overflow: auto;
} */

/* @keyframes div-open{

    0%{
        rotate: 270deg;
    }
    100%{
        rotate: 90deg;
    }

} */


.navRecuo .collapsible {
    display: none;
    
}

#history {
    width: 100%;
}

.copy-data{
    min-width: 56px;
    min-height: 56px;
    line-height: 56px!important;
}

.copy-data i{
    width: auto;
    margin: 0;
}

.row .col.m1{ 
    width: 7.333333%;
    margin-left: -2%;
}

.item-select-indicator{
    display: flex;
    width: 85%;
    color: black;
    border: none;
    outline: none;
    font-size: 1.5rem;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    margin-left: 4px;
}

.wrap-indicator-button{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* padding-right: 5%; */
    align-content: center;
    gap: 19px;
    align-items: center;
    margin-bottom: 0px;

}

.wrap-indicator-button >label{ 
    font-family: var(--font1);
    font-size: 1.2rem;
}

a {
    font-size: 16px;
}

span.badge.new{
    display: none !important;
}

.brand-logo h7{
    word-break: keep-all;
    letter-spacing: 2px;
    padding-top: 9px;
    font-family: var(--font4);
    /* width: max-content; */
    display: flex;
    margin-top: -8px;
    /* margin-bottom: -4px; */
    position: relative;
    color: #fefefe;
    overflow: hidden;
    font-weight: 400;
    font-size: 2.5rem;
    /* padding: 0px; */
    flex-direction: column;

}

.brand-logo h7 span{
    font-family: var(--font2) !important;
    font-weight: 800;
    letter-spacing: 0px;
    font-size: 2.3rem;
    margin-top: -30px;
    padding-top: 0;
}

.brand-logo h7:hover{
    color:#00CF00;
}

.brand-logobb{
    bottom: 0;
    display: flex;
    width: 450px;
    right: 0;
    position: relative;
    overflow: hidden;
    justify-content: center;
    text-align: center;
    line-height: 41px;
    text-decoration: none;
    /* text-transform: uppercase; */
    font-size: 17px;
    /* font-family: verdana; */
    color: white;
    letter-spacing: 0px;
    /* padding: 25px 50px; */
    position: relative;
    /* border: 3px solid #9c9c9d; */
    transition: all 0.6s;
    overflow: hidden;
}


.brand-logobb:before,
.brand-logobb:after,
.title-ciap:before,
.title-ciap:after {
  content: "";
  position: absolute;
  width: 25%;
  height: 100%;
  background-color:#012580;
  z-index: -1;
  transition: all 0.1s;
}

.brand-logobb:before {
  top: 100%;
  left: 0%;
}

.brand-logobb:hover:before {
  top: 0;
  left: 0;
}

.brand-logobb:after {
  top: -100%;
  right: 0;
  transition-delay: 0.3s
}

.brand-logobb:hover:after {
  top: 0;
  right: 0;
}

.brand-logobb span:before {
  top: -100%;
  left: 25%;
  transition-delay: 0.1s;
}

.brand-logobb:hover span:before {
  top: 0;
  left: 25%;
}

.brand-logobb span:after {
  bottom: -100%;
  right: 25%;
  transition-delay: 0.2s
}

.brand-logobb:hover span:after {
  bottom: 0;
  right: 25%;
}

.brand-logobb:hover {
  color: white;
}

















.logo-simapes-b{
    width: 200px;
    position: relative;
    color: #fff;
    display: block;
    overflow: hidden;
    font-size: 2.1rem;
    padding: 0;

}

.bottom-img{
    margin-top: auto;
    bottom: 60px;
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
}

.padding {
    display: block;
    height: 100px;
}

.indigo {
background-color:#446DFF !important;
font-family: var(--font1);
}

.select-dropdown{
    font-family: var(--font1);
}

ul.dropdown-content.select-dropdown li span {
    color:#143ADB!important;
    font-family: var(--font1);
}

.imgload{
    margin-top: 18px;
}

nav .brand-logo {
    position: relative;
    color: #fff;
    display: flex;
    overflow: hidden;
    font-size: 2.1rem;
    padding: 0;
    flex-direction: row;
    justify-content: center;
}

.brand-logo{
    position:relative;
    bottom: 0;
}

.brand-logo img{
    margin-left: 21px;
    margin-right: -15px;
    margin-top: 10px;
    height: 77px!important;
}

.brand-logo i {
    font-size:2.5rem!important;
}

.container{ 
    flex: 1;
    /*width: 100%;*/
    padding: 10px;
    /* display: flex; */
    /* overflow-y: auto; */
}

body > .container {
    position: relative;
    height: 70%!important;
}

body > .container, body > .container > .row {
    margin-top: 15px;
}

#box-mensagens {
    margin-top: 5%;
    height: 90%;
    margin-bottom: 109px;
    flex: 1;
}

#mensagens {
    width:100%;
    height: 100%;
    overflow-y: revert;
    text-align: justify;
}

#mensagens .s1 {
    text-align: center;
}

#mensagens .s1 .badge {
    margin-left: 0;
    float:none;
    display: block;
}

#mensagens .s1 .badge::after {
    content: '';
}

#mensagens .mensagem {
    padding-top:10px;
    padding-bottom: 10px;
    font-size:18px;
    line-height: 130%!important;
}

#mensagens #text {
    border: solid 1px #dddddd;
    border-radius: 10px;
    padding:45px;
    background: #F0F0ED;
    position: relative;
}

#mensagens .pergunta  #text {
    float:left;
}

#mensagens .resposta  #text {
    float: right!important;
    background: transparent !important;
    display: flex;
    color: #000000;
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
}

#mensagens p {
    margin: 0 !important;
}

#mensagens .pergunta #text:before {
    top: 10px;
    bottom: auto;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #ffffff !important;
    content: "";
    position: absolute;
    border-style: solid;
    display: block;
    width: 0;
}

#mensagens .pergunta #text:after {
    top: 12px;
    bottom: auto;
    left: -13px;
    border-width: 8px 13px 8px 0;
    border-color: transparent #fff;
    content: "";
    position: absolute;
    border-style: solid;
    display: block;
    width: 0;
}

#mensagens .resposta  #text:before {
    top: 10px;
    bottom: auto;
    right: -10px;
    border-width: 10px 0 15px 10px;
    border-color: transparent #ddd;
    content: "";
    position: absolute;
    border-style: solid;
    display: block;
    width: 0;
}

#mensagens .resposta  #text:after {
    top: 12px;
    bottom: auto;
    right: -8px;
    border-width: 8px 0 13px 8px;
    border-color: transparent #f1f1ee;
    content: "";
    position: absolute;
    border-style: solid;
    display: block;
    width: 0;
}

#mensagens .hora {
    display: block;
    font-size: 15px;
    /* padding-top: 45px; */
    /* padding-bottom: 2px; */
    color: #080808;
    float: right;
}

.input-bar {
    background: #EEE;
    /*width: 73%;*/
    box-shadow: -9px -10px 16px -17px black;
    border: 11px;
    bottom: 10px;
    border-radius: 30px;
    margin-bottom: 0%;
    z-index: 999;
}

.input-bar .row {
    margin: 0 10px!important;
}

.input-bar .input-field {
    margin-top:40px;
}

.input-bar label {
    font-size: 1.3rem!important;
    color: #143ADB !important;
    border-bottom: none !important

}

.input-bar button {
    width:100%;
    margin-top:40px;
    height:50px;
}

input[type=password]:not(.browser-default):focus:not([readonly]) { 
    border-bottom: transparent;;
    -webkit-box-shadow: transparent;;
    box-shadow: none;;
}

input[type=text]:not(.browser-default){ 
    border-bottom: none !important;
}

input[type=password]:not(.browser-default){ 
    border-bottom: none !important;;
}

input[type=password]:not(.browser-default):disabled{ 
    border-bottom: none !important;;
}

input[type=text]:not(.browser-default):disabled+label{ 
    border-bottom: none !important;;
}

input[type=text]:not(.browser-default):focus:not([readonly]) {
    border-bottom: transparent;;
    -webkit-box-shadow: transparent;;
    box-shadow: none;;
}

input#resposta:focus {
    border-bottom: transparent;
}

#btn_enviar {
    /* margin-top: 16px !important; */
    border-radius: 15px;
    /*margin-left: 28%;*/
    display: flex;
    padding: 0;
    /* width: 100%; */
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

#btn_enviar:hover .bi-send {
    color: #000000;
}
.brand-logo h7:hover{ 
    color:#000000;
}
.brand-logo h7 span:hover{
    color:#000000;
}

.container_lista {
    /* background-color: rgba(255, 255, 255, 0.3); */
    position: fixed !important;
    transform: translateY(-100%);
    max-height: 350px !important;
    overflow-y: auto;
}


table {
  font-family: var(--font3);
  border-collapse: collapse;
  width: 100%;
}

td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2;}

tr:hover {background-color: #ddd;}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #143ADB;
  color: white;
}

td,th{ 
    text-align: center !important;
}

.list-item {
    font-size: 18px;
    background-color: #ffffffd4;
}

.list-item:hover{
    background-color: #dddddd;
}

.container-selects {
    display: flex;
    gap: 19px;
    align-items: center;
    padding: 5px;
    margin-bottom: 20px;
}

.container-selects >label{ 
    font-family: var(--font1);
    font-size: 1.2rem;
}

.item-selector {
    color: black;
    display: flex;
    border: none;
    outline: none;
    font-size: 0.8rem;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    width: 75%;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    border-radius: 4px
}

.label-select {
    color: black;
}

.item-selector-data {
    color: black;
    display: flex;
    border: none;
    outline: none;
    font-size: 0.8rem;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    width: 30%;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    border-radius: 4px
}

.btn-atualizar-grafico{
    background-color: #093568;
    color: #fff;
    letter-spacing: .5px;
    font-size: 14px;
    height: 40px;
    padding: 0 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-atualizar-grafico:active{
}

.select-materialize indigo-text{
    display: flex;
}
.selected{
    display: flex !important;
}


@media screen and (min-width:425px) and (max-width:600px){
    .row .col.m1{
        width: 12.333333%;
    }
    .input-bar {
        padding-top: 0px;
    }

    .input-field {
        margin-top:15px!important;
    }
    #btn_enviar {
        margin-top:15px!important;
    }
    .navMain{
        width: 55%;
        animation: navAnimaInitialSmall 0.65s linear;
    }
    .navRecuo{
        animation: navAnimaSmall 0.65s linear;
    }

    @keyframes navAnimaSmall{
    0%{
        width: 55%;
    }
    25%{
        width: 40%;
    }
    50%{
        width: 30%;
    }
    75%{
        width: 15%;
    }
    100%{
        width: 0;
    }
    }
    @keyframes navAnimaInitialSmall{

    0%{
        width: 0%;

    }
    25%{
        width: 15%;

    }
    50%{
        width: 30%;

    }
    75%{
        width: 40%;

    }
    100%{
        width: 55%;

    }

    }
  
}
@media screen and (min-width:601px) and (max-width:868px){
    .row .col.m1{
        width: 11.333333%;
    }

    .row .col.m8{
        width: 99.666667%;
    }
    #btn_enviar{
        /*width: 166%; */
        font-size: 12px;
    }
        .navMain{
        width: 55%;
        animation: navAnimaInitialSmall 0.65s linear;
    }
    .navRecuo{
        animation: navAnimaSmall 0.65s linear;
    }

    @keyframes navAnimaSmall{
    0%{
        width: 55%;
    }
    25%{
        width: 40%;
    }
    50%{
        width: 30%;
    }
    75%{
        width: 15%;
    }
    100%{
        width: 0;
    }
    }
    @keyframes navAnimaInitialSmall{

    0%{
        width: 0%;

    }
    25%{
        width: 15%;

    }
    50%{
        width: 30%;

    }
    75%{
        width: 40%;

    }
    100%{
        width: 55%;

    }

    }

}
@media screen and (min-width:869px) and (max-width:1024px){
    .row .col.m8{
        width: 99.666667%;
    }
    .navMain{
        width: 35%;
        animation: navAnimaInitialSmall 0.65s linear;
    }
    .navRecuo{
        animation: navAnimaSmall 0.65s linear;
    }

    @keyframes navAnimaSmall{
    0%{
        width: 35%;
    }
    25%{
        width: 30%;
    }
    50%{
        width: 20%;
    }
    75%{
        width: 10%;
    }
    100%{
        width: 0;
    }
    }
    @keyframes navAnimaInitialSmall{

    0%{
        width: 0%;

    }
    25%{
        width: 10%;

    }
    50%{
        width: 20%;

    }
    75%{
        width: 30%;

    }
    100%{
        width: 35%;

    }

    }

}
@media screen and (min-width:1025px){
    .row .col.m8{
        width: 99.666667%;
    }

}
@media screen and (min-width:1912px){

    .input-bar {
        width: 55%; /*aqui*/
    }


}
@media screen and (min-width:1912px) and (max-width:2085px){
    .input-bar {
        width: 65%;
    }

}
@media screen and (min-width:2085px) and (max-width:2270px){
    body .container{ 
        width: 130%;
        margin-top: 15px;
    }
    .input-bar {
        width: 57%;
    }

}
@media screen and (min-width:2270px){
    .input-bar {
        width: 1286px;
    }

}
