/*
Theme Name: Coppermine Responsive  #034
Author: Mauu Zeta
Author URI: http://MauuZeta.COM

First Color: (blue) #da1bad
Purple: #773bc5

/* Main
-------------------------------------------------------------- */


/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

/* Fondo del scrollbar */
::-webkit-scrollbar-track {
  background: #1a1a1a; /* Fondo oscuro de la pista */
  border-radius: 10px;
}

/* Color del thumb (la barra que se mueve) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to right, #ff4fc0, #a667ff);
  border-radius: 10px;
  border: 2px solid #1a1a1a; /* Espacio entre thumb y borde */
  transition: background 0.3s ease;
}

/* Hover del thumb */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to right, #ff6fd8, #c18dff);
}

/* Opcional: scrollbar para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff4fc0 #1a1a1a;
}
#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: linear-gradient(to right, #ff4fc0, #a667ff);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollToTop:hover {
  transform: scale(1.1);
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}
/* Global Pattern Styling
-------------------------------------------------------------- */
body {
	margin:0;
    background-color: #fff;
      font-family: "Plus Jakarta Sans", sans-serif;
	font-size:11px;
    font-weight:600;
    line-height: 1.8; 
	color:#1d1d1d;
	line-height:170%;
	text-align:justify;
	word-wrap: break-word;
}


bold, stronng, b{
      font-family: "Exo", sans-serif;
	font-size:11px;	
    font-weight:600;
    color:#da1bad;
    	font-weight: none;
}
a {
	color: #864bd3;
	text-decoration: none;
	transition: ease-in-out 0.20s;
}
a:hover,
a:focus {
	color:#da1bad;
	text-decoration: none;
}

strong, b {
	font-weight:700;
	color:#da1bad;
}

em, i {
	font-style:italic;
	color: #000;
}

u {
	background:#121212;
	color: #da1bad;
	text-decoration:none;
}

