@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: none;
}

html {
  scroll-behavior: smooth;
}

.preload * {
  transition: none !important;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #cfcfcf;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f7f7f7;
}

a {
  text-decoration: none;
}

.gray {
  color: #cfcfcf;
}

.yellow {
  color: #f0b400;
}

hr {
  border-top: 1px solid #9e9e9e;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.boton-expandible {
  background-color: #3CECD6;
  color: #000;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: center;
  outline: 0;
  font-size: 15px;
  transition: all 0.1s ease;
  display: none;
}

.image-card {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px;
  border: #5d5d5d solid 1px;
  border-radius: 10px;
  transition: border 0.2s ease;
  align-items: center;
  justify-content: center;
}
.image-card .image img {
  width: 50px;
}

.discord-card {
  background-color: #7289da;
  border: #5b77db;
  transition: all 0.1s ease-in-out;
}
.discord-card:hover {
  background-color: #657fdd;
  border: #5b77db;
}
.discord-card .content {
  color: #FFFFFF;
}
.discord-card .content h2 {
  font-size: 1.2rem;
  font-weight: 400;
}
.discord-card .content {
  font-size: 0.9rem;
  font-weight: 100;
  color: #FFFFFF;
  margin-top: 5px;
}

.comentario {
  display: block;
}

.icon {
  display: inline-block;
  width: auto;
  margin-right: 5px;
}

.icon-yellow {
  color: #f0b400;
}

.icon-red {
  color: #dd0f0f;
}

.icon-green {
  color: #008f00;
}

.icon-purple {
  color: #9c00ff;
}

.icon-blue {
  color: #00a1ff;
}

.icon-pink {
  color: #ff07de;
}

.item {
  display: inline-block;
  font-size: 0.875em;
  font-weight: 400;
  padding: 2px 4px;
  line-height: 0.9em;
}

.item.bl {
  padding: 0 0 0 5px;
  border-left: #ffbf00 solid 2px;
  color: #ffbf00 !important;
}

.item.br {
  border-radius: 5px;
  border: #FFFFFF solid 1px;
  transition: border 0.2s ease;
}

a.item.br:hover {
  border: #ffbf00 solid 1px;
}

.item.br.bg {
  background-color: #ffffff;
  color: rgb(23, 24, 56);
  font-weight: bold;
  padding: 2px 4px !important;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.836);
  display: inline-block;
  margin: 3px 2px;
}

.btn-reverse {
  text-align: center;
  width: 100px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  background-color: #303d4f;
  border-radius: 5px;
  transition: all 0.2s ease;
  color: #ffffff;
}
.btn-reverse:hover {
  background-color: #31435f;
}
.btn-reverse:active {
  background-color: #00466b;
}

section .titulo h2 {
  font-size: 22px;
  font-weight: 400;
}

.spinner::before {
  content: url("/media/icons/spinner_20x20.gif");
}

.max-height-350 {
  max-height: 350px;
}

#animes-right-side .titulo {
  margin-bottom: 20px;
}
#animes-right-side .titulo h2 {
  font-size: 22px;
  font-weight: normal;
}
#animes-right-side .articulos {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* max-height: 2000px; */
  overflow: auto;
}
#animes-right-side .articulos a article {
  position: relative;
  height: 100%;
  display: flex;
  border: #5d5d5d solid 1px;
  border-radius: 5px;
  flex-direction: row;
  gap: 10px;
  padding: 5px;
  transition: border 0.2s ease;
}
#animes-right-side .articulos a article:hover {
  border: #f0b400 solid 1px;
}
#animes-right-side .articulos a article .imagen {
  display: block;
  width: 80px;
  height: 100%;
}
#animes-right-side .articulos a article .imagen figure {
  position: relative;
  width: auto;
  padding-top: 100px;
  transition: 0.3s ease-in-out opacity;
}
#animes-right-side .articulos a article .imagen figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: 0.3s ease-in-out all;
}
#animes-right-side .articulos a article .contenido {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  padding: 0;
}
#animes-right-side .articulos a article .contenido span {
  font-size: 10px;
  font-weight: normal;
}
#animes-right-side .articulos a article .contenido h3 {
  font-size: 14px;
  font-weight: 400;
  color: #f0b400 !important;
  text-decoration: none;
}

