/* Manter o formulario flex, com flex direction row e flex-wrap-wrap
>> classe .row, define as linhas de cada item Form, usar no html fazendo as marcações
>> classe . grupo_cxs, define as configurações de bloco de itens do form
>> classe .cx_text, define as propriedades inputs
>> classe .col-1.., 5 Tamanho dos inputs

**************	Form Padrão **************
      <form class="frm_registro">				
          <h1>Cad. Info Frete</h1>			
            <div class="row">	
                <div class="grupo_cxs col-1" id="grupo_cx_id">
                  <label for="">Id</label>
                  <input class="cx_text" type="text" id="cx_id" disabled>											
                </div>	
            </div>
      </form>


************** Form Centralizado  **************
       <form class="frm_center">
          <div class='bloco_center'><p>Bloco 1</p></div>
          <div class='bloco_center'><p>Bloco 2</p></div>
          <div class='bloco_center'><p>Bloco 3</p></div>
          <div class='bloco_center'><p>Bloco 4</p></div>
        </form>

*/



.frm_registro{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  margin-top: 620px;
  margin-left: 250px;
  padding: 30px;
	z-index: 6;
  position: relative;
  background-color: white;
  transition: 1s;
}


.frm_registro h2{
	border-bottom:solid 1px #CFCFCF; 
	border-right: solid 1px #CFCFCF;
	padding: 2px 10px 2px 10px;
	background-color: #e4e4e4;
	margin-top: 50px;
}



.frm_info_detail{
  overflow-y: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  /* margin-top: -100px; */
  margin-top: 0px;
  margin-left: 100px;
  margin-right: 100px;
  padding: 30px;
	z-index: 6;
  position: relative;
  background-color: white;
  transition: 1s;
  /* height: 100%; */
  height: 0px;
}



.frm_center{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	border-radius: 10px;
	z-index: 0;
  align-items: center;
  justify-content: center;
}


.bloco_center_prim{ 
    margin-top: 50px !important;
}

.bloco_center {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}


.cx_text{	
	outline: none;
	border:solid 1px  #ebe7e7;
  color: #165e70;
	border-radius: 3px;
	height: 40px;
	width:100%;
	padding-left: 10px;
  margin-top: 10px;
  font-weight: bold;
  font-size: 12px;
}

.cx_text_area {
  resize: vertical;
  height: 185px;
}


.lb_text {
	font-weight: bold;
	font-size: 15px;
	color:#696969; 
}

.grupo_cxs{
	display: inline-block;
	margin-top: 15px;
}

/* .grupo_cxs_code {
  background-color: yellow;
  min-width: 80%;
} */

.grupo_btns a{ 
margin-left: -40px;
}

.col-1, .col-2, .col-3, .col-3-2 , .col-3-3, .col-3-4,  .col-4,.col-4-2, .col-5, .col-5-2, .col-6{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;

}

.row{
  width:100%;
}

.row_center {
  text-align: center;
}


.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 28%;
  flex: 0 0 28%;
  max-width: 28%; 
}


.col-3-2 { 
  -ms-flex: 0 0 18%;
  flex: 0 0 18%;
  max-width: 18%; 
  text-align: left;
  margin-top: 70px;
  margin-left: 30px;
}

.col-3-3 {
  -ms-flex: 0 0 28%;
  flex: 0 0 28%;
  max-width: 28%; 
}

.col-3-4 {
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  max-width: 33%; 
  min-width: 33%;
  /* background-color: yellow; */
  margin-left: -30px; 
}


.col-4 {
  -ms-flex: 0 0 43.5%;
  flex: 0 0 43.5%;
  max-width: 43.5%;

}

.col-4-2 {
  -ms-flex: 0 0 35.5%;
  flex: 0 0 35.5%;
  max-width: 35.5%;
}


.col-5 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;

}

.col-5-2 {
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
}


.col-6 {
  -ms-flex: 0 0 92%;
  flex: 0 0 92%;
  max-width: 92%;

}