body, 
html,
.blocks,
.spacelalt,
.first-area,
.second-area,
.cpg-nav,
.site-footer {
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}
.bg-site{
        background-color:  transparent;
    background-position: top center;
	background-repeat: no-repeat;	
	    box-shadow: 0 0 35px 0 rgba(0,0,0, 0.2); 
	-moz-box-shadow: 0 0 35px 0 rgba(0,0,0, 0.2); 
	-webkit-box-shadow: 0 0 35px 0 rgba(0,0,0, 0.2);
}
img, 
a,
a:hover:after,
input[type='reset'],
input[type='submit'],
input[type='button'] {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.clear {
	clear: both; 
	display:block;
}

.text-center {
	text-align: center!important;
}

.text-left {
	text-align: left!important;
}

.text-right {
	text-align: right!important;
}

.pull-left {
	float: left!important;
}

.pull-right {
	float: right!important;
}

.align-center {
	display: block;
	margin: 5px auto 5px auto!important;
}

.alignleft {
	margin: 5px 20px 20px 0!important;
	float:left;
}

.alignright {
	margin: 5px 0 20px 20px!important;
	float:right;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
.tableh1,
.statlink h2,
form {
	margin: 14px 0;
	font-family:Roboto;
	font-weight:700;
}
 

.hide {
	display: none!important;
}

.social-nav a:before,
.show-menu:before {
	font-family:fontawesome;
	font-weight:400;
}
.footer-space {
  margin: 0px 20px 0px 20px;
}
.menuheader{
    margin-top:-10px;
}
.cpg-nav {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* antes 20px */
  padding: 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/**************************** LINK MENU TOP */
.cpg-nav a {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
   font-size: 9pt;
  padding: 20px 10px;
  color:#000;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Cuando el fondo está debajo: texto blanco */
.cpg-nav a.active-link {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

/* Fondo deslizante */
.cpg-nav .nav-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
    color:#000;
  background: linear-gradient(to right, #d4179e, #8733d1);
  border-radius: 10px;
  z-index: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media (max-width: 768px) {
.cpg-nav {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0px;
  padding: 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Enlaces del menú */
.cpg-nav a {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 8pt; /* medida más legible */
  padding: 5px 10px;
  color: #000 !important;
  background: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Enlace activo */
.cpg-nav a.active-link {
  color: #000 !important;
  background: none;
  -webkit-text-fill-color: #000 !important;
}

/* Enlace hover */
.cpg-nav a:hover {
  color: #000 !important;
}

/* Elimina el fondo deslizante */
.cpg-nav .nav-bg {
  display: none !important;
}
}
.blocks,
.spacelalt,
.site-footer,
.site-footer
.cpg-nav {
  	margin:0 auto; 
      font-family: "Exo", sans-serif;
	font-size:11px;
    font-weight:600;
    line-height: 1.8; 
	position:relative; 
	max-width:1220px;
}
.spacer {
	display:block;
	width:100%;
	height:10px;
}

/* Desktop Version
-------------------------------------------------------------- */

@media only screen and (min-width:966px), only screen and (min-width:966px) {
	
.mobile-name, 
.hide {
	display: none!important;
}

.cpg-nav {
	margin:0 auto 0!important;
	padding:10px 0;
	position:relative;
	z-index:100;
	border:0;
}

.cpg-nav .spacelalt {
	padding:0;
}

.blocks {	
    background-position: top right;
	background-repeat: no-repeat;	 
	margin-top:0px;	
}
.blockbg{
            padding:6px;

}
/* Top Navigation Area
---------------------------- */

.top-navigation {
	margin:0 auto;
	padding:20px 0;
	display:block;
	position:relative;
	background: transparent;
	overflow:hidden;
}

.top-navigation .tag-line {
	display:inline-block; 
	float:left;
	position:relative; 
	top:0; right:0;
	padding-left:60px;
	font:700 11px Roboto, sans-serif; 
	color:#A0A0A0; 
	text-transform:uppercase;
	letter-spacing:1px;
}

.top-navigation .tag-line:before {
	padding:20px;
	content:'\f0a1';
	font:400 14px fontawesome;
	color:#A0A0A0;
	position:absolute;
	top:-20px; left:0;
}

.top-navigation .social-nav {
	float:right;
	display:inline-block; 
	position:relative; 
	top:0; right:0;
}

.top-navigation .social-nav a {
	color:#A0A0A0!important;
}


/* First Content Area
---------------------------- */

.first-area {
	margin:0 auto 0;
	display:block;
	overflow:hidden;
	position: relative;
  	z-index:799;
	padding:10px 0;
	height:100px;
	background:#fff;
	text-align:left;
}

.first-area .navigation {
	display:inline-block;
	float:left;
	position: relative; 
	top:28px;
	z-index:70;
	text-align:center;
	
}
.first-area .navigation:before {
	content:'\f0c9';
	font:400 14px fontawesome;
	margin-right:15px;
	color:#efefef;
	position:absolute;
	top:5px; left:22px;
}

.first-area .nav {
	overflow:show; 
	position:relative; 
	top:-1px; left:60px;
	z-index:999; 
	display:inline-block; 
}

.first-area .social-nav {
	display:none; 
	position:relative; 
	top:-5px; left:75px;
}

.first-area .social-nav a {
	color:#efefef; 
	margin-right:12px;
	padding:2px 5px;
	line-height:14px;
}

.first-area .social-nav a:hover,
.first-area .social-nav a:focus {
	background:#efefef;
	color:#000;
}


/* Site Branding
---------------------------- */

.site-branding {
	display:inline-block;
	float:right;
	position:relative;
	z-index:800;
	top:0px; right:5px;
}

	.header-mobil {
	height: 0px;
	width:0%;
    background: url(./imgs/mobil.png) top center no-repeat;
	background-repeat: repeat;
	background-position: center;
}
}
.blockcontent{
    width:100%;
    height:700px;
}
.block-top{
    background-color:#000;
    height:90px;
    padding-top:40px;
    padding-left:200px;
    border-bottom:120px solid #fff;
}

/* HEADER STLYE - TEXT TITLE */
    header {
          box-sizing: border-box; /* Incluir padding y borde en el tamaño total */
      width: 100%;
      height: 650px;
      background-image: url('./imgs/header.png');
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 60px;
      color: white;
      position: relative;
    }

.header-text {
  position: absolute;
  right: 25%;  /* Esto lo mantiene en relación al ancho de la pantalla */
  top: 48%;    /* Mantiene el texto centrado verticalmente */
  transform: translateY(-50%);
  max-width: 400px;
  text-align: right;
  
}

    .header-text h1 {
      font-size: 80px;
      line-height: 65px;
      font-weight: bold;
      text-transform: uppercase;
        font-family: "Inter", sans-serif;
        font-weight: 900;

    }

    .header-text .tagline {
      margin-top: -20px;
      display: inline-block;
      padding: 8px 20px;
      border: 1px solid #fff;
      border-radius: 20px;
      font-size: 12px;
      letter-spacing: 1px;
            line-height: 10px;
    }
/* FEATURED TEXT - SLOGAN  */
.featured-bar {
  width: 1200px;
  margin: 0 auto; /* Centra el bloque */
  display: flex;
  align-items: center;
  padding: 30px 60px 10px;
  font-size: 14px;
}

    .featured-bar span {
      color: #d416a6;
      font-weight: bold;
      margin-right: 10px;    
    }

    .featured-bar .box {
      background: #a939d1;
      color: #fff;
      padding: 6px 20px;
      border-radius: 12px;
    }

.main-content {
  width: 1200px;
  margin: 0 auto; /* Centrado horizontal */
  display: flex;
  padding: 30px 60px;
  gap: 40px;
  align-items: flex-start;
}
/* FEATURED IMAGE - ALBUM  */
    .carousel-wrapper {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .carousel-container {
      overflow: hidden;
      width: 640px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.4s ease;
    }

    .carousel-item {
      min-width: 300px;
      margin-right: 20px;
      position: relative;
    }

.carousel-item {
  position: relative;
  overflow: hidden; /* Asegura que el gradiente no se desborde */
}

.carousel-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease; /* Transición suave para zoom */
}

.carousel-item:hover img {
  transform: scale(1.1); /* Efecto de zoom */
}

/* FEATURED POST - GRADIENT IMAGE STYLE */
.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(54, 0, 85, 0.7), rgba(150, 0, 163, 0.7)); /* Colores morados/lilas */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1; /* El gradiente se coloca debajo de la imagen y el texto */
}

.carousel-item:hover::after {
  opacity: 1; /* Muestra el gradiente cuando se pasa el cursor */
}

/* FEATURED POST - CONTENT STYLE */
.carousel-caption {
  width: 90%;
  position: absolute;
  bottom: 10px;
  left: 5px;
  color: white;
  font-size: 13px;
  text-shadow: 1px 1px 3px #000;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo negro con opacidad */
  padding: 5px 10px; /* Espaciado alrededor del texto */
  border-radius: 5px; /* Esquinas redondeadas */
  z-index: 2; /* Asegura que el texto esté por encima del gradiente */
}
.carousel-caption i {
color:#764ec3;
}
    .arrow1 {
        margin-right:10px;
        margin-left:-10px;
      width: 30px;
      height: 30px;
      background: #e6007e;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      line-height: 30px;
      cursor: pointer;
      font-weight: bold;
    }
.side-text {
      text-align: justify;
  font-size: 12px;
  line-height: 1.5;
  padding:30px;
  position: relative;
  z-index: 10;
  background-color:#fff;
  border:1px solid #000;
}
.side-text-bg{
     margin-top: -275px;
  width: 390px;
  line-height: 1.5;
  position: relative;
  z-index: 10;
}
.side-text-bg .buttons {
    
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;

}

.side-text-bg .buttons button {
  background: linear-gradient(to right, #d4179e, #8733d1);
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 15px;      text-transform: uppercase;

  cursor: pointer;
  letter-spacing:2px;
  font-size:9pt;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.3s ease;
}

.side-text-bg .buttons button:hover {
  background: linear-gradient(to right, #ff4fc0, #a667ff); /* Fondo más brillante al pasar el mouse */
  transform: scale(1.03); /* Ligeramente más grande */
}

.side-text-bg .buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}


/* Estilo para links dentro de los botones */
.side-text-bg .buttons button a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: block;
  width: 100%;
  height: 100%;
    font-family: "Plus Jakarta Sans", sans-serif;

}

.side-text-bg .buttons button a:hover {
  text-decoration: underline;
    font-family: "Plus Jakarta Sans", sans-serif;

}

.search-container {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #000; /* Color morado similar al fondo de la imagen */
  padding: 10px;
  border-radius: 15px;
  max-width: 390px;
  margin: 15px auto;
  text-align: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.search-title {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.search-input {
  width: 80%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
  color: #333;
    font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #fff;
}

.search-button {
  background-color: #8e24aa; /* Un tono más claro de morado */
  color: white;
    font-family: "Plus Jakarta Sans", sans-serif;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.search-button:hover {
  background-color: #ab47bc; /* Tono de hover */
}

.footer {
  width: 100%;
  height: 200px;
  box-sizing: border-box; /* Incluir padding y borde en el tamaño total */
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  	font-weight:100;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.footer-content {
        font-family: "Plus Jakarta Sans", sans-serif;
  text-align: left;
  margin-right: 30px;
  	font-weight:100;
}

.footer-content h1 {    
    font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing:-1px;
}

.footer-content p {    
    font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  margin-top:-5px;
}

.footer-text {   
    font-family: "Plus Jakarta Sans", sans-serif;
	font-weight:100;
  width: 50%;  	  
  text-align:justify;
  font-size:13px;
}

.footer-text p {    
    font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  	font-weight:300;

}

.footer-links {   
    font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links .credit {
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #111;
    	font-weight:600;
  color: #da1bad;
}

/* Puedes personalizar más los fondos si quieres diferenciarlos */
.footer-links .designed {
  background-color: #1a1a1a;
}

.footer-links .powered {
  background-color: #222;
}

/* Asegúrate de que el fondo ocupe todo el ancho */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  	font-weight:100;
  background-color: #000;
  z-index: -1; /* Fondo detrás del contenido */
}

@media (max-width: 768px) {
  .footer,
  .footer-background {
    display: none !important;
  }
}
    @media screen and (max-width: 768px) {
      .main-content {
        flex-direction: column;
        align-items: center;
      }

      .carousel-container {
        width: 90%;
      }

      .carousel-item {
        min-width: 90%;
      }

      .header-text h1 {
        font-size: 40px;
      }

      .side-text {
        width: 100%;
        text-align: center;
      }
    }
    
/* Forms
-------------------------------------------------------------- */

.textinput {
	padding-right: 3px;
	padding-left: 3px;
	COLOR:#000;
	background: #efefef; 
	border:1px solid #e7e7e7;
}

.listbox {
	vertical-align: middle;
	border: 1px solid #EDEDED;
}

.button,
.buttonlist ul li a {
	margin-right: 2px;
	padding: 4px 8px;
	background: #333333;
	color: #fff;
	font-size: 11px;
	line-height: 20px;
	text-transform: uppercase;
	border: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	white-space: nowrap;
}

.button:hover,
.buttonlist ul li a:hover,
.button:focus,
.buttonlist ul li a:focus {
	background: #5D5D5D;
	color: #fff;
	border: 0;
}

.radio,
.checkbox {
	vertical-align: middle;
}

.bblink a, 
.bblink a:focus {
	color: #C1A67B; 
	text-decoration: none;
}

.bblink a:hover {
	color: #BE9127; 
	text-decoration: underline;
}


/* Images
-------------------------------------------------------------- */

.image {
	padding: 8px; 
	margin: 3px;
    margin-bottom:10px;
    border:2px solid #efefef;
    border-radius:10px;
	background-color: #fff;
     opacity: 1;
	-webkit-transition: all 0.7s ease-out;
	-moz-transition: all 0.7s ease-out;
	
	-o-transition: all 0.7s ease-out;
}

.image:hover {
transition: 1s ease;
opacity:.75;
transition: 1s ease;
}


/* Tables
-------------------------------------------------------------- */

.maintable  {
	padding:0%;
	background:transparent;
	width:100%;
		margin-bottom:20px;
	color:#1d1d1d;
	box-shadow: 1px 1px 36px 25px rgba(0,0,0,0.04);
-webkit-box-shadow: 1px 1px 36px 25px rgba(0,0,0,0.04);
-moz-box-shadow: 1px 1px 36px 25px rgba(0,0,0,0.04);}

.tableb,
.tablef {
	padding: 5px 10px;
	font-family: Open Sans, sans-serif;
	font-size:13px;
	text-transform:none;
}

.tableb_alternate {
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
}

.tablef {
	padding: 10px;
	background: #eee;
}


/* Statlinks
-------------------------------------------------------------- */


.tableh1 {
  background: linear-gradient(to right, #d4179e, #8733d1);
    background-repeat:no-repeat;
         font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
         text-align: left; 
	font-size:16pt;
	font-style: none;
    padding:15px; 
	color: #fff;   
	text-transform: uppercase;
	font-style: none;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.tableh3 {
    background-repeat:no-repeat;
         font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
         text-align: left; 
	font-size:16pt;
	font-style: none;
	padding:15px;
	padding-left: 34px;
	color: #353535;   
	text-transform: uppercase;
	font-style: none;
	letter-spacing: -1px;
	text-transform: uppercase;
}
	
.tableh1-stat {
      line-height:16px;
         font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
         text-align: center; 
	font-size:14pt;
	font-style: none;
	padding: 16px;
	letter-spacing: 2px;
	color: #353535;   
	text-transform: uppercase;
	font-style: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin:2px;}

.tableh1 a {
	color: #000;
}

.tableh1 a:hover, 
.tableh1 a:focus,
.tableh1 .statlink a:hover,
.tableh1 .statlink a:focus {
	color:#000;
	box-shadow:inset 0 -2px 0 #00;
}

.stats {
	padding: 5px; 
	background:#6e5c81; 
	font-weight:700; 
	font-size:10px; 
	font-family:Inconsolata;
	color: #fff; 
	text-transform:uppercase; 
	letter-spacing:2px;
}

.stats strong {
	font-weight:700;
	color: #000;  
}

.statlink {
        padding:20px;
    margin-left:20px;   
	display: inline; 
	    letter-spacing:0px;
	position: relative; 
	font-size:10pt;
	    font-family: "Plus Jakarta Sans", sans-serif;
	color:#000; 
	font-weight:600!important;
	background-color:transparent;
}
.statlink2{
    margin:10px;
	display: inline; 
	    letter-spacing:2px;
	position: relative; 
	font-size:9pt;
		  line-height:26px;
         font-family: "Plus Jakarta Sans", sans-serif;
         text-align: center; 
         color:#000; 
	font-weight:600!important;
	background-color:transparent;
}
.statlink bold, strong{
	color:#000; 
}
.statlink a {
     letter-spacing:0px;
     font-family: "Plus Jakarta Sans", sans-serif;
	font-weight:600;
    font-size: 11pt;     text-decoration: none;
    color: #000;
}

.statlink a:hover {
    color: #000;
}

.statlink h2 {
    display: inline-block;
     font-family: "Plus Jakarta Sans", sans-serif;
	font-weight:600;
    font-size: 11pt;  
    letter-spacing:0px;
    text-decoration: none;
    color: #000;
    padding:4px;
    line-height: 15px;
}



td .tableh1:last-child {
	font-size: 15px; font-weight:400;
}

/* Categories
-------------------------------------------------------------- */

/* Categories
-------------------------------------------------------------- */


.catrow_noalb, .catrow {
         font-family: "Plus Jakarta Sans", sans-serif;
    color:#404040;
	font-weight:500!important;		
	line-height: 18px;
	font-weight: 300;	
	letter-spacing:0px;
    padding: 10px 30px;	
}

.catrow_noalb .image, .catrow .image {
    padding: 5px;
    border: 1px solid transparent;
    border-image: linear-gradient(-135deg, #fff 0%, #fff 20%, #fff 40%, #fff 60%, #fff 80%, #fff 100%);
    border-image-slice: 1;
    margin-top:0px;
    margin-bottom:0px;
    margin:0px;
    margin-right:10px;
    border-radius:0px;
    background-color: #ffffff;
    opacity: 1;
    border-radius:30px;
}

.catlink {
	display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
	font-style:normal;
	font-weight: 700;
}

.catlink a {
        margin: 0 0 5px 0;
        font-family: "Plus Jakarta Sans", sans-serif;
	font-weight:700;
    font-size: 12pt;
  background: -webkit-linear-gradient(#000, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  padding-bottom: 1px;
  -webkit-box-shadow: 0 0 0 0 #ffffff;
  box-shadow: 0 0 0 0 #ffffff;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;}

.catlink a:hover,
.catlink a:focus {
  color: #da1bad;
  text-decoration: none;
  padding-bottom: 0px;
  -webkit-box-shadow: 0 2px 0 0 #b668d4;
  box-shadow: 0 2px 0 0 #b668d4;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}

.catlink:before {
	margin-right:10px;
	content:'\0276F';
	font-weight:400;
	font-style:normal;
	font-size:11px;
	color:#9853b2;
	position:relative;
	top:-1px;
}



/* Albums
-------------------------------------------------------------- */

.tableh2, .tableh2_compact{ 
    font-size:12px; 
     color: #000;
	background:transparent; 
	padding: 6px;
 	text-align: left; 
}



/****************************LINK SECOND ALBUM THUMB*/

.alblink {
    background-color: #efefef;
    display: inline-block; /* Asegura que el fondo cubra todo el contenido */
    padding: 6px 22px; /* Añadí un padding más equilibrado en todos los lados */
    text-decoration: none;
    color: #fff; /* Asegura que el texto sea visible sobre el fondo negro */
    letter-spacing: 1px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 11pt;
    line-height: 17pt;
    margin-left:10px;
    margin-top:10px;
    margin-right:10px;
    transition: color 0.3s ease; /* Agregué una transición suave para el color */
    border-radius: 4px; /* Opcional: para bordes más suaves */
}
.alblink a {
    display: inline-block; /* Asegura que el fondo cubra todo el contenido */
    padding: 6px 22px; /* Ajusté el padding para que haya menos espacio en la parte inferior */
    text-decoration: none;
    color: #000; /* Asegura que el texto sea visible sobre el fondo negro */
    letter-spacing: 1px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 11pt;
    line-height: 17pt;
    transition: color 0.3s ease; /* Agregué una transición suave para el color */
    border-radius: 4px; /* Opcional: para bordes más suaves */
    margin-bottom: 0; /* Elimina cualquier margen inferior adicional */
}

.alblink a:hover {
    color: #000; /* Cambio de color cuando se pasa el cursor */
}

.album_stat {
  color: #1d1d1d;
  font-size: 9pt;
  display: inline-block;
  margin-left: 10px;
  padding: 10px 15px;
  text-align: justify;
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f9f9f9;
  border-left: 4px solid #8733d1; /* más ancho y vibrante */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 300px;
  transition: background 0.3s ease;
}

.album_stat:hover {
  background: #f1e9fc;
}

.album_stat::before {
  content: "📁";
  display: inline-block;
  margin-right: 8px;
  font-size: 10pt;
  color: #8733d1;
  vertical-align: middle;
}


/* Thumbnails
-------------------------------------------------------------- */

.thumbnails {
    background-color: transparent;
    padding: 3vh 1vw;
    vertical-align: top;
    margin: 2px;
}

.thumbnails table {
    border: none;
    border-collapse: collapse;
}

.thumbnails table td {
    padding: 0;
    border: none;
    position: relative; /* necesario para posicionar .thumb_title_views */
}

/* Miniatura: imagen sin escalado */
.thumbnails a img {
    display: block;
    margin: 0 0 8px;
    width: 160px;
    height: 192px;
    max-width: none;
}

/* Oculta imágenes huérfanas o saltos de línea no deseados */
.thumbnails img,
.thumbnails br {
    display: none;
}

/* Título del archivo */
.thumb_filename {
    display: block;
    font-size: 80%;
    line-height: 1.5;
}

/* Nombre del dueño */
.thumb_title_owner {
    font-size: 8.25pt;
    text-transform: uppercase;
    font-weight: 400;
}

/* Título visible debajo de la imagen */
.thumb_title_title, 
.thumb_title {
    color: #373737;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    text-align: center;
    display: block;
    padding-bottom:5px;
}

/* VISTAS: centradas dentro de la imagen y visibles solo al pasar el cursor */
.thumb_title_views {
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.65); /* Más transparente */
    color: #fff;
    padding: 6px 16px;
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.thumbnails table td:hover .thumb_title_views {
    opacity: 1;
}

/* FECHA debajo del título */
.thumb_caption_ctime {
    background-color: #f1f1f1;
    font-size: 8.5pt;
    padding: 6px;
    margin-top: 5px;
    text-align: center;
    display: block;
}

.thumb_title_views {
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.65); /* Fondo más transparente */
    color: #fff;
    padding: 8px 18px; /* Más espacio para hacerla más amplia */
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50px; /* Hace que sea redondeada como una burbuja */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra para dar más profundidad */
    border: none; /* Eliminar borde */
}

/* Resolución */
.thumb_resolution {
    background-color: #ffffff;
}

/* Comentarios */
.thumb_caption {
    background-color: #f1f1f1;
}
.thumb_caption a {
    color: inherit;
}

.thumb_num_comments {
    font-weight: normal;
    font-size: 85%;
    padding: 2px;
    font-style: italic;
    display: block;
}

/* Sort order
-------------------------------------------------------------- */

.sortorder_cell {
	font: 0px/1 'Roboto',sans-serif;
	letter-spacing: 0;
	color: #ccc;
}

.sortorder_options {
	white-space: nowrap;
}


/* Preview
-------------------------------------------------------------- */

.tabs-nav-wrapper {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.navmenu {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  background: #f9f9f9;
  border-radius: 10px;
  margin:10px;
  padding:5px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.navmenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.navmenu img {
  height: 16px;
  width: auto;
}

.navmenu:hover,
.navmenu a:hover {
  background: linear-gradient(to right, #d4179e, #8733d1);
  color: white;
}

.navmenu-active {
  background: linear-gradient(to right, #d4179e, #8733d1);
}

.navmenu-active a {
  color: white;
}


/* Administrator
-------------------------------------------------------------- */

.admin_menu_wrapper {
  padding: 15px 20px;
  background: linear-gradient(to right, #efefef, #f5f0fb);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow: hidden;  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom:20px;
}

.admin_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  border: none;
  justify-content: center;
}

.admin_menu a {
  padding: 8px 12px;
  background: linear-gradient(to right, #d4179e, #8733d1);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin_menu a:hover,
.admin_menu a:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.admin_float {
  display: inline-flex;
  align-items: center;
  margin: 2px;
  white-space: nowrap;
}



/* No Edit
-------------------------------------------------------------- */

pre.filepath {
	margin: 0;
	padding: 0;
}

.user_thumb_infobox {
	margin-top: 1px;
	margin-bottom: 1px;
}

.user_thumb_infobox th {
	font-size: 100%;
	font-weight: bold;
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
}

.user_thumb_infobox td {
	font-size: 85%;
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
}

.user_thumb_infobox a {
	text-decoration: none;
	color: #000;
}

.user_thumb_infobox a:hover {
	text-decoration: underline;
	color: #000;
}

.icon {
	margin-right: 1px;
	vertical-align: middle;
}

.comment_date {
	font-size: 90%;
	vertical-align: middle;
	color: #5D5D5D;
}


.topmenu {
	font-family: 'Trebuchet MS', Verdana, Geneva, Arial, sans-serif;
	font-size: 110%;
	line-height: 130%;
}

.topmenu a {
	text-decoration: none;
	color: #03c;
}

.topmenu a:hover {
	text-decoration: underline;
	color: #03c;
}

.img_caption_table {
	width: 100%;
	margin: 0;
	border: none;
	background-color: #fff;
}

.img_caption_table th {
	font-size: 100%;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	color: #000;
	border-top: 1px solid #fff;
	background: #d1d7dc;
}

.img_caption_table td {
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 6px;
	padding-left: 10px;
	white-space: normal;
	border-top: 1px solid #fff;
	background: #f2f5f7;
}

.debug_text {
	width: 100%;
	margin: 0;
	border: #efefef;
	background-color: #121212;
}

.clickable_option {
	cursor: default;
}

.listbox_lang {
	font-family: Arial, Roboto, sans-serif;
	font-size: 80%;
	vertical-align: middle;
	color: #000666;
	border: 1px solid #d1d7dc;
	background-color: #f2f5f7;
}

.pic_title {
	font-size: 100%;
	font-weight: bold;
	line-height: 1.0em;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
	color: #000666;
}

.pic_caption {
	font-size: 100%;
	font-weight: normal;
	line-height: 1.0em;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
	color: #000666;
	background-image: none;
}

.important {
	font-weight: bold;
	padding-top: 3px;
	padding-right: 1px;
	padding-bottom: 3px;
	padding-left: 1px;
    /* background-image : url(images/important.gif); */
	color: red;
}

#cpgChooseLanguageWrapper {
	float: left;
}

#cpgChooseThemeWrapper {
	float: left;
}

/** Swfupload css **/
div.fieldset {
	margin: 10px 0;
	padding: 20px 10px;
	border: 2px solid #0e72a4;
}

div.fieldset span.legend {
	font-weight: bold;
	position: relative;
	top: -30px;
	padding: 3px;
	color: #fff;
	background-color: #8aa5b5;
}

div.flash {
	width: 375px;
	margin: 10px 5px;
	border-color: #ccd7e0;
}

input[disabled] {
	border: 1px solid #ccc;
} /* FF 2 Fix */


.progressWrapper {
	overflow: hidden;
	width: 357px;
}

.progressContainer {
	overflow: hidden;
	margin: 5px;
	padding: 4px;
	border: solid 1px #e8e8e8;
	background-color: #f7f7f7;
}
/* Message */
.message {
	overflow: hidden;
	margin: 1em 0;
	padding: 10px 20px;
	border: solid 1px #fd9;
	background-color: #ffc;
}
/* Error */
.red {
	border: solid 1px #b50000;
	background-color: #ffebeb;
}

/* Current */
.green {
	border: solid 1px #ddf0dd;
	background-color: #ebffeb;
}

/* Complete */
.blue {
	border: solid 1px #cee2f2;
	background-color: #f0f5ff;
}

.progressName {
	font-size: 8pt;
	font-weight: 700;
	overflow: hidden;
	width: 323px;
	height: 14px;
	text-align: left;
	white-space: nowrap;
	color: #555;
}

.progressBarInProgress,
.progressBarComplete,
.progressBarError {
	font-size: 0;
	width: 0;
	height: 2px;
	margin-top: 2px;
	background-color: blue;
}

.progressBarComplete {
	visibility: hidden;
	width: 100%;
	background-color: green;
}

.progressBarError {
	visibility: hidden;
	width: 100%;
	background-color: red;
}

.progressBarStatus {
	font-family: Arial;
	font-size: 7pt;
	width: 337px;
	margin-top: 2px;
	text-align: left;
	white-space: nowrap;
	color: #555;
}

a.progressCancel {
	font-size: 0;
	display: block;
	float: right;
	width: 14px;
	height: 14px;
	background-image: url(../../images/cancelbutton.gif);
	background-repeat: no-repeat;
	background-position: -14px 0;
}

a.progressCancel:hover {
	background-position: 0 0;
}

.swfupload {
	vertical-align: top;
}

/**styles for photo manager*/
table#pic_sort tr td {
	padding: 4px;
	border-bottom: 1px solid #ccc;
}

/** styles for album manager and photo album*/
table#album_sort tr td {
	padding: 3px;
	border-bottom: 1px solid #ccc;
}

table#album_sort tr td span.editAlbum {
	font-size: 10px;
	line-height: 100%;
	display: none;
	margin-left: 100px;
	cursor: pointer;
	text-decoration: underline;
	color: #f00;
}

.cpg_message_info,
.cpg_message_success,
.cpg_message_warning,
.cpg_message_error,
.cpg_message_validation {
	margin: 10px 0;
	padding: 15px 10px 15px 50px;
	border: 1px solid;
	background-repeat: no-repeat;
	background-position: 10px center;
}

.cpg_message_info {
	color: #00529b;
	background-color: #bde5f8;
	background-image: url('../../images/message/info.png');
}

.cpg_message_success {
	color: #4f8a10;
	background-color: #dff2bf;
	background-image: url('../../images/message/ok.png');
}

.cpg_message_warning {
	color: #9f6000;
	background-color: #feefb3;
	background-image: url('../../images/message/warning.png');
}

.cpg_message_error {
	color: #d8000c;
	background-color: #ffbaba;
	background-image: url('../../images/message/stop.png');
}

.cpg_message_validation {
	color: #d63301;
	background-color: #ffccba;
	background-image: url('../../images/message/error.png');
}

.cpg_summary {
	font-size: .9em;
	float: right;
	width: 400px;
	margin: 10px 0;
	padding: 5px 10px 5px 10px;
	text-align: right;
	color: #ff2b9c;
	border: 1px solid;
	background-color: #ffdeef;
}

#GB_window {
	border: 5px solid #ccd7e0;
	background-color: #f2f5f7;
}

.external {
	padding-right: 10px;
	background: transparent url('../../images/link.gif') 100% 50% no-repeat;
}


.icon{
    padding-right: 8px;
}

#cpgform .maintable .tableb.tableb_alternate, 
#cpgform .maintable .tableb {
    padding: 8px 20px !important;
}

#cpgform .tableb.tableb_alternate .maintable, 
#cpgform .tableb .maintable {
    margin: 8px 0 5px !important;
}

#cpgform .maintable {
    max-width: 1100px !important;
    margin: 0 auto;
}

.user_thumb_infobox {
margin-top: 1px;
margin-bottom: 1px;}

.user_thumb_infobox th {
font-weight: bold;
font-size: 100%;
margin-top: 1px;
margin-bottom: 1px;
text-align: center;}

.user_thumb_infobox td {
font-size: 85%;
margin-top: 1px;
margin-bottom: 1px;
text-align: center;}

.user_thumb_infobox a {
text-decoration: none;
color: #050f2d;}

.user_thumb_infobox a:hover {
color: #050f2d;
text-decoration: none;}



.detail_body .maintable {
    background: #121212;
    color:#fff;
    width: 99.5% !important;
}

.detail_head_collapsed, .detail_head_expanded, {
    font-size: 14px; border-bottom: 1px solid #efefef;
    font-family: 'Roboto Mono', monospace;
    font-weight: normal;
    color: #fff;
    padding-left: 18px;
}

.comment_date{
	color:#377a88;
	font-size:80%;
	vertical-align : middle;
}
#pic_info_button img{
    display: none;
}
#pic_info_button a:before{
    display: block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f15c";
}
#slideshow_button img{
    display: none;
}
#slideshow_button a:before{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f144";
}
.prev_strip img{
    display: none;
}

#film, .tape {
    width: 99% !important;
    margin:0px !important;
}
.filmstip_related {padding: 5px;color: black;letter-spacing: 2px;display: inline-block;
        	text-align:justify;
    }.tile-background{
    background-color: #000;
}
.filmstrip_background {
	background:#transparent;
}
.strip_image {
    padding: 4px;
	margin: 8px;
	border-radius: 0px;
    background: #fff;
    width:auto;
    height:auto;
    text-align:auto;
    	text-align:justify;
}
.prev_strip a:before{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f104";
    font-size: 200%;
}
.next_strip img{
    display: none;
}
.next_strip a:before{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-size: 200%;
}
.icon {
	vertical-align:middle;
	margin-right:1px;
}
.comment_date{
	color: #5F5F5F;
	font-size: 90%;
	vertical-align: middle;
}
/* Responsive
-------------------------------------------------------------- */

@media only screen and (max-width: 966px), only screen and (max-device-width: 966px) {
	
.mobile
.catrow 
.thumbnail {
font-size:4pt;
display: none!important;
}
body {
	margin:0!important;
	padding:0!important;
	overflow-x:hidden;
}
.blocks,
.cpg-nav {  
    background-color:#fff;
	width:95vw!important;
}

.first-area {
	margin:0 auto; 
	z-index:899; 
	width:100%!important;
	position:relative!important;
}

.first-area .social-nav {
	position: absolute; 
	top:21px; right:10px;
	z-index:999!important;
}

.social-nav a {
	padding:0 2px 0!important;
	text-shadow:0 0 0;
	font-size:13px!important;
}.menuheader{
    margin-left:0px;
}

.blockbg{
                background-color:#fff;
            padding:0px;
}
.site-name span{    
  letter-spacing:0px;
  color:#fff;
  font-size: 0px;
  font-family: "Exo", sans-serif;
  font-weight:600;
    font-style: italic;
  	text-transform:uppercase;


}
.statlink2{
    margin:10px;
	display: inline; 
	    letter-spacing:2px;
	position: relative; 
	padding: 3px 6px; 
	font-size:5pt;
		  line-height:14px;
       font-family: "Exo", sans-serif;
         text-align: center; 
         color:#000; 
	font-weight:600!important;
	background-color:transparent;
}
.cpg-nav {
    margin-top:3px;
	padding:10px; 
	display:block;
	background-color:#fff;
	text-align:center; 
	overflow:hidden;
	position:relative;
}

.cpg-nav a {
	margin: 0!important; 
	display: inline; 
	position: relative; 
	padding: 3px 6px; 
	font-size:10px;
	text-transform:uppercase;
	xborder-radius:2px;
	letter-spacing:1px;
}

.cpg-nav a:hover,
.cpg-nav a:focus {
	text-decoration: none;
}

.tableh1 {	
    letter-spacing:0px;
	font-size:9pt;
}
.tableh3 {	
    letter-spacing:0px;
	font-size:7pt;
	padding:8px;
}
.statlink h2 {
	font-size:8px!important;
	font-weight:800;
	color:#000;
	letter-spacing:0px;
	border:0px solid #fff;
	margin-left:-10px;
}
.maintable td.statlink h2{
	display: inline; 
	position: relative; 
	padding: 3px 6px; 
	font-size:8px;
	  font-family: "Exo", sans-serif;
	color:#000; 
	letter-spacing:0px;
	letter-spacing:10px;
	font-weight:600!important;
	text-transform:uppercase;
	background-color:transparent;
    letter-spacing: 0px;
    text-align: left;
}.statlink {
	display: inline; 
	position: relative; 
	padding: 3px 6px; 
	font-size:8px;
	  font-family: "Exo", sans-serif;
	color:#000; 
	letter-spacing:0px;
	font-weight:600!important;
	text-transform:uppercase;
	background-color:transparent;
}
.tabs-table-alt .tableh1-small {
width:82vw;
}
.maintable:first-child {
	border-top:1px solid #efefef;
}
.image {
    padding:2px;
	margin: 2px!important;
}

.thumb_title {
	margin: 2px 0!important;
}

#fullsize_image {
	max-width: 100%; 
	height: auto;
}

.thumbnails .image, 
.thumbnails .thumbnail {
	height: auto; 
	display:inline; 
	max-width:10vw;
}

a:link .image {
	
}

.strip_image {
	max-width: 14vw!important; 
	height: auto;
}.cat-desc{
	font-size:7px!important;
	line-height:19px;
}
/* Miscellaneous
-------------------------------------------------------------- */

.detail_head_collapsed,
.detail_head_expanded {
	color: #5D5D5D;
}

.fitpic {
	max-width: 794px;
}

#film {
	width: 100%!important;
}

#film .thumb a:link {
	width: 100%!important;
}

.tape {
	width: 100%!important; 
	height: 100%!important; 
	margin-left: 0px!important;
}

.remove {
	display: none!important;
}

.display_media .image {
	max-width: 70vw!important; 
	height: auto;
}

#picinfo {
	width: 100%!important; 
	overflow: scroll;
}
.sortorder_cell {
	font: 0px/1 'Roboto',sans-serif;
	letter-spacing: 0;
	color: #ccc;
}
.sortorder_cell img,
.thumb_caption_rating img,
#comments img {
	max-width: 0vw!important; 
	height: auto!important;
}

#comments #captchaImg img{
	max-width: 25vw!important; 
	height: auto!important;
}

.comment_date {
	font-size: 1.4vw!important;
}

.navmenu img,.buttonlist img {
	max-width: 2.5vw!important; 
	height: auto;
}
/* Preview
-------------------------------------------------------------- */

.tabs-nav-wrapper {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.navmenu {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 7pt;
  letter-spacing: 0px;
  background: #f9f9f9;
  border-radius: 10px;
  margin:4px;
  padding:2px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.navmenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.navmenu img {
  height: 16px;
  width: auto;
}

.navmenu:hover,
.navmenu a:hover {
  background: linear-gradient(to right, #d4179e, #8733d1);
  color: white;
}

.navmenu-active {
  background: linear-gradient(to right, #d4179e, #8733d1);
}

.navmenu-active a {
  color: white;
}

.buttonlist {
	text-align:center;
}

.buttonlist ul li a span {
	height: 2vw!important; 
	line-height: 2vw!important;
}

.buttonlist ul li a {
	font-size: 1vw!important;
}

}

@media only screen and (max-width: 481px), only screen and (max-width: 481px) {

.tableh1 {
padding: 5px 7px!important; 
font-size:8pt;
letter-spacing:0px;

}
.statlink {
	line-height: 21px!important;
}

.catrow_noalb {
            	font-size:4pt;
	padding: 5px 7px!important;
}
.catrow_noalb, .catrow {
    color:#404040;
        	font-size:4pt;

}
.catrow {
    	font-size:4pt;
    		line-height:10px;
	padding: 5px 7px!important;
}

.catlink a{
    font-size: 8pt;
	line-height: 21px!important;
}

.catrow_noalb table,.catrow table {
	font-size:5pt;
	line-height:10px;
}

.tableh2 {
	padding: 5px!important;
}

.alblink {
	font-size: 11px!important; 
	background-color:#fff;
	border:1px solid #fff;
	letter-spacing:-6px;
	line-height: 20px!important;
}
.album_stat {  
    color: #1d1d1d;
    font-size: 5pt;
    margin-left:10px;
display: block;
padding:5px;
    display: inline-block;
margin-left:10px;	
text-align:justify; 
}
.tableb p {
	font-size: 10px!important; 
	line-height: 1.5!important;
}

.sortorder_cell {
	display: none;
}
}
    
/* MOBIL MOBIL MOBIL MOBIL MOBIL MOBIL MOBIL MOBIL MOBIL */
@media (max-width: 768px) {
    /* HEADER STLYE - TEXT TITLE */
    header {
        display: none;
    }
.header-mobil {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Puedes ajustar según el diseño de tu imagen */
  background: url(./imgs/mobil.png) center top no-repeat;
  background-size: cover;
  margin-bottom:20px;
  background-repeat: no-repeat;
}
.alblink {
    background-color: #efefef;
    display: inline-block; /* Asegura que el fondo cubra todo el contenido */
    padding: 6px 22px; /* Añadí un padding más equilibrado en todos los lados */
    text-decoration: none;
    color: #fff; /* Asegura que el texto sea visible sobre el fondo negro */
    letter-spacing: 1px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
  font-size: 6pt;
    line-height: 10pt;
    margin-left:10px;
    margin-top:10px;
    margin-right:10px;
    transition: color 0.3s ease; /* Agregué una transición suave para el color */
    border-radius: 4px; /* Opcional: para bordes más suaves */
}
.alblink a {
        line-height:10pt;
    display: inline-block; /* Asegura que el fondo cubra todo el contenido */
    padding: 5px 5px; /* Ajusté el padding para que haya menos espacio en la parte inferior */
    text-decoration: none;
    color: #000; /* Asegura que el texto sea visible sobre el fondo negro */
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
  font-size: 6pt;

}

.alblink a:hover {
    color: #000; /* Cambio de color cuando se pasa el cursor */
}

.album_stat {
  color: #1d1d1d;
    font-size: 5pt;
  display: inline-block;
  margin-left: 4px;
  padding: 10px 15px;
  text-align: justify;
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f9f9f9;
  border-left: 4px solid #8733d1; /* más ancho y vibrante */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 300px;
  transition: background 0.3s ease;
}

.album_stat:hover {
  background: #f1e9fc;
}

.album_stat::before {
  content: "📁";
  display: inline-block;
  margin-right: 8px;
    font-size: 5pt;
  color: #8733d1;
  vertical-align: middle;
}

    .header-text {
        display: none;
    }

    .header-text h1 {
        display: none;
    }

    .header-text .tagline {
        display: none;
    }

    /* FEATURED TEXT - SLOGAN */
    .featured-bar {
        display: none;
    }

    .featured-bar span {
        display: none;
    }

    .featured-bar .box {
        display: none;
    }

    .main-content {
        display: none;
    }

    /* FEATURED IMAGE - ALBUM */
    .carousel-wrapper {
        display: none;
    }

    .carousel-container {
        display: none;
    }

    .carousel-track {
        display: none;
    }

    .carousel-item {
        display: none;
    }

    /* FEATURED POST - GRADIENT IMAGE STYLE */
    .carousel-item::after {
        display: none;
    }

    /* FEATURED POST - CONTENT STYLE */
    .carousel-caption {
        display: none;
    }

    .arrow1 {
        display: none;
    }

    .side-text {
        display: none;
    }

    .side-text-bg {
        display: none;
    }

    .side-text-bg .buttons {
        display: none;
    }

    .side-text-bg .buttons button {
        display: none;
    }

    .side-text-bg .buttons button a {
        display: none;
    }

    .search-container {
        display: none;
    }

    .search-title {
        display: none;
    }

    .search-input {
        display: none;
    }

    .search-button {
        display: none;
    }

    /* Vistas: Hacer visibles y centradas en dispositivos móviles */
    .thumb_title_views {
        opacity: 1 !important;  /* Asegura que la visibilidad esté activada */
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        background-color: rgba(0, 0, 0, 0.65);  /* Fondo más transparente */
        color: #fff;
        padding: 4px 8px;
        font-size: 7PX;
        text-align: center;
        text-transform: uppercase;
        border-radius: 10px;  /* Hace que sea redondeada como una burbuja */
        z-index: 10;
        pointer-events: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra para dar más profundidad */
    }

    /* Mostrar la fecha debajo del título */
    .thumb_caption_ctime {
        display: block;
             padding: 4px 8px;
        font-size: 7PX;
    }

    /* Mostrar el título debajo de la miniatura */
    .thumb_title_title,
    .thumb_title {
        display: block;    
        font-size: 7PX;
        text-align: center;  /* Asegura que el título esté centrado */
    }

    /* Mostrar nombre del dueño */
    .thumb_title_owner {
        display: block;
        font-size: 8.25pt;
        text-transform: uppercase;
        font-weight: 400;
        text-align: center;
    }

    /* Mostrar comentarios */
    .thumb_num_comments {
        display: block;
        font-weight: normal;
        font-size: 85%;
        padding: 2px;
        font-style: italic;
        text-align: center; /* Centrado en móvil */
    }

    /* Mostrar resolución */
    .thumb_resolution {
        display: block;
        background-color: #ffffff;
        font-size: 8.5pt;
        text-align: center;
        padding: 5px;
    }

    