@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    outline: 0;

}

/*----------------variables css-------------------------*/

:root {
    --header-height: 3rem;
    /*------------colors------------*/
    --main-color: rgb(18,56,160);   /*rgb(218, 174, 70);*/
    --second-color:rgb(18,56,160);     /* rgb(189, 91, 10);*/
    --main-gradient: linear-gradient(121deg,rgb(18,56,160) 25%, rgb(18,56,160/95%) 100%);  /*linear-gradient(121deg,rgb(218 174 70) 25%, rgb(189 91 10/ 95%) 100%);*/
    --vertical-gradient: linear-gradient(0deg,rbg(18,56,160) 25%, rbg(18,56,160/95%) 100%); /*linear-gradient(0deg,rgb(26 179 195) 25%, rgb(25 97 206/ 95%) 100%)*/
    --dark-bg: #383848;
    --main-color-alt: #1238a0;   /*#af547d;*/
    --text-color: #000;      /*#0973b9;   #707070;*/
    --white-color: #ffffff;
    --white-alt: #e6e6e6;

    /*------------------font and typography----------------*/
    --body-font: 'Source Sans Pro', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.1rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*--------------------font width-----------------------*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*--------------------margin padding-------------------*/
    --md-1:.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;

    /*-------------------z index----------------------------*/
    --ztooltip: 10;
    --z-fixed:100;
}

/*------------------------css variable end----------------------------*/

/* ----------------------base css---------------------------*/

*,
::before,
::after{
    box-sizing: border-box;
}

html{
    /*scroll-behavior:smooth;*/
    background-image: url('/static/img/cnaspm.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    height: 100%;
}

body{
    color: #000; /*var(--second-color);*/
    font-size: 13px;
    font-weight: 400;
    font-family: var(--body-font);
    line-height: 28px;
    overflow-x: hidden;
    height: 100%;
    background-color: transparent;
}

img {
    vertical-align: middle;
    height: auto;
}

a{
    text-decoration: none;
    display: inline-block;
    color:  var(--second-color);
}
a:hover{
    text-decoration: none;
    color: black;
}

ul,ol{
    list-style: none;
}

button:focus{
    outline:none;
}

/*-----------------------------------general style end-----------------*/

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label{
    margin: 0;
}

ul{
    padding: 0;
    list-style: none;
}

ovh{
    overflow: hidden;
}

table.table{
    white-space: nowrap;
}

.di-btn{
    color: aliceblue;
    padding: .7rem var(--mb-2);
    font-weight: 500;
    border-radius: 3px;
    box-shadow: 0px 6px 19px 1px #06041d4a;
}

.purple-gradient{
    background: var(--main-gradient);
}

.bg-cla{
    background: var(--main-color);
}


.bg-clc{
    background: (121deg,rgb(26 179 195) 25%, rgb(25 97 206/ 95%) 100%);

}

.table.dataTable {
    background-color: rgba(0,0,0,0.5); /* Gris claro */
}

table.dataTable tbody {
    background-color: #FF0000; /*ffffff  Fondo blanco */
}
table.dataTable tbody tr {
    background-color: #e0e0e0; /* Fondo gris para filas */
}

table.dataTable tbody tr:hover {
    background-color: #c0c0c0 !important; /* !important para forzarlo */
}



