@charset "utf-8";
/*
Theme Name: RTP Açores
Author: RTP Multimédia
Description: Tema RTP Açores
Version: 1.0
*/

@media screen and (min-width:1320px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1260px;
  }
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  min-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 1s ease;
}

a:hover {
  text-decoration: none;
}

/* .container, .container-lg, .container-md, .container-sm, .container-xl{
  max-width: 1400px;
} */

:root {
  --maincolor: #CC33CC;
  --white: #ffffff;
  --gray: #404040;
  --gray-light: #666666;
  --gray-light-2: #c4c4c4;
  --gray-light-3: #f3f3f3;
  --gray-light-4: #8D8D8D;
  --black: #1A1A1A;
}

.red {
  color: var(--maincolor);
}

.white {
  color: #fff;
}

.bg-red {
  background-color: var(--maincolor);
}

.bg-white {
  background-color: var(--white);
}

.bg-gray {
  background-color: var(--gray);
}

.bg-gray-light-3 {
  background-color: var(--gray-light-3);
}

.bg-black {
  background-color: #1A1A1A;
}

.border-red {
  border: 1px solid var(--maincolor);
}

.border-white {
  border: 1px solid var(--white);
}

.overflow-hidden {
  overflow: hidden;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.collapse.show {
  display: block;
}

/**********************************************************
** Menu & Navbar
/**********************************************************/

.navbar {
  background: var(--gray-light-3);
  height: 60px;
  z-index: 10;
}

.navbar-collapse {
  height: 100%;
}

.navbar-logo {
  background-color: var(--maincolor);
  line-height: 55px;
  text-align: center;
  padding: 0;
}

.page-template-page-programacao .navbar-logo {
  padding-top: 20px;
}

.navbar-expand-lg .navbar-nav {
  font-size: 0;
}

.navbar-toggler {
  padding: 0 15px 0 0;
}

.navbar-toggler-icon {
  width: auto;
  height: auto;
  display: inline-block;
  cursor: pointer;
  vertical-align: inherit;
}

.bar1,
.bar3 {
  width: 21px;
  height: 2px;
  background-color: #fff;
  margin: 3px 0 3px 0;
  transition: 0.4s;
}

.invis {
  width: 21px;
  height: 2px;
  margin: 2px 0 2px 0;
}

.change .bar1 {
  /* -webkit-transform: rotate(-45deg) translate(-5px, 6px); */
  transform: rotate(-45deg) translate(-4px, 6px);
}

.change .bar3 {
  /* -webkit-transform: rotate(45deg) translate(-5px, -6px); */
  transform: rotate(45deg) translate(-1px, -3px);
}

/* Cleaning what comes from EPG styles */
.navbar-nav .nav-item+.nav-item {
  margin-left: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 22px 0 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-item.show .nav-link::after,
.navbar-expand-lg .navbar-nav .nav-link:hover::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--maincolor);
  border: 0;
  margin: 0;
}

.navbar .dropdown-menu.show {
  border: 0;
  box-shadow: 0px 14px 15px -6px rgba(0, 0, 0, 0.09);
  display: flex;
  background: var(--white);
  margin: 0;
  border-radius: 0;
  justify-content: center;
  padding: 14px 0;
}

.navbar .dropdown-menu .dropdown-item {
  width: auto;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--gray);
  padding-left: 20px;
  padding-right: 20px;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  opacity: 0.8;
}

.dropdown-toggle::after {
  content: none;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

/**********************************************************
** Search Bar
/**********************************************************/

.search-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.search-icon:hover {
  opacity: 0.8;
}

.search-icon i {
  font-size: 20px;
  color: var(--maincolor);
}

.search-input {
  display: none;
  left: auto;
  top: 0;
  position: absolute;
  right: 87px;
}

.search-input-mobile {
  position: relative;
  z-index: 10;
  width: 100%;
}

.search-input-mobile input {
  width: 100%;
}

.search-control {
  width: 232px;
  height: 60px;
  border: 0;
  background-color: #EAEAEA;
  color: #8C8C8C;
  box-shadow: none;
  padding: 8px 17px;
  font-size: 16px;
  font-weight: normal;
}

.search-input-mobile .search-control {
  font-size: 22px;
}

.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--maincolor);
  padding: 8px 15px;
  font-size: 27px;
  line-height: 45px;
  height: calc(100% - 15px);
}

.close-btn:hover {
  opacity: 0.8;
}

.close-btn i {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.close-btn:hover {
  color: var(--maincolor);
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #8C8C8C;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #8C8C8C;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #8C8C8C;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #8C8C8C;
}

textarea:focus,
input:focus {
  outline: none;
}

.search-control-page {
  border: 0;
  font-size: 34px;
  font-weight: 300;
  line-height: 0.85;
  color: #37474f;
  width: 90%;
}

/**********************************************************
** Theme Switcher
/**********************************************************/

.theme-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, background-color 0.25s ease;
  padding-left: 20px;
  padding-right: 20px;
  border-left: 1px solid rgba(196, 196, 196, 0.3);
}