.frmt_tabela {
  border:solid 2px lightgray;
  border-bottom: 3px groove lightgray;       
  margin-top:50px ;
  border-radius: 30px;
  width:100%;
  
}
  
.frmt_tabela th {
  background-color: rgba(46, 46, 54, 0.295);
  font-weight: bold;
  color:#6d6363;
  padding:8px 40px;
  font-size: 13px;
  
}
  
.frmt_tabela td { 
  text-align: center;
  padding-top:10px;
  padding-bottom:10px;	
  font-size: 15px;
  cursor:pointer;
}
  

.frmt_tabela tr:hover{
  background-color:rgba(240,240,240,1);  
}

  
  
.styline_line_table_2{
  background-color:rgb(248, 248, 248);
      
}

.container_table{
  margin: 10px 20px;	
  display:block;
  overflow:auto;
  border:solid 1px rgb(231, 228, 228);
  border-radius:5px;
  /* background-color:rgb(255, 255, 255);  */
  background-color:rgb(228, 228, 228); 
  width: 100%;
  padding: 20px;

}

 @media(max-width: 1380px){ 

  .col-5-2 {
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
  }  

} 

@media(max-width: 1342px){ 

  /* .col-5-2 {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }   */

  .col-3-3 {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }
  

}

@media(max-width: 1266px){ 

  .col-5-2 {
    -ms-flex: 0 0 95%;
    flex: 0 0 95%;
    max-width: 95%;
  }  

  .col-3-3 {
    -ms-flex: 0 0 95%;
    flex: 0 0 95%;
    max-width: 95%;
  }

}



@media(max-width: 1310px){ 

  .col-frm-contato{
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
   }

   .grupo_cxs_frm1 {
    height: 560px;
    top: -30px;
  }

  .cont_mapa{
    height: 250px !important;
    background-color: #696969;
  }

  #mapa {
    height: 250px !important;
  }  

}

@media(max-width: 1160px){ 

  .col-3-4 {
    width: 80% ;
    max-width: 80%;
  }

  .container_bg_portfolio {
    /* background-color: rgba(14, 16, 40, 0.208) !important; */
    width: 94.5% !important;
  }

}

@media(max-width: 1100px){

  .grupo_cxs_frm{
    width: 90% ;
    max-width: 90%;
  }

  .grupo_cxs_frm1 {
    margin-top: 50px;
  }

  .grupo_cxs_frm2 {
    margin-top: 20px;
    margin-bottom: 40px;
    margin-left: 0px !important;
  }

  .btnContatoMsg {
    width: 100%;
  }


}

@media(max-width: 990px){ 

  .container_bg_portfolio {
    width: 92% !important;
  }

}

@media(max-width: 750px){

.grupo_cxs{
	display: block;
	margin-top: 15px;

}

.col-1,.col-2,.col-3,.col-3-2, .col-3-4, .col-4, .col-5,.col-5-2, .col-6{
 -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%;
}


.container_resumo_habilidade {
  width: 94% !important;
  /* height: 260px !important; */
}

.container_resumo_habilidade p{ 
  line-height: 30px !important;
  /* color: gray; */
}

/* .col-3-2 {
  height: 320px;
  align-items: center;
  text-align: center;
  align-content: center;
  margin-left: 0px;
} */


.lb_skill {
  font-size: 20px !important;
}

.col-3-4 {
  margin-left: 0px;
  width: 95%;
  max-width: 95%;
}


}

@media(max-width: 540px){ 

  .col-3-4 {
    margin-left: -40px;
    width: 110%;
    max-width: 110%;
  }

  .container_bg_portfolio {
    width: 90% !important;
  }

  .frm_info_detail {
    width: 90%;
    margin-left: 0;
  }

  #btn_back {
    left: 10px;
  }

}


@media(max-width: 430px){ 

  .container_resumo_habilidade p{ 
    line-height: 22px !important;
  }

}


@media(max-width: 380px){ 

  .container_resumo_habilidade {
    width: 110% !important;
    height: 0px !important;
  }

  .container_resumo_habilidade p{ 
    line-height: 22px !important;
  }

  .graph {
    margin-left: -30px !important;
  }

}