/* Variables CSS */
:root {
    --color-primary: #66308C; /* Morado */
    --color-secondary: #4dc247; /* Verde */
    --color-background: #1a1a1a; /* Fondo oscuro */
    --color-text: #e0e0e0; /* Color de texto claro */
    --font-body: 'Roboto', sans-serif; /* Fuente principal */
    --neon-shadow-morado: 0 0 8px rgba(102, 51, 153, 0.8), 0 0 16px rgba(102, 51, 153, 0.6); /* Sombra neón morada */
    --neon-shadow: 0 0 8px rgba(77, 194, 71, 0.8), 0 0 16px rgba(77, 194, 71, 0.6); /* Sombra neón */
}

* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}


body{
    /*background-color: #f6f6f6;
    background-image: url("../img/sparkles.png");
    background-color: rgba(39,39,43,.85);*/
    
    background: url(../img/sparkles.png) 50% 0;
    background-color: #1c1c1e;
    font-family: 'Open Sans', sans-serif;
    /*color: black;*/
    color: #f9f5e1;
}

.banner-contenedor {
    position: relative;
}

.banner-info-image {
    width: 100%;
}

.banner-info-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.banner-texto {
    position: absolute;
    background-color: rgba(0, 0, 0, .4);
    font-size: 44px;
    color: #f9f5e1;
    padding-left: 20px;
    padding-right: 20px;
    bottom: 20px;
}

.banner-imagen {
    position: absolute;
    background-color: rgba(0, 0, 0, .4);
    font-size: 16px;
    color: #f9f5e1;
    padding-left: 20px;
    padding-right: 20px;
    top: 20px;
    right: 20px;
}

.banner-imagen img {
    max-width: 80px;
    width: 100%;
}

.contenedor-imagen {
    width: 100%;
}

.contenedor-imagen img {
    position: relative;
    width: auto;
    height: 120px;
}

.contenedor-responsivo-image {
    width: 80%;
}

.contenedor-responsivo-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}


.colorbarra-1 {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(44, 62, 80, 0.8)); /* Gradiente semi-transparente */
}
.colorbarra-2 {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(80, 44, 44, 0.8)); /* Gradiente semi-transparente */
}