button {
  cursor: pointer !important;
}

ul.grid-animes {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: stretch;
  list-style: none;
}
ul.grid-animes {
  font-size: 15px;
  overflow: hidden;
}
ul.grid-animes li article {
  position: relative;
  height: 100%;
  transition: 0.2s ease-in-out all;
}
ul.grid-animes li article:hover {
  color: none;
  transform: scale(0.95);
}
ul.grid-animes li article a {
  text-decoration: none;
  font-size: 16px;
}
ul.grid-animes li article a figure {
  position: relative;
  padding-top: 150%;
  margin: 0 0 0.5rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
ul.grid-animes li article a figure .bottom {
  z-index: 1;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
ul.grid-animes li article a figure .bottom .idioma-thumbnail {
  position: absolute;
  bottom: calc(50% + 15px);
  bottom: -o-calc(50% + 15px);
  bottom: -ms-calc(50% + 15px);
  right: 8px;
  z-index: 1;
  width: 30px;
  height: 20px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
ul.grid-animes li article a figure .bottom .figure-title {
  z-index: 1;
  text-align: center;
}
ul.grid-animes li article a figure .bottom .figure-title {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 6px;
  border-radius: 0.2rem;
  padding: 3px;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
ul.grid-animes li article a figure span {
  z-index: 1;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: #111;
  border-radius: 0.2rem;
  padding: 5px;
}
ul.grid-animes li article a figure .tipo {
  --tw-bg-opacity: 1;
    background-color: #3CECD6;
  top: 0;
  left: 0;
}
ul.grid-animes li article a figure .estreno {
  --tw-bg-opacity: 1;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
  top: 0;
  right: 0;
}
ul.grid-animes li article a figure .main-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: 0.3s ease-in-out all;
}

ul.grid-animes.x6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1180px) {
  ul.grid-animes {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  ul.grid-animes.directorio {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  ul.grid-animes.relacionados {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    justify-items: stretch !important;
    list-style: none !important;
  }
  ul.grid-animes {
    font-size: 12px !important;
  }
  ul.grid-animes span {
    font-size: 12px !important;
  }
}
@media (max-width: 480px) {
  ul.grid-animes {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  ul.grid-animes.directorio {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  ul.grid-animes.relacionados {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    justify-items: stretch !important;
    list-style: none !important;
  }
}
/*Paginación*/
.paginador-favoritos {
  display: none;
}

.paginador-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center !important;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-top: 30px;
}

.paginador-container  {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.pagination {
  display: flex;
  padding-left: 0;
  justify-content: center;
  list-style: none;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-link:hover {
  z-index: 1;
  color: none;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  border-color: #3b3b3b;
}

.page-link:focus {
  z-index: 1;
  background-color: #3b3b3b;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.3960784314);
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  color: #fff !important;
  text-decoration: none;
  background-color: #2b2b2b;
  border: 1px solid #3b3b3b;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #000 !important;
  pointer-events: none;
  border-color: none;
  --tw-bg-opacity: 1;
    background-color: #3CECD6;
}

.page-item.disabled .page-link, .page-controller.disabled .page-link {
  color: #6c757d !important;
  pointer-events: none;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

.page-controller.right .page-link {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.page-controller.left .page-link {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.page-controller.disabledd .page-link {
  color: #6c757d !important;
  pointer-events: none;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.text-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  margin-bottom: 20px;
}

.text-card .title h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #15102e;
}

.text-card .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-card .content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #15102e;
}

.text-card .content {
  font-size: 0.9rem;
  color: #15102e;
  font-weight: 100;
}

.grey-card {
  background-color: #dbdde1;
  color: #15102e;
  border: #acacac solid 1px;
}

.no-mostrar {
  display: none;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  -webkit-animation-delay: -36ms;
          animation-delay: -36ms;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  -webkit-animation-delay: -72ms;
          animation-delay: -72ms;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  -webkit-animation-delay: -108ms;
          animation-delay: -108ms;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  -webkit-animation-delay: -144ms;
          animation-delay: -144ms;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
          animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  -webkit-animation-delay: -216ms;
          animation-delay: -216ms;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  -webkit-animation-delay: -252ms;
          animation-delay: -252ms;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  -webkit-animation-delay: -288ms;
          animation-delay: -288ms;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@-webkit-keyframes lds-roller {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-roller {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lds-ring {
  display: flex;
  position: relative;
  width: 27px;
  height: 20px;
  align-items: center;
  justify-content: center;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  margin: 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}

@-webkit-keyframes lds-ring {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-ring {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
 {
  overflow: auto;
  position: relative;
  font-family: Roboto, sans-serif;
  color: #cfcfcf;
 --tw-bg-opacity: 1;
    background-color: rgb(34 34 34 / var(--tw-bg-opacity));
}
 .skeleton {
  -webkit-animation: skeleton-loading-darkmode 1s linear infinite alternate;
          animation: skeleton-loading-darkmode 1s linear infinite alternate;
}
 .skeleton-loaded {
  -webkit-animation: none;
          animation: none;
  background-color: #1c1c1c;
}
@-webkit-keyframes skeleton-loading-darkmode {
  0% {
    background-color: #1c1c1c;
  }
  100% {
    background-color: #2a2a2a;
  }
}
@keyframes skeleton-loading-darkmode {
  0% {
    background-color: #1c1c1c;
  }
  100% {
    background-color: #2a2a2a;
  }
}
 .section {
  background-color: #273242;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}
 .section .titulo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 15px;
}
 .section .titulo h2 {
  margin-bottom: 0;
}
 main {
  padding: 110px 50px 20px 50px;
  margin-right: auto;
  margin-left: auto;
  min-height: 100vh;
}
@media (min-width: 1200px) {
   main {
    padding: 110px 60px 20px 60px;
    max-width: 1380px;
  }
}
@media (max-width: 1024px) {
   main {
    padding: 110px 20px 20px 20px;
  }
}
@media (max-width: 768px) {
   main {
    padding: 110px 10px 20px 10px;
  }
}
@media (max-width: 280px) {
   main {
    padding: 110px 5px 20px 5px;
  }
}
 a {
  color: none;
}
@supports ((-webkit-: blur(20px)) or (: blur(20px))) {
    {
     --tw-bg-opacity: 1;
        background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  }
   ::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-: blur(20px) saturate(180%);
    : blur(20px) saturate(180%);
  }
    .results {
    background-color: rgba(39, 50, 66, 0.8) !important;
  }
    .results::before {
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-: blur(20px) saturate(180%);
    : blur(20px) saturate(180%);
  }
}
  {
  position: fixed;
  width: 100%;
  min-height: 70px;
  padding: 1rem;
  z-index: 2;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
  background-color: #273242;
}
  . {
  max-width: 1700px;
  margin: auto;
  display: flex;
  gap: 15px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
  li {
  list-style: none;
}
   {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
  .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
  .links ul {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
}
  .links ul a {
  transition: color 0.2s ease-in-out;
}
  .links ul a:hover {
  color: #f0b400;
}
  .user-index {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
  .user-index .search-container {
  position: relative;
  width: 100%;
}
  .user-index .search-container form {
  width: 250px;
}
  .user-index .search-container form .component-search {
  position: relative;
}
  .user-index .search-container form .component-search .form-style {
  display: block;
  width: 100%;
  height: 35px;
  padding: 0.375rem 0.75rem;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-clip: padding-box;
  border-radius: 10px;
  background-color: #f8f8f8;
  border: rgb(192, 192, 192) 1px solid;
}
  .user-index .search-container form .component-search .input-icon {
  position: absolute;
  right: 10px;
  color: #5f5f5f;
  top: calc(50% - 0.5em);
}
  .user-index .search-container .results {
  position: absolute;
  top: 110%;
  width: 100%;
  display: none;
  background-color: #273242;
  color: rgb(192, 192, 192);
  border-radius: 10px;
  border: #9b9b9b 1px solid;
  padding: 10px;
}
  .user-index .search-container .results ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 10rem;
  overflow: auto;
}
  .user-index .search-container .results ul li.error-message {
  text-align: center;
  font-size: 0.9rem;
}
  .user-index .search-container .results ul li {
  cursor: pointer;
}
  .user-index .search-container .results ul li article {
  border-bottom: #606060 solid 0.5px;
  padding-bottom: 10px;
}
  .user-index .search-container .results ul li article:hover {
  color: #f0b400;
}
  .user-index .search-container .results ul li article a {
  color: rgb(192, 192, 192);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 10px;
}
  .user-index .search-container .results ul li article a .imagen {
  width: 80px;
  display: block;
  height: 100%;
}
  .user-index .search-container .results ul li article a .imagen figure {
  position: relative;
  width: auto;
  padding-top: 4rem;
}
  .user-index .search-container .results ul li article a .imagen figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2b2b2b;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
}
  .user-index .search-container .results ul li article a .info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
  .user-index .search-container .results ul li article a .info {
  margin: 0;
  font-size: small;
  transition: all 0.2s ease-in-out;
}
  .user-index .search-container .results ul li article a .info .meta {
  margin-top: 5px;
  width: 100%;
}
  .user-index .search-container .results ul li article a .info .meta span {
  font-size: 0.7rem;
  border-radius: 20px;
  padding: 3px 7px 3px 7px;
}
  .user-index .search-container .results ul li article a .info .meta span.tipo {
  background-color: #f0b400;
  color: #000000;
}
  .user-index .search-container .results ul li article a .info .meta span.estreno {
  background-color: rgb(0, 117, 219);
  color: #ffffff;
}
  .user-index .search-container .results .more-results {
  margin-top: 10px;
  display: none;
}
  .user-index .search-container .results .more-results button {
  background-color: #2d3e58;
  color: rgb(192, 192, 192);
  border: #606060 solid 0.5px;
  border-radius: 5px;
  padding: 5px;
  width: 100%;
}
  .user-index .search-container .results .more-results button:hover {
  background-color: #1d1d1d;
}
  .titulo a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f0b400;
  text-decoration: none;
}
  .main- {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
  .main- .titulo {
  height: auto;
  text-align: center;
}
  .main- .titulo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
  .main- .titulo img {
  width: 100%;
  height: auto;
}
  .main- #hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}
  .main- #hamburger-icon .bar {
  height: 3px;
  margin: 6px 0;
  border-radius: 30px;
  transition: width 0.4s ease, background-color 0.4s ease;
  background-color: #ffffff;
}
  .main- #hamburger-icon .bar1 {
  width: 35px;
}
  .main- #hamburger-icon .bar2 {
  width: 35px;
}
  .main- #hamburger-icon .bar3 {
  width: 35px;
}
  .main- #hamburger-icon.open .bar1 {
  width: 35px;
  background-color: #f869c7;
}
  .main- #hamburger-icon.open .bar2 {
  background-color: #fce8d1;
  width: 23px;
}
  .main- #hamburger-icon.open .bar3 {
  background-color: #56f870;
  width: 28px;
}
  .-icon {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
  .-icon:hover .dropdown-content {
  display: block;
}
  .-icon .user-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  background: #f0b400;
  border-radius: 50%;
}
  .-icon a {
  color: #fff;
}
  .-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: #646464 solid 1.5px;
  transition: border 0.3s ease;
}
  .-icon img:hover {
  border: #919191 solid 1.5px;
}
  .-icon button {
  background-color: rgba(240, 180, 0, 0);
  border: none;
  box-shadow: none;
  color: #fff;
}
  .-icon .dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  top: 40px;
  left: -120px;
  padding: 10px;
  border-radius: 10px;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  background-color: #273242;
}
  .-icon .dropdown-content .username {
  min-width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  overflow: auto;
  border-bottom: #3b3b3b solid 1px;
}
  .-icon .dropdown-content .username {
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 7px;
  white-space: nowrap;
  color: #fff;
}
  .-icon .dropdown-content a {
  padding: 7px;
  text-decoration: none;
  display: block;
}
  .-icon .dropdown-content a:hover {
  color: #f0b400;
}
  .mobile-menu .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
  .mobile-menu .links ul {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
}
  .mobile-menu .links ul a {
  transition: color 0.2s ease-in-out;
}
  .mobile-menu .links ul a:hover {
  color: #f0b400;
}
@media only screen and (max-width: 820px) {
    . {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
    .main- {
    width: 100%;
  }
    .main- #hamburger-icon {
    display: block !important;
  }
    .mobile-menu {
    display: none;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
  }
    .mobile-menu .user-index {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }
    .mobile-menu .user-index form {
    width: 100%;
  }
    .mobile-menu .links {
    margin-bottom: 10px;
  }
    .mobile-menu .links ul {
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
  }
}
 footer {
  
  background-color: none;
}
 footer .footer {
  box-sizing: border-box;
  padding: 0 20px 0 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1700px;
}
 footer .footer .main-footer {
  padding-top: 20px;
  padding-bottom: 30px;
}
 footer .footer .main-footer .text-content {
  margin-bottom: 20px;
}
 footer .footer .main-footer h1,  footer .footer .main-footer h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-align: left;
}
 footer .footer .main-footer {
  margin: 10px 0 10px 0;
  text-justify: distribute;
}
 footer .footer .redes-sociales {
  padding: 10px;
}
 footer .footer .redes-sociales ul {
  display: flex;
  flex-direction: row;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
}
 footer .footer .redes-sociales ul a:hover {
  color: #fff;
  transition: color 0.2s ease-in-out;
}
 footer .footer .copyright-footer {
  text-align: center;
  padding: 20px;
}
 footer .footer .copyright-footer a:hover {
  color: #fff !important;
  transition: 0.3s ease-in-out color;
}
@media (min-width: 1700px) {
   footer .footer {
    padding: 0 0px 0 0px;
  }
}
@media (max-width: 1024px) {
   footer .footer {
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 768px) {
   footer .footer {
    padding: 0 5px 0 5px;
  }
}

.light-mode {
  color: #303d4f;
  background: rgb(245, 240, 246);
}
.light-mode .skeleton {
  -webkit-animation: skeleton-loading-lightmode 1s linear infinite alternate;
          animation: skeleton-loading-lightmode 1s linear infinite alternate;
}
.light-mode .skeleton-loaded {
  -webkit-animation: none;
          animation: none;
  background-color: #e2e2e2;
}
@-webkit-keyframes skeleton-loading-lightmode {
  0% {
    background-color: #e2e2e2;
  }
  100% {
    background-color: #ffffff;
  }
}
@keyframes skeleton-loading-lightmode {
  0% {
    background-color: #e2e2e2;
  }
  100% {
    background-color: #ffffff;
  }
}
.light-mode .section {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.light-mode  .results {
  background-color: rgb(255, 255, 255) !important;
}
.light-mode  .results ul li {
  color: #303d4f;
}
.light-mode  .results ul li article:hover {
  color: #f0b400 !important;
}
@supports ((-webkit-: blur(20px)) or (: blur(20px))) {
  .light-mode  {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .light-mode ::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-: blur(20px) saturate(180%);
    : blur(20px) saturate(180%);
  }
  .light-mode  .results {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .light-mode  .results::before {
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-: blur(20px) saturate(180%);
    : blur(20px) saturate(180%);
  }
}
.light-mode a {
  color: #303d4f;
}
.light-mode  {
  background-color: #ffffff;
}
.light-mode  .titulo a {
  color: #000337;
}
.light-mode  .-icon a {
  color: #000337;
}
.light-mode  .-icon .dropdown-content {
  background-color: #ffffff;
}
.light-mode  .-icon .dropdown-content .username {
  color: #303d4f !important;
}
.light-mode  #hamburger-icon .bar {
  background-color: #303d4f !important;
}
.light-mode #hamburger-icon .bar {
  background-color: #303d4f;
}
.light-mode footer {
  background-color: #ffffff;
}

.page-config {
  position: fixed;
  bottom: 15px;
  right: 5px;
  z-index: 9999;
}
.page-config .switch {
  border-radius: 1000px;
  border: none;
  position: relative;
  cursor: pointer;
  display: flex;
  outline: none;
}
.page-config .switch:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  background: #F1F1F1;
  top: 0;
  left: unset;
  right: 0;
  border-radius: 100px;
  transition: 0.3s ease all;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.page-config .switch span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: block;
  background: none;
  color: #FFF;
}
.page-config .switch.tema {
  background: orange;
}
.page-config .switch.tema.active {
  background: #343D5B;
  color: #000;
}
.page-config .switch. {
  background: rgb(0, 85, 255);
}
.page-config .switch..active {
  background: red;
  color: #000;
}
.page-config .switch.active::after {
  right: unset;
  left: 0s;
}
.page-config #btn-tema {
  margin-bottom: 5px;
}

.main__wrapper {
  padding: 15px 20px 20px 20px !important;
  margin-right: auto;
  margin-left: auto;
  min-height: 100vh;
}
.main__wrapper section {
  margin-bottom: 50px;
}
.main__wrapper section .titulo {
  margin-bottom: 20px;
}
.main__wrapper section .titulo h1 {
  font-size: 1.5rem;
  font-weight: normal;
  --tw-text-opacity: 1;
    color: #3CECD6;
}
.main__wrapper section .titulo h2 {
  font-size: 22px;
  font-weight: normal;
}
.main__wrapper section .animes-filtro {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 15px;
}
.main__wrapper section .animes-filtro .filtros-container {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  --tw-bg-opacity: 1;
    background-color: none;
  border-radius: 10px;
}
.main__wrapper section .animes-filtro .filtros-container .open {
  max-height: none;
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro {
  margin-bottom: 15px;
  width: 100%;
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro label {
  font-size: 1rem;
  color: none;
  margin-bottom: 5px;
  display: inline-block;
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro select {
  cursor: pointer;
  width: 100%;
  height: 50px;
  border: none;
  outline: 0px;
  border-radius: 5px;
  padding: 5px;
  --tw-bg-opacity: 1;
    background-color: #3CECD6;
  -webkit-appearance: none;
  color: #111;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro select:hover {
  background-color: #3CECD6;
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro .search {
  position: relative;
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro .search .form-style {
  display: block;
  width: 100%;
  height: 35px;
  padding: 0.375rem 0.75rem;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-clip: padding-box;
  border-radius: 10px;
  background-color: #f8f8f8;
  border: rgb(192, 192, 192) 1px solid;
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro .search .input-icon {
  position: absolute;
  right: 10px;
  color: #5f5f5f;
  top: calc(50% - 0.5em);
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro .form-button {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  color: #000 !important;
      --tw-bg-opacity: 1;
    background-color: #3CECD6;
  background-clip: padding-box;
  border: none;
  border-radius: 5px;
  transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.main__wrapper section .animes-filtro .filtros-container .filtros .filtro .form-button:hover {
  background-color: #3CECD6;
}
.main__wrapper section .animes-filtro .animes-container ul.grid-animes.directorio {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-items: stretch;
  list-style: none;
}
@media (max-width: 1000px) {
  .main__wrapper section .animes-filtro {
    display: block !important;
  }
  .main__wrapper section .filtros-container {
    padding: 10px !important;
    margin-bottom: 20px !important;
  }
  .main__wrapper section .boton-expandible {
    display: block !important;
  }
  .main__wrapper section .boton-activo:active, .main__wrapper section .boton-expandible:active {
    color: #FFFFFF !important;
    background-color: #a10000 !important;
  }
  .main__wrapper section .filtros {
    padding: 0 5px 0 5px !important;
    margin-top: 10px !important;
    max-height: 0;
    overflow: hidden !important;
    transition: all 0.3s ease-out !important;
  }
}

@media (min-width: 1700px) {
  .main__wrapper {
    max-width: 1700px !important;
  }
  .main__wrapper ul.grid-animes {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1024px) {
  .main__wrapper {
    padding: 15px 20px 20px 20px !important;
  }
}
@media (max-width: 820px) {
  .main__wrapper {
    padding: 15px 5px 20px 5px !important;
  }
}
@media (max-width: 280px) {
  .main__wrapper ul.grid-animes {
    gap: 10px !important;
  }
  .main__wrapper .boton-random {
    font-size: 12px;
  }
  .main__wrapper .main__content .secciones section .titulo h2 {
    font-size: 20px;
  }
}
.light-mode .filtros-container {
  background-color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}
.light-mode .filtros-container .filtro label {
  color: #5c6277 !important;
}
.light-mode .filtros-container .filtro select {
  background-color: #eceff1 !important;
  color: #767e9a !important;
}/*# sourceMappingURL=directorio.css.ma*/