:root {
  /* Colores principales */
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #fb131d;
  --color-dark-blue: #213981;
  --color-highlight: #c7ff22;

  /* Transparencias */
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-10: rgba(255, 255, 255, 0.1);

  /* Grises */
  --color-gray-100: #f1f1f1;
  --color-gray-200: #f2f2f2;
  --color-gray-300: #d9d9d9;
  --color-gray-400: #e2e2e2;
  --color-gray-500: #3a3a3a;
  --color-gray-600: #f0f0f0;
  --color-gray-700: #4a5765;

  /* Navegación y menú */
  --color-nav-bg: #2f3740;
  --color-nav-border: #181a1c;
  --color-nav-overlay: rgba(255, 255, 255, 0.1);

  /* Footer */
  --color-footer-bg: #2f3337;
  --color-footer-bottom: #232629;

  /* Sombras */
  --shadow-color: rgba(0, 0, 0, 0.43);
  --shadow-color-light: rgba(0, 0, 0, 0.1);
  --shadow-color-search: rgba(0, 0, 0, 0.2);
  --shadow-sidebar: rgba(0, 0, 0, 0.7);

  /* Redes sociales */
  --color-facebook: #3b5997;
  --color-youtube: red;
  --color-whatsapp: #25d366;
  --color-twitter: #000;

  /* Instagram gradient */
  --color-instagram-yellow: #fdf497;
  --color-instagram-orange: #fd5949;
  --color-instagram-pink: #d6249f;
  --color-instagram-blue: #285aeb;
}

*::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*! Boton de Menu Desktop */
.tasty {
  display: flex;
  align-items: center;
  width: 5%;
}

.nav-tasty {
  display: block !important;
  height: 23px !important;
  top: 0px !important;
  left: 0px !important;
}

.nav-pos {
  position: relative !important;
}

/*! Header */
header.ui-top {
  color: var(--color-white);
  box-shadow: 0 5px 12px -5px var(--shadow-color);
  width: 100%;
  z-index: 1000;
  margin-bottom: 40px;
}

header.ui-top .top {
  position: relative;
  z-index: 999;
  background: var(--color-white);
}

.top.topDisplay {
  z-index: 100 !important;
}

header.ui-top .top .wrapper {
  padding-top: 15px;
  padding-bottom: 5px;
}

.banners-row,
.wrapper {
  width: 100%;
  margin: auto;
  position: relative;
  max-width: calc(100% - 40px);
}

/*! Fecha y Temperatura */
.clima span {
  display: inline-block;
}

header.ui-top .clima {
  float: left;
  display: none;
  text-align: left;
  font-size: 1rem;
  vertical-align: middle;
  color: var(--color-black);
}

.temActualColor {
  color: var(--color-primary);
  font-weight: bold;
}

.fecha {
  display: inline-block;
  margin: 0;
  font-size: 0.9rem;
}

/*! Logo */
header.ui-top .logo {
  text-align: center;
}

/* Tamaño de logo del Sitio */
header.ui-top .logo a {
  width: 85px;
  display: inline-block;
}

header.ui-top .logo a img {
  height: auto;
  width: 100%;
  background-image: none !important;
  background-color: transparent !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px auto;
  color: var(--color-gray-200);
}

/* Separador */
.separador {
  display: none;
}

/*! Redes Sociales */
header.ui-top .top-right {
  box-shadow: 0 5px 10px -5px var(--shadow-color-light);
}

header.ui-top .top-right .social {
  display: none;
}

.social a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  float: left;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  margin: 0 0 0 5px;
  font-size: 1.2rem;
  text-align: center;
  color: var(--color-gray-500);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social a.facebook:hover {
  background-color: var(--color-facebook);
  color: var(--color-white);
}

.social a.instagram:hover {
  background: var(--color-instagram-pink);
  background: radial-gradient(circle at 30% 107%, var(--color-instagram-yellow) 0%, var(--color-instagram-yellow) 5%, var(--color-instagram-orange) 45%, var(--color-instagram-pink) 60%, var(--color-instagram-blue) 90%);
  color: var(--color-white);
}

