#contato-form-container{
    display: inline-flex;
    column-gap: 20px;
    margin-bottom: 100px;
    justify-content: center;
    width: 100%;
    padding: 0px 0px 0px 20px;
}

#container-outside-form{
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
    margin-top: auto;
}

#container-outside-form img{
    max-height: 300px;
    object-fit: contain;
}

#splitcontact{
    margin-bottom: 20px;
}

#contato{
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.fields{
    justify-content: space-between;
}

.field input,.field select, textarea{
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    max-width: 700px;
}

.field{
    position: relative;
}

.field:nth-child(1),.field:nth-child(2){
    width: 49%;
}

.field:nth-child(3), .field:nth-child(4){
    width: 100%;
}

.field select:hover, select:hover{
    cursor: pointer;
}

.arrow{
    transition: transform ease-in-out 0.3s;
    position: absolute;
    right: 20px;
    top: 42px;
    pointer-events: none;
}

/* Feedback msg enviada ou não */
#li_btn_contato{
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 48px;
    -webkit-transition: transform 0.2s ease-in-out 0s;
       -moz-transition: transform 0.2s ease-in-out 0s;
         -o-transition: transform 0.2s ease-in-out 0s;
            transition: transform 0.2s ease-in-out 0s;
}

#container-input-emailing-contato input{
    background-color: var(--whitesmoke-color);
}

.messaging-contato{/* loading bar */
	background: #424252;
    width: 100%;
    transform: translateX(-100%);
    position: absolute;
	z-index: 5;
	display: inline-block;
	-webkit-transition: transform 2s ease 0s ;
	   -moz-transition: transform 2s ease 0s ;
	     -o-transition: transform 2s ease 0s ;
	        transition: transform 2s ease 0s ;
}

.email-enviado-msg, .email-fail-envio-msg, .email-enviando-msg{
    width: 100%;
    height: 47px;
    z-index: 5;
    position: absolute;
    display: inline-flex;
    color: var(--whitesmoke-color);
    align-items: center;
    justify-content: center;
    font-family: "Lora";
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(100px);
    line-height: 1.2;
    hyphens: auto;
    text-align: center;
    padding: 10px 20px;
	-webkit-transition: transform 0.5s ease 0.25s ;
	   -moz-transition: transform 0.5s ease 0.25s ;
	     -o-transition: transform 0.5s ease 0.25s ;
	        transition: transform 0.5s ease 0.25s ;
}

.email-fail-envio-msg a{
    text-decoration: underline;
    color: var(--whitesmoke-color);
}

.email-fail-envio-msg a:hover{
    cursor: pointer;
    color: #ffc3be !important;
}

#btn_enviar{
    height: 96px;
    transform: translateY(-50%);
    padding-top: 48px;
}

#btn_enviar:hover{
    cursor: pointer;
    background-color: #9d902d;
}

.btn_enviar-active{
    -webkit-transform: translateY(0%);
	   -moz-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	     -o-transform: translateY(0%);
	        transform: translateY(0%);
}

.container-input-emailing-contato-loading{
    height: 100%;
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	     -o-transform: translateX(0);
	        transform: translateX(0);
}

.email-enviado-msg-active, .email-fail-contato-msg-active, .email-sendo-enviado-msg-active{
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
	    -ms-transform: translateY(0px);
	     -o-transform: translateY(0px);
	        transform: translateY(0px);
}

.loadingbar-success{
    background: #29683e !important;
}

.loadingbar-fail{
    background-color: #441310 !important;
}

.email-fail-contato-msg a{
    text-decoration: underline;
    color: var(--whitesmoke-color);
}

.email-fail-contato-msg a:hover{
    cursor: pointer;
    color: #e79e99 !important
}

@media screen and (max-width: 870px) and (min-width: 768px) {
    .field{
        width: 100% !important;
    }
}

@media screen and (max-width: 765px) and (min-width: 0px) {
    #contato-form-container {
        padding: 0px 20px 0px 20px;
        flex-direction: column;
    }
    #container-outside-form{
        margin-top: 40px;
    }
    .field input,.field select,.field textarea{
        padding: 0 0.75rem !important;
    }
    .field{
        width: 100% !important;
    }
}

@media screen and (max-width: 500px) {
    .email-enviado-msg, .email-fail-envio-msg, .email-enviando-msg{
        font-size: 0.9rem;
    }
}