.switcher {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.switcher input {
  display: none;
}

.switcher label {
  width: 46px;
  height: 26px;
  cursor: pointer;
  margin-top: 5px;
  position: relative;
}

.switcher label:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.switcher label:after {
  content: "";
  display: block;
  position: absolute;
  width: 46px;
  height: 26px;
  background-color: #334148;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 302.4 302.4" style="fill:rgba(255,255,255,.8)"><path d="M204.8 97.6C191.2 84 172 75.2 151.2 75.2s-40 8.4-53.6 22.4c-13.6 13.6-22.4 32.8-22.4 53.6s8.8 40 22.4 53.6c13.6 13.6 32.8 22.4 53.6 22.4s40-8.4 53.6-22.4c13.6-13.6 22.4-32.8 22.4-53.6s-8.4-40-22.4-53.6zm-14.4 92.8c-10 10-24 16-39.2 16s-29.2-6-39.2-16-16-24-16-39.2 6-29.2 16-39.2 24-16 39.2-16 29.2 6 39.2 16 16 24 16 39.2-6 29.2-16 39.2zM292 140.8h-30.8c-5.6 0-10.4 4.8-10.4 10.4 0 5.6 4.8 10.4 10.4 10.4H292c5.6 0 10.4-4.8 10.4-10.4 0-5.6-4.8-10.4-10.4-10.4zM151.2 250.8c-5.6 0-10.4 4.8-10.4 10.4V292c0 5.6 4.8 10.4 10.4 10.4 5.6 0 10.4-4.8 10.4-10.4v-30.8c0-5.6-4.8-10.4-10.4-10.4zM258 243.6l-22-22c-3.6-4-10.4-4-14.4 0s-4 10.4 0 14.4l22 22c4 4 10.4 4 14.4 0s4-10.4 0-14.4zM151.2 0c-5.6 0-10.4 4.8-10.4 10.4v30.8c0 5.6 4.8 10.4 10.4 10.4 5.6 0 10.4-4.8 10.4-10.4V10.4c0-5.6-4.8-10.4-10.4-10.4zM258.4 44.4c-4-4-10.4-4-14.4 0l-22 22c-4 4-4 10.4 0 14.4 3.6 4 10.4 4 14.4 0l22-22c4-4 4-10.4 0-14.4zM41.2 140.8H10.4c-5.6 0-10.4 4.8-10.4 10.4s4.4 10.4 10.4 10.4h30.8c5.6 0 10.4-4.8 10.4-10.4 0-5.6-4.8-10.4-10.4-10.4zM80.4 221.6c-3.6-4-10.4-4-14.4 0l-22 22c-4 4-4 10.4 0 14.4s10.4 4 14.4 0l22-22c4-4 4-10.4 0-14.4zM80.4 66.4l-22-22c-4-4-10.4-4-14.4 0s-4 10.4 0 14.4l22 22c4 4 10.4 4 14.4 0s4-10.4 0-14.4z"/></svg>'), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 312.999 312.999" style="fill:rgba(255,255,255,.8)"><path d="M305.6 178.053c-3.2-.8-6.4 0-9.2 2-10.4 8.8-22.4 16-35.6 20.8-12.4 4.8-26 7.2-40.4 7.2-32.4 0-62-13.2-83.2-34.4-21.2-21.2-34.4-50.8-34.4-83.2 0-13.6 2.4-26.8 6.4-38.8 4.4-12.8 10.8-24.4 19.2-34.4 3.6-4.4 2.8-10.8-1.6-14.4-2.8-2-6-2.8-9.2-2-34 9.2-63.6 29.6-84.8 56.8-20.4 26.8-32.8 60-32.8 96.4 0 43.6 17.6 83.2 46.4 112s68.4 46.4 112 46.4c36.8 0 70.8-12.8 98-34 27.6-21.6 47.6-52.4 56-87.6 2-6-1.2-11.6-6.8-12.8zm-61.2 83.6c-23.2 18.4-52.8 29.6-85.2 29.6-38 0-72.4-15.6-97.2-40.4-24.8-24.8-40.4-59.2-40.4-97.2 0-31.6 10.4-60.4 28.4-83.6 12.4-16 28-29.2 46-38.4-2 4.4-4 8.8-5.6 13.6-5.2 14.4-7.6 29.6-7.6 45.6 0 38 15.6 72.8 40.4 97.6s59.6 40.4 97.6 40.4c16.8 0 32.8-2.8 47.6-8.4 5.2-2 10.4-4 15.2-6.4-9.6 18.4-22.8 34.8-39.2 47.6z"/></svg>');
  background-position: -15px center, right 5px center;
  background-repeat: no-repeat, no-repeat;
  background-size: 14px auto, 14px auto;
  border-radius: 13px;
  transition: background-color 0.25s ease, background-position 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.switcher input:checked+label:before {
  transform: translateX(20px);
}

.switcher input:checked+label:after {
  background-color: #f39100;
  background-position: 5px center, right -15px center;
}

.switcher input:disabled+label {
  cursor: not-allowed;
}

/**********************************************************
** Playing Now Section
/**********************************************************/

.playing-now-section {
  height: 100px;
  margin-bottom: 10px;
  background-image: linear-gradient(0deg, #F3F3F3 -100%, rgba(243, 243, 243, 0) 100%);
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
  /* overflow: hidden; */
}

.playing-now-section .playing-now-img {
  background: linear-gradient(180deg, #EFEFEF 55.83%, #DFDFDF 100%);
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  border-bottom-left-radius: 7px;
}

.playing-now-section .playing-now-img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 7px;
}

.playing-now-section .playing-now-data {
  padding-top: 20px;
}

.playing-now-section .playing-now-data a {
  display: inline-flex;
  width: 100%;
}

.playing-now-section .playing-now-data a:hover {
  opacity: 0.8;
}

.playing-now-section .playing-now-icon {
  height: 33px;
  width: 33px;
  border-radius: 50%;
  background-color: var(--maincolor);
  display: block;
  text-align: center;
  line-height: 33px;
  float: left;
  margin-right: 15px;
}

.page-template-page-programacao .playing-now-section .playing-now-icon {
  padding-top: 10px;
}

.playing-now-section .playing-now-icon-section {
  display: inline-block;
}

.playing-now-section .playing-now-icon i {
  color: #fff;
  font-size: 14px;
  position: relative;
  left: 2px;
}

.playing-now-section .playing-now-data .playing-now-live {
  display: inline-block;
}

.playing-now-section .playing-now-data .program-title {
  font-size: 16px;
  line-height: 22px;
  color: var(--maincolor);
  font-weight: 800;
  margin-bottom: 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.playing-now-section .playing-now-data .program-description {
  font-size: 14px;
  line-height: 19px;
  color: var(--gray-light-4);
  font-weight: 400;
  max-width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.playing-now-label-section {
  background: var(--maincolor);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  line-height: 14px;
  padding: 5px;
  border-radius: 2px;
  position: absolute;
  top: 20px;
  right: 15px;
}

/* .playing-now-label-section .playing-now-label i{
  margin-left: 5px;
  animation-name: opacity;
  animation-duration: 0.9s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease;
}

@keyframes opacity {
  from {
    opacity: 0;
    }
  to {
    opacitu: 1;
    }
} */

/* .playing-now-section .next-playing{
  padding-top: 20px;
} */

.playing-now-section .next-playing .next-playing-label {
  display: inline-block;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 10px;
}

.playing-now-section .next-playing .next-playing-label-date {
  color: var(--maincolor);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin-right: 10px;
}

.playing-now-section .next-playing .next-playing-label-title {
  color: var(--gray);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 50%;
}

.playing-now-section .next-playing #more-media {
  border: 0;
  background: transparent;
  padding-top: 2px;
  padding-left: 5px;
  padding-right: 0;
}

.playing-now-section .next-playing .dropdown-spacer {
  background-color: var(--maincolor);
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.playing-now-section .next-playing .dropdown.show .dropdown-spacer {
  border-bottom-right-radius: 0;
}

.playing-now-section .next-playing .dropdown.show button {
  background: none;
  color: inherit;
  border: none;
  padding-left: 0;
  padding-right: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.playing-now-section .next-playing .logo-container,
.playing-now-section .next-playing .arrow-container {
  align-self: center;
  text-align: center;
}

.playing-now-section .next-playing .media-container {
  align-self: center;
  text-align: left;
}

.playing-now-section .next-playing .media-container p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 2px;
}

.playing-now-section .next-playing .media-container h1 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
}

.playing-now-section .next-playing .arrow-container i {
  font-size: 24px;
  color: #fff;
  transition: transform 300ms ease;
}

.playing-now-section .next-playing .dropdown.show .arrow-container i {
  transform: rotate(180deg);
  transition: transform 300ms ease;
}

.more-media .dropdown-menu.show {
  background-color: var(--maincolor);
  left: 5px !important;
  top: -3px !important;
  border: 0;
  border-radius: 0;
  width: calc(100% - 5px);
  padding-top: 0;
  padding-bottom: 4px;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
  margin: 0;
}

.more-media .dropdown-menu .dropdown-element .row {
  min-height: 97px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

.playing-now-section .next-playing .dropdown.show button:hover .dropdown-element .row {
  background-color: rgba(255, 255, 255, 0.02);
}

.more-media .dropdown-menu .dropdown-element {
  padding: 5px 20px 0 20px;
}

.playing-now-data .playing-now-progress-bar .soundwaves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.pill-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 13px;
  font-weight: 800;
  border-radius: 30px;
  padding: 6px 10px;
  display: inline-block;
}

.pill-btn i {
  margin-left: 3px;
  font-size: 13px;
}

.pill-btn.white:hover {
  color: #fff;
}

.pill-btn.red:hover {
  color: var(--maincolor);
}

.pill-btn:hover i {
  position: relative;
  animation-name: moveRight;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes moveRight {
  0% {
    right: 0;
  }

  25% {
    right: -4px;
  }

  50% {
    right: 0;
  }

  75% {
    right: -4px;
  }

  100% {
    right: 0;
  }
}

@keyframes moveLeft {
  0% {
    left: 0;
  }

  25% {
    left: -4px;
  }

  50% {
    left: 0;
  }

  75% {
    left: -4px;
  }

  100% {
    left: 0;
  }
}

/**********************************************************
** Carousel Section
/**********************************************************/

/* To remove the left padding on stagePadding: 30
on owlCarousel initializing function */

.owl-stage {
  padding-left: 0 !important;
}

.owl-nav {
  width: 100%;
  position: absolute;
  display: none;
  top: 0;
}

.owl-carousel .owl-item:not(.active) {
  opacity: 0.35;
}

.owl-carousel .owl-item:not(.active):hover {
  opacity: 1;
}

.owl-carousel .owl-item img.h-100 {
  width: auto;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  background: var(--maincolor);
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  opacity: 0.8;
  background: var(--maincolor);
}

.full-width-carousel .owl-nav button.owl-next,
.full-width-carousel .owl-nav button.owl-prev {
  margin-top: 15.5%;
}

.one_by_one_carousel .owl-nav button.owl-next,
.one_by_one_carousel .owl-nav button.owl-prev {
  margin-top: 5.5%;
}

.r9x16_carousel .owl-nav button.owl-next,
.r9x16_carousel .owl-nav button.owl-prev {
  margin-top: 11.5%;
}

.r16x9_carousel .owl-nav button.owl-next,
.r16x9_carousel .owl-nav button.owl-prev,
.radios .owl-nav button.owl-next,
.radios .owl-nav button.owl-prev {
  margin-top: 4.5%;
}

.category-list-carousel .owl-nav button.owl-next,
.category-list-carousel .owl-nav button.owl-prev {
  margin-top: 1%;
}

.owl-carousel .owl-nav button.owl-next {
  right: -17px;
}

.full-width-carousel .owl-nav button.owl-next {
  right: -25px;
  width: 40px;
  height: 40px;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -17px;
}

.full-width-carousel .owl-nav button.owl-prev {
  left: -25px;
  width: 40px;
  height: 40px;
}

.owl-carousel .owl-nav button.owl-next.disabled,
.owl-carousel .owl-nav button.owl-prev.disabled {
  display: none;
}

@media (max-width: 992px) {
  .owl-nav {
    display: none !important;
  }
}

.mask-body {
  position: absolute;
  width: 100vw;
  height: 100%;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.63);
  display: none;
}

.main-section .main-article .main-image {
  border-radius: 6px;
  overflow: hidden;
}

.main-article .mobile {
  margin-bottom: 30px;
}

.mobile .main-image {
  border-radius: 0 !important;
}

.full-width-carousel .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 15px;
}

.full-width-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 5px 4px;
  transition: width 0.5s ease;
}

.full-width-carousel .owl-dots .owl-dot.active span {
  background: #fff;
  width: 25px;
}

.full-width-carousel .owl-dots .owl-dot:hover span {
  background: var(--white);
}

.full-width-carousel .owl-item .main-article {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--maincolor);
}

.full-width-carousel .owl-item .main-article::after {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(310deg, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0.4990371148459384) 45%, rgba(0, 0, 0, 0) 75%);
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* .full-width-carousel .owl-item .main-article.half-width-layout::after{
  content: none;
} */


.full-width-carousel .owl-item .hide.main-article::after {
  content: none;
}

.single .main-article {
  border-radius: 6px;
  overflow: hidden;
}

.single .main-article #video-canvas-rtp {
  border-radius: 12px;
  overflow: hidden;
}