.colorbarra-9 {
    background: transparent;
}
.colorbarra-10 {
    background: linear-gradient(145deg, #0a0a0a, #1c1c1c);
}
.colorbarra-11{
    background: linear-gradient(145deg, #1a1a1a, #2c3e50);
}
.colorbarra-12{
    background: linear-gradient(to right, #292E49, #536976); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* Separadores */
.navbar-premium {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
    padding: 10px 15px;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-premium .titulo-nav-prem {
    text-shadow: 1px 1px 6px #212529;
}
.navbar-premium .titulo-nav-prem-blanco {
    color: white;
    text-shadow: 1px 1px 6px #212529;
}
.navbar-premium .link-nav-prem {
    color: white;
    text-decoration: none;
    cursor: pointer;
    text-shadow: 1px 1px 6px #212529;
}
.navbar-premium .link-nav-prem:hover {
    text-decoration: underline;
    color: #00ffcc;
}

.navbar-premium .btnsimple{
    padding: 10px 4px;
    width: 100%;
}

.borde-basico {
    border: solid #ccc 1px;
}

.navbar-simple {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
    padding: 10px 15px;
    margin-top: 12px;
    align-items: center;
}
.navbar-simple .titulo-nav-prem {
    text-shadow: 1px 1px 6px #212529;
}
.navbar-simple .titulo-nav-prem-blanco {
    color: white;
    text-shadow: 1px 1px 6px #212529;
}
.navbar-simple .link-nav-prem {
    color: white;
    text-decoration: none;
    cursor: pointer;
    text-shadow: 1px 1px 6px #212529;
}
.navbar-simple .link-nav-prem:hover {
    text-decoration: underline;
}
.navbar-simple .btnsimple{
    padding: 10px 4px;
    width: 100%;
}

.navbar-basico {
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 12px;
    align-items: center;
}
.navbar-basico .titulo-nav-prem {
    text-shadow: 1px 1px 6px #212529;
}
.navbar-basico .titulo-nav-prem-blanco {
    color: white;
    text-shadow: 1px 1px 6px #212529;
}
.navbar-basico .link-nav-prem {
    color: white;
    text-decoration: none;
    cursor: pointer;
    text-shadow: 1px 1px 6px #212529;
}
.navbar-basico .link-nav-prem:hover {
    text-decoration: underline;
}
.navbar-basico .btnsimple{
    padding: 10px 4px;
    width: 100%;
}

/* Contenidos */

.card-web-grande {
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(100px, 1fr)); /* Columnas flexibles */
    gap: 12px; /* Espacio entre elementos */
    margin-top: 10px;
}

.card-web-grande-tank {
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(200px, 1fr)); /* Columnas flexibles */
    gap: 12px; /* Espacio entre elementos */
    margin-top: 10px;
}

.card-web-bg-hoja {
    background-image: url("../img/wtr_decor.svg");
    /*background-repeat: no-repeat;*/
    background-size: cover;
    background-position: center;
}

/* Info y requisitos */

.contenido-info-requisitos {
    display: grid;
    grid-template-columns:  repeat(auto-fit,  minmax(300px, 1fr)); /* Columnas flexibles */
    gap: 16px; /* Espacio entre elementos */
}
.info-requisitos-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.info-requisitos-item-cuerpo {
    text-align: left;
  }
  
  .info-requisitos-item-image {
      width: 130px;
      float: left;
  }
  
  .info-requisitos-item img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      
  }



/* Estilo Info Clan */
.card-info-clan {
    display: grid;
    grid-template-columns: repeat(auto-fill,  minmax(180px, 1fr)); /* Columnas flexibles */
    gap: 12px; /* Espacio entre elementos */
    
    margin-top: 10px;
}
.card-info-clan-item {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px;
    
    /*border: 1px solid rgba(77, 194, 71, 0.3); /* Borde semi-transparente verde */
    /*box-shadow: var(--neon-shadow); /* Sombra neón verde */

    /*border: 1px solid rgba(102, 51, 153, 0.3); /* Borde semi-transparente morado */
    /*box-shadow: var(--neon-shadow-morado); /* Sombra neón morada */
    
    border: 1px solid rgba(255, 107, 107, 0.3); /* Borde semi-transparente rojo */
    box-shadow: var(--neon-shadow-roja); /* Sombra neón roja */
    
    /*border: 1px solid rgba(107, 91, 149, 0.3); /* Borde semi-transparente morado pastel */
    /*box-shadow: var(--neon-shadow-mora-pastel); /* Sombra neón morada pastel */
    
    /*border: 1px solid rgba(102, 102, 102, 0.3); /* Borde semi-transparente gris */
    /*box-shadow: var(--neon-shadow-gris); /* Sombra neón gris */
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-info-clan-item-integ {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px;

    border: 1px solid #e9e2bf; /* Borde semi-transparente rojo */
}

.fondo-info-reserva{
    background-color: rgba(77, 194, 71, 0.4);
}



.card-web {
    display: grid;
    grid-template-columns: repeat(auto-fill,  minmax(120px, 1fr)); /* Columnas flexibles */
    gap: 12px; /* Espacio entre elementos */
    margin-top: 10px;
}
.card-web-min {
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(70px, 1fr)); /* Columnas flexibles */
    gap: 6px; /* Espacio entre elementos */
}

/* Estilos para las tarjetas */
.card-web-item {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05); /* Fondo semi-transparente */
    
    border: 1px solid rgba(77, 194, 71, 0.3); /* Borde semi-transparente verde */
    /*box-shadow: var(--neon-shadow); /* Sombra neón verde */

    /*border: 1px solid rgba(102, 51, 153, 0.3); /* Borde semi-transparente morado */
    /*box-shadow: var(--neon-shadow-morado); /* Sombra neón morada */
    
    /*border: 1px solid rgba(255, 107, 107, 0.3); /* Borde semi-transparente rojo */
    /*box-shadow: var(--neon-shadow-roja); /* Sombra neón roja */
    
    /*border: 1px solid rgba(107, 91, 149, 0.3); /* Borde semi-transparente morado pastel */
    /*box-shadow: var(--neon-shadow-mora-pastel); /* Sombra neón morada pastel */
    
    /*border: 1px solid rgba(102, 102, 102, 0.3); /* Borde semi-transparente gris */
    /*box-shadow: var(--neon-shadow-gris); /* Sombra neón gris */
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-web-item-min {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background-color: rgba(255, 255, 255, 0.05); /* Fondo semi-transparente */
    border: 1px solid rgba(255, 107, 107, 0.3); /* Borde semi-transparente rojo */
}

.card-web-item:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 0 12px rgba(77, 194, 71, 0.9), 0 0 24px rgba(77, 194, 71, 0.7); /* Sombra neón más intensa al hacer hover */
    /*box-shadow: 0 0 12px rgba(102, 51, 153, 0.9), 0 0 24px rgba(102, 51, 153, 0.7); /* Sombra neón morada más intensa al hacer hover */
    /*box-shadow: 0 0 12px rgba(255, 107, 107, 0.9), 0 0 24px rgba(255, 107, 107, 0.7); /* Sombra neón roja más intensa al hacer hover */
    /*box-shadow: 0 0 12px rgba(107, 91, 149, 0.9), 0 0 24px rgba(107, 91, 149, 0.7); /* Sombra neón morada pastel más intensa al hacer hover */
    /*box-shadow: 0 0 12px rgba(102, 102, 102, 0.9), 0 0 24px rgba(102, 102, 102, 0.7); /* Sombra neón gris más intensa al hacer hover */
}

.card-web-item .btnsimple{
    padding: 6px 16px;
    border-radius: 6px;
}

.card-form-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


/* Contenedor grupos */
.grupos-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(250px, 1fr)); /* Columnas flexibles */
    gap: 12px; /* Espacio entre elementos */
    margin-top: 10px;
}
.grupo-contenedor {
    width: 100%;
    position: relative;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 14px;
    border: 1px solid rgba(77, 194, 71, 0.3); /* Borde semi-transparente verde */
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.05); /* Fondo semi-transparente */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contenedor-principal-grupo {
    display: flex;
    flex-direction: column;
    
    justify-content: space-between;
    gap: 6px;

}
.grupo-fila{
    min-height: 56px;
}