.social a.youtube:hover {
  background-color: var(--color-youtube);
  color: var(--color-white);
}

.social a.whatsapp:hover {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.social a.twitter:hover {
  background-color: var(--color-twitter);
  color: var(--color-white);
}

/*! Nav Categorias de Noticias */
li.menu-item {
  margin: auto 14px !important;
  line-height: 24px !important;
}

.menuLink {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

nav.ui-hnav {
  background-color: var(--color-white);
  /* position: relative; */
  top: -120px;
  transition: all 0.5s ease-in;
  z-index: 150;
  display: none;
}

nav.ui-hnav .wrapper {
  display: flex;
  text-align: center;
  justify-content: space-between;
  align-items: center;
}

nav.ui-hnav .wrapper > .itm {
  width: 95%;
  display: inline-block;
  position: relative;
}

nav.ui-hnav .wrapper > .itm a {
  color: var(--color-black);
  display: inline-block;
  width: 100%;
  padding: 8px 0px;
  font-size: 1rem;
  font-weight: 700;
  border-top: 2px solid transparent;
  text-decoration: none;
}

/*! Lupa buscador Escritorio */
nav.ui-hnav .app-search {
  display: flex;
  justify-content: end;
  width: 5%;
  position: relative;
  font-size: 20px;
  z-index: 9999999;
}

nav.ui-hnav .app-search .icon {
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  color: var(--color-black);
  transition: all 0.3s ease;
  font-size: 20px;
}

/*! Lupa buscador Movil */
header.ui-top .search-mobile {
  position: absolute;
  top: 20px;
  right: -5px;
}

header.ui-top .search-mobile button {
  border: 0;
  background-color: transparent;
  color: var(--color-black);
  font-size: 1.4rem;
}

/*! Nav Bar - Radio y TV */

.bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease-in;
  z-index: 149;
  gap: 10px;
}

.bottomBarIcon {
  padding: 5px !important;
}

/*?TopBar */
.topBar {
  background-color: var(--color-footer-bg);
  padding: 5px 0px;
}

.topHeader .fecha {
  text-align: left !important;
}

.topBar .fecha {
  text-align: center;
}

.topBar .tempCiudad {
  font-size: 0.9rem !important;
}

.topBar .temActualColor {
  font-weight: 500 !important;
}

.topBar .top-right .social a {
  width: 30px;
  height: 25px;
  font-size: 1.1rem;
  color: var(--color-white) !important;
}

.topHeader {
  grid-template-columns: 1fr 1fr !important;
}

.subBarTop {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  justify-items: stretch;
  align-items: center;
  grid-gap: 0;
}

/*?Bottom Bar */
.bottomBar {
  background-color: var(--color-gray-100);
  padding: 10px;
}

.subBarBottom {
  display: flex;
  align-items: center;
  /* margin: 0px 10px; */
}

a.subBarBottom {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.subBarBottom i {
  font-size: 20px;
  padding-right: 5px;
}

img.iconRadios {
  width: 45px;
  height: 45px;
  border-radius: 5px;
}

/*! Form de Buscador*/
#search-bar.open {
  border-top: 1px solid var(--color-gray-400);
  max-height: 1000px;
  min-height: 150px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

#search-bar {
  background: var(--color-white);
  position: relative;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#search-bar form {
  position: relative;
}

#search-bar form input {
  box-shadow: 0 0 12px -5px var(--shadow-color-search) inset;
  border: 1px solid var(--color-white);
  transition: all 0.3s ease;
  outline: 0;
  font-size: 16px;
}

#search-bar form input[type="text"] {
  width: 100%;
  border-radius: 8px;
  background-color: var(--color-gray-600);
  border: 0;
  padding: 7px;
  height: 50px;
}

#search-bar .buttons {
  padding: 0;
}

#search-bar form button[type="submit"] {
  position: absolute;
  top: 8px;
  right: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 7px 17px;
  font-weight: 700;
}

.btn {
  border: 0;
  border-radius: 4px;
  padding: 6px 15px;
  margin: 0 0 0 5px;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  background-color: var(--color-primary);
  color: var(--color-white);
  opacity: 0.8;
  text-transform: none;
  display: inline-block;
  font-weight: 400;
  transition: all 100ms ease-in-out;
}