.main-article .mask-img {
  position: absolute;
  width: 100%;
  height: 60%;
  z-index: 1;
  bottom: 0;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.main-article-data {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* .full-width-carousel .main-article-data{
  height: 100%;
  background: var(--maincolor);
} */

.half .main-article-data {
  position: relative;
}

.single .main-article-data {
  flex: 0 0 41.666667%;
  width: 41.666667%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* background: red; */
}

.single .half .main-article-data {
  position: relative;
  width: 100%;
}

/* .single .main-article::after{
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  background: linear-gradient(24deg, rgba(0,0,0,0.9374124649859944) 0%, rgba(0,0,0,0.5144432773109244) 36%, rgba(255,255,255,0) 100%);
} */

.main-article-data-inner {
  position: absolute;
  bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 35px;
}

.main-article-data-inner a:hover {
  opacity: 0.8;
}

.half .main-article-data-inner {
  position: relative;
  margin-top: 25px;
}

.single .main-article-data-inner {
  padding-left: 30px;
  padding-right: 0;
  padding-bottom: 35px;
}

.single .half .main-article-data-inner {
  padding-left: 0;
}

.main-article-data .main-article-category-label {
  color: #fff;
  background-color: var(--maincolor);
  font-size: 8px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 6px;
  display: inline-block;
  border-radius: 2px;
}

/* .half-width-layout .main-article-data .main-article-category-label{
  color: var(--maincolor);
  background-color: #fff;
}

.half-width-layout .pill-btn{
  background-color: #fff;
  color: var(--maincolor);
}

.half-width-layout .pill-btn.white:hover{
  opacity: 0.8;
  color: var(--maincolor);
} */

.main-article-data .main-article-date-info {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 7px;
  margin-bottom: 15px;
  font-family: 'Inter';
}

.half .main-article-data .main-article-date-info {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: var(--gray-light-4);
  display: inline-block;
  margin-left: 15px;
  font-family: 'Inter';
  position: relative;
  top: 2px;
}

.main-article-data .main-article-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 42px;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
}

.half .main-article-data .main-article-title {
  color: var(--black);
}

.default .main-article-title {
  font-size: 32px;
  line-height: 36px;
  font-weight: 800;
  color: var(--maincolor);
  margin-top: 25px;
  margin-bottom: 20px;
}

.main-article-data .main-article-lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.full-width-carousel .main-article-data .main-article-lead {
  line-height: 24px;
}

.half .main-article-data .main-article-lead {
  color: var(--black);
}

.default .main-article-lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 24px;
  margin-bottom: 25px;
}

.main-article-data .main-article-social {
  display: inline-block;
  margin-right: 20px;
}

.single-podcasts .main-article-social,
.single-playlists .main-article-social {
  margin-top: 20px;
}

.single-podcasts .main-article-social li,
.single-playlists .main-article-social li {
  display: inline-block;
}

.single-podcasts .main-article-social li a,
.single-playlists .main-article-social li a {
  color: #fff;
  margin-right: 20px;
}

.single-podcasts .main-article-social li:last-child a,
.single-playlists .main-article-social li:last-child a {
  margin-right: 0;
}

.single-podcasts .main-article-social li a:hover,
.single-playlists .main-article-social li a:hover {
  opacity: 0.8;
}

.single-podcasts .podcasts-content {
  margin-top: 55px;
}

.main-article-data .main-article-social li {
  display: inline-block;
  margin-right: 20px;
}

.main-article-data .main-article-social li a {
  color: var(--white);
}

.single .main-article-data .main-article-social li a {
  color: var(--maincolor);
}

.single .main-article-data .main-article-social li a:hover {
  opacity: 0.8;
}

.main-article-data-inner-mobile {
  background-color: var(--maincolor);
  padding: 25px 15px 35px 15px;
}

.main-article-data-inner-mobile.light {
  background-color: var(--gray-light-3);
}

.main-article-data-inner-mobile .main-article-category-label {
  color: var(--maincolor);
  background-color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 6px;
  display: inline-block;
  border-radius: 2px;
  margin-bottom: 15px;
}

.main-article-data-inner-mobile.light .main-article-category-label {
  color: #fff;
  background-color: var(--maincolor);
}

.main-article-data-inner-mobile .main-article-date-info {
  font-size: 12px;
  line-height: 1.5;
  font-weight: normal;
  color: #fff;
  display: block;
}

.main-article-data-inner-mobile.light .main-article-date-info {
  color: var(--gray-light);
}

.main-article-data-inner-mobile .main-article-title {
  font-size: 41px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-top: 0;
  margin-bottom: 15px;
}

.mobile .main-article-title {
  color: var(--black);
  font-size: 28px;
  line-height: 30px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile .main-article-lead {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  margin-top: 20px;
}

.main-article-data-inner-mobile.light .main-article-title {
  color: var(--black);
}

.main-article-data-inner-mobile .main-article-lead {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.32;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.mobile .main-article-lead {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 20px;
}

.main-article-data-inner-mobile.light .main-article-lead {
  color: var(--black);
}

.main-article-data-inner-mobile .main-article-social {
  display: inline-block;
}

.main-article-data-inner-mobile .main-article-social li {
  display: inline-block;
  margin-right: 20px;
}

.main-article-data-inner-mobile .main-article-social li:last-child {
  margin-right: 0;
}

.main-article-data-inner-mobile .main-article-social li a {
  color: var(--white);
}

.main-article-data-inner-mobile.light .main-article-social li a {
  color: var(--maincolor);
}

.mobile .border-radius {
  overflow: hidden;
  border-radius: 6px;
}

/**********************************************************
** Carousel Rails
/**********************************************************/

.first_cut_zone {
  padding-top: 35px;
}

.owl-carousel .item:hover {
  opacity: 0.8;
}

.first_cut_zone .owl-carousel,
.second_cut_zone .owl-carousel {
  margin-bottom: 55px;
}

.carousel-overflow .owl-stage-outer {
  overflow: visible;
}

.carousel-section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.carousel-section-title {
  font-size: 26px;
  line-height: 30px;
  font-weight: 800;
  display: inline-block;
}

.carousel-section-title-small {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}

.carousel-see-all {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  align-self: flex-end;
  position: relative;
  bottom: 2px;
}

.carousel-see-all .plus-sign {
  font-size: 30px;
  position: relative;
  top: 3px;
}

.carousel-see-all:hover {
  opacity: 0.8;
}

.carousel-see-all.red:hover {
  color: var(--maincolor);
}

.carousel-see-all.white:hover {
  color: #fff;
}

.filter-block .carousel-see-all:not(:only-child):first-child::after {
  content: ' ';
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: var(--maincolor);
  font-size: 18px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.secundary-featured {
  margin-bottom: 30px;
}

.main-featured-section .main-featured {
  margin-bottom: 30px;
}

.main-featured-section .main-featured .featured-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 28px;
  color: var(--black);
  margin-top: 12px;
}

.r16x9_carousel .carousel-title,
.radios .carousel-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
  color: var(--black);
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-category {
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
  padding: 3px 7px;
  background-color: var(--maincolor);
  color: #fff;
  text-transform: uppercase;
  margin-top: 12px;
  border-radius: 3px;
}

.owl-carousel .img-holder,
.main-featured-section .img-holder {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.owl-carousel .img-holder .mask-img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 57.89%, rgba(0, 0, 0, 0.6) 100%);
}

.theme--day .webradios .owl-item .item {
  border-radius: 6px;
}

/**********************************************************
** Featured
/**********************************************************/

.full-width-featured {
  margin-bottom: 55px;
}

.featured-img {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  overflow: hidden;
}

.featured-data {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: 25px;
  background-color: #F3F3F3;
}

.featured-data .featured-date {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #666666;
  display: block;
  margin-bottom: 15px;
}

.featured-data .featured-title {
  font-size: 32px;
  line-height: 36px;
  font-weight: 800;
  color: var(--maincolor);
  margin-bottom: 15px;
  margin-top: 0;
}

.featured-data .featured-lead {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 18px;
}

.featured-data .featured-see-more {
  background-color: var(--maincolor);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 20px;
  display: inline-block;
}

.featured-data .featured-see-more i {
  margin-left: 5px;
}

.main-featured .featured-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
}

