.h2-small {
    font-size: 1.25em !important;
    color: #3276B5;
    font-weight: bold;
}

label.graphic-label {
    color: #1d71b8;
    font-size: 1em;
    font-weight: bold;
    display: block;
    margin-bottom: 1em;
    margin-top: 1em;
}

.radio-button-container {
    display: flex;
}

/* Para ocultar los selectores por defecto: circulitos*/
.radio-button-container input[type="radio"] {
    display: none;
}

.radio-button-container label {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    margin-right: -1px;
}

.radio-button-container input[type="radio"]:checked+label {
    background-color: #1d71b8;
    color: #fff;
    font-weight: bold;
}

#donut-line-container {
    display: flex;
}


#chart-line-npvpf {
    width: 100%;
    height: 100%;
}

#chart-line-cotizaciones {
    width: 100%;
    height: 100%;
}

#chart-donut-npvpf {
    width: 70%;
    height: 70%;
}

#chart-donut-line {
    width: 100% !important;
    height: 100% !important;
}

.canvas-portal {
    margin: 0px auto;
    margin-top: 10px;
}

#table-container {
    display: flex;
}

.table-row {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    /* Bordes redondeados */
    /* background: #1d71b8; */
}

.table-cell {
    padding: 5px;
    text-align: center;
    background-clip: content-box !important;
}

#second-column {
    text-align: left;
    font-size: 13.6px;
    background: white !important;
    border-radius: 10px;
    color: black;
    padding: 0.5em;
    font-family: "Open Sans", sans-serif !important;
}

#third-column {
    padding: 0.5em;
    margin: auto;
    color: white;
    font-size: 13.6px;
    align-items: center;
    font-family: "Open Sans", sans-serif !important;
}

.label-graphic-type {
    width: 100%;
}

.bottomButtons {
    margin-top: 1em;
}

.color-box {
    min-width: 40px;
}

.legend {
    margin-top: 2em;
}

div > .separator-line {
    margin: 0 !important;
    border: none;
    height: 2px;
    /* Set the hr color */
    width: 100%;
    color: #1d71b8;
    /* IE */
    background-color: #1d71b8;
    /* Navegadores modernos */
    margin-top: 1em !important;
    margin-bottom: 2em !important;
}

/* Loader */

.loader-detalle {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

.loader-detalle:before,
.loader-detalle:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 10px solid transparent;
    border-top-color: #3498db;
}

.loader-detalle:before {
    z-index: 100;
    animation: spin 1s infinite;
}

.loader-detalle:after {
    border: 10px solid #ccc;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* FORMAS */

.circle {
    border-radius: 50%;
    width: 1em;
    height: 1em;
    background-color: rgb(255, 165, 0);
}

.x-container {
    width: 1em;
    height: 1em;
    position: relative;
    display: flex;
    align-items: center;
}

.line {
    width: 100%;
    height: 2px;
    background-color: black;
    position: absolute;
    transform-origin: center center;
}

.line.horizontal {
    transform: rotate(45deg);
    background: rgb(255, 165, 0);
}

.line.vertical {
    transform: rotate(-45deg);
    background: rgb(255, 165, 0);
}

.leyenda {
    display: flex;
    align-items: center;
}

.texto {
    width: 100%;
}

.icon-container {
    width: 50px;
    height: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
    min-width: 40px;
    margin-right: 3%;
}

/*AUTOFILTRO*/
#filter-section .autofilter {
    display: flex
    ;
    float: right;
    margin-bottom: 20px;
}