/* Contenedor Tanques */
.tank-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(350px, 1fr)); /* Columnas flexibles */
    gap: 12px; /* Espacio entre elementos */
    margin-top: 10px;
}
.tank-contenedor {
    width: 100%;
    position: relative;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border: 1px solid rgba(77, 194, 71, 0.3); /* Borde semi-transparente verde */
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05); /* Fondo semi-transparente */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.tank-contenedor:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 0 12px rgba(77, 194, 71, 0.9), 0 0 24px rgba(77, 194, 71, 0.7); /* Sombra neón más intensa al hacer hover */
}

/* Contenedor principal (imagen + contenido) */
.contenedor-principal {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.contenedor-principal-2 {
    display: grid;
    grid-template-columns: 10px 140px 2fr ;
    align-items: stretch;
    gap: 0;
    /*position: relative;*/
}


/* Imagen que ocupa el 60% del ancho y se superpone */
.imagen-tank {
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-right: -15%; /* Superposición */
    display: flex;
    align-items: center;
}

.imagen-tank-2 img {
    height: 100%; /* Altura fija */
    object-fit: cover; /* Cubre el espacio sin distorsionar */
}

/* Contenido a la derecha */
.contenido-info-tank {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    
    border-radius: 0 15px 15px 0;
    position: relative;
    z-index: 2;
}
.contenido-info-tank-2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px;
    
    border-radius: 0 15px 15px 0;
    position: relative;
    z-index: 2;
}





/*FIN DE EDICIÓN DE LA BARRA DE NAVEGACIÓN*/
.txtju {text-align: justify;}
.txtiz {text-align: left;}
.txtde {text-align: right;}
.txtce {text-align: center;}
.txtbold {font-weight: 700;}

/* Definir tamaños de fuente */

.txt50 { font-size: 50px; }
.txt40 { font-size: 40px; }
.txt36 { font-size: 36px; }
.txt32 { font-size: 32px; }
.txt30 { font-size: 30px; }
.txt28 { font-size: 28px; }
.txt26 { font-size: 26px; }
.txt24 { font-size: 24px; }
.txt22 { font-size: 22px; }
.txt20 { font-size: 20px; }
.txt18 { font-size: 18px; }
.txt16 { font-size: 16px; }
.txt14 { font-size: 14px; }
.txt12 { font-size: 12px; }
.txt11 { font-size: 11px; }
.txt10 { font-size: 10px; }

