@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

body {
    font-family: Arial, sans-serif;
    /* background-color: #222;*/
    color: #fff;
    margin: 0;
}

/*ESTILOS DEL TITULO BUSCADOR-ORDENADOR DE ARMAAS*/

    .contenedor_titulo_buscador_ordenador {
    text-align: center;
    margin: 30px auto;
    padding: 15px 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #FF3C00;
    box-shadow: 0 0 15px rgba(255,60,0,0.6), inset 0 0 10px rgba(255,60,0,0.3);
    position: relative;
    overflow: hidden;
}

.contenedor_titulo_buscador_ordenador h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255,200,0,0.9), 0 0 15px rgba(255,140,0,0.6);
    transition: color 0.3s, text-shadow 0.3s;
}

.contenedor_titulo_buscador_ordenador:hover h2 {
    color: #FF3C00;
    text-shadow: 0 0 12px rgba(255,60,0,1), 0 0 25px rgba(255,0,0,0.9);
}

/* Animación de borde pulsante */
@keyframes borderGlow {
    0% {
        box-shadow: 0 0 10px rgba(255,60,0,0.6), inset 0 0 5px rgba(255,60,0,0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255,60,0,1), inset 0 0 15px rgba(255,60,0,0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(255,60,0,0.6), inset 0 0 5px rgba(255,60,0,0.3);
    }
}

.contenedor_titulo_buscador_ordenador {
    animation: borderGlow 2.5s infinite ease-in-out;
}

/* Versión modo claro */
body:not(.dark-mode) .contenedor_titulo_buscador_ordenador {
    background: linear-gradient(135deg, #fdfdfd, #eaeaea);
    border: 2px solid #d4af37;
    box-shadow: 0 0 12px rgba(212,175,55,0.7), inset 0 0 6px rgba(212,175,55,0.4);
}

body:not(.dark-mode) .contenedor_titulo_buscador_ordenador h2 {
    color: #222;
    text-shadow: 0 0 8px rgba(212,175,55,0.8);
}

body:not(.dark-mode) .contenedor_titulo_buscador_ordenador:hover h2 {
    color: #B8860B;
    text-shadow: 0 0 12px rgba(212,175,55,1), 0 0 25px rgba(255,215,0,0.8);
}


/*---------------------------------------------*/

.contenedor_armas {
    width: 70%;
    margin: auto;
}

/*ESTILOS DEL BUSCADOR/ORDENADOR*/

/* Contenedor de filtros */
.filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(20,20,20,0.85);
    box-shadow: 0 0 15px rgba(255,60,0,0.3), inset 0 0 12px rgba(255,60,0,0.2);
}

/* Buscador */
.filtros input[type="text"] {
    padding: 12px 18px;
    font-size: 1rem;
    border: 2px solid #ff3c00;
    border-radius: 8px;
    background: rgba(0,0,0,0.7);
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    outline: none;
    width: 280px;
    box-shadow: 0 0 8px rgba(255,60,0,0.4);
    transition: all 0.3s ease;
}
.filtros input[type="text"]::placeholder {
    color: rgba(255,215,0,0.9);
}
body.dark-mode .filtros input[type="text"]::placeholder {
    color: rgba(255,215,0,0.5);
}
.filtros input[type="text"]:focus {
    border-color: #FFD700;
    box-shadow: 0 0 16px rgba(255,215,0,0.8), inset 0 0 10px rgba(255,140,0,0.5);
}

/* Selector */
.filtros select {
    padding: 12px 18px;
    font-size: 1rem;
    border: 2px solid #ff3c00;
    border-radius: 8px;
    background: rgba(0,0,0,0.7);
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255,60,0,0.4);
    transition: all 0.3s ease;
}
.filtros select:hover,
.filtros select:focus {
    border-color: #FFD700;
    box-shadow: 0 0 16px rgba(255,215,0,0.8), inset 0 0 10px rgba(255,140,0,0.5);
    transform: scale(1.05);
}

/* Opciones del select */
.filtros select option {
    background: #1a1a1a;
    color: #FFD700;
}

