/* Copy Animation */
.base-color {
  color: #d50055 !important;
}
#comicImg {

}

#relaRow {
  background-color: #7b77771c;
    padding: 10px;
    margin-bottom: 30px;
}
#relacionados {
  font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    border-top: solid 2px #42423e;
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    padding-top: 15px;
    background-color: #ffb400;
    color: #000;
}
#avisoLegar {
  text-align: center;
  margin-bottom: 10px;
}
#totalfound {
  text-align: start !important;
}
#maincontainer {
  background: #282b35;
  border-radius: 4px;
}
#categoriasDiv {
  text-align: center;
}

#border1 {
    border-left: 4px solid black;
    padding: 20px;
}
#border2 {
    border: 2px solid black;
    padding: 20px;
}
.ht-header {
  position: sticky;
  top: 0;
  z-index: 999;

}
#etiquetadiv {
  margin-bottom: 60px;
    background-color: #ffffff;
    border: 2px solid #b1b1b1;
    padding-top: 0;
}
#etiquetaElem {
  background: #eee;
    color: #4d4f59;
    padding: 4px 6px;
    margin: 0 4px 8px 0;
    display: inline-block;
    border-radius: 4px;
}

.fancybox-nav span {
    visibility: visible !important;
}
#img-comic {
  width: -webkit-fill-available;
    height: auto;
    margin: 20px;
    border: 2px solid black;
    max-width: 600px;
}
.categories-grid {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr); /* 2 por fila */
  gap: 5px;
  margin-top: 10px;
}

.categories-grid a {
  display: block;
  padding: 5px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.categories-grid a:hover {
  background-color: #e0e0e0;
  border-color: #bbb;
}


#main-title {

    width: 100%;
    background: #282828;
    border-left-width: 6px;
    border-left-style: solid;
    border-left-color: #ffb400 !important;
    overflow: hidden;
    padding: 0.5em 10px 0;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
#main-title2 {
  font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    border-bottom: solid 2px #4c4b46;
    padding-bottom: 6px;
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 15px;
    border-bottom: 1px solid #405266;
}
#main-title0 {
  width: 100%;

  margin-top: 20px;
}
.tags a {
    background-color: #233a50;
    color: #abb7c4;
    padding: 2px 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-align: justify;
    font-size: large;
}
#tagsT {
    width: 100%;
    float: left;
    background: #ffb400;
    padding: 9px;
    border-radius: 3px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #405266;

}

#nav-text {
  font-family: 'Dosis', sans-serif;
    font-size: 14px;
    color: #abb7c4;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: block;
    padding: 10px 15px;
}
#nav-text:hover {
    color: #dcf836;
}

.categories-grid a {
  display: block;
  padding: 5px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.categories-grid a:hover {
  background-color: #e0e0e0;
  border-color: #bbb;
}

#main-title {
  text-align: center;
    font-family: auto;
    margin-bottom: 20px;
    color: darkorange;
}
.tags a {
    background-color: #233a50;
    color: #abb7c4;
    padding: 2px 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-align: justify;
    font-size: large;
}

.tags {
  margin-left: 5px;
}
#main-comic{
  display: grid;
  justify-items: center;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}



.cookies-card {
  width: 520px;
  padding: 30px;
  color: #d9dade;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #30343e;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}



.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}



.error {
  color: #DC3545;
}

.input-group label.error {
  top: 100%;
  position: absolute;
}

.subscribe-form label.error {
  top: 100%;
  position: absolute;
}

body {
  min-height: calc(100vh + 30px);
}

.list-group-item {
  color: ;
}

/* Css de los titulos de las tarjetas de peliculas y series */
#titulo_debajo_movie_card {
    font-family: "Bai Jamjuree", sans-serif;
	text-align: center;
  	background-color: #30343eb3;
    font-size: 16px;
  	font-weight: 400;
  	color: #ffffff;
    padding: 15px;
  	
  
}



/* Css de botones de cambio de servidores */
.button-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between; /* Espacio entre los botones */
            gap: 10px;
  			margin-bottom: 10px;
        }

        .btnServers {
            flex: 1 1 calc(20% - 10px); /* Ajuste del tamaño de los botones */
            padding: 10px 20px;
            text-align: center;
            border: none;
            cursor: pointer;
        }

        /* Estilos opcionales para los colores de los servidores */
        .btnServers:nth-child(1) { background-color: gray; color: white; }
        .btnServers:nth-child(2) { background-color: blue; color: white; }
        .btnServers:nth-child(3) { background-color: red; color: white; }
        .btnServers:nth-child(4) { background-color: gray; color: white; }
        .btnServers:nth-child(5) { background-color: black; color: white; }




#prevEpisode {
            background-color: red;
            border-color: red;
            position: relative;
            padding-left: 30px; /* espacio para el icono */
        }

        #prevEpisode::before {
            content: '\25C0'; /* Unicode del icono de retroceso */
            font-size: 16px; /* tamaño del icono */
            position: absolute;
            left: 10px; /* espacio desde el borde izquierdo del botón */
            top: 50%;
            transform: translateY(-50%);
        }

        #prevEpisode:hover {
            background-color: darkred;
            border-color: darkred;
        }

        #nextEpisode {
            background-color: red;
            border-color: red;
            position: relative;
            padding-right: 30px; /* espacio para el icono */
        }

        #nextEpisode::after {
            content: '\25B6'; /* Unicode del icono de avance */
            font-size: 16px; /* tamaño del icono */
            position: absolute;
            right: 10px; /* espacio desde el borde derecho del botón */
            top: 50%;
            transform: translateY(-50%);
        }

        #nextEpisode:hover {
            background-color: darkred;
            border-color: darkred;
        }

#sectionInicialWatch {
            background-color: #616778;
        }

#text-lista-capitulos {
    text-align: center;
    background-color: red;
  	padding-top: 10px;
    padding-bottom: 10px;

}

/* CSS DE NEW BLADE CATEGORIAS DE SERIES Y PELICULAS */
#containerCateg {
      display: flex;
      flex-wrap: wrap;
    }

#columnCateg {
      width: calc(100% / 2); /* Calcula el ancho para tres columnas */
      padding: 10px;
      box-sizing: border-box;
      border-style: dashed;
    }

#liCateg {
  list-style-type: none; /* Elimina los puntos de la lista */
  padding: 0; /* Elimina el padding predeterminado de la lista */
  margin: 15px; 
  color: #ffffff;
  font-family: 'Montserrat';
  text-align: center;

;


}
#h3Categ {
  font-family: fantasy;
  text-align: center;
  border-bottom: double;

}
#h3CategCabez {
	text-align: center;
  	margin-top: 5px;

}
#cardCateg {
	background-color: #14142487;
}


#fondoCateg {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.categ-overlay {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(230, 230, 230, 0) 11%, rgba(228, 226, 226, 0) 12%, #121621 100%);
}