nav.navigation {
  display: block;
  position: absolute;
  width: 0;
  height: calc(100% - 70px);
  top: 71px;
  z-index: 9;
  overflow: hidden;
  overflow-y: auto;
  left: 100%;
  transition: all 0.5s;
  opacity: 0;
  background: #ffffff;
}

nav.navigation > ul::-webkit-scrollbar,
nav.navigation.active > ul::-webkit-scrollbar,
nav.navigation.active::-webkit-scrollbar,
nav.navigation::-webkit-scrollbar {
  display: none;
}

nav.navigation > ul,
nav.navigation.active > ul,
nav.navigation.active,
nav.navigation {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

nav.navigation.active {
  left: 0;
  width: 100%;
  transition: all 0.5s;
  opacity: 1;
  z-index: 90;
}

#background_navigation {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
}

.navigation li {
  height: 40px;
  width: 100%;
}

.navigation li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  color: #545454;
  font-family: var(--f1);
  font-weight: normal;
  font-size: 14px;
  padding: 0;
}

.navigation li a:hover,
.navigation li a.active {
  background: #eef6fb;
  color: #009df4;
  font-weight: bold;
}

.navigation li a .icon {
  width: 20px; /* Asegúrate de que todos los íconos tengan el mismo ancho */
  height: 22px; /* Asegúrate de que todos los íconos tengan la misma altura */
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto 14px auto 30px; /* Ajusta los márgenes según sea necesario */
  background-size: contain; /* Asegúrate de que los íconos se escalen correctamente */
}

.navigation li a .icon::before {
  font-size: 19px;
}

.navigation li a span {
  display: inline-block;
  height: 40px;
  vertical-align: middle;
  margin-top: 19px;
}

.navigation ul hr {
  margin: 10px 0;
  border-top: solid 1px #b5b5b6;
}

.navigation li.navigation-sub-section {
  height: 40px;
  margin-top: 5px;
  line-height: 45px;
  padding-left: 65px;
  width: calc(100% - 65px);
  font-size: 14px;
  font-family: var(--f1);
  color: #1c2b3b;
  font-weight: bold;
}

@media (min-width: 768px) {
  nav.navigation,
  nav.navigation.active {
    display: block;
    left: 0;
    width: 310px;
    right: inherit;
    opacity: 1;
    padding-top: 76px;
    height: auto;
    padding-bottom: 30px;
    float: left;
    top: 0;
    bottom: 0;
    position: fixed;
    overflow-y: hidden;
    overflow-x: hidden;
  }

  nav.navigation > ul,
  nav.navigation.active > ul {
    overflow-y: auto;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .info_banner {
    display: inline-block;
    width: calc(100% - 280px);
    height: auto;
    overflow: hidden;
    padding-bottom: 25px;
  }

  .wrapper_banner-info h2 {
    font-size: 20px;
  }

  .wrapper_banner-info p {
    font-size: 14px;
  }

  .wrapper_banner-info img.info-banner {
    margin: 0;
    width: 280px;
  }

  ul.wrapper_content-boxs {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .wrapper_content-boxs li.box {
    display: inline-block;
    width: calc(50% - 20px);
    height: auto;
    margin: 0 20px 20px 0;
    overflow: hidden;
  }
}

@media (min-width: 1280px) {
  .wrapper_content-folder {
    gap: 90px;
  }

  .wrapper_content-boxs li.box {
    width: calc(25% - 20px);
  }
}

.enlace-spotify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding-left: 8% !important;
}

.enlace-spotify svg {
  display: inline-block !important;
  width: 40px;
  height: 20px;
  flex: 0 0 auto;
}

.enlace-spotify svg::before {
  content: none !important;
  display: none !important;
}

/* Estado Hover Y Active (Azul) */
.enlace-spotify:hover,
.enlace-spotify.active,
li.active .enlace-spotify {
  color: #009df4 !important;
}

.enlace-spotify:hover svg .cls-1,
.enlace-spotify.active svg .cls-1,
li.active .enlace-spotify svg .cls-1 {
  fill: #009df4 !important;
}

@media (min-width: 992px) {
  
  .enlace-spotify {
    padding-left: 10% !important;
  }

}