/* Definir familias de fuente */
.fnt-open-sans { font-family: 'Open Sans', sans-serif; }
.fnt-raleway { font-family: 'Raleway', sans-serif; }
.fnt-roboto { font-family: 'Roboto', serif; }
.fnt-poppins { font-family: 'Poppins', sans-serif; }
.fnt-roboto-co { font-family: 'Roboto Condensed', serif; }
.fnt-helvetica { font-family: 'Helvetica Neue', serif; }
.fnt-paprika { font-family: 'Paprika', serif; }
.fnt-imperial { font-family: 'Imperial Script', serif; font-weight: 400; font-style: normal; }
.fnt-fleur { font-family: 'Fleur De Leah', serif; font-weight: 400; font-style: normal; }
.fnt-tangerine { font-family: 'Tangerine', serif; font-weight: 400; font-style: normal; }
.fnt-montecarlo { font-family: "MonteCarlo", serif; font-weight: 400; font-style: normal; }
.fnt-montserrat { font-family: "Montserrat", serif; font-weight: 400; font-style: normal; }

.txtmain {color:#e9e2bf;}


/*=======================================
LINEAS HORIZONTALES PARA SEPARAR*/
.borde-naranja{border-bottom:6px solid #ff9800;}
.borde-morado-suave{border-bottom:6px solid #bea2cc;}
.borde-morado-opaco{border-bottom:6px solid #eab2ff;}
.borde-morado-claro{border-bottom:6px solid #f1cbff;}
.borde-morado{border-bottom:6px solid #66308C;}
.borde-verde{border-bottom:6px solid #4CAF50;}
.borde-celeste{border-bottom:6px solid #428bca;}
.borde-lila-suave{border-bottom:6px solid #f1cbff;}
.borde-nrojo{border-bottom:6px solid #f4511e;}
.borde-rosa{border-bottom:6px solid #ffd4e5;}
/*=======================================*/


.navbar {
            background: linear-gradient(145deg, #0a0a0a, #1c1c1c);
            /*box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);*/
            padding: 1rem 0;
        }

        /* Estilo del brand */
        .navbar-brand {
            font-size: 1.5rem;
            color: #00ffcc !important;
            
        }

        /* Estilo de los enlaces */
        .nav-link {
            font-size: 1rem;
            font-weight: 500;
            color: #ffffff !important;
            margin: 0 15px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #00ffcc !important;
           
        }

        /* Efecto de subrayado al pasar el mouse */
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #00ffcc;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Botón toggler personalizado */
        .navbar-toggler {
            border: none;
            outline: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 255, 204, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        /* Estilos para el dropdown */
        .nav-item.dropdown .dropdown-menu {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid #00ffcc;
            border-radius: 10px;
            padding: 0.5rem 0;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
        }

        .nav-item.dropdown .dropdown-item {
            font-size: 0.9rem;
            font-weight: 500;
            color: #ffffff !important;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }

        .nav-item.dropdown .dropdown-item:hover {
            background: rgba(0, 255, 204, 0.1);
            color: #00ffcc !important;
            
        }

        .nav-item.dropdown .dropdown-divider {
            border-color: rgba(255, 255, 255, 0.1);
        }

        /* Efecto de subrayado para el enlace del dropdown */
        .nav-item.dropdown .nav-link.dropdown-toggle::after {
            display: none;
        }

        .nav-item.dropdown .nav-link.dropdown-toggle {
            position: relative;
        }

        .nav-item.dropdown .nav-link.dropdown-toggle::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #00ffcc;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-item.dropdown .nav-link.dropdown-toggle:hover::before {
            width: 100%;
        }


.custom-file-label::after {
    content: "Buscar";
}

footer {
    background: #0a0a0a;
    color: white;
}

.info-footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1320px;
    border-top: #00ffcc 1px solid;
    padding-top: 15px;
    padding-bottom: 15px;
}

/*=======================================
LINEAS HORIZONTALES PARA SEPARAR*/
.modal-img-content {
    border: 1px solid #bea2cc;
    background-color: #bea2cc;
    padding: 5px;
    border-radius: 8px;
    max-height: 480px; /*170 o 190*/
    max-width: 500px;  /*272 o 304*/
    width: auto;
}
/*=======================================*/



.bg-rosa {background-color: rgba(241,203,255, 0.3);}
.bg-rosa-o {background-color: rgb(241,203,255);}
.bg-rosa2 {background-color: rgba(255,212,229, 0.3);}
.bg-rosa2-o {background-color: rgb(255,212,229);}
.bg-grey {background-color: rgba(248,248,248, 0.7);}
.bg-blanco {background-color: rgba(255,255,255, 0.6);}
.bg-blanco-o {background-color: rgb(255,255,255);}

/*=======================================*/


.contabla{
    overflow: auto;
    max-height: 300px;
    height: auto;
    text-align: center;
}

.contvideo{
    overflow: hidden;
    max-height: 480px;
    height: auto;
    text-align: center;
}

/*=======================================*/
/*ESTO ES PARA LAS TABLAS*/

.contenedor-tabla {
    overflow-x: auto;
    max-height: 500px;
    border-radius: 8px;
    border: 1px solid rgba(41, 46, 73, 0.2);
}

.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #f5f5f5;
}

.modern-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    /*background: linear-gradient(to right, #292E49, #536976);*/
    background: linear-gradient(145deg, #0a0a0a, #1c1c1c);
}

.modern-table th {
    color: white;
    padding: 14px 16px;
    border: none;
    position: relative;
}

.modern-table th:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.modern-table th:first-child {
    border-top-left-radius: 8px;
}

.modern-table th:last-child {
    border-top-right-radius: 8px;
}

.modern-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(83, 105, 118, 0.1);
    vertical-align: middle;
    color: #444;
}

.modern-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(83, 105, 118, 0.1);
}

.modern-table tbody tr:hover {
    background-color: rgba(83, 105, 118, 0.05);
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.modern-table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.modern-table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.modern-table tbody tr {
    transition: all 0.2s ease;
}

.modern-table tbody tr:hover {
    transform: translatey(1px);
    box-shadow: 0 2px 8px rgba(41, 46, 73, 0.1);
}

.modern-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
    /*font-weight: 500;*/
    background-color: rgba(41, 46, 73, 0.1);
    color: #292E49;
    border: 1px solid rgba(41, 46, 73, 0.15);
}


/*[Leyenda estadisticas]========================================*/
.leyenda {
    display: flex;
    flex-flow: row nowrap;
    width: auto;
    height: auto;
    box-sizing: border-box;
    align-items: center;
}
/*=======================================*/

.content-tank_img {
    /*display: block;*/
    height: 13px;
    width: 20px;
    margin-right: 9px;
    max-width: none
}

.user-generated .content-tank_img {
    display: block;
    height: 13px;
    width: 20px;
    margin-right: 9px;
    max-width: none
}

.user-generated .content-tank_vehicle {
    display: inline-block;
    vertical-align: middle;
    margin-right: 9px
}

.user-generated .content-tank_vehicle__heavytank {
    width: 15px;
    height: 18px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNSAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTUgOWwtMS44LTIuMi03LjUgOUw3LjUgMTh6TTcuNSAwTDAgOWwxLjggMi4yIDcuNS05em0zLjEgMy43bC03LjUgOSAxLjMgMS42IDcuNS05eiIgZmlsbD0iIzhDOEM3QyIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+)
}

.user-generated .content-tank_vehicle__gold-heavytank {
    width: 15px;
    height: 18px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNSAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTUgOWwtMS44LTIuMi03LjUgOUw3LjUgMTh6TTcuNSAwTDAgOWwxLjggMi4yIDcuNS05em0zLjEgMy43bC03LjUgOSAxLjMgMS42IDcuNS05eiIgZmlsbD0iI0Y1QTkwMCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+)
}

.user-generated .content-tank_vehicle__spg {
    width: 8px;
    height: 8px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgOCA4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0wIDBoOHY4SDB6IiBmaWxsPSIjOEM4QzdDIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=)
}

.user-generated .content-tank_vehicle__gold-spg {
    width: 8px;
    height: 8px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgOCA4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0wIDBoOHY4SDB6IiBmaWxsPSIjRjVBOTAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=)
}

.user-generated .content-tank_vehicle__lighttank {
    width: 11px;
    height: 13px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMSAxMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNS41IDBMMCA2LjUgNS41IDEzIDExIDYuNXoiIGZpbGw9IiM4QzhDN0MiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==)
}

.user-generated .content-tank_vehicle__gold-lighttank {
    width: 11px;
    height: 13px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMSAxMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNS41IDBMMCA2LjUgNS41IDEzIDExIDYuNXoiIGZpbGw9IiNGNUE5MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==)
}

.user-generated .content-tank_vehicle__mediumtank {
    width: 12px;
    height: 15px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxMiAxNSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIgNy41TDkuNyA0LjdsLTYgNy41TDYgMTV6TTYgMEwwIDcuNWwyLjMgMi44IDYtNy41eiIgZmlsbD0iIzhDOEM3QyIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+)
}

.user-generated .content-tank_vehicle__gold-mediumtank {
    width: 12px;
    height: 15px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxMiAxNSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIgNy41TDkuNyA0LjdsLTYgNy41TDYgMTV6TTYgMEwwIDcuNWwyLjMgMi44IDYtNy41eiIgZmlsbD0iI0Y1QTkwMCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+)
}

.user-generated .content-tank_vehicle__at-spg {
    width: 12px;
    height: 10px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwbDYgMTAgNi0xMHoiIGZpbGw9IiM4QzhDN0MiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==)
}

