@import "checkbox.css"; /* Using a string */
.container{
    justify-content: flex-start !important;
}
.container-cadastro{
    margin: auto 0;
    width: 86vw;
    height: 70vh;
    padding: 6vw 0vw;
    background: #F1F5F9;
    opacity: 0.98;
    border-radius: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.logo-ads{
    width: 40vw;
    margin: 6vw 0 1vw 0;
}
.text-ads{
	/* Sua mídia onde a dúvida vira decisão */
	margin-top: 1vw;
	font-family: var(--font);
	font-size: 4vw;
	text-align: center;

	color: #314158;

}
.cadastro{
    width: 100%;
    height: auto;
    overflow-y: auto;
    margin-top: 4vw;
}
.input-boxes{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    gap: 2vw;
}
.box{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1vw;
}
.box input{
    font-family: var(--font);
    width: 100%;
    height: 6vh;
    border-radius: 0.5rem;
    padding: 0.5vw 2vw;
    text-align: start;
    font-size: 3vw;
    text-align: center;
    background-color: #CAD5E2;
    border: none;
    color: #1D293D;
}
.box input::placeholder{
    color: #1D293D;
}
#txtEmpresa{
    padding: 0;
}
.box label{
    font-family: Inter-Regular;
    text-align: center;
    font-size: 31px;
    color: white;
}
.txt-categoria{
    width: 100%;
    text-align: center;
    font-size: 4vw;
    color: white;
}
.btn-enviar{
    width: 60%;
    height: 7vh;
    font-size: 4vw;
    background-color: var(--verde-escuro);
    color: #F0F5E0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
}
.btn-voltar{
    width: 100%;
    text-align: center;
    font-size: 3vw;
    color: white;
    text-decoration: underline;
}
.logo{
    width: 40%;
    margin-top: 5%;
}

#containerChecks{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    margin-left: 7vw;
    margin-top: -2vw;
}
#containerTermosFedex{
    width: 90%;
    display: flex;
    align-items: center;
    margin-left: 5%;
}
#containerTermosFedex label{
    font-size: 2.5vw;
    font-family: var(--font);
    color: #1D293D;
    text-align: justify;
    /* white-space: nowrap; */
}
#containerTermosFedex #containerChecks{
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0 4% 8% 0;
}
.mensagem-erro{
    color: red!important;
}
.mensagem-erro::placeholder{
    color: red!important;
}
.mensagem-erro-servicos{
    color: red !important;
}



/* ---------------- Campo Empresa (autocomplete) ---------------- */
.box-empresa{
    flex-direction: column;
    font-family: var(--font);
}
.input-empresa-wrapper{
    width: 100%;
}
.input-empresa-wrapper .input{
    width: 100%;
}
.lista-empresas{
    width: 100%;
    max-height: 30vh;
    overflow-y: auto;
    background-color: #ecf2f5;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.lista-empresas.hidden{
    display: none !important;
}
.lista-empresas .item-empresa{
    padding: 2vw 5vw;
    font-size: 3.5vw;
    color: var(--verde-escuro);
    cursor: pointer;
    border-bottom: 0.5px solid #c7d4de;
    text-align: center;
}
.lista-empresas .item-empresa:first-child{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.lista-empresas .item-empresa:last-child{
    border-bottom: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.lista-empresas .item-empresa:hover,
.lista-empresas .item-empresa.selecionado{
    background-color: #eef3e3;
}
.lista-empresas .item-vazio{
    padding: 2vw 5vw;
    font-size: 3.5vw;
    color: var(--verde-escuro);
    font-family: var(--font);
    color: #999;
}
