:root{
  --transition:all 0.3s ease;
  --color-text:#3a3a3a;
}
*:focus{
  outline: none !important;
}
body{
  background-color: #F9FAFC !important;
  grid-template: unset;
}
/* Estilos das imagem laterais  */
.vector_art{
  position: fixed;
  height: 48vh;
  bottom: 0px;
  margin: 0px 20px;
}
.image_logo {
  position: relative;
  width: max-content;
  height: 50px;
  padding: 5px 0px;
  margin-left: calc(50% - 80px);
  display: inline-block;
}
.image_logo img {
  height: 100%;
  object-fit: contain;
}
/* Filtro das linhas de carregamento */
.filter_loading{
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
/* Linhas de carregamento */
.father_line_loading{
	position: absolute;
  top: 0px;
  left: 0px;
	height: 3px;
	width: 100%;
	background-color: transparent;
	pointer-events: none;
	overflow: hidden;
  opacity: 0;
	--animation-prop-one: line_loading 3s linear infinite;
	--animation-prop-two: line_loading_fast 3s linear infinite;
  z-index: 2;
}
/* Linha de carregamento lenta */
.line_loading{
	position: absolute;
	height: 100%;
	background-color: var(--color_main);
	animation: var(--animation-prop-one);
}
@keyframes line_loading {
  0% {
		width:0%;
		left: -25%;
  }
	20%{
		left:30%; 
	}
	30%{
		width:60%; 
	}
	50%{
		width: 30%;
		left: 90%;
	}
  100% {
		width: 100%;
		left: 200%;
  }
}
/* Linha de carregamento rapida */
.line_loading_fast{
	position: absolute;
	height: 100%;
	background-color: var(--color_main);
	animation: var(--animation-prop-two);
	animation-delay: calc(2s / 2);
}
@keyframes line_loading_fast {
  0% {
		width: 10%;
		left: -10%;
  }
	25%{
		width: 70%;
		left: 25%;
	}
	50%{
		width: 10%;
		left: 100%;
	}
  100% {
		width: 0%;
		left: 100%;
  }
}
/* Box com os campos */
.box_informations{
  position: relative;
  width: 350px;
  margin:30px auto;
  background-color: #FFFFFF;
  border-radius: 3px;
  padding: 35px 40px;
  box-shadow: 1px 3px 8px 1px rgba(0,0,0,0.13);
  overflow: hidden;
  height: max-content;
  margin-bottom: 30px;
  transition:height 0.3s ease;
  max-width: calc(100% - 30px);
}
/* Estilos do titulo */
h5{
  text-align: center;
  color: #5E6C84 !important;
  letter-spacing: -0.01em;
  font-size: 1.25rem;
  margin: 0px;
  width: 100%;
}

#alert_user{
  border: 1px solid #d93025;
  color: #d93025;
  background-color: hsl(4, 71%, 50%, 0.15);
  border-radius: 4px;
  padding:5px 10px;
  font-size: 13px;
  line-height: normal;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
#alert_user span{
  margin-left: 7px;
}
/* Estilos da input  */
.father-input-df-4{
	width: 100%;
	margin: 35px 0px;
  position: relative;
}
.input-df-4{
	font: 15px/24px "Lato", Arial, sans-serif;
	color: #333;
	width: 100%;
	box-sizing: border-box;
	letter-spacing: 1px;
	border: 0;
	padding: 4px 0;
	border-bottom: 1px solid #ccc;
	background-color: transparent;
}
.input-df-4 ~ .focus-border{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #3399FF;
	transition: 0.4s;
}
.input-df-4:focus ~ .focus-border,
.input-df-4:focus ~ .focus-border, .input-df-4:not(:placeholder-shown) ~ .focus-border, .has-content.input-df-4 ~ .focus-border{
	width: 100%;
	transition: 0.4s;
}
.input-df-4 ~ label{
  position: absolute;
  left: 6px;
  width: 100%;
  top: 2px;
  color: #aaa;
  transition: 0.3s;
  letter-spacing: 0.5px;
  cursor: text;
}
.input-df-4:focus ~ label, .input-df-4:not(:placeholder-shown) ~ label, .has-content.input-df-4 ~ label{
  top: -16px;
  left: 0px;
  font-size: 14px;
  color: #3399FF;
  transition: 0.3s;
}
.input-df-4:focus, .input-df-4:not(:placeholder-shown), .has-content.input-df-4{
 color: #3399FF;
}
.toggle_view {
  position: absolute;
  height: 25px;
  width: 25px;
  right: 5px;
  bottom: 3px;
  cursor: pointer;
  z-index: 1;
}
.toggle_view svg{
  position: absolute;
  transition: all 0.3s ease;
  transition-delay: 0.1s; 
  opacity: 0.6;
}
input{
  padding-right: 40px;
}
input[type='password'] ~ .toggle_view .protect{
  opacity: 0;
}
input[type='text'] ~ .toggle_view .see{
  opacity: 0;
}
/* Estilos do botão */
.button-default-3{
  position: relative;
  width: max-content;
  height: max-content;
  margin: 0 auto;
  color:var(--color_main); 
  text-align:center;
  cursor: pointer;
  display:block;
  transition: all 0.3s ease;
}
.button-default-3:hover {
  color:var(--color_main_dark); 
}
.button-default-3::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  top: calc(50% + 2px);
  right: -14px;
  background-color: currentColor;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.2s ease;
}
.button-default-3:hover::before{
  right: -20px;
}
.button-default-3::after{
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 0px);
  right: -14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotateZ(45deg);
  transition: all 0.2s ease;
}
.button-default-3:hover::after{
  right: -20px;
}