.user-generated .content-tank_vehicle__gold-at-spg {
    width: 12px;
    height: 10px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwbDYgMTAgNi0xMHoiIGZpbGw9IiNGNUE5MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==)
}

.user-generated .content-tank_shape {
    display: block;
    margin-right: 9px;
    max-width: 100px;
    max-height: 50px
}

.user-generated .content-tank_level {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-right: 5px
}

.user-generated .content-tank_level__gold {
    color: #fab81b;
}

.user-generated .content-tank_name {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px
}

.user-generated .content-tank_name__gold {
    color: #fab81b;
}

.user-generated .content-tank_change {
    display: inline-block;
    width: 22px;
    height: 26px;
    background-image: url(../img/core/frontend/scss/common/components/icons/img/nation-change_small.png)
}

.user-generated .content-tank_wrapper {
    font-size: 0;
    line-height: 0;
    padding: 2px 0;
    display: table-cell;
    vertical-align: middle
}

.widget-note:not(:last-child) {
  margin-bottom:10px
}
@media all and (min-width:720px) {
  .widget-note:not(:last-child) {
    margin-bottom:16px
  }
}
.widget-note:after {
  content:'*';
  font-size:18px;
  color:#f25322;
  position:absolute;
  top:0;
  left:0
}
.widget-infoblock {
  border-left:#454540 2px solid;
  background-color:rgba(69,69,64,.1);
  padding:10px;
  margin-bottom:8px
}
.widget-infoblock__success {
  border-left-color:#66af4c;
  background-color:rgba(102,175,76,.1)
}
.widget-infoblock__info {
  border-left-color:#3b67b4;
  background-color:rgba(59,103,180,.1)
}
.widget-infoblock__warning {
  border-left-color:#fab81b;
  background-color:rgba(250,184,27,.1)
}
.widget-infoblock__danger {
  border-left-color:#bc2515;
  background-color:rgba(188,37,21,.1)
}