/* ====== Modo Claro ====== */
body:not(.dark-mode) .filtros {
    background: rgba(255,255,255,0.8);
    border: 2px solid #d4af37;
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}
body:not(.dark-mode) .filtros input[type="text"],
body:not(.dark-mode) .filtros select {
    background: #fff;
    color: #333;
    border: 2px solid #d4af37;
    box-shadow: 0 0 8px rgba(212,175,55,0.3);
}
body:not(.dark-mode) .filtros input[type="text"]:focus,
body:not(.dark-mode) .filtros select:hover {
    border-color: #ffa500;
    box-shadow: 0 0 12px rgba(255,165,0,0.8);
}
body:not(.dark-mode) .filtros select option {
    background: #fff;
    color: #000;
}


/*-------------------------------*/


/*-------------ESTILOS DE LOS TAB------------*/

/* Contenedor general */
.main-nav {
    margin: 20px auto;
    text-align: center;
}

/* Lista de tabs */
.container-tabheader {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Estilos base de cada tab */
.tabheader {
    padding: 12px 22px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid #ff3c00;
    background: rgba(20,20,20,0.9);
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(255,60,0,0.4), inset 0 0 8px rgba(255,60,0,0.2);
}

/* Hover */
.tabheader:hover {
    color: #ff3c00;
    background: rgba(255,60,0,0.15);
    box-shadow: 0 0 16px rgba(255,60,0,0.7), inset 0 0 12px rgba(255,60,0,0.4);
    transform: translateY(-2px);
}

/* Tab activo */
.tabheader.active {
    background: linear-gradient(135deg, #ff3c00, #ff6b3d);
    color: #fff;
    border-color: #ff6b3d;
    box-shadow: 0 0 20px rgba(255,60,0,1), inset 0 0 10px rgba(255,200,0,0.5);
    transform: scale(1.05);
}

/* Versión modo claro */
body:not(.dark-mode) .tabheader {
    background: #fefefe;
    color: #333;
    border-color: #d4af37;
    box-shadow: 0 0 8px rgba(212,175,55,0.5), inset 0 0 5px rgba(212,175,55,0.3);
}

body:not(.dark-mode) .tabheader:hover {
    color: #b8860b;
    background: #fff5d1;
    box-shadow: 0 0 14px rgba(212,175,55,0.8);
}

body:not(.dark-mode) .tabheader.active {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000;
    border-color: #ffa500;
    box-shadow: 0 0 20px rgba(255,215,0,1), inset 0 0 8px rgba(255,140,0,0.4);
}


/*--------------------------------------------*/

/* =========================================
   CONTROL DE PESTAÑAS
========================================= */

.tabpage {
    display: none;
}

/* Al entrar, mostrar solamente TODO */
.tabpage:first-child {
    display: block;
}

/*---------ESTILOS DE LOS CUADROS------------*/

.col-md-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-bottom: 25px;
}

.contenedor-cuadro {
    height: 191px;
    width: 100%;
    min-width: 0;
    margin: 0;
    background: rgba(192,192,192,0.7);
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
body.dark-mode .contenedor-cuadro {
    box-shadow:1px 1px 5px 1px rgba(0,0,0,0.9);
}
.contenedor-boton_titulo,
.contenedor-subtitulo {
    display: flex;
    border-bottom: 1px solid #C8C8C8;
    background: #ffffff;
}

.contenedor-boton button {
    background: linear-gradient(#e60000, #c90000);

    width: 27px;
    height: 27px;
    padding: 0;

    color: #fff;
    font-size: 16px;
    line-height: 25px;
    text-align: center;

    border: 2px solid #fff;
    outline: 1px solid #555;
    border-radius: 0;

    box-shadow:
        inset 1px 1px 2px rgba(255,255,255,.45),
        inset -2px -2px 2px rgba(0,0,0,.45);

    margin: 3px;

    box-sizing: border-box;
    cursor: pointer;
}

.contenedor-titulo, .contenedor-subtitulo{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    font-size: 20px;
}
/* Mantener siempre el espacio del subtítulo */
.contenedor-subtitulo {
    height: 25px;
    min-height: 25px;
    box-sizing: border-box;
    align-items: center;
}

.contenedor-titulo span {
    color: #000;
    font-weight: bold;
    font-family: 'FjallaOne', sans-serif;
    margin-left: -35px;
}
body.dark-mode .contenedor-titulo span{
    color: #fff;
}

.contenedor-subtitulo span {
    color: #000;
    font-family: 'FjallaOne', sans-serif;
}
body.dark-mode .contenedor-subtitulo span {
    color: #fff;
}

.contenedor-img {
    position: absolute;

    top: 60px;
    left: 0;

    width: 100%;
    height: 131px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(200, 200, 200, 0.10);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 4px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.contenedor-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
}

/* =========================================================
   STATS DE ARMAS - ALINEACIÓN EXACTA SOBRE is_ability3.png
========================================================= */

.contenedor-stats {
    position: absolute;
    z-index: 20;

    left: 0;
    right: 0;

    top: 60px;
    height: 131px;

    width: 100%;

    /* Normalmente transparente para que se vea el arma */
    background: transparent;

    overflow: hidden;
    pointer-events: none;
}

/* Al hacer hover, el negro cubre TODO el área de la imagen */
.contenedor-cuadro:hover .contenedor-stats {
    background: #000;
}

.contenedor-hability {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: none;

    margin: 0;
    padding: 0;

    /* El fondo negro lo maneja .contenedor-stats */
    background: transparent;
    overflow: hidden;

    z-index: 20;

    /* Reduce TODO el gráfico junto (imagen base, barras y números)
       dejando espacio negro arriba, abajo y a los costados */
    transform: scale(0.90);
    transform-origin: center center;
}

.contenedor-cuadro:hover .contenedor-hability {
    display: block;
}


/* ---------------------------------------------------------
   IMAGEN BASE
--------------------------------------------------------- */

.contenedor_img_ability {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;
}

.contenedor_img_ability img {
    display: block;

    /* 100% dentro del bloque reducido para no desalinear las barras */
    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: fill;

    margin: 0;
}


/* ---------------------------------------------------------
   BARRAS ROJAS
--------------------------------------------------------- */

.contenedor-bars1,
.contenedor-bars2,
.contenedor-bars3,
.contenedor-bars4,
.contenedor-bars5 {
    position: absolute;

    left: 36.25%;
    width: 62.45% !important;
    height: 7.45%;

    z-index: 3;

    overflow: hidden;

    margin: 0 !important;
    padding: 0 !important;
}


/* POWER */
.contenedor-bars1 {
    top: 3.2%;
}

/* ACCURACY */
.contenedor-bars2 {
    top: 33%;
}

/* FIRE RATE */
.contenedor-bars3 {
    top: 50%;
}

/* ON-THE-MOVE */
.contenedor-bars4 {
    top: 67%;
}

/* RECOIL CONT. */
.contenedor-bars5 {
    top: 84%;
}


/* Imagen roja usada como relleno */
.contenedor-bars1 img,
.contenedor-bars2 img,
.contenedor-bars3 img,
.contenedor-bars4 img,
.contenedor-bars5 img {
    display: block;

    height: 100% !important;

    margin: 0;
    padding: 0;

    object-fit: fill;
}


/* ---------------------------------------------------------
   NÚMEROS: AMMO / HEAD / WOLF / STUN
--------------------------------------------------------- */

/* =========================================
   VALORES AMMO / HEAD / WOLF / STUN
========================================= */

.contenedor-bars {
    position: absolute;

    top: 14%;
    left: 0;

    width: 100% !important;
    height: 18%;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 5;

    display: block;
}

.contenedor-bars p {
    position: absolute;

    top: 50%;
    transform: translate(-50%, -50%);

    margin: 0 !important;
    padding: 0 !important;

    width: auto !important;

    color: #fff;
    font-family: Arial, sans-serif;

    font-size: 12px;  /* ANTES 16px */
    line-height: 1;
    font-weight: 800;

    text-align: center;
    white-space: nowrap;

    text-shadow:
        1px 1px 2px #000,
       -1px -1px 2px #000;
}


/* AMMO - número después de AMMO */
.contenedor-bars p:nth-child(1) {
    left: 17%;
}

/* HEAD - número después de HEAD */
.contenedor-bars p:nth-child(2) {
    left: 40%;
}

/* WOLF - número después de WOLF */
.contenedor-bars p:nth-child(3) {
    left: 63%;
}

/* STUN - número después de STUN */
.contenedor-bars p:nth-child(4) {
    left: 89%;
}


/* ---------------------------------------------------------
   ADAPTACIÓN CUANDO LAS TARJETAS SON MÁS ANGOSTAS
--------------------------------------------------------- */


/*---------------- Estilos base para el modal -------------*/
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
}
body.dark-mode .modal-content {
    background-color: #000;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

iframe {
   width: 100%;
    height: 500px;
}
/*----------------------------------------*/
@media screen and (min-width: 480px){
    
    .contenedor_armas {
    width: 100%;
    }
    
    .contenedor-img img {
    width: 90%;
    margin: auto;
    }
}

@media screen and (min-width: 768px){
    
    .contenedor_armas {
    width: 90%;
    }
    .contenedor-cuadro {
       /* flex:1 1 250px; /*esta propiedad permite que a partir de 150px los cuadros vayan creciendo a medida que se estira la pantalla */
        /*margin: 5px;*/
    }
    .contenedor-img img {
    width: 100%;
    }
}

@media screen and (min-width: 1024px){
       input[type="text"] {
    padding: 18px;
    width: 450px;
    font-size: 20px;
  }

  select {
    font-size: 20px;  
    border-radius: 4px;
  }
    .container-tabheader .tabheader {
        font-size: 20px;
        padding: 10px 18px;
    }
    .modal-content {
    max-width: 1000px;
}
    iframe {
    height: 660px;
}
}
/*-------------------------------------------*/

/* =========================================
   RESPONSIVE GRID ARMAS
========================================= */

/* Notebook / pantallas medianas */
@media screen and (max-width: 1300px) {
    .col-md-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Tablet */
@media screen and (max-width: 950px) {
    .col-md-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Celular */
@media screen and (max-width: 600px) {
    .col-md-4 {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* =========================================================
   TOOLTIP FLOTANTE - VALORES DE ESTADÍSTICAS
========================================================= */

.arma-stat-tooltip {
    position: fixed;

    min-width: 42px;
    padding: 7px 10px;

    background: #ffffff;
    color: #d40000;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;

    text-align: center;

    border: 1px solid #ddd;
    border-radius: 4px;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, .35);

    z-index: 99999;

    pointer-events: none;

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, -100%);

    transition: opacity .1s ease;
}


/* Flechita inferior */
.arma-stat-tooltip::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 100%;

    transform: translateX(-50%);

    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
}


/* Visible */
.arma-stat-tooltip.visible {
    opacity: 1;
    visibility: visible;
}


/* IMPORTANTÍSIMO:
   toda el área de cada barra puede recibir el mouse */
.contenedor-bars1,
.contenedor-bars2,
.contenedor-bars3,
.contenedor-bars4,
.contenedor-bars5 {
    pointer-events: auto;
    cursor: help;
}

.modal-imagen-hd {
    width: 100%;
    height: 600px;
    max-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1b1b1b;
    overflow: hidden;

    box-sizing: border-box;
    padding: 30px;
}

.modal-imagen-hd img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}

.modal-imagen-pendiente {
    width: 100%;
    height: 600px;
    max-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #171717;
    color: #fff;

    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.modal-imagen-pendiente strong {
    font-size: 24px;
    color: #ffb400;
}

.modal-imagen-pendiente p {
    margin-top: 12px;
    font-size: 17px;
    color: #bbb;
}





/* =========================================================
   TABS - DISEÑO CELULAR
========================================================= */

@media screen and (max-width: 600px) {

    /* Aprovechar mejor el ancho disponible */
    .contenedor_armas {
        width: 94%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Menos espacio arriba/abajo */
    .main-nav {
        margin: 14px auto 18px;
        width: 100%;
    }

    /* Dos columnas iguales */
    .container-tabheader {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;

        width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Todos los botones iguales */
    .container-tabheader .tabheader {
        width: 100%;
        min-height: 44px;

        padding: 8px 5px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 13px;
        line-height: 1.15;
        text-align: center;

        box-sizing: border-box;

        border-radius: 7px;
    }

    /* TODO ocupa las dos columnas */
    .container-tabheader .tabheader:first-child {
        grid-column: 1 / -1;
    }

    /* Evitar que el activo agrande el grid */
    .container-tabheader .tabheader.active {
        transform: none;
    }

    /* En celular no necesitamos que salte al pasar el dedo */
    .container-tabheader .tabheader:hover {
        transform: none;
    }

}




/* =========================================================
   INDICADOR AJAX ITEM MALL
========================================================= */

.ajax-loader-armas {
    position: fixed;

    top: 18px;
    right: 22px;

    width: 28px;
    height: 28px;

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 999999;
}

.ajax-loader-armas.activo {
    display: flex;
}

.ajax-loader-circulo {
    width: 18px;
    height: 18px;

    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #d30000;

    border-radius: 50%;

    animation: girarLoaderArmas 0.7s linear infinite;
}

@keyframes girarLoaderArmas {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* =====================================================
   CONTENIDO CENTRAL TIPO WOLFZONE
===================================================== */

.contenedor_titulo_buscador_ordenador {
    width: calc(100% - 440px);
    max-width: 1080px;
    box-sizing: border-box;
}

.contenedor_armas {
    width: calc(100% - 440px);
    max-width: 1080px;

    margin-left: auto;
    margin-right: auto;

    padding: 15px;
    box-sizing: border-box;

    background: rgba(20, 20, 20, 0.22);
}

/* Pantallas medianas */
@media screen and (max-width: 1300px) {

    .contenedor_armas,
    .contenedor_titulo_buscador_ordenador {
        width: 90%;
        max-width: none;
    }
}

/* Celular */
@media screen and (max-width: 600px) {

    .contenedor_armas,
    .contenedor_titulo_buscador_ordenador {
        width: 94%;
    }
}

/* Fondo central detrás de TODO el contenido de armas */
.contenedor_armas {
    position: relative;
    padding: 15px 15px 35px;
    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.18);
}

/* Modo claro */
body:not(.dark-mode) .contenedor_armas {
    background: rgba(255, 255, 255, 1);
}

/* Reducir SOLO la imagen del arma */
.contenedor-img img {
    width: 78% !important;
    height: 78% !important;
    object-fit: contain;
}


/* =========================================================
   MODO OSCURO - CUADROS DE ARMAS
   ========================================================= */

/* Fondo grande que contiene todas las tarjetas */
body.dark-mode .contenedor_armas {
    background: rgba(17, 17, 17) !important;
}

/* Cada tarjeta */
body.dark-mode .contenedor-cuadro {
    background: rgba(35, 35, 35, 0.80) !important;
}

/* Franja del título y franja del subtítulo */
body.dark-mode .contenedor-boton_titulo,
body.dark-mode .contenedor-subtitulo {
    background: rgba(35, 35, 35, 0.80) !important;
    border-bottom-color: #333 !important;
}

/* Nombre del arma */
body.dark-mode .contenedor-titulo span {
    color: #fff !important;
}

/* Nombre de la edición */
body.dark-mode .contenedor-subtitulo span {
    color: #fff !important;
}

/* =====================================================
   FUENTE DE LOS NOMBRES DE LAS ARMAS
===================================================== */

.contenedor-titulo span {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
}


/* =====================================================
   FUENTE DE LOS SUBTÍTULOS / EDICIONES
===================================================== */

.contenedor-subtitulo span {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px;
}

/* =====================================================
   TIPOGRAFÍA RAJDHANI - PÁGINA DE ARMAS
===================================================== */

/* TÍTULO PRINCIPAL */
.contenedor_titulo_buscador_ordenador h2 {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
}

/* BOTONES DE CATEGORÍAS */
.tabheader {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px;
}

/* BUSCADOR */
#searchInput {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 500 !important;
}

/* ORDENADOR */
#ordenArmas {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 500 !important;
}

/* OPCIONES DEL ORDENADOR */
#ordenArmas option {
    font-family: 'Rajdhani', sans-serif !important;
}