.main-featured .featured-lead {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.38;
  color: var(--gray-light);
  margin-top: 12px;
  margin-bottom: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main-featured-section.secundary {
  padding-top: 35px;
}

/**********************************************************
** Special and Talent Section
/**********************************************************/

.specials-section,
.talent-section {
  padding: 35px 0;
}

.specials-section .r9x16_carousel .title-holder {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
  padding: 15px;
  z-index: 2;
}

.talent-section .r9x16_carousel .title-holder {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 38px;
  line-height: 35px;
  font-weight: 800;
  padding-bottom: 11px;
  padding-right: 10px;
  text-align: right;
  word-spacing: 10000000000px;
}

.talent-section .owl-carousel .owl-nav button.owl-next,
.talent-section .owl-carousel .owl-nav button.owl-prev {
  background: #fff;
  color: var(--maincolor);
}

.single-carasrtpmadeira .header-section .row {
  position: relative;
}

.single-carasrtpmadeira .section-header {
  background-image: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.single-carasrtpmadeira .background-holder {
  background-color: var(--maincolor);
  background-image: url('includes/img/spikes.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
}

.single-carasrtpmadeira .animador-img {
  margin-top: 20px;
}

.section-list .section-item a:hover {
  opacity: 0.8;
}

.section-list .animador {
  margin-bottom: 30px;
}

.section-list .animador a:hover {
  opacity: 0.8;
}

.animador .img-holder {
  background-color: #333;
}

.animador .img-holder img {
  margin-top: 20px;
}

.mask-list-animador {
  width: 100%;
  height: 100%;
  position: absolute;
}

.mask-list-animador.gray {
  background: linear-gradient(179.78deg, rgba(64, 64, 64, 0) 38.93%, #404040 99.81%);
}

.mask-list-animador.red {
  background: linear-gradient(179.78deg, rgba(64, 64, 64, 0) 38.93%, var(--maincolor) 99.81%);
}

.mask-single-animador {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(179.78deg, rgba(64, 64, 64, 0) 70%, var(--maincolor) 99.81%);
}

.animador .title-holder {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 38px;
  line-height: 35px;
  font-weight: 800;
  padding-bottom: 20px;
  padding-right: 30px;
  text-align: right;
  word-spacing: 10000000000px;
}

.animador .img-holder {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.animador-title-holder {
  display: flex;
  align-items: center;
  z-index: 1;
}

.animador-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 60px;
  color: #fff;
  word-spacing: 10000000000px;
}

.aniamdor-info {
  margin-top: 45px;
}

.related-prog-container {
  margin-top: 35px;
}

.related-prog-container a:hover {
  opacity: 0.8;
}

.related-prog-container .item {
  padding: 7px;
  border-radius: 4px;
}

.related-prog-container .item:nth-child(odd) {
  background-color: var(--gray-light-3);
}

.related-prog-container .item img {
  border-radius: 6px;
}

.related-prog-container .item .prog-title {
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  color: var(--black);
  margin-right: 15px;
}

.related-prog-container .item .prog-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}

.webradios-section .section-item .webradio-logo {
  border: solid 1px #8c8c8c;
  border-radius: 6px;
}

.webradios-section .section-item h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--maincolor);
  margin-bottom: 10px;
  margin-top: 20px;
}

.webradios-section .section-item .sinopse {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  display: block;
  color: var(--gray);
  margin-bottom: 10px;
}

.webradios-section .section-item .play-link img {
  border-radius: 0;
}

.webradios-section .playing-now-label-section-webradios {
  background: var(--maincolor);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  line-height: 14px;
  padding: 5px;
  border-radius: 2px;
  position: absolute;
  top: 15px;
  left: 30px;
}

/**********************************************************
** Modulo Newsletters
/**********************************************************/

.newsletter-module {
  margin-bottom: 55px;
  color: #fff;
}

.newsletter-module .row {
  background-color: var(--maincolor);
  padding: 30px;
  border-radius: 10px;
  background-image: url("includes/img/newsletter-bg.png");
  background-repeat: no-repeat;
  background-position: bottom right;
}

.newsletter-module h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.newsletter-module p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.newsletter-module .left-section {
  border-right: 1px solid #fff;
}

.newsletter-module .right-section {
  display: flex;
  align-items: center;
  padding-left: 35px;
}

.newsletter-module .right-section ul li {
  font-size: 18px;
  font-weight: 600;
}

.newsletter-module .right-section ul li:first-child {
  margin-bottom: 15px;
}

.newsletter-module .right-section ul li i {
  margin-right: 5px;
  font-weight: lighter;
}

.newsletter-module .btn-section {
  display: flex;
  justify-content: center;
  align-items: center;
}


/**********************************************************
** Podcasts Featured Section
/**********************************************************/

.podcast-featured-section {
  margin-bottom: 55px;
}

.related-rtpplay.podcast-featured-section {
  margin-bottom: 30px;
}

.podcast-featured-section .left-section {
  padding: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.related-rtpplay.podcast-featured-section .left-section {
  border-radius: 10px;
}

.related-rtpplay.podcast-featured-section .podcast-play-link {
  position: relative;
  top: 3px;
}

.podcast-featured-section .podcast-metadata {
  padding-left: 15px;
  position: relative;
  overflow: hidden;
}

.podcast-featured-section .podcast-network {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}

.podcast-featured-section .podcast-title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 5px;
}

.related-rtpplay.podcast-featured-section .podcast-title {
  margin-top: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.podcast-featured-section .podcast-data,
.podcast-featured-section .podcast-duration {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  opacity: 0.6;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #fff;
}

.related-rtpplay.podcast-featured-section .podcast-data {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.podcast-featured-section .left-section img {
  border-radius: 6px;
}

.podcast-featured-section .podcast-links-container {
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.podcast-featured-section .podcast-play-link .playing-now-icon {
  height: 27px;
  width: 27px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  text-align: center;
  line-height: 27px;
  float: left;
  margin-right: 10px;
}

.podcast-featured-section .podcast-play-link .playing-now-icon i {
  color: var(--maincolor);
  font-size: 12px;
  position: relative;
  left: 1px;
  top: -1px;
}

.podcast-featured-section .podcast-play-link:hover {
  opacity: 0.8;
}

.podcast-featured-section .left-section {
  background-color: var(--maincolor);
}

.podcast-featured-section.dark .left-section {
  background-color: #1A1A1A;
}

.podcast-featured-section .right-section {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 15px 25px;
  background-image: url("includes/img/podcast-destaque.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.podcast-featured-section.dark .right-section {
  background-image: url("includes/img/podcast-destaque2.png");
}

.podcast-featured-section .podcast-metadata .pill-btn {
  background-color: var(--maincolor);
  border: 1px solid #fff;
}

.podcast-featured-section.dark .podcast-metadata .pill-btn {
  background-color: 1px solid var(--black);
}

.podcast-featured-section .right-section h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 30px;
  color: #fff;
}

.podcast-featured-section .right-section .pill-btn {
  position: absolute;
  bottom: 20px;
  left: 25px;
}

.second_cut_zone {
  padding-top: 30px;
}

.duration {
  position: absolute;
  width: 95%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  left: 5px;
  bottom: 5px;
  border-radius: 5px;
}

.duration .bar {
  height: 100%;
  background: #fff;
  border-radius: 5px;
}

/* NOTICIARIOS */

.news-block {
  border-radius: 10px;
  padding: 10px;
}

.news-block img {
  border-radius: 6px;
}

.news-block.news {
  background-color: var(--maincolor);
}

.news-block.sports {
  background-color: #A6B841;
}

.news-block .podcast-metadata .pill-btn {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
}

.news-block .news-block-player {
  position: absolute;
  bottom: 0;
}

.news-block .news-block-player .rmp-color-bg:not(.rmp-overlay-level-active) {
  background: transparent;
}

.news-block .news-block-player .rmp-time-total,
.news-block .news-block-player .rmp-loaded,
.news-block .news-block-player .rmp-handle {
  box-shadow: none;
}

.news-block .news-block-player .rmp-i {
  text-shadow: none;
}

.news-block .news-block-player .rmp-i:hover {
  color: #fff;
  opacity: 0.8;
}

/**********************************************************
** Artigo Single
/**********************************************************/

.pub-marc {
  font-size: 12px;
  font-weight: bold;
  color: var(--black);
}

.article-content-container {
  margin-top: 45px;
}

.article-content-container.Full-width {
  padding-left: 15px;
  padding-right: 15px;
}

.article-content,
.article-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  margin-bottom: 30px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  line-height: 30px;
}


/* .article-content div:not([class]) {
  margin-bottom: 35px;
} */

.article-content blockquote {
  padding: 15px 35px;
  background-color: var(--gray-light-3);
  margin-bottom: 25px;
}

.article-content blockquote p,
.article-content blockquote div {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  position: relative;
}

.article-content blockquote p::before,
.article-content blockquote p::after,
.article-content blockquote div::before,
.article-content blockquote div::after {
  content: '"';
  display: inline-block;
  font-size: 30px;
  color: var(--maincolor);
}

.article-content blockquote p::before {
  position: absolute;
  left: -15px;
  top: 3px;
}

.article-content .wp-caption {
  max-width: 100%;
}

.article-content .wp-caption-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 16px;
  text-align: left;
  margin-top: 8px;
}

.article-content .wp-caption-text::before {
  content: ' ';
  display: inline-block;
  width: 4px;
  height: 12px;
  border-radius: 2px;
  margin-right: 10px;
  background-color: var(--maincolor);
  position: relative;
  top: 1px;
}

.article-content img {
  max-width: 100%;
}

.article-content .related-article {
  font-family: 'Manrope', sans-serif;
  margin-bottom: 50px;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid var(--maincolor);
  display: block;
}

.article-content .related-article img {
  border-radius: 8px;
}

.article-content .related-article h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 25px;
}

.article-content a:not(.pill-btn) {
  color: var(--maincolor);
}

.article-content a:hover {
  opacity: 0.8;
}

.article-content table {
  border-collapse: collapse;
  width: 100%;
}

/*
.article-content td,
.article-content  th {
  border: 1px solid #dddddd;
  text-align: left;
}

.article-content tr:nth-child(even) {
  background-color: #dddddd;
} */

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.thumb-caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--gray-light);
  margin-top: 5px;
}

.sidebar-module {
  margin-bottom: 35px;
}

.podcast-player-container {
  padding: 15px;
  border-radius: 6px;
}

.podcast-player-container h5 {
  margin-top: 10px;
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  display: block;
}

.podcast-player-container img {
  border-radius: 6px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3);
}

.podcast-player-container span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
  opacity: 0.6;
  font-family: 'Inter', sans-serif;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.podcast-player-data {
  padding-left: 20px;
}

.see-more {
  margin-top: 60px;
}

.sidebar-see-more h2 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--maincolor);
  margin-bottom: 5px;
}

.sidebar-see-more a {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--gray-light-2);
}

.sidebar-see-more a:last-child {
  border-bottom: 0;
}

.sidebar-see-more a img {
  border-radius: 4px;
}

.sidebar-see-more a h5 {
  font-size: 15px;
  line-height: 1.33;
  font-weight: normal;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tags-container {
  margin-top: 40px;
}

.tag-item {
  font-family: 'Manrope';
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  padding: 5px 11px;
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 8px;
}

.tag-item:hover {
  background: var(--maincolor);
  color: #fff;
}

/**********************************************************
** Aniamdores Arquivo
/**********************************************************/




/**********************************************************
** Video Single
/**********************************************************/

.videos-carousel .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 15px;
}

.videos-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 5px 4px;
  transition: width 0.5s ease;
}

.videos-carousel .owl-dots .owl-dot.active span {
  background: #fff;
  width: 25px;
}

.videos-carousel .owl-dots .owl-dot:hover span {
  background: #fff;
}

.videos-carousel .info-section {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 35px;
  padding-bottom: 20px;
}

.videos-carousel .info-section .play-icon-section {
  padding-top: 20px;
}

.videos-carousel .info-section .carousel-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.videos-carousel .info-section .carousel-date {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 20px;
  display: block;
}

.videos-carousel .info-section .playing-now-icon {
  height: 66px;
  width: 66px;
  border-radius: 50%;
  background-color: var(--maincolor);
  display: block;
  text-align: center;
  line-height: 76px;
  margin-right: 25px;
}

.videos-carousel .info-section .playing-now-icon i {
  color: #fff;
  font-size: 28px;
  position: relative;
  left: 4px;
}

.videos-carousel .info-section .carousel-article-social li {
  display: inline-block;
  margin-right: 20px;
}

.videos-carousel .info-section .carousel-article-social li a {
  color: var(--maincolor);
}