/*! Boton de Menu Movil */
.nav-open-close {
  width: 30px;
  height: 30px;
  position: absolute;
  transform: rotate(0deg);
  transition: 0.2s ease;
  cursor: pointer;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.nav-open-close span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: var(--color-black);
}

.nav-open-close span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}

.nav-open-close span:nth-child(2) {
  top: 9px;
  transform-origin: left center;
}

.nav-open-close span:nth-child(3) {
  top: 18px;
  transform-origin: left center;
}

/*! Nav Menu Sidebar Movil */
.menuLinkMob {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

/* ul#menu-menu-2 li {
  margin: 0 !important;
} */

.open-sidebar .ui-nav {
  left: 0;
  box-shadow: 0 0 185px var(--shadow-sidebar);
}

.ui-nav {
  background: var(--color-nav-bg);
  border-right: 1px solid var(--color-nav-bg);
  transition: all 0.3s ease-out;
  z-index: 999999;
  height: 100%;
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
}

.ui-nav .nav-open-close {
  left: auto !important;
  top: 28px !important;
  right: 24px;
}

.open-sidebar .nav-open-close span:nth-child(1) {
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

.ui-nav .nav-open-close span {
  background: var(--color-white);
}

.open-sidebar .nav-open-close span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.open-sidebar .nav-open-close span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
  left: 8px;
}

.ui-nav .nav-block {
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/*! Fecha y Temperatura Movil*/
.ui-nav .climaMovil {
  color: var(--color-white);
  padding: 20px 0 20px 40px;
  margin: 0 0 10px;
  text-align: left;
  font-size: 1.2rem;
  vertical-align: middle;
  background-color: var(--color-nav-overlay);
}

.ui-nav .climaMovil span {
  display: block;
  margin: 0 5px 0 0;
  font-size: 1rem;
}

.tempMinMax {
  font-size: 0.7rem !important;
  text-transform: uppercase;
}

.fechaMob {
  font-size: 0.8rem !important;
  text-transform: unset;
  font-weight: 400;
}

/*! Nav Categorias de Noticias Movil */
.ui-nav .itm {
  position: relative;
  font-size: 1rem;
  border-radius: 5px;
  padding: 0 20px;
}

.ui-nav .itm a:last-child {
  border-bottom: 0;
}

.ui-nav .itm a {
  display: block;
  padding: 10px 20px;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
}

/* Mostrar el overlay*/
body.open-sidebar .overlay {
  display: block;
}

/* Overlay bloquear el fondo */
.overlay {
  background-color: rgb(0 0 0 / 40%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

/*! Redes Sociales Movil*/
.ui-nav .social {
  margin: 10px auto 0px;
  padding: 10px 0 0;
  width: calc(100% - 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
  grid-gap: 0;
  border-top: 1px solid var(--color-primary);
}

.ui-nav .social a {
  padding: 0;
  margin: 0 auto;
  text-align: center;
  float: none;
  color: var(--color-white);
}

/* SubMenu */
.menu-item .sub-menu {
  list-style: none;
}

.menuLinkMob > .menu-item > .sub-menu {
  padding-left: 20px !important;
  display: block;
  box-shadow: 1px 1px 4px rgb(0 0 0 / 0%);
}

.menuLinkMob i.iconSub.fas.fa-angle-down {
  float: right;
}

.menuLinkMob .sub-menu > li.menu-item:hover {
  background-color: transparent !important;
}

.menuLinkMob .sub-menu > li.menu-item:last-child:hover {
  background-color: transparent !important;
}

.open-sidebar header,
.open-sidebar main,
.open-sidebar footer,
.open-sidebar .tdc-content-wrap {
  filter: blur(0.15rem);
  -webkit-filter: blur(0.15rem);
}

/*! Footer */

footer {
  display: block;
}

.ui-footer {
  background: var(--color-footer-bg);
  padding: 20px 0 0;
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.2;
  position: relative;
}

.ui-footer .wrapper {
  padding: 0;
}

.ui-footer .wrapper .logoFooter {
  text-align: center;
}

.ui-footer .wrapper .social {
  text-align: center;
}

.ui-footer .wrapper .social a {
  color: var(--color-white);
  float: none;
  display: inline-block;
  padding-top: 8px;
}

.ui-footer .wrapper .social a:hover {
  color: var(--color-white);
}

.ui-footer .bottom {
  background-color: var(--color-footer-bottom);
  font-size: 0.8rem;
}

.ui-footer .bottom .wrapper {
  display: block;
  padding-bottom: 60px;
  margin: 0;
  width: 100%;
}

.ui-footer .wrapper.row-f1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  padding: 10px 20px 20px;
  max-width: 1200px;
  margin: auto;
}

.ui-footer .wrapper .data p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 10px;
  color: var(--color-white-60);
}

.ui-footer .wrapper .data p a {
  color: var(--color-white);
  text-decoration: none;
}

.ui-footer .wrapper .data p strong {
  color: var(--color-primary);
  font-size: 16px;
}

.wrapper.row-f2.copy {
  max-width: 1200px;
}

.copy {
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px !important;
  margin: 0 auto !important;
}

.copyName:first-child {
  margin-bottom: 10px;
}

.copyName a {
  text-decoration: none;
  color: var(--color-white) !important;
  font-weight: 400;
}

.copyName .dev {
  color: var(--color-highlight);
}

/* Media Queries max-width: 959px */
@media screen and (max-width: 959px) {

  /* Menu Fixed para Movil - Agrega Clases */
  header.ui-top {
    position: sticky;
    top: 0;
  }

  .desc {
    display: none !important;
  }
  /* Fin - Menu Fixed para Movil - Agrega Clases */

  .menu-item .sub-menu {
    padding-left: 20px;
  }

  .td-normal-menu ul {
    box-shadow: none;
  }

  .ui-footer .wrapper .data p {
    margin: 0px;
    text-align: center;
    margin-bottom: 10px;
  }

  nav.ui-hnav .wrapper {
    margin: 0;
  }

  .bottomTop {
    display: none;
  }
}

/* Media Queries min-width: 340px */
@media screen and (min-width: 340px) {
  .ui-nav {
    width: 300px;
    left: -351px;
  }
}

/* Media Queries min-width: 640px */
@media screen and (min-width: 640px) {
  /* Tamaño de logo del Sitio */
  header.ui-top .logo a {
    width: 125px;
  }

  header.ui-top .logoColDos a {
    width: 245px;
  }

  header.ui-top .search-mobile {
    top: 38px;
    right: 0;
  }

  .nav-open-close {
    top: 37px;
  }
}

/* Media Queries min-width: 960 PX */
@media screen and (min-width: 960px) {
  /* Menu Fixed para Desktop - Agrega Clases*/
  body.admin-bar .fixed-header {
    top: 32px !important;
  }

  .fixed-header {
    position: fixed;
    width: 100%;
    top: 0 !important;
  }

  .logoBarra {
    display: none;
  }

  img.logoImgBarra {
    display: block;
    width: 80px;
  }

  .act {
    display: block !important;
  }

  .desc {
    display: none !important;
  }

  .itmAct {
    width: 85% !important;
    height: 50px !important;
  }

  .menuAct {
    justify-content: end !important;
    height: 50px !important;
  }
  
  .borderNav{
    border-bottom: 1px solid var(--color-gray-300);
  }
  /* Fin Menu Fixed  */

  header.ui-top.headerDisplay {
    display: flex !important;
    flex-direction: column !important;
  }

  nav.ui-hnav.mainnav.headerNav {
    order: -1 !important;
    border-bottom: 1px solid var(--color-gray-300);
  }
  /*! Hover Boton de Menu Desktop */
  .ui-nav .itm a:hover {
    background: var(--color-gray-700);
    border-radius: 4px;
  }

  header.ui-top .headerCol .wrapper {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-gap: 0;
  }

  header.ui-top .headerColDos .wrapper {
    grid-template-columns: auto 1fr !important;
    grid-gap: 0;
    align-items: center;
  }

  header.ui-top .top .wrapper {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    grid-gap: 0;
  }

  header.ui-top .clima {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  header.ui-top .SocialClima {
    align-items: flex-end !important;
  }

  header.ui-top .top .wrapper .logo {
    text-align: center;
  }

  header.ui-top .top .wrapper .logoColDos {
    position: relative;
    top: 45%;
    transform: translateY(-50%);
  }

  header.ui-top .topSocialClima {
    display: flex !important;
    align-items: flex-end !important;
    flex-direction: column-reverse !important;
  }

  .separador {
    display: block;
    border: 2px solid;
    width: 90%;
    margin: 10px 0px 5px 0px;
    color: var(--color-primary);
    /* border-image: linear-gradient(to right,#bedb02 15%,#ea6f25 60%,#229953 90%) 3!important; */
  }

  header.ui-top .top-right {
    display: flex;
    justify-content: end;
    align-items: center;
    top: 18px;
    bottom: auto;
    right: 0;
    left: auto;
    box-shadow: none;
    margin: 0;
    background-color: transparent;
    color: var(--color-gray-500);
  }

  header.ui-top .top-right .social {
    float: right;
    display: block;
  }

  nav.ui-hnav {
    display: block;
  }

  header.ui-top .search-mobile {
    display: none;
  }

  .nav-open-close {
    display: none;
  }

  .menuLink .menu-item {
    display: flex;
    justify-content: center;
  }

  .sub-menu {
    display: none;
  }

  .menuLink > .menu-item:hover > .sub-menu {
    display: block;
    position: absolute;
    z-index: 200;
    background: var(--color-white);
    top: 42px;
    list-style: none;
    width: 100%;
    max-width: 200px;
    border-radius: 5px;
  }

  .sub-menu li.menu-item {
    margin: 0px !important;
    cursor: pointer;
  }

  .menu-item:last-child {
    border-bottom: none;
  }

  /**Hover Menu SubMenu Desktop**/

  .sub-menu li a:hover {
    color: var(--color-white) !important;
  }

  .fa-angle-down:before {
    color: var(--color-primary) !important;
  }

  .menuLinkMob .fa-angle-down:before {
    color: var(--color-white) !important;
  }

  /* Mantener el estilo para los elementos intermedios */
  .sub-menu > li.menu-item:hover {
    background-color: var(--color-primary) !important;
  }

  /* Para el primer elemento del submenu */
  .sub-menu > :first-child:hover {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: var(--color-primary) !important;
  }

  /* Para el último elemento del submenu */
  .sub-menu > li.menu-item:last-child:hover {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--color-primary) !important;
  }

  /** Hover Menu Primario Desktop */

  li.menu-item:hover {
    background-color: transparent;
  }

  /* Footer */
  .ui-footer .wrapper .logoFooter {
    text-align: left;
  }

  .ui-footer .wrapper.row-f1 {
    display: grid;
    grid-template-columns: 250px 3fr 1fr;
    grid-gap: 20px;
    align-items: center;
  }

  .ui-footer .wrapper .data {
    display: grid;
    grid-template-columns: 1fr;
    border-left: 1px solid var(--color-white-10);
    border-right: 1px solid var(--color-white-10);
    text-align: center;
  }

  .ui-footer {
    padding-bottom: 0;
  }

  .ui-footer .bottom .wrapper {
    padding: 10px 20px;
    margin: 0 auto;
  }

  .copy {
    flex-direction: row !important;
    text-align: start !important;
  }

  .copyName {
    margin-bottom: 0px !important;
  }
}

/* Media Queries max-width: 1030px */
@media screen and (max-width: 1030px) {
  nav.ui-hnav .wrapper > .itm a {
    font-size: 0.9rem !important;
  }

  nav.ui-hnav .wrapper {
    margin: 0 auto;
  }
}

/* Media Queries min-width: 1200px */
@media screen and (min-width: 1200px) {
  .banners-row,
  .wrapper {
    max-width: 1440px;
    padding: 0 24px;
  }

  .ui-footer .wrapper .social {
    text-align: right;
  }
}