/*=========================================
[BOTONES]
==========================================*/
/*=======================================*/

.btnwot{
    /*border: none;  Remove borders */
    border: 1px solid #f9f5e1;
    outline: none; /* Remove outline */
    color: #f9f5e1;
    background-color: #1c1c1e;
    padding: 1px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right:auto;
    margin-left:auto;
    cursor: pointer;
    width: auto;
}
.btnwot:hover{background-color: #f9f5e1;color: #1c1c1e;}

.btnwot2{
    /*border: none;  Remove borders */
    border: 2px solid #f9f5e1;
    outline: none; /* Remove outline */
    color: #f9f5e1;
    background-color: #1c1c1e;
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right:auto;
    margin-left:auto;
    width: auto;
    border-radius: 3px;
}
.btnwot2:hover{background-color: #f9f5e1;color: #1c1c1e;}


.btntank_co{
    /*border: none;  Remove borders */
    border: 1px solid #5cb85c;
    outline: none; /* Remove outline */
    color: #5cb85c;
    background-color: #1c1c1e;
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right:auto;
    margin-left:auto;
    cursor: pointer;
    width: auto;
    border-radius: 3px;
}
.btntank_no{
    /*border: none;  Remove borders */
    border: 1px solid #f4511e;
    outline: none; /* Remove outline */
    color: #f4511e;
    background-color: #1c1c1e;
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right:auto;
    margin-left:auto;
    cursor: pointer;
    width: auto;
    border-radius: 3px;
}

.btnsimple-info2{
    /*border: none;  Remove borders */
    border: 1px solid #66308C;
    outline: none; /* Remove outline */
    color: white;
    background-color: #66308C;
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right:auto;
    margin-left:auto;
    cursor: pointer;
    width: auto;
    border-radius: 3px;
}
.btnsimple-info2:hover{background-color: #ffffff;color: #66308C;}

.btnsimple-del{
    /*border: none;  Remove borders */
    border: 1px solid #f4511e;
    outline: none; /* Remove outline */
    color: white;
    background-color: #f4511e;
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right:auto;
    margin-left:auto;
    cursor: pointer;
    width: auto;
    border-radius: 3px;
}
.btnsimple-del:hover{background-color: #ffffff;color: #f4511e;}

.btnsimple-pri{
    /*border: none;  Remove borders */
    border: 1px solid #257CFD;
    outline: none; /* Remove outline */
    color: white;
    background-color: #257CFD;
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right:auto;
    margin-left:auto;
    cursor: pointer;
    width: auto;
    border-radius: 3px;
}
.btnsimple-pri:hover{background-color: #ffffff;color: #257CFD;}

.btnsimple-acep{
    /*border: none;  Remove borders */
    border: 1px solid #5cb85c;
    outline: none; /* Remove outline */
    color: white;
    background-color: #5cb85c;
    /*background-color: #7ECA8F;*/
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right:auto;
    margin-left:auto;
    cursor: pointer;
    width: auto;
    border-radius: 3px;
}
.btnsimple-acep:hover{background-color: #ffffff;color: #5cb85c;}

/*[CARD]========================================*/
.aviso-container {
    width: 100%;
    height: 400px;;
    /*padding: 3px;*/
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    /*para mantener las etiquetas dentro del cuadro*/
    /*overflow: hidden;*/
    position: relative;
    /*background-color: transparent;*/
}
.list_card {
    /*position: relative;*/
    display: block;
    text-align: center;
}
.column-emp {
    float: left;
    width: 33.33%;
    margin-left: auto;
    margin-right: auto;
}
.card-emp {
    border: 2px solid #ccc;

    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    border-radius: 8px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
}
.cont-card-emp {
    width: 100%;
    height: auto;
    margin-top: 12px;
    position: relative;
}

.container-img {
    width: 112px;
    height: 149px;
    overflow: hidden;
    position: relative;
    /*border-radius: 3px !important;
    background-color: #f6f6f6;*/
    background-color: black;
}
.container-img > .cortarfoto {
    position:absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
    max-width: 152px;
    height: auto;
    /*cursor: pointer;*/
}
.container-img > a .cortarfoto {
    position:absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
    max-width: 152px;
    height: auto;
    /*cursor: pointer;*/
}


.progreso {
    height: 22px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.barra_progreso {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 4px;
    text-align: center;
    color: white;
    font-weight: bold;
}


/* Ajustes para dispositivos móviles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 10px;
    }

    .nav-link {
        margin: 10px 0;
    }
}

@media screen and (max-width:840px) {
    .column-emp {width: 50%;}
    
}
@media screen and (max-width:700px) {
    .card-web-grande {
        display: flex;
        flex-direction: column;
        justify-content: space-between;   
    }
}

@media screen and (max-width:662px) {
    .card-web-grande-tank {
        grid-template-columns: repeat(auto-fit,  minmax(120px, 1fr)); /* Columnas flexibles */
    }
}

@media screen and (max-width:600px) {
    .column-emp {width: 100%;}
    .banner-info-image img {
        height: 200px;
    }
    .banner-texto {
        font-size: 24px;
    }
    .banner-imagen {
        font-size: 12px;
        top: 8px;
        right: 8px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .banner-imagen img {
        max-width: 40px;
    }
    .card-info-clan {
        grid-template-columns: repeat(auto-fill,  minmax(130px, 1fr)); /* Columnas flexibles */
    }
    .contenedor-imagen img {
        height: 100px;
    }
}



@media screen and (max-width:400px) {
    /*.column-emp {width: 50%;}*/
    .contenedor-principal-2 {
        grid-template-columns: 10px 100px 2fr ;
    }
    .tank-list{
    display: grid;
        grid-template-columns: repeat(auto-fit,  minmax(300px, 1fr)); /* Columnas flexibles */
    }
}