.video {
  margin-bottom: 24px;
}

.video .img-holder {
  position: relative;
}

.video .playing-now-icon {
  height: 33px;
  width: 33px;
  border-radius: 50%;
  background-color: var(--maincolor);
  display: block;
  text-align: center;
  line-height: 33px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.video .playing-now-icon i {
  color: #fff;
  font-size: 14px;
  position: relative;
  left: 2px;
}

.video .title,
.programa .title,
.r16x9_carousel .title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--black);
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rmp-container {
  border-radius: 6px;
}

/**********************************************************
** Playlists Single
/**********************************************************/

.background-holder {
  position: relative;
  overflow: hidden;
}

.bg-image-holder {
  position: absolute;
  top: 0;
  width: 100%;
  height: 470px;
  overflow: hidden;
}

.bg-image-holder img {
  filter: blur(15px) brightness(70%);
  transform: scale(1.1);
}

.background-holder::after {
  content: '';
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  filter: blur(15px) brightness(70%);
  transform: scale(1.1);
  background-position: center;
  /* filter        : blur(5px);
  -moz-filter   : blur(5px);
  -webkit-filter: blur(5px);
  -o-filter     : blur(5px); */
}

.playlist.background-holder::after {
  height: 470px;
}

.playlists-header,
.podcasts-header {
  margin-top: 22px;
  margin-bottom: 45px;
}

.playlists-header h1,
.podcasts-header h1 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.playlists-img img,
.podcasts-img img {
  border-radius: 10px;
}

.playlists-info .playlists-title,
.podcasts-info .podcasts-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.13;
  color: #fff;
  margin-bottom: 5px;
}

.playlists-info .playlists-lead,
.podcasts-info .podcasts-lead {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.57;
  color: #fff;
  margin-bottom: 0;
}

.playlists-info .embed-playlists {
  margin-top: 50px;
  margin-bottom: 30px;
}

.single-podcasts .header-section {
  padding-bottom: 30px;
}

.podcasts-links {
  margin-top: 50px;
}

.podcasts-links p {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.38;
  color: #fff;
  margin-bottom: 10px;
}

.podcasts-links ul li {
  display: inline-block;
}

.podcasts-links ul li a {
  font-size: 11px;
  line-height: 1.58;
  font-weight: 600;
  color: #fff;
  margin-right: 15px;
}

.podcasts-links a:hover {
  opacity: 0.8;
}

