@charset "UTF-8";
@import url(normalize.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700);
/**
 * TV Franca 23
 * @version v1.0
 * @link http://tvfranca23.com.br
 * Copyright (c) 2017 Alsite - DevTeam
 */
/* reset */
/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/
ul {
  list-style: none;
  padding-left: 0px;
}
/* fonte */
/* cores */
html {
  -webkit-font-smoothing: antialiased;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  min-height: 100vh;
  position: relative;
  overflow: visible;
}
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  background-color: #ffffff;
  overflow: visible;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased !important;
  min-height: 100vh;
}
body.page-interno {
  margin-bottom: 80px;
}
.flex-grow {
  flex: 1;
}
a {
  color: #262f40;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.nopadding {
  padding: 0;
}
.row.vdivide [class*='col-']:not(:last-child):after {
  background: #43516f;
  width: 1px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  min-height: 70px;
}
.btn-tvfranca {
  color: #262f40;
  background-color: #ffffff;
  border-color: #262f40;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}
.btn-tvfranca:hover {
  color: #ffffff;
}
.btn-tvfranca:focus {
  color: #ffffff;
}
.btn-tvfranca:before {
  content: "";
  background-color: #262f40;
  position: absolute;
  width: 200%;
  height: 150%;
  opacity: 0;
  left: -50%;
  bottom: 0;
  transform-origin: left bottom;
  transform: rotate(-90deg) translateZ(0);
  transition: transform 1.5s cubic-bezier(0.01, -0.24, 0, 0.68), opacity 1.5s cubic-bezier(0.01, -0.24, 0, 0.68);
}
.btn-tvfranca .button__label {
  position: relative;
  z-index: 2;
}
.btn-tvfranca:hover:before,
.btn-tvfranca:focus:before {
  transform: rotate(0deg) translateZ(0);
  opacity: 1;
  transition-duration: .3s, .3s;
}
/* =========================== PAGE LOADER ========================== */
.page-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background: #ffffff;
  display: none;
}
.loader {
  position: relative;
  width: 44px;
  height: 8px;
  margin: 0 auto;
  top: 50%;
  text-align: center;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #262f40;
  position: absolute;
}
.dot_1 {
  animation: animateDot1 1.5s linear infinite;
  left: 12px;
  background: #f67032;
}
.dot_2 {
  animation: animateDot2 1.5s linear infinite;
  animation-delay: 0.5s;
  left: 24px;
}
.dot_3 {
  animation: animateDot3 1.5s linear infinite;
  left: 12px;
}
.dot_4 {
  animation: animateDot4 1.5s linear infinite;
  animation-delay: 0.5s;
  left: 24px;
}
@keyframes animateDot1 {
  0% {
    transform: rotate(0deg) translateX(-12px);
  }
  25% {
    transform: rotate(180deg) translateX(-12px);
  }
  75% {
    transform: rotate(180deg) translateX(-12px);
  }
  100% {
    transform: rotate(360deg) translateX(-12px);
  }
}
@keyframes animateDot2 {
  0% {
    transform: rotate(0deg) translateX(-12px);
  }
  25% {
    transform: rotate(-180deg) translateX(-12px);
  }
  75% {
    transform: rotate(-180deg) translateX(-12px);
  }
  100% {
    transform: rotate(-360deg) translateX(-12px);
  }
}
@keyframes animateDot3 {
  0% {
    transform: rotate(0deg) translateX(12px);
  }
  25% {
    transform: rotate(180deg) translateX(12px);
  }
  75% {
    transform: rotate(180deg) translateX(12px);
  }
  100% {
    transform: rotate(360deg) translateX(12px);
  }
}
@keyframes animateDot4 {
  0% {
    transform: rotate(0deg) translateX(12px);
  }
  25% {
    transform: rotate(-180deg) translateX(12px);
  }
  75% {
    transform: rotate(-180deg) translateX(12px);
  }
  100% {
    transform: rotate(-360deg) translateX(12px);
  }
}
/* =========================== END PAGE LOADER ========================== */
/* =========================== HEADER ========================== */
header {
  background-color: #ffffff;
}
header .logo {
  padding: 10px 0;
}
header .logo img {
  width: auto;
  max-height: 63px;
}
header nav .nav-link {
  line-height: 83px;
  font-size: 16px;
  color: #262f40;
  font-weight: 400;
  padding: 0 1em;
}
header nav .nav-link:hover {
  color: #f67032;
}
/* BANNER
--------------------------------------------------------------------------------*/

.bg_quadro{
	padding: 20px 0;
	background: url("../img/fundoBanner.png");
	box-shadow: 0px 1px 3px 3px rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;
}

/* BANNER FIM
--------------------------------------------------------------------------------*/

/* DESTAQUES
--------------------------------------------------------------------------------*/

.destaques{
	padding: 20px 0;
  margin-bottom: 30px;
}
.final-destaques{
  padding: 0px 0;
	box-shadow: 0px 1px 3px 3px rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;
}

