@charset "UTF-8";
/*
Plugin Name: Tempero Parceiros
Plugin URI: https://temperopropaganda.com.br
Author: Elton Baroncello
Description: Plugin de leads e formulários de contato Tempero Propaganda
Version: 0.3
License: Private License
License URI: https://temperopropaganda.com.br

  _______                                  _____                                             _       
 |__   __|                                |  __ \                                           | |      
    | | ___ _ __ ___  _ __   ___ _ __ ___ | |__) | __ ___  _ __   __ _  __ _  __ _ _ __   __| | __ _ 
    | |/ _ \ '_ ` _ \| '_ \ / _ \ '__/ _ \|  ___/ '__/ _ \| '_ \ / _` |/ _` |/ _` | '_ \ / _` |/ _` |
    | |  __/ | | | | | |_) |  __/ | | (_) | |   | | | (_) | |_) | (_| | (_| | (_| | | | | (_| | (_| |
    |_|\___|_| |_| |_| .__/ \___|_|  \___/|_|   |_|  \___/| .__/ \__,_|\__, |\__,_|_| |_|\__,_|\__,_|
                     | |                                  | |           __/ |                        
                     |_|                                  |_|          |___/                         
					 https://temperopropaganda.com.br



MASTER CSS
*/
.tempero_parceiro_form {
  /*
  border-radius: $border-radius;
  /* */
}
.tempero_parceiro_form * {
  background-color: transparent !important;
}
.tempero_parceiro_form .tempero_parceiros_return {
  padding: 36px;
  background-color: rgba(255, 174, 0, 0.3) !important;
  display: none;
}
.tempero_parceiro_form .forminputwrap_file label {
  font-weight: 700;
  padding-top: 18px;
}
.tempero_parceiro_form .forminputwrap_file [type=file] {
  /* Style the color of the message that says 'No file chosen' */
  color: hsl(0, 0%, 50%);
  margin-bottom: 32px;
}
.tempero_parceiro_form .forminputwrap_file [type=file]::-webkit-file-upload-button {
  background: hsl(0, 0%, 50%);
  border: 2px solid hsl(0, 0%, 50%);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  outline: none;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: all 1s ease;
}
.tempero_parceiro_form .forminputwrap_file [type=file]::-webkit-file-upload-button:hover {
  background: #fff;
  border: 2px solid #014421;
  color: #014421;
}
.tempero_parceiro_form .tempero_form_fields {
  /** {
  	background-color: rgba($color: magenta, $alpha: 0.2);
  	outline: 1px dotted limegreen!important;
  }*/
  position: relative;
}
.tempero_parceiro_form .tempero_form_fields input:not(input[type=radio]), .tempero_parceiro_form .tempero_form_fields select, .tempero_parceiro_form .tempero_form_fields label, .tempero_parceiro_form .tempero_form_fields span, .tempero_parceiro_form .tempero_form_fields textarea {
  box-sizing: border-box;
  display: block;
}
.tempero_parceiro_form .tempero_form_fields .input_wrapper {
  position: relative;
  height: 60px;
  overflow: hidden;
  display: block;
}
.tempero_parceiro_form .tempero_form_fields .input_wrapper label {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid #014421;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}
.tempero_parceiro_form .tempero_form_fields .input_wrapper label:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid #FFCC00;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
.tempero_parceiro_form .tempero_form_fields .input_wrapper label .content-name {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-bottom: 5px;
  transition: all 0.3s ease;
  width: 100%;
}
.tempero_parceiro_form .tempero_form_fields .input_wrapper select,
.tempero_parceiro_form .tempero_form_fields .input_wrapper textarea,
.tempero_parceiro_form .tempero_form_fields .input_wrapper input:not([type=radio]):not([type=checkbox]) {
  position: absolute;
  outline: 1px solid limegreen;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 20px 0 0 0 !important;
  line-height: 1;
  border: none;
  background-color: #FFFFFF;
  margin: 0px;
  box-shadow: none;
  color: #014421;
}
.tempero_parceiro_form .tempero_form_fields .input_wrapper select:focus,
.tempero_parceiro_form .tempero_form_fields .input_wrapper textarea:focus,
.tempero_parceiro_form .tempero_form_fields .input_wrapper input:not([type=radio]):not([type=checkbox]):focus {
  outline: none;
}
.tempero_parceiro_form .tempero_form_fields .input_wrapper select:focus + .label-name .content-name, .tempero_parceiro_form .tempero_form_fields .input_wrapper select:valid + .label-name .content-name,
.tempero_parceiro_form .tempero_form_fields .input_wrapper textarea:focus + .label-name .content-name,
.tempero_parceiro_form .tempero_form_fields .input_wrapper textarea:valid + .label-name .content-name,
.tempero_parceiro_form .tempero_form_fields .input_wrapper input:not([type=radio]):not([type=checkbox]):focus + .label-name .content-name,
.tempero_parceiro_form .tempero_form_fields .input_wrapper input:not([type=radio]):not([type=checkbox]):valid + .label-name .content-name {
  transform: translateY(-100%);
  font-size: 14px;
  left: 0px;
  color: hsl(0, 0%, 50%);
}
.tempero_parceiro_form .tempero_form_fields .input_wrapper select:focus + .label-name::after, .tempero_parceiro_form .tempero_form_fields .input_wrapper select:valid + .label-name::after,
.tempero_parceiro_form .tempero_form_fields .input_wrapper textarea:focus + .label-name::after,
.tempero_parceiro_form .tempero_form_fields .input_wrapper textarea:valid + .label-name::after,
.tempero_parceiro_form .tempero_form_fields .input_wrapper input:not([type=radio]):not([type=checkbox]):focus + .label-name::after,
.tempero_parceiro_form .tempero_form_fields .input_wrapper input:not([type=radio]):not([type=checkbox]):valid + .label-name::after {
  transform: translateX(0%);
}
.tempero_parceiro_form .tempero_form_fields .radio-contato-wrapper {
  display: flex;
  padding: 0px;
}
.tempero_parceiro_form .tempero_form_fields .radio-contato-wrapper input[type=radio] + label {
  padding: 0px;
  border: 2px solid #014421;
  width: 50%;
  margin: 0;
  text-align: left;
  color: #014421;
  font-weight: 700;
  padding: 9px;
}
.tempero_parceiro_form .tempero_form_fields .radio-contato-wrapper input[type=radio]:checked + label {
  background-color: #014421;
  color: #FFFFFF;
}
.tempero_parceiro_form .tempero_form_fields .radio-contato-wrapper input[type=radio] {
  display: none;
}
.tempero_parceiro_form .produtos-cta-wrap {
  text-align: center;
}
.tempero_parceiro_form .produtos-cta-wrap button.button_tempero_primary {
  text-align: none;
  padding: 9px;
  min-width: 150px;
  background-color: #FFFFFF;
  color: #014421;
  text-transform: uppercase;
  border: 1px solid #014421;
  border-radius: 6px;
  margin: 18px auto;
  font-weight: 700;
}
.tempero_parceiro_form .produtos-cta-wrap button.button_tempero_primary:hover, .tempero_parceiro_form .produtos-cta-wrap button.button_tempero_primary:focus {
  background-color: #014421;
  color: #FFFFFF;
}
.tempero_parceiro_form .submit_button_wrapper {
  padding: 32px 0;
  text-align: center;
}
.tempero_parceiro_form .submit_button_wrapper button {
  background-color: #014421 !important;
  margin: 0 auto;
  width: 100%;
}

.tempero_parceiro_form_busca {
  margin-top: 72px;
}
.tempero_parceiro_form_busca .form_row {
  display: flex;
  flex-direction: row;
}
.tempero_parceiro_form_busca .form_row .form_cel {
  width: 50%;
}
.tempero_parceiro_form_busca .form_row .form_cel label {
  font-weight: 700;
  color: #014421;
}
.tempero_parceiro_form_busca .form_row .form_cel select {
  background-color: #014421;
  color: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #FFCC00;
}
.tempero_parceiro_form_busca .form_row .form_cel.form_cel_estado {
  width: 160px;
  min-width: 160px;
  margin-right: 18px;
}
.tempero_parceiro_form_busca .form_row .form_cel.form_cel_cidade {
  width: 100%;
}
.tempero_parceiro_form_busca .submit_button_wrapper {
  display: none;
}

#confirma_presenca * {
  background-color: transparent !important;
}
#confirma_presenca input:not(input[type=radio]), #confirma_presenca select, #confirma_presenca label, #confirma_presenca span, #confirma_presenca textarea {
  box-sizing: border-box;
  display: block;
}
#confirma_presenca .form_row {
  display: flex;
  width: 100%;
  gap: 18px;
  position: relative;
}
#confirma_presenca .form_row .form_cell {
  width: 100%;
  display: block;
}
#confirma_presenca .form_row .form_cell_wrapper {
  position: relative;
  height: 60px;
  overflow: hidden;
  display: block;
}
#confirma_presenca .form_row .form_cell_wrapper label.label-name {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid #014421;
  padding: 0px;
  margin: 0px;
  font-weight: 700;
}
#confirma_presenca .form_row .form_cell_wrapper label.label-name:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid #FFCC00;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
#confirma_presenca .form_row .form_cell_wrapper label.label-name .content-name {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-bottom: 5px;
  transition: all 0.3s ease;
  width: 100%;
}
#confirma_presenca .form_row .form_cell_wrapper select,
#confirma_presenca .form_row .form_cell_wrapper textarea,
#confirma_presenca .form_row .form_cell_wrapper input:not([type=radio]):not([type=checkbox]) {
  position: absolute;
  outline: 1px solid limegreen;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 20px 0 0 0 !important;
  line-height: 1;
  border: none;
  background-color: #FFFFFF;
  margin: 0px;
  box-shadow: none;
  color: #014421;
}
#confirma_presenca .form_row .form_cell_wrapper select:focus,
#confirma_presenca .form_row .form_cell_wrapper textarea:focus,
#confirma_presenca .form_row .form_cell_wrapper input:not([type=radio]):not([type=checkbox]):focus {
  outline: none;
}
#confirma_presenca .form_row .form_cell_wrapper select:focus + .label-name .content-name, #confirma_presenca .form_row .form_cell_wrapper select:valid + .label-name .content-name,
#confirma_presenca .form_row .form_cell_wrapper textarea:focus + .label-name .content-name,
#confirma_presenca .form_row .form_cell_wrapper textarea:valid + .label-name .content-name,
#confirma_presenca .form_row .form_cell_wrapper input:not([type=radio]):not([type=checkbox]):focus + .label-name .content-name,
#confirma_presenca .form_row .form_cell_wrapper input:not([type=radio]):not([type=checkbox]):valid + .label-name .content-name {
  transform: translateY(-100%);
  font-size: 14px;
  left: 0px;
  color: hsl(0, 0%, 50%);
}
#confirma_presenca .form_row .form_cell_wrapper select:focus + .label-name::after, #confirma_presenca .form_row .form_cell_wrapper select:valid + .label-name::after,
#confirma_presenca .form_row .form_cell_wrapper textarea:focus + .label-name::after,
#confirma_presenca .form_row .form_cell_wrapper textarea:valid + .label-name::after,
#confirma_presenca .form_row .form_cell_wrapper input:not([type=radio]):not([type=checkbox]):focus + .label-name::after,
#confirma_presenca .form_row .form_cell_wrapper input:not([type=radio]):not([type=checkbox]):valid + .label-name::after {
  transform: translateX(0%);
}
#confirma_presenca .form_action-row {
  padding: 18px;
  text-align: center;
}
#confirma_presenca .form_action-row .button,
#confirma_presenca .form_action-row button {
  border-radius: 6px;
  background-color: #00963F !important;
  color: #FFCC00;
  text-transform: uppercase;
  padding: 18px;
}
#confirma_presenca .form_action-row #adicionar_convidado {
  background-color: #FFCC00 !important;
  color: #014421;
}
#confirma_presenca .form_action-row2 {
  padding: 18px;
  text-align: center;
}
#confirma_presenca .form_action-row2 .button,
#confirma_presenca .form_action-row2 button {
  border-radius: 6px;
  background-color: #FFCC00 !important;
  color: #00963F;
  font-weight: 900;
  text-transform: uppercase;
  padding: 18px;
}
#confirma_presenca .form_action-row2 #adicionar_convidado {
  background-color: #FFCC00 !important;
  color: #014421;
}

/*# sourceMappingURL=tempero-usuarios.css.map */