.podcasts-links ul li a img {
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.podcasts-links ul li:last-child a {
  margin-right: 0;
}

.podcasts-list {
  margin-top: 40px;
}

.podcasts-body ul li:nth-child(even) {
  background: var(--gray-light-3);
}

.podcasts-body a:hover {
  opacity: 0.8;
}

.podcasts-body .podcast-date,
.podcasts-body .song-start {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  padding: 15px 10px;
}

.podcasts-body .podcast-date {
  min-width: 135px;
}

.podcasts-body .song-start {
  min-width: 90px;
}

.podcasts-body .podcast-info {
  padding: 15px 10px;
  width: 100%;
}

.podcasts-body .podcast-info-title,
.podcasts-body .song-author,
.podcasts-body .song-title {
  font-size: 18px;
  line-height: 1.56;
  font-weight: normal;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcasts-body .song-author,
.podcasts-body .song-title {
  display: inline-block;
  width: 50%;
  float: left;
}

.podcasts-body .podcast-info-lead {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.57;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.podcasts-body .podcast-duration {
  font-size: 14px;
  color: #8c8c8c;
  padding: 15px 10px;
  min-width: 80px;
}

.podcasts-body .podcast-link {
  padding: 15px 10px;
}

/**********************************************************
** Programas Single
/**********************************************************/

.single-programas .img-holder {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.single-programas .play-btn {
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  z-index: 2;
}

.single-programas .play-btn i {
  margin-right: 5px;
  font-size: 18px;
  position: relative;
  top: 2px;
}

.single-programas .play-btn img {
  margin-left: 5px;
}

/**********************************************************
** Ficha Técnica
/**********************************************************/

.techincal-header {
  margin-top: 60px;
  margin-bottom: 25px;
}

.techincal-info .separator {
  border-bottom: 1px solid rgba(196, 196, 196, 0.3);
  padding: 10px 0;
}

.techincal-info .separator:last-of-type {
  border-bottom: 0;
}

.techincal-info .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.techincal-info .desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  align-self: flex-end;
}

/**********************************************************
** Arquivo
/**********************************************************/

.carousel-section {
  margin-bottom: 25px;
}

.category-carousel .owl-stage {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.category-carousel .owl-stage-outer {
  border-radius: 6px;
}

.category-carousel .right-section {
  background-color: var(--gray-light-3);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.category-carousel .left-section img {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.category-carousel .right-section .right-section-container {
  padding: 30px;
  width: 100%;
}

.category-carousel .right-section span {
  display: block;
  font-size: 14px;
  color: var(--gray);
}

.category-carousel .right-section h4 {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.13;
  color: var(--gray);
  margin-bottom: 10px;
}

.category-carousel .owl-dots {
  position: absolute;
  width: 41.666667%;
  bottom: 20px;
  right: -30px;
  text-align: left;
}

.category-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 5px 4px;
  transition: width 1s ease;
  background: var(--maincolor);
  opacity: 0.4;
}

.category-carousel .owl-dots .owl-dot.active span {
  background: var(--maincolor);
  width: 25px;
  opacity: 1;
}

.category-carousel .owl-dots .owl-dot:hover span {
  background: var(--maincolor);
  opacity: 1;
}

.category-list-carousel {
  margin-bottom: 35px;
}

.category-list-carousel .owl-stage-outer {
  overflow: visible;
}

.category-list-carousel .item a {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--gray-light-4);
  border: 1px solid var(--gray-light-4);
  text-align: center;
  border-radius: 7px;
  padding: 25px 10px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-list-carousel .item a:hover,
.category-list-carousel .item.active a {
  color: var(--maincolor);
  border-color: var(--maincolor);
}

.playlist-featured .left-section {
  position: relative;
  overflow: hidden;
}

.playlist-featured .left-section .bg-holder {
  overflow: hidden;
}

.playlist-featured .bg-img {
  filter: blur(15px) brightness(70%);
  transform: scale(1.1);
}

.playlist-featured .playlist-img {
  position: absolute;
  height: 70%;
  left: 40px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.playlist-featured .left-section .playlist-img {
  width: auto;
  border-radius: 6px;
}

.playlist-featured .carousel-lead {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  line-height: 24px;
}

.playlist-featured .right-section {
  display: flex;
  align-items: center;
}

.closed .vertical {
  transition: all 0.3s ease-in-out;
  transform: rotate(-0deg);
}

.closed .horizontal {
  transition: all 0.3s ease-in-out;
  transform: rotate(-0deg);
  opacity: 1;
}

.opened {
  opacity: 1;
}

.opened .vertical {
  transition: all 0.3s ease-in-out;
  transform: rotate(90deg);
}

.opened .horizontal {
  transition: all 0.3s ease-in-out;
  transform: rotate(90deg);
  opacity: 0;
}

.circle-plus .circle {
  position: relative;
  width: 20px;
  height: 20px;
}

.circle-plus .circle .horizontal {
  position: absolute;
  background-color: #fff;
  width: 20px;
  height: 2px;
  left: 50%;
  margin-left: -10px;
  top: 50%;
  margin-top: -1px;
}

.circle-plus .circle .vertical {
  position: absolute;
  background-color: #fff;
  width: 2px;
  height: 20px;
  left: 50%;
  margin-left: -1px;
  top: 50%;
  margin-top: -10px;
}

/**********************************************************
** 404
/**********************************************************/

.container-404 h1 {
  font-size: 145px;
  color: var(--maincolor);
  font-weight: 600;
  margin-top: 100px;
  position: relative;
}

.container-404 h1::after {
  content: ' ';
  display: block;
  background-image: url('includes/img/404bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 268px;
  height: 371px;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
}

.container-404 h5 {
  font-size: 20px;
  color: var(--maincolor);
  font-weight: 700;
  margin-bottom: 50px;
}

.container-404 p {
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 60px;
}

.container-404 .pill-btn i {
  margin-right: 3px;
  margin-left: 0;
}

.container-404 .pill-btn:hover i {
  position: relative;
  animation-name: moveLeft;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

/**********************************************************
** Footer Social
/**********************************************************/

.footer-social {
  background-image: url("includes/img/footer_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  padding: 30px 15px;
  align-items: center;
  justify-content: center;
}

.footer-social .follow-us {
  font-size: 16px;
  font-weight: bold;
  color: var(--gray);
  position: relative;
}

.footer-social .follow-us::after {
  content: ' ';
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 65px;
  background-color: rgba(196, 196, 196, 0.3);
  right: 15px;
  top: -20px;
}

.footer-social-links li,
.nav-social-links li {
  display: inline-block;
}

.nav-social-links li {
  padding: 15px;
}

.footer-social-links li a,
.nav-social-links li a {
  color: var(--maincolor);
  display: inline-block;
  margin-right: 15px;
  font-size: 25px;
}

.footer-social-links li a:hover,
.nav-social-links li a:hover {
  opacity: 0.8;
}

.nav-social-desktop {
  position: absolute;
  bottom: 0;
  right: 10px;
}

.nav-social-desktop .nav-social-links li {
  padding: 7px;
}

.nav-social-desktop .nav-social-links li a {
  font-size: 20px;
  margin-right: 0;
}

.footer-store-links p {
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: normal;
  color: var(--gray);
}

.footer-store-links p b {
  font-weight: 600;
}

.footer-store-links li {
  display: inline-block;
}

.footer-store-links li a:hover {
  filter: invert(100%);
}

/**********************************************************
** Pre Footer
/**********************************************************/

.footer-social {
  margin-top: 60px;
}

.home .pre-footer {
  margin-top: 0;
}

.pre-footer-nav {
  padding: 15px 0;
  justify-content: center;
}

.pre-footer-nav li {
  padding: 15px 30px;
  position: relative;
}

.pre-footer-nav li a {
  font-size: 22px;
  font-weight: 700;
  color: var(--maincolor);
  display: block;
}

.pre-footer-nav li a:hover {
  opacity: 0.8
}

.pre-footer-nav li::before {
  content: ' ';
  width: 1px;
  height: 30px;
  background-color: rgba(196, 196, 196, 0.3);
  display: block;
  position: absolute;
  top: 15px;
  right: 0;
}

.pre-footer-nav li:last-child::before {
  content: none;
}

/**********************************************************
** Footer RTP
/**********************************************************/

.section-header {
  background-color: var(--maincolor);
  padding: 22px;
  border-radius: 5px;
  background-image: url("includes/img/header-section-bg.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 100%;
}

.section-header h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.section-header h1 a {
  color: #fff;
}

.tax.section-header {
  display: flex;
}

.tax-menu.btn-group {
  position: initial;
}

.tax-menu.btn-group .dropdown-menu {
  left: -10px !important;
  width: calc(100% - 30px);
  background-color: var(--maincolor);
  border: 0;
}

.tax-menu.btn-group .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  padding-left: 15px;
  padding-right: 15px;
}

.tax-menu.btn-group .dropdown-menu .dropdown-item.active,
.tax-menu.btn-group .dropdown-menu .dropdown-item:hover {
  color: rgba(255, 255, 255, 1);
  background-color: transparent;
}

.tax-menu.btn-group .dropdown-menu .dropdown-item span {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.tax-menu.btn-group .dropdown-menu .dropdown-item:last-of-type span {
  border-bottom: 0;
}

.section-header .submenu {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 40px;
}

.section-header .submenu li {
  display: inline-block;
}

.section-header .submenu li a {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  padding: 3px 10px;
  border: 1px solid transparent;
}

.section-header .submenu li a:hover,
.section-header .submenu li .active {
  border: 1px solid #fff;
  border-radius: 16px;
}

.section-list .section-item img {
  border-radius: 6px;
}

.section-list .section-item h2 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.38;
  color: var(--black);
  margin-top: 12px;
  margin-bottom: 0;
}

.section-list .section-item p {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.38;
  color: var(--gray-light);
  margin-top: 12px;
  margin-bottom: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/**********************************************************
** Página Programação - EPG
/**********************************************************/

.epg-channel-main .epg-channel-list-maintitle.mood-inherit {
  background-color: var(--maincolor);
  color: #fff;
  border-radius: 5px;
  margin-bottom: 5px;
}

.epg-channel-list-time.mood-inherit {
  color: var(--maincolor);
}

.epg-channel-list-item {
  margin-bottom: 5px;
  min-height: auto;
}

/* .epg-channel-list-item-image{
  border-radius: 5px;
} */

.epg-channel-list-episode-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  margin-top: 8px;
}

.epg-channel-list-description {
  color: #5C5F60;
}

.epg-channel-list-title {
  font-weight: 600;
}

.epg-channel-list-item-image-container {
  height: 110px;
  border-radius: 5px;
  overflow: hidden;
}

.epg-channel-list-item .guide-widget-indicator,
.epg-channel-list-item .pse-item-review,
.epg-channel-list-item .search-page-item-review {
  right: 217px;
}

.epg-channel-list-item .epg-channel-list-subtitle {
  margin-bottom: 5px;
  color: var(--gray);
}

.epg-channel-list-item .epg-channel-list-subtitle span {
  font-weight: bold;
  margin-right: 5px;
}

.epg-channel-list-item a {
  color: var(--black);
}

.epg-channel-list-item a:hover .epg-channel-list-title {
  color: #37474f;
}

.epg-channel-list-item a:hover .epg-channel-list-description {
  color: var(--maincolor);
}

.epg-section-nav .epg-nav-current .epg-day-nav-back-today.mood-inherit,
.epg-section-nav .epg-nav-current .epg-day-nav-week.active.mood-inherit,
.epg-section-nav .epg-nav-current .epg-day-nav-week.mood-inherit,
.epg-section-nav .epg-nav-current .epg-nav-today-tab.mood-inherit {
  background-color: var(--maincolor);
  color: #fff;
  font-size: 10px;
}

.epg-nav-current .epg-day-nav-back-today.mood-inherit,
.epg-nav-current .epg-day-nav-week.active.mood-inherit,
.epg-nav-current .epg-day-nav-week.mood-inherit,
.epg-nav-current .epg-nav-today-tab.mood-inherit {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 30px;
}

.epg-nav-current.mood-inherit:before {
  background-color: var(--maincolor);
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.epg-section-nav .epg-calendar .epg-calendar-button.mood-inherit {
  background-color: var(--maincolor);
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.epg-nav-days-container {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.epg-nav-current a {
  font-size: 20px;
}

.epg-nav-current a:hover {
  color: var(--white);
  opacity: 0.8 !important;
}

.epg-channel-list-item a:hover .epg-channel-list-subtitle {
  color: #37474f;
}

.epg-channel-list-item.live,
.epg-channel-list-item:hover {
  background-color: #f3f7f9 !important;
  border-radius: 6px;
}

.prog-1009 .media-right,
.prog-1449 .media-right,
.prog-1449 .guide-widget-indicator-watch-again,
.prog-1009 .guide-widget-indicator-watch-again {
  display: none !important;
}

.prog-1009,
.prog-1449 {
  background-color: var(--gray-light-3);
  border-radius: 6px;
}

.prog-1009 a,
.prog-1449 a {
  color: var(--black);
}


@media (min-width: 544px) {

  .epg-channel-list-time {
    height: auto;
  }

}

/**********************************************************
** Search Results
/**********************************************************/

.search-results-container {
  margin-top: 30px;
}

.search-results-container .header-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  color: var(--maincolor);
  margin-bottom: 20px;
}

.search-section .search-form {
  margin-bottom: 40px;
}

.search-section .input-holder {
  border-bottom: 1px solid var(--gray-light-2);
}

.search-section .input-holder .search-submit {
  float: right;
  border: 0;
  background-color: transparent;
  color: var(--gray-light-4);
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
}

.search-section .input-holder .search-btns-container {
  float: right;
  display: inline-block;
}

.search-section .input-holder .search-btns-container .clean-search {
  color: var(--gray-light-4);
  font-size: 20px;
  position: relative;
  top: -2px;
}

.search-section .input-holder .search-btns-container .clean-search:hover {
  color: var(--maincolor);
}

.search-section .input-holder .search-submit:hover {
  color: var(--maincolor);
}

.search-section .search-control-page {
  border: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  padding-bottom: 8px;
  padding-left: 35px;
  color: var(--black);
  background-color: transparent;
}

.search-section .search-results-icon {
  position: absolute;
}

.search-section .search-results-icon i {
  font-size: 20px;
  color: var(--maincolor);
  position: relative;
  top: 5px;
}

.search-section .results {
  font-size: 12px;
  font-weight: bold;
  color: var(--gray-light-4);
  margin-top: 5px;
  padding-left: 15px;
}

.no-res {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  color: #37474f;
}

.search-item {
  margin-bottom: 30px;
}

.search-item img {
  border-radius: 3px;
  overflow: hidden;
}

.search-item .label,
.search-item .label a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: var(--maincolor);
}

.search-item h2 {
  font-size: 18px;
  line-height: 28px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 5px;
}

.search-item p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}



/**********************************************************
** Pagination
/**********************************************************/

.pagination {
  margin-top: 50px;
  margin-bottom: 50px;
}

.pagination-archive {
  margin-top: 50px;
  margin-bottom: 100px;
  text-align: center;
}

.pagination li {
  font-size: 16px;
  font-weight: normal;
  color: var(--gray-light-2);
  background-color: transparent;
  border-radius: 3px;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
}

.pagination li:last-child,
.pagination-archive a:last-child,
.pagination li:last-child a {
  margin-right: 0;
}

.pagination li a,
.page-numbers {
  font-size: 16px;
  font-weight: normal;
  color: var(--gray-light-2);
  background-color: transparent;
  border-radius: 3px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-light-2);
  margin-right: 10px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
}

.pagination .active a,
.pagination a:hover,
.page-numbers.current,
.page-numbers:hover {
  background-color: var(--maincolor);
  border-color: var(--maincolor);
  color: #fff;
}

.pagination .previous a,
.pagination .next a {
  border: 0;
}

.pagination .active::after {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 14px;
}

.pagination .next a {
  color: var(--maincolor) !important;
}

.pagination .next a:hover,
.pagination .previous a:hover {
  color: #fff !important;
}

.pagination .previous {
  color: var(--maincolor) !important;
}

.pagination .previous a {
  color: var(--maincolor) !important;
}

/**********************************************************
** Media Queries
/**********************************************************/

@media screen and (max-width: 1199px) {

  .main-article-data {
    width: 40%;
  }

  .main-article-data-inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
  }

  .main-article-data .main-article-title {
    font-size: 26px;
    line-height: 28px;
  }

  .main-article-data .main-article-lead {
    font-size: 14px;
    line-height: 20px;
  }

}

@media screen and (max-width: 992px) {

  .container {
    max-width: 100% !important;
  }

  .playing-now-section .next-playing .next-playing-label-title {
    max-width: 100%;
  }

  .playing-now-section .next-playing,
  .playing-now-section .next-playing .dropdown.more-media.show {
    position: static !important;
  }

  .more-media .dropdown-menu.show {
    left: 0px !important;
    top: 196px !important;
    width: 100vw;
    transform: translate3d(0, 0, 0) !important;
  }

  .logged-in .more-media .dropdown-menu.show {
    top: 242px !important;
  }

  .more-media .dropdown-spacer .logo-container,
  .more-media .dropdown-spacer .arrow-container {
    padding: 0;
  }

  .playing-now-section .next-playing .dropdown-spacer {
    border-top-right-radius: 0;
  }


}

@media screen and (max-width: 1023px) {

  .epg-section-nav {
    margin-top: 20px;
    background-color: transparent;
  }

  .epg-nav-day {
    background-color: var(--maincolor);
    color: #fff;
  }

  .epg-channel-col-main {
    margin-top: 20px;
  }

  .epg-nav-day-tag {
    background-color: var(--maincolor);
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    font-size: 10px;
  }

  .epg-nav-day-button {
    border: 0;
  }

  .epg-nav-days>li {
    border-top-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

}

@media (max-width: 991px) {

  .navbar {
    background: var(--maincolor);
  }

  .playing-now-section {
    border-radius: 0;
  }

  .navbar-collapse {
    background-color: var(--gray-light-3);
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 10;
    top: 60px;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #c4c4c4;
    display: block;
  }

  .navbar-expand-lg .navbar-nav a:hover {
    opacity: 0.8;
  }

  .navbar-logo {
    text-align: left !important;
    padding-left: 15px;
  }

  .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }

  .navbar-expand-lg .nav-item.dropdown.show {
    background-color: #e7e7e7;
  }

  .navbar .dropdown-menu.show {
    background-color: #e7e7e7;
    display: block;
    padding: 0 0 15px 0;
    box-shadow: none !important;
  }

  .navbar .dropdown-menu .dropdown-item {
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav .nav-item.show .nav-link::after,
  .navbar-expand-lg .navbar-nav .nav-link:hover::after {
    content: none;
  }

  .category-carousel .owl-dots {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 5px;
    text-align: center;
  }

  .podcast-featured-section .podcast-links-container {
    position: static;
    float: right;
    margin-bottom: 9px;
    margin-top: 10px;
  }

  .related-rtpplay.podcast-featured-section .podcast-links-container {
    margin-right: 10px;
  }

  .category-carousel .right-section .right-section-container {
    padding: 30px 30px 50px 30px;
  }

  .talent-section .r9x16_carousel .title-holder {
    font-size: 26px;
  }

  .single .main-article {
    margin-bottom: 35px;
  }

  .single-videos .main-article {
    padding: 0;
    border-radius: 0;
  }

  .single-videos .main-article .rmp-container {
    border-radius: 0;
  }

  .featured-img {
    border-radius: 7px 7px 0 0;
  }

  .featured-data {
    border-radius: 0 0 7px 7px;
  }

  .podcast-player-container img {
    width: 160px;
    height: 160px;
  }

  #player_news,
  #player_sports {
    width: 100% !important;
  }

}

@media screen and (max-width: 767px) {

  .section-header {
    margin-top: 10px;
    padding: 15px;
  }

  .playing-now-section .playing-now-data .program-title {
    max-width: 80%;
  }

  .full-width-carousel .owl-item .main-article {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .main-article-data-inner-mobile .main-article-title {
    font-size: 31px;
  }

  .epg-channel-list-item .guide-widget-indicator,
  .epg-channel-list-item .pse-item-review,
  .epg-channel-list-item .search-page-item-review {
    left: auto;
  }

  .epg-channel-list-item .guide-widget-indicator,
  .epg-channel-list-item .pse-item-review,
  .epg-channel-list-item .search-page-item-review {
    right: 20px;
  }

  .full-width-carousel .owl-item .main-article::after {
    content: none;
  }

  .home .playing-now-section {
    margin-bottom: 0;
  }

  .podcast-featured-section .right-section .pill-btn {
    left: auto;
    right: 25px;
  }

  .podcast-featured-section .left-section {
    border-radius: 10px 10px 0 0;
  }

  .podcast-featured-section .right-section {
    border-radius: 0 0 10px 10px;
    padding: 15px 15px 100px;
  }

  .footer-social .follow-us::after {
    content: none;
  }

  .footer-social-links li a {
    font-size: 36px;
  }

  .news-block img,
  .podcast-featured-section .left-section img {
    height: 90px;
  }

  .podcast-featured-section .podcast-title {
    font-size: 18px;
  }

  .podcast-featured-section.news-block.news {
    margin-bottom: 15px;
  }

  .podcasts-body .song-start {
    padding: 0;
  }

  .podcasts-body .song-author,
  .podcasts-body .song-title {
    width: 100%;
  }

  .news-block .podcast-data,
  .news-block .podcast-duration {
    display: none;
  }

  .podcast-featured-section .left-section .pill-btn {
    bottom: 0;
    right: 0;
  }

  .newsletter-module .row {
    padding: 25px;
  }

  .newsletter-module .left-section {
    border-right: 0;
    margin-bottom: 15px;
    padding: 0;
  }

  .newsletter-module .left-section p {
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
  }

  .newsletter-module .right-section {
    padding: 0;
    margin-bottom: 15px;
  }

  .category-carousel .owl-dots {
    position: static;
    text-align: center;
    width: 100%;
  }

  .playlists-img {
    padding-top: 30px;
    margin-bottom: 20px;
  }

  .playlists-info .playlists-title,
  .playlists-info .playlists-lead {
    margin-bottom: 10px;
  }

  .playlists-info .embed-playlists {
    margin-top: 30px;
  }

  .animador-title-holder {
    position: absolute;
    bottom: 0;
    margin-bottom: 20%;
    z-index: 1;
  }

  .category-carousel .left-section img {
    border-bottom-left-radius: 0;
    border-top-right-radius: 6px;
  }

  .category-carousel .right-section {
    border-top-right-radius: 0;
    border-bottom-left-radius: 6px;
  }

  .article-content-container {
    margin-top: 0;
  }

  .single-podcasts .spikes-holder {
    background-size: 360% auto;
  }

  .single-podcasts .main-article-social li a,
  .single-playlists .main-article-social li a {
    margin-right: 30px;
    font-size: 22px;
  }

  .single-podcasts .main-article-social li:last-child a {
    margin-right: 0;
  }

  .single-carasrtpmadeira .background-holder {
    background-size: 300% auto;
  }

  .podcasts-body .podcast-date {
    padding: 0;
    margin-bottom: 10px;
  }

  .news-block .podcast-metadata .pill-btn {
    position: relative;
    margin-top: 15px;
    float: right;
  }

  .news-block .news-block-player {
    position: relative;
  }

  .single-videos .half .main-article-data-inner {
    margin-top: 0;
  }

  .single-videos .main-article {
    margin-bottom: 15px;
  }

}

@media screen and (max-width: 575px) {

  .spacer {
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--gray-light-2);
  }

  .footer-store-links p {
    font-size: 15px;
  }

  .footer-social {
    text-align: center;
    background-image: url('includes/img/footer_bg-mobile.png');
    padding-top: 60px;
    background-size: 100% 100%;
  }

  .bg-image-holder {
    height: 570px;
  }

  .pre-footer-nav {
    display: block;
  }

  .pre-footer-nav li::before {
    content: none;
  }

  .pre-footer-nav li {
    border-bottom: 1px solid rgba(196, 196, 196, 0.3);
  }

  .pre-footer-nav li:last-child {
    border-bottom: 0;
  }

  .animador-title-holder {
    margin-bottom: 5%;
  }

  .animador-title {
    font-size: 45px;
    line-height: 45px;
  }

  .rmp-quick-rewind-or-forward {
    display: none !important;
  }

  .animador .title-holder {
    font-size: 25px;
    line-height: 24px;
  }

  .news-block img,
  .podcast-featured-section .left-section img {
    height: 60px;
  }

  .more-media .dropdown-spacer .logo-container img {
    width: 35px;
  }

}

@media (min-width: 768px) and (max-width: 991.98px) {

  .media-image {
    width: 45px;
  }

  .playing-now-section .next-playing .media-container {
    padding-left: 0;
  }

  .playing-now-section .next-playing .media-container p {
    font-size: 14px;
  }

  .playing-now-section .next-playing .media-container h1 {
    font-size: 16px;
  }

}

/**********************************************************
** DARK THEME - theme--night
/**********************************************************/

.theme--night {
  background-color: #191919;
}

.theme--night {
  --maincolor: #CC33CC;
  --white: #1A1A1A;
  --gray: #ffffff;
  --gray-light: #666666;
  --gray-light-2: #c4c4c4;
  --gray-light-3: #f3f3f3;
  --gray-light-4: #8D8D8D;
  --black: #ffffff;
}

.theme--night .navbar .dropdown-menu.show {
  box-shadow: 0px 14px 15px -6px rgb(255 255 255 / 9%);
}

.theme--night .search-control {
  background-color: #333;
}

.theme--night .navbar-collapse {
  background: #242424;
}

.theme--night .playing-now-section {
  background: linear-gradient(0deg, #333 -181.31%, rgba(0, 0, 0, 0) 100%);
}

.theme--night .featured-data {
  background-color: #242424;
}

.theme--night .podcast-featured-section.dark .left-section {
  background-color: var(--gray);
}

.theme--night .bg-gray-light-3 {
  background-color: #242424;
}

.theme--night .bg-black {
  background-color: #242424;
}

.theme--night .category-carousel .right-section {
  background-color: #333;
}

.theme--night .related-prog-container .item:nth-child(odd),
.theme--night .podcasts-body ul li:nth-child(even) {
  background-color: #333;
}

.theme--night .podcasts-body .podcast-link img {
  filter: brightness(0) invert(1);
}

.theme--night .prog-1009,
.theme--night .prog-1449 {
  background-color: #333;
}

.theme--night .epg-section-nav {
  background: #1A1A1A;
}

.theme--night .epg-nav-day-button,
.theme--night .epg-nav-days>li .epg-nav-day-month-label {
  color: var(--gray-light-2);
}

.theme--night .main-article-data-inner-mobile.light {
  background-color: #333;
}

.theme--night .sidebar-see-more a {
  border-bottom: 1px dashed rgba(196, 196, 196, 0.3);
}

.theme--night .thumb-caption,
.theme--night .article-content .wp-caption-text {
  color: var(--gray-light-4);
}

.theme--night .no-res {
  color: #fff;
}

.theme--night .webradios-section .section-item .play-link img {
  filter: invert(100%);
}

.theme--night .article-content blockquote {
  background-color: #242424;
}

.theme--night .half .main-article-data .main-article-title {
  color: #fff;
}

@media (max-width: 991px) {

  .theme--night .navbar-expand-lg .nav-item.dropdown.show {
    background-color: #333333;
  }

  .theme--night .navbar .dropdown-menu.show {
    background-color: #333333;
  }

}

/**********************************************************
** DARK THEME MOBILE DETECT OS & DETECT IF IS TOUCH DEVICE
***********************************************************
** uses the same css as the theme--dark but class is not applied so we use the light theme
/**********************************************************/

@media (prefers-color-scheme: dark) and (hover: none) {

  .theme--day {
    background-color: #191919;
  }

  .theme--day {
    --maincolor: #CC33CC;
    --white: #1A1A1A;
    --gray: #ffffff;
    --gray-light: #666666;
    --gray-light-2: #c4c4c4;
    --gray-light-3: #f3f3f3;
    --gray-light-4: #8D8D8D;
    --black: #ffffff;
  }

  .theme--day .navbar .dropdown-menu.show {
    box-shadow: 0px 14px 15px -6px rgb(255 255 255 / 9%);
  }

  .theme--day .search-control {
    background-color: #333;
  }

  .theme--day .navbar-collapse {
    background: #242424;
  }

  .theme--day .playing-now-section {
    background: linear-gradient(0deg, #333 -181.31%, rgba(0, 0, 0, 0) 100%);
  }

  .theme--day .featured-data {
    background-color: #242424;
  }

  .theme--day .podcast-featured-section.dark .left-section {
    background-color: var(--gray);
  }

  .theme--day .bg-gray-light-3 {
    background-color: #242424;
  }

  .theme--day .bg-black {
    background-color: #242424;
  }

  .theme--day .category-carousel .right-section {
    background-color: #333;
  }

  .theme--day .related-prog-container .item:nth-child(odd),
  .theme--day .podcasts-body ul li:nth-child(even) {
    background-color: #333;
  }

  .theme--day .podcasts-body .podcast-link img {
    filter: brightness(0) invert(1);
  }

  .theme--day .prog-1009,
  .theme--day .prog-1449 {
    background-color: #333;
  }

  .theme--day .epg-section-nav {
    background: #1A1A1A;
  }

  .theme--day .epg-nav-day-button,
  .theme--day .epg-nav-days>li .epg-nav-day-month-label {
    color: var(--gray-light-2);
  }

  .theme--day .main-article-data-inner-mobile.light {
    background-color: #333;
  }

  .theme--day .sidebar-see-more a {
    border-bottom: 1px dashed rgba(196, 196, 196, 0.3);
  }

  .theme--day .thumb-caption,
  .theme--day .article-content .wp-caption-text {
    color: var(--gray-light-4);
  }

  .theme--day .no-res {
    color: #fff;
  }

  .theme--day .half .main-article-data .main-article-title {
    color: #1A1A1A;
  }

  @media (max-width: 991px) {

    .theme--day .navbar-expand-lg .nav-item.dropdown.show {
      background-color: #333333;
    }

    .theme--day .navbar .dropdown-menu.show {
      background-color: #333333;
    }

  }

}

/**********************************************************
** Footer RTP
/**********************************************************/

.site-footer .uninav-menu-list a {
  color: #90A4AE !important;
}

.site-footer ul {
  padding-left: 0 !important;
}

.site-footer {
  background-color: #263238;
  min-height: 215px;
  color: #90A4AE;
  font-size: 1rem;
  padding: 40px 0;
  text-transform: uppercase;
}

.site-footer a {
  color: inherit
}

.site-footer-nav {
  margin: 1rem -4px;
  font-size: .75rem
}

.site-footer-copyright {
  text-transform: none
}

.site-footer-nav a,
.site-footer-copyright {
  font-size: 12px;
}

.site-footer-nav a {
  margin: 0 4px
}

.logo-rtp-small-white {
  display: inline-block;
  margin: 30px 0
}

.logo-rtp-small-white img {
  max-width: 100%;
  height: auto
}

.logo-rtp-small-white span {
  display: none
}

.footer-menu {
  width: 100%;
  list-style: none;
  margin: 0 -.9375rem 30px;
  padding: 0;
  line-height: 1.75em;
  float: left;
}

.footer-menu>li {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: .9375rem;
  padding-right: .9375rem;
  width: 100%
}

.footer-menu li a {
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  color: #fff;
}

.footer-menu>li>ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff
}

.footer-menu .uninav-menu-title {
  margin: 0;
  font-size: inherit;
  line-height: inherit
}

.footer-menu .uninav-menu-title>span {
  font-weight: 400
}

.footer-menu .uninav-menu-list {
  color: #90A4AE;
  line-height: inherit;
  list-style: none;
}

.footer-menu .uninav-menu-list li {
  margin: 0
}

.footer-menu li a:hover {
  opacity: 0.8;
}

.footer-menu-title {
  color: var(--white)
}

.social-network-horizontal {
  float: left;
  padding: 0;
  margin: 30px 0
}

.social-network-horizontal li {
  float: left;
  overflow: hidden;
  list-style: none;
  margin-right: 8px
}

.social-network-horizontal .icon {
  display: block;
  text-align: left;
  text-indent: -999em;
  width: 48px;
  height: 48px;
  background-size: 48px
}

.epg-channel-list-maintitle.afternoon,
.epg-channel-list-maintitle.evening,
.epg-channel-list-maintitle.morning,
.epg-channel-list-maintitle.primetime {
  text-indent: 0
}

.social-network-horizontal .icon.facebook {
  background-image: url('https://www.rtp.pt/common/img/assets/social-icon-facebook.svg')
}

.social-network-horizontal .icon.twitter {
  background-image: url('https://www.rtp.pt/common/img/assets/social-icon-twitter.svg')
}

.social-network-horizontal .icon.youtube {
  background-image: url('https://www.rtp.pt/common/img/assets/social-icon-youtube.svg')
}

.social-network-horizontal .icon.flickr {
  background-image: url('https://www.rtp.pt/common/img/assets/social-icon-flickr.svg')
}

.social-network-horizontal .icon.instagram {
  background-image: url('https://www.rtp.pt/common/img/assets/social-icon-instagram.svg')
}

.footer-rtp-classic {
  background-color: #fff;
  padding-top: 1.25rem
}

.footer-rtp-classic .row>div {
  height: 290px;
  background-size: cover;
  background-position: center top;
  padding: 0
}

.footer-rtp-classic .row>div img {
  display: none
}

.footer-rtp-classic .row>div h2 {
  font-size: 1.5rem
}

.footer-rtp-classic .row>div p {
  font-size: 1.4rem;
  line-height: 1.625rem
}

.footer-rtp-classic .row>div a {
  width: 100%;
  padding: .93rem;
  position: relative;
  height: 290px;
  display: block;
  color: #fff;
  text-decoration: none
}

.footer-rtp-classic .row>div a .over-elements {
  position: absolute;
  z-index: 1;
  bottom: 10px
}

.footer-rtp-classic .row>div a .over-elements h2 {
  line-height: .9rem
}

.footer-rtp-classic .row>div a:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .3);
  content: '';
  z-index: 0;
  opacity: 0;
  transition: all .3s
}

.footer-rtp-classic .row>div a:hover:after {
  opacity: 1;
  transition: all .6s
}

.footer-rtp-classic .row>div,
.footer-rtp-classic .row>div.gray {
  background-color: #86949A
}

.footer-rtp-classic .row>div.gray a:before {
  background-image: none;
  display: none
}

.footer-rtp-classic .row>div.gray .over-elements {
  bottom: auto;
  top: 20px
}

.footer-rtp-classic .row>div.gray .over-elements p {
  color: #404040;
  font-size: 1rem;
  line-height: 1.5rem
}

.footer-rtp-classic .text-highlight {
  color: inherit;
  background-color: transparent !important;
  padding: 40px 15px 15px !important
}

.footer-rtp-classic .text-highlight p {
  font-size: 1rem !important;
  line-height: 1.5rem !important
}

.footer-rtp-classic .text-highlight h2 {
  font-weight: 300;
  font-size: 2rem;
  color: #0074FF
}

@media (max-width:767px) {
  .site-footer-copyright {
    font-size: 16px
  }

  .footer-menu li a {
    font-size: 16px;
  }
}

@media (min-width:768px) {
  .site-footer {
    /*padding:70px 0;*/
    font-size: .75rem
  }

  .site-footer-nav {
    font-size: .625rem;
    margin-top: 0;
    margin-bottom: 0
  }
}

@media (min-width:768px) {
  .logo-rtp-small-white {
    margin: 0;
    width: 172px
  }
}

@media (max-width: 991px) {
  .logo-rtp-small-white {
    float: left;
    max-width: 100%
  }

  .social-network-horizontal {
    width: 100%;
  }
}

@media (min-width:544px) {
  .footer-menu>li {
    width: 50%
  }

  .footer-menu>li:nth-child(2n+1) {
    clear: left
  }
}

@media (min-width:768px) {
  .footer-menu>li {
    width: 22%
  }

  .footer-menu>li:last-child {
    width: 34%
  }

  .footer-menu>li:nth-child(2n+1) {
    clear: none
  }

  .social-network-horizontal {
    margin: 30px 0 30px;
  }
}

@media (min-width:768px) {
  .social-network-horizontal .icon {
    width: 22px;
    height: 22px;
    background-size: 22px
  }
}