/*ABAS*/
.tab_container {
	margin: 0 auto;
	padding-top: 0px;
	position: relative;
}

span {
  clear: both;
  display: none;
}

.abasAnunciar {
  clear: both;
  display: none;
}

.formsAnuncios label {
  font-weight: 700;
  font-size: 12px;
  display: block;
  float: left;
  width: 25%;
  padding: 1.5em;
  color: #757575;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #d8d8d8;
  margin-bottom: 0px !important;
  border-left: 1px solid #c0c0c0;
}
.brA {
  border-right: 1px solid #c0c0c0;
}

.aba1WDT {
  width: 10%;
  border-left: none;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
  display: block;
  padding: 0px;
  background: #fff;
  color: #999;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
  -webkit-animation: fadeInScale 0.7s ease-in-out;
  -moz-animation: fadeInScale 0.7s ease-in-out;
  animation: fadeInScale 0.7s ease-in-out;
}
.tab_container .tab-content h3  {
  text-align: center;
}

.tab_container [id^="tab"]:checked + label {
  background: #fff;
  box-shadow: inset 0 3px #C52D2F;
}

.tab_container [id^="tab"]:checked + label .fa {
  color: #C52D2F;
}

label .fa {
  font-size: 1.3em;
  margin: 0 0.4em 0 0;
}
label .fas {
  font-size: 1.3em;
  margin: 0 0.4em 0 0;
}

/*Media query*/
@media only screen and (max-width: 930px) {
  label span {
    font-size: 14px;
  }
  label .fa {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  label span {
    display: none;
  }

  label .fa {
    font-size: 16px;
  }

  .tab_container {
    width: 98%;
  }
}

/*Content Animation*/
@keyframes fadeInScale {
  0% {
  	transform: scale(0.9);
  	opacity: 0;
  }
  
  100% {
  	transform: scale(1);
  	opacity: 1;
  }
}

.btnSalvar {
  border-radius: 0;
  border: none;
  text-transform: uppercase;
}