/* DESTAQUER FIM
--------------------------------------------------------------------------------*/
/* =========================== PLAYER ========================== */
#wrap-player {
  background-color: #262f40;
  margin-bottom: 30px;
}
#wrap-player .player {
  padding: 30px 0;
  text-align: center;
}
#wrap-player .wrap-programacao {
  padding: 15px 0;
  background-color: #1d2432;
}
#wrap-player .wrap-programacao .info-programa span {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
}
#wrap-player .wrap-programacao .info-programa span.tag {
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  line-height: 11px;
  background: #43516f;
  padding: 3px;
  margin: 0 5px;
  display: static;
}
#wrap-player .wrap-programacao .info-programa span.tag.vermelho {
  background: #ff0000;
}
#wrap-player .wrap-programacao .info-programa h4 {
  color: #ffffff;
  margin: 0px 0px 5px;
}
#wrap-player .wrap-programacao .info-programa p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: normal;
  margin-bottom: 0px;
}
/* =========================== PROGRAMAS HOME ========================== */
#programas .programa {
  margin-bottom: 30px;
}
/* =========================== FOOTER ========================== */
footer {
  background-color: #262f40;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  padding: 25px 0px;
}
body.page-interno footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  min-height: 80px;
}
/* =========================== INTERNO ========================== */
#titulo {
  background-color: #1d2432;
}
#titulo h3 {
  color: #ffffff;
  text-transform: uppercase;
  margin: 0px;
  padding: 40px 0;
}
#interno {
  padding-top: 30px;
}
#interno.programas .programa {
  margin-bottom: 30px;
}
#interno.programas .video {
  margin-bottom: 30px;
}
#interno.noticias {
  margin-bottom: 60px;
}
#interno.noticias .noticia {
  border-bottom: 1px dashed rgba(1, 1, 1, 0.2);
  padding-bottom: 15px;
  margin-bottom: 30px;
}
#interno.noticias .noticia small {
  display: block;
  font-size: 12px;
  color: #262f40;
  font-weight: 400;
  margin-bottom: 0px;
}
#interno.noticias .noticia h5 {
  font-size: 18px;
  text-transform: initial;
  font-weight: 700;
  color: #1d2432;
  line-height: 24px;
  margin-bottom: 0px;
}
#interno.noticias .noticia p {
  font-style: italic;
  color: #010101;
  font-size: 14px;
  line-height: normal;
}
#interno.noticias .noticia a:hover {
  color: #f67032;
  text-decoration: none;
}
#interno.noticias .exibe_noticia h4 {
  text-transform: initial;
  margin-bottom: 10px;
  padding-bottom: 0px;
}
#interno.noticias .exibe_noticia small {
  display: block;
  color: #f67032;
}
#interno.noticias .exibe_noticia .img-noticia {
  float: left;
  padding-left: 0px;
}
#interno.noticias .exibe_noticia p {
  line-height: 1.1;
  text-align: justify;
}
#interno.fotos {
  margin-bottom: 60px;
}
#interno.fotos .card {
  margin-bottom: 30px;
}
#interno.fotos .card .card-block {
  text-align: center;
}
#interno.fotos .card .card-title {
  font-size: 16px;
  text-transform: initial;
  margin-bottom: 0px;
  text-align: left;
}
#interno.fotos .card .card-text {
  font-size: 12px;
  text-align: left;
}
#interno.fotos .card a.btn-piaget {
  padding: 3px 15px 5px;
}
#interno.fotos .foto_evento {
  margin-bottom: 15px;
}
#interno.programacao {
  margin-bottom: 60px;
}
#interno.programacao .nav-item .nav-link.active {
  font-weight: 700;
}
#interno.programacao .tab-content {
  padding: 20px;
  border-top: 0px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #010101;
}
#interno.programacao .tab-content h4 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 5px;
}
#interno.programacao .tab-content .img-programacao {
  margin-bottom: 30px;
}
#interno.programacao .tab-content .timeline {
  list-style: none;
  padding-left: 0;
}
#interno.programacao .tab-content .timeline li {
  border-top: 1px dotted #92ADBE;
  padding: 10px 0;
}
#interno.programacao .tab-content .timeline li .hora {
  color: #1A262F;
  clear: both;
  font-size: 16px;
  font-weight: bold;
  border-right: 1px solid #92ADBE;
  padding-right: 10px;
  margin-right: 7px;
  line-height: 22px;
}
#interno.programacao .tab-content .timeline li .nome a {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  color: #1A262F;
  text-transform: uppercase;
}
#interno.contato {
  margin-bottom: 60px;
}

.busca .form-group {
  position: relative;
}
.busca .form-group .btnSearch {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-left: 0;
}
.titulo {
  background:#262F40;
  padding: 20px;
  position: relative;
  margin-block-end: 25px;
}
.titulo h4 {
  text-align: center;
  color: #FFF;
  font-size: 40px;
}