.button-df-6{
  width: 100%;
  background-color: transparent;
  color: #fff;
  border-radius: 3px;
  font-weight: bold;
  padding: 10px 20px;
  border: 0px;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.box_informations .button-df-6:not(:disabled) {
  background-color: var(--color_main);
}
.box_informations .button-df-6:not(:disabled):hover {
  background-color: var(--color_main_dark);
}
/* Estilos do link para a cadastrar */
.line_division{
  position: relative;
  display: block;
  border-top:1px solid hsl(0,0%,80%);
  margin: 25px 0px 20px;
}
.link_login{
  position: relative;
  display: block;
  margin-top: 30px;
  text-align: center;
  color: #303030;
  transition: color .3s ease;
}
.link_login:hover{
  color: var(--color_main);;
}
/* Otimização Mobile  */

@media (max-width:767px) {
  .align_informaions_plan h4 {
    font-size:20px;
  }
  .align_informaions_plan p{
    font-size: 24px;
  }
}
@media (max-width: 592px) {
  :root {
    --height-header-bottom: 90px;
  }
  .vector_art {
    display: none;
  }
  .vector_art:not(:first-child) {
    width: 70%;
    max-width: 70%;
    height: auto;
    margin-left: 15%;
    right: unset !important;
  }
  .align_informaions_plan{
    flex-direction: column;
    align-items: flex-start;
    margin-right: 10px;
  }
  .align_informaions_plan h4 {
    font-size:20px;
  }
  .align_informaions_plan p{
    font-size:22px;
  }
}
@media (max-width: 480px) {
  .join_options_title h5{
    font-size: 19px;
  }
  .join_options_title svg{
    width: 24px;
    height: 100%;
  }
  .align_informaions_plan h4 {
    font-size:18px;
  }
  .align_informaions_plan p{
    font-size:18px;
  }
  .header_show_plan button{
    font-size: 15px;
  }
}
@media (max-width:400px) {
   .form-steps {
      display: none;
   }
}
@media (max-width:355px) {
  :root {
    --height-header-bottom: 70px;
  }
  #button_whatsapp {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: calc(var(--height-header-bottom) + 50px);
  }

  .box_informations{
    padding: 30px 20px;
    margin-bottom: calc(var(--height-header-bottom) + 75px);
  }
  .header_show_plan nav {
    min-height: var(--height-header-bottom);
    height: max-content;
    justify-content: center;
  }
  .header_show_plan .grid-row .cl-12 {
    padding: 0px 0px;
  }
  .align_informaions_plan {
    width: max-content;
    margin: 6px 10px;
    align-items: center;
  }
  .align_informaions_plan h4{
    font-size: 17px;
    padding-bottom: 3px;
  }
  .align_informaions_plan p{
    font-size: 15px;
    white-space: nowrap;
  }
  .header_show_plan button{
    padding: 5px 12px;
    font-size: 13px;
    margin: 5px 10px 12px;
  }
}