.t_just{
    text-align: justify;    
}
   .termos ul {
        list-style: none;
        padding: 0;
      }
      .termos li {
        padding-left: 1.3em;
        text-align: justify;
      }
      .termos li:before {
        content: "\f00c"; /* FontAwesome Unicode */
        font-family: FontAwesome;
        display: inline-block;
        margin-left: -1.3em; /* same as padding-left set on li */
        width: 1.3em; /* same as padding-left set on li */
        text-align: justify;
      }

.field__input {
    background-color: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    font-family: inherit !important;
    font-size: 1em !important;
}

.autoriza {
    background: #f4f2ff;
    border-radius: 3px;
    border-left: 5px solid #1c999d;
    margin: 30px 0;
    padding: 30px;
}

input::placeholder {
    color: #a69cb8;
}

input:focus::placeholder {
    color: transparent;
}

input.ninja-forms-field.cpf {
    size: 50%;
}

input.ninja-forms-field {
    background-color: transparent !important;
    outline: 0;
    border-width: 0 0 1px!important;
    border-color: #000 !important;
}

input:focus {
    border-color: #1c999d !important;
}

.hr_v1 {
    margin-bottom: 30px !important;
    ;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(22, 129, 8, 0.363), rgba(78, 182, 18, 0.75), rgba(0, 0, 0, 0));
}




input.save-support{
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #1c999d !important;
  /*Button Color*/
  color: #e2e2e2 !important;
  /*Same as background*/
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29) !important;
  border-bottom: solid 3px #627295 !important;
  border-radius: 3px;
  /*text-shadow: -1px -1px rgba(255, 255, 255, 0.44), 1px 1px rgba(0, 0, 0, 0.38) !important;*/
}

input.btn_enviar {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #1c999d !important;
    /*Button Color*/
    color: #e2e2e2 !important;
    /*Same as background*/
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29) !important;
    border-bottom: solid 3px #627295 !important;
    border-radius: 3px;
    font-weight: bold;
    /*text-shadow: -1px -1px rgba(255, 255, 255, 0.44), 1px 1px rgba(0, 0, 0, 0.38) !important;*/
}

input.btn_enviar:active {
    /*on Click*/
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2)!important;
    border-bottom: none;
}

@media only screen and (min-width: 600px) {
    .phone-container, .date-container, .listselect-container, .textbox-wrap {
        width: max-content;
    }
   
    .logo_mobile {
        background-image: url("https://dev.santaluzia.mg.gov.br/wp-content/uploads/2020/07/Captura-de-tela-de-2020-07-16-14-41-12.png");
        background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-top: 37.15%; /* (img-height / img-width * container-width) */
                /* (477 / 1284 * 100) */
    }
  
    
}

@media only screen and (max-width: 600px) {
    .tr_area {
        font-size: 10.5pt !important;
    }
    .logo_mobile {
        background-image: url("https://dev.santaluzia.mg.gov.br/wp-content/uploads/2020/07/Captura-de-tela-de-2020-07-16-14-41-12.png");
        background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-top: 37.15%; /* (img-height / img-width * container-width) */
                /* (477 / 1284 * 100) */
    }
}

/* TOAST  */

/* ---- start demo code ---- 

  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  h1 {
    font-weight: 600;
    padding: 10px;
  }
  
  button {
    background: #fff;
    border: 0;
    border-radius: 4px;
    display: block;
    cursor: pointer;
    margin: 10px;
    padding: 5px 10px;
  }
  
  .custom-toast {
    display: flex;
    align-items: center;
  }
  
  .custom-toast img {
    background-size: 50px 50px;
    height: 50px;
    width: 50px;
  }
  
  .custom-toast p {
    font-size: 14px;
    padding: 10px;
  }
  
  /* ---- end demo code ---- */
  
  #toasts {
    min-height: 0;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 400px;
  }
  
  #toasts .toast {
    background: #d6d8d9;
    border-radius: 3px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .1);
    color: rgba(0,0,0, .6);
    cursor: default;
    margin-bottom: 20px;
    opacity: 0;
    position: relative;
    padding: 20px;
    transform: translateY(15%);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
    width: 100%;
    will-change: opacity, transform;
    z-index: 1100;
  } 
  
  #toasts .toast.success {
    background: #26d68a;
  }
  
  #toasts .toast.warning {
    background: #ffa533;
  }
  
  #toasts .toast.info {
    background: #2cbcff;
  }
  
  #toasts .toast.error {
    background: #f44336;
  }
  
  #toasts .toast.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
  }
  
  #toasts .toast.hide {
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all .5s ease-in-out;
  }
  
  #toasts .toast .close {
    cursor: pointer;
    font-size: 24px;
    height: 16px;
    margin-top: -10px;
    position: absolute;
    right: 14px;
    top: 50%;
    width: 16px;
  }
  

  #modal-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: .50;
    -webkit-opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
    z-index: 1000;
}

#modal-content {
    background-color:azure;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0 0 20px 0 #222;
    -webkit-box-shadow: 0 0 20px 0 #222;
    -moz-box-shadow: 0 0 20px 0 #222;
    display: none;
    height: auto;
    left: 50%;
    margin: -120px 0 0 -160px;
    padding: 10px;
    position: fixed;
    top: 50%;
    z-index: 1000;
}


#modal-background.active, #modal-content.active {
    display: block;
}

.hide {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}
/*
.form_cad_pf_cult{
    margin-left: 20px;
    margin-right: 20px;

  }*/

  .upload {
    opacity: 0;
}

#upload-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.image-area {
    border: 2px dashed rgba(255, 255, 255, 0.7);
    padding: 1rem;
    position: relative;
}

.image-area::before {
    content: 'Uploaded image result';
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    z-index: 1;
}

.image-area img {
    z-index: 2;
    position: relative;
}

.icon_btn{
  padding-right: 10px;
}

.btn-ripple {
	display: inline-block;
	position: relative;
	overflow: hidden;
  transition: all ease-in-out .8s;
  left: 30px;
}

.btn-ripple::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 25%;
	height: 100%;
	width: 50%;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: all ease-in-out 3s;
	transform: scale(5, 5);
}

.btn-ripple:active::after {
	padding: 0;
	margin: 0;
	opacity: .2;
	transition: 0s;
	transform: scale(0, 0);
}

.nf-form-content button {
  background: #2cbcff !important;
}

#div_valida_ok{
  padding-bottom: 10px;
  padding-top: 10px;
}


@media only screen and (max-width: 600px) {
  #upload-label {
    display: none;
  }
}
.b-aceito{
  padding: 10px;
}



.text_area_sugs{
  height: auto !important;;
  color: black !important;;
}

input[type=button], input[type=submit], input[type=reset] {
  background-color: #4CAF50 !important;
  border: none !important;
  color: white !important;
  padding: 16px 32px!important;
  text-decoration: none!important;
  margin: 4px 2px !important;
  cursor: pointer !important;
}

.cx_endereco{
height:100px !important;
}