﻿/********************************************************************************+*/
/*     TOOLTIPS                                                                   */
/********************************************************************************+*/
.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px;
}

.tooltip-inner-relativo {
    position: absolute;
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px;
    right: 30px;
    padding-top: -50px;
    margin-top: -30px;
    z-index: 10;
}

.tooltip-inner-fixed {
    position: fixed;
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px;
}


.tooltip-inner-relativo-grid {
    /*position: absolute;
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #db3325;
    border-radius: 4px;
    right: 30px;
    padding-top: -50px;
    margin-top: -55px;
    z-index: 10;*/
    position: relative;
    max-width: 600px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: rgba(219,51,37,.8);
    border-radius: 4px;
    right: -10px;
    padding-top: -50px;
    margin-top: -35px;
    margin-left: -60px;
    z-index: 10;
    display: block;
}

    .tooltip-inner-relativo-grid:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #db3325;
        left: 50%;
        bottom: -8px;
    }

.tooltip-inner-relativo-rojo {
    position: absolute;
    max-width: 400px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #db3325;
    border-radius: 4px;
    right: 30px;
    padding-top: 0;
    margin-top: 0;
    z-index: 10;
}

    .tooltip-inner-relativo-rojo:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #db3325;
        left: 50%;
        bottom: -8px;
    }
/************************************************************/
/*  FOTO CIRCULAR */
/************************************************************/
.circular {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    background: url(../img/boy.png) no-repeat center;
    background-size: cover;
    box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    -webkit-box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    -moz-box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    background-position: center;
    /*background-repeat: no-repeat;
    background-attachment: fixed;*/
}


.circular-sm {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background: url(../img/boy.png) no-repeat center;
    background-size: cover;
    box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    -webkit-box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    -moz-box-shadow: 0 0 8px rgba(255, 255, 255, .8);
}

.circular-md {
    width: 54px;
    height: 54px;
    border-radius: 27px;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    background: url(../img/boy.png) no-repeat center;
    background-size: cover;
    box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    -webkit-box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    -moz-box-shadow: 0 0 8px rgba(255, 255, 255, .8);
}

.circular-photo {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    background: url(../img/boy.png) no-repeat center;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    box-shadow: 0 0 10px rgba(136, 8, 0, .8);
    -webkit-box-shadow: 0 0 10px rgba(136, 8, 0, .8);
    -moz-box-shadow: 0 0 10px rgba(136, 8, 0, .8);
}

.circular-photo-lg {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    background: url(../img/boy.png) no-repeat center;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    box-shadow: 0 0 10px rgba(136, 8, 0, .8);
    -webkit-box-shadow: 0 0 10px rgba(136, 8, 0, .8);
    -moz-box-shadow: 0 0 10px rgba(136, 8, 0, .8);
}

/************************************************************/
/*  TEXTOS DE COLORES */
/************************************************************/
.text-white {
    color: #fff !important;
    opacity:1 !important;
}

.text-muted {
    color: #777;
    font-style: italic;
}

    .text-muted:hover {
        color: #333;
    }

.text-warning-amarillo {
    color: #d8f805;
}

    .text-warning-amarillo:hover {
        color: #ACC504;
    }

.text-blanco {
    color: #fff;
}

    .text-blanco:hover {
        color: rgba(255, 255, 255, .8);
    }


/************************************************************/
/*  ESPACIOS */
/************************************************************/
.space-5 {
    padding: 5px 0;
}

.space-10 {
    padding: 10px 0;
}

/************************************************************/
/*  PAGARE */
/************************************************************/
.contenedor-leyenda {
}

    .contenedor-leyenda p {
        display: inline-block;
        line-height: .8em;
    }

        .contenedor-leyenda p label {
            display: table;
            text-align: right;
            color: #aaa;
            font-style: italic;
            margin: auto;
            margin-top: 2px;
        }

/************************************************************/
/*  Encabezados  */
/************************************************************/
.page-header {
    color: #fff;
    padding: 9px;
    margin: 5px 0 10px;
    border-bottom: 1px solid #eee;
    background-color: #686868;
}

    .page-header small {
        color: #fff;
    }

/************************************************************/
/*  CSS para el fileupload  */
/************************************************************/
.myfileupload-buttonbar input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    border: solid transparent;
    border-width: 0 0 100px 200px;
    opacity: 0.0;
    filter: alpha(opacity=0);
    -o-transform: translate(250px, -50px) scale(1);
    -moz-transform: translate(-300px, 0) scale(4);
    direction: ltr;
    cursor: pointer;
}

.myui-button {
    position: relative;
    cursor: pointer;
    text-align: center;
    overflow: visible;
    background-color: none;
    overflow: hidden;
    text-align: center;
}
/*********************************************************************************/
/* UP PROGRESS                                                                     */
/*********************************************************************************/

.loadingAnimation, .overlay-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100002;
    top: 0;
    left: 0;
    background-color: rgba(61,61,61,0.3);
    opacity: 1;
}

.overlay-loading {
    z-index: 99999 !important;
}

.fullOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100004;
    top: 0;
    left: 0;
    background-color: #333;
    opacity: .7;
    display: none;
}

.loadingAnimation img {
    border-radius: 5px;
    opacity: .8;
    top: 50%;
    right: 50%;
    position: absolute;
    margin-top: -40px;
    margin-right: -40px;
    max-height: 100px;
}

/*********************************************************************************/
/* NOTIFICACIONES                                                                     */
/*********************************************************************************/

.notify-arrow {
    border-style: solid;
    border-width: 0 9px 9px;
    height: 0;
    margin-top: 0;
    opacity: 0;
    position: absolute;
    left: 7px;
    top: -18px;
    transition: all 0.25s ease 0s;
    width: 0;
    z-index: 10;
    margin-top: 10px;
    opacity: 1;
}

.notify-arrow-yellow {
    border-color: transparent transparent #FCB322;
    border-bottom-color: #FCB322 !important;
    border-top-color: #FCB322 !important;
}

.notify-arrow-green {
    border-color: transparent transparent #68dff0;
    border-bottom-color: #68dff0 !important;
    border-top-color: #68dff0 !important;
}

/*********************************************************************************/
/* NOTIFICACIONES                                                                     */
/*********************************************************************************/

/*notification*/
#top_menu .nav > li, ul.top-menu > li {
    float: left;
}

.notify-row {
    float: left;
    margin-top: 15px;
    margin-left: 92px;
}

    .notify-row .notification span.label {
        display: inline-block;
        height: 18px;
        width: 20px;
        padding: 5px;
    }

ul.top-menu > li > a {
    color: #666666;
    font-size: 16px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #666666 !important;
    padding: 2px 6px;
    margin-right: 15px;
}

    ul.top-menu > li > a:hover, ul.top-menu > li > a:focus {
        border: 1px solid #b6b6b6 !important;
        background-color: transparent !important;
        border-color: #b6b6b6 !important;
        text-decoration: none;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        color: #b6b6b6 !important;
    }

.notify-row .badge {
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 100;
}

.dropdown-menu.extended {
    max-width: 300px !important;
    min-width: 160px !important;
    top: 42px;
    width: 235px !important;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.176) !important;
    border: none !important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    /* Safari and Chrome */
    .dropdown-menu.extended {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.176) !important;
    }

    ;
}

.dropdown-menu.extended li p {
    background-color: #F1F2F7;
    color: #666666;
    margin: 0;
    padding: 10px;
    border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
}

    .dropdown-menu.extended li p.green {
        background-color: #68dff0;
        color: #fff;
    }

    .dropdown-menu.extended li p.yellow {
        background-color: #fcb322;
        color: #fff;
    }

.dropdown-menu.extended li a {
    border-bottom: 1px solid #EBEBEB !important;
    font-size: 12px;
    list-style: none;
}

.dropdown-menu.extended li a {
    padding: 15px 10px !important;
    width: 100%;
    display: inline-block;
}

    .dropdown-menu.extended li a:hover {
        background-color: #F7F8F9 !important;
        color: #2E2E2E;
    }

.dropdown-menu.tasks-bar .task-info .desc {
    font-size: 13px;
    font-weight: normal;
}

.dropdown-menu.tasks-bar .task-info .percent {
    display: inline-block;
    float: right;
    font-size: 13px;
    font-weight: 600;
    padding-left: 10px;
    margin-top: -4px;
}

.dropdown-menu.extended .progress {
    margin-bottom: 0 !important;
    height: 10px;
}

.dropdown-menu.inbox li a .photo img {
    border-radius: 2px 2px 2px 2px;
    float: left;
    height: 40px;
    margin-right: 4px;
    width: 40px;
}

.dropdown-menu.inbox li a .photo i {
    border-radius: 2px 2px 2px 2px;
    float: left;
    height: 40px;
    margin-right: 4px;
    width: 40px;
}

.dropdown-menu.inbox li a .subject {
    display: block;
}

    .dropdown-menu.inbox li a .subject .from {
        font-size: 12px;
        font-weight: 600;
    }

        .dropdown-menu.inbox li a .subject .from:hover {
            text-decoration: none;
        }

    .dropdown-menu.inbox li a .subject .time {
        font-size: 11px;
        font-style: italic;
        font-weight: bold;
        position: absolute;
        right: 5px;
    }

.dropdown-menu.inbox li a .message {
    display: block !important;
    font-size: 11px;
}

    .dropdown-menu.inbox li a .message:hover {
        text-decoration: none;
    }

.top-nav {
    margin-top: 7px;
}

    .top-nav ul.top-menu > li .dropdown-menu.logout {
        width: 268px !important;
    }

    .top-nav li.dropdown .dropdown-menu {
        float: right;
        right: 0;
        left: auto;
    }

.dropdown-menu.extended.logout > li {
    float: left;
    text-align: center;
    width: 33.3%;
}

    .dropdown-menu.extended.logout > li:last-child {
        float: left;
        text-align: center;
        width: 100%;
        background: #a9d96c;
        border-radius: 0 0 3px 3px;
    }

        .dropdown-menu.extended.logout > li:last-child > a, .dropdown-menu.extended.logout > li:last-child > a:hover {
            color: #fff;
            border-bottom: none !important;
            text-transform: uppercase;
        }

            .dropdown-menu.extended.logout > li:last-child > a:hover > i {
                color: #fff;
            }

    .dropdown-menu.extended.logout > li > a {
        color: #a4abbb;
        border-bottom: none !important;
    }

.full-width .dropdown-menu.extended.logout > li > a:hover {
    background: none !important;
    color: #50c8ea !important;
}

.dropdown-menu.extended.logout > li > a:hover {
    background: none !important;
}

    .dropdown-menu.extended.logout > li > a:hover i {
        color: #50c8ea;
    }

.dropdown-menu.extended.logout > li > a i {
    font-size: 17px;
}

.dropdown-menu.extended.logout > li > a > i {
    display: block;
}

.top-nav ul.top-menu > li > a {
    border: 1px solid #eeeeee;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 6px;
    background: none;
    margin-right: 0;
}

.top-nav ul.top-menu > li {
    margin-left: 10px;
}

    .top-nav ul.top-menu > li > a:hover, .top-nav ul.top-menu > li > a:focus {
        border: 1px solid #F1F2F7;
        background: #F1F2F7;
    }

.top-nav .dropdown-menu.extended.logout {
    top: 50px;
}

.top-nav .nav .caret {
    border-bottom-color: #A4AABA;
    border-top-color: #A4AABA;
}

.top-nav ul.top-menu > li > a:hover .caret {
    border-bottom-color: #000;
    border-top-color: #000;
}

.log-arrow-up {
    background: url("../img/arrow-up.png") no-repeat;
    width: 20px;
    height: 11px;
    position: absolute;
    right: 20px;
    top: -10px;
}

/*----*/

.notify-arrow {
    border-style: solid;
    border-width: 0 9px 9px;
    height: 0;
    margin-top: 0;
    opacity: 0;
    position: absolute;
    left: 7px;
    top: -18px;
    transition: all 0.25s ease 0s;
    width: 0;
    z-index: 10;
    margin-top: 10px;
    opacity: 1;
}

.notify-arrow-yellow {
    border-color: transparent transparent #FCB322;
    border-bottom-color: #FCB322 !important;
    border-top-color: #FCB322 !important;
}

.notify-arrow-green {
    border-color: transparent transparent #68dff0;
    border-bottom-color: #68dff0 !important;
    border-top-color: #68dff0 !important;
}


/*********************************************************************************/
/* PAGER GRIDS                                                                   */
/*********************************************************************************/

.pagerGrids {
    width: 100%;
    background-color: #131313;
    color: #ccc;
    font-size: 23px;
    font-weight: bold;
}

    .pagerGrids:hover {
        background-color: #131313;
        color: #ccc;
    }

    .pagerGrids table:hover td:hover {
        background-color: #131313;
        color: #ccc;
    }

    .pagerGrids a {
        color: #ccc;
        font-size: medium;
        padding: 5px;
    }

.inline-show {
    display: inline !important;
}

.Estilofooter {
    background-color: #000;
    color: White;
    text-align: right;
}

    .Estilofooter:hover {
        background-color: #000 !important;
        color: #fff !important;
    }

    .Estilofooter table:hover tr:hover td:hover {
        background-color: #000;
        color: #000;
        border-left: solid 1px #fff;
        border-right: solid 1px #fff;
    }

    .Estilofooter > tr:hover {
        background-color: #000;
        color: #000;
        border-left: solid 1px #fff;
        border-right: solid 1px #fff;
    }

    .Estilofooter > tr > td:hover {
        background-color: #000;
        color: #000;
        border-left: solid 1px #fff;
        border-right: solid 1px #fff;
    }

    .Estilofooter a {
        color: #ccc;
        font-size: medium;
        padding: 5px;
    }
/*********************************************************************************/
/* NO FOUND                                                                   */
/*********************************************************************************/
.page-nofound {
    font-weight: 900;
    font-family: 'Open Sans';
    font-size: 60px;
    line-height: 100px;
    text-align: center;
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

    .page-nofound small {
        font-weight: 600;
        font-size: 30px;
        line-height: 50px;
        text-align: center;
    }

/*********************************************************************************/
/*  TABLAS MENOS ESPACIADAS                                                                   */
/*********************************************************************************/

.tabla-reducida {
}

    .tabla-reducida > tbody > tr > td {
        padding: 3px 8px;
        -webkit-overflow-scrolling: touch;
    }

.tabla-fija {
    min-width: 1600px;
    float: left;
}

    .tabla-fija a {
        text-decoration: none;
    }

        .tabla-fija a:hover {
            cursor: pointer;
            text-decoration: none;
        }
/*********************************************************************************/
/*  CURSOR DE MANITA                                                                   */
/*********************************************************************************/

.cursor-manita {
    cursor: pointer;
}


/*********************************************************************************/
/*  deslizador                                                                   */
/*********************************************************************************/
.deslizador {
    background-color: rgba(0,186,139,1);
    color: #fff;
}

    .deslizador i {
        right: 30px;
        margin-top: 50px;
    }

    .deslizador:hover {
        background-color: rgba(0,186,139,.8);
        color: #666;
        cursor: pointer;
    }


/* TOGGLE CONFIGURATION */
.has-switch {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    line-height: 1.231;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 80px;
    -webkit-mask: url('../img/mask.png') 0 0 no-repeat;
    mask: url('../img/mask.png') 0 0 no-repeat;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    .has-switch.deactivate {
        opacity: 0.5;
        filter: alpha(opacity=50);
        cursor: default !important;
    }

        .has-switch.deactivate label,
        .has-switch.deactivate span {
            cursor: default !important;
        }

    .has-switch > div {
        width: 162%;
        position: relative;
        top: 0;
    }

        .has-switch > div.switch-animate {
            -webkit-transition: left 0.25s ease-out;
            -moz-transition: left 0.25s ease-out;
            -o-transition: left 0.25s ease-out;
            transition: left 0.25s ease-out;
            -webkit-backface-visibility: hidden;
        }

        .has-switch > div.switch-off {
            left: -63%;
        }

            .has-switch > div.switch-off label {
                background-color: #7f8c9a;
                border-color: #bdc3c7;
                -webkit-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
                -moz-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
                box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
            }

        .has-switch > div.switch-on {
            left: 0%;
        }

            .has-switch > div.switch-on label {
                background-color: #41cac0;
            }

    .has-switch input[type=checkbox] {
        display: none;
    }

    .has-switch span {
        cursor: pointer;
        font-size: 14.994px;
        font-weight: 700;
        float: left;
        height: 29px;
        line-height: 19px;
        margin: 0;
        padding-bottom: 6px;
        padding-top: 5px;
        position: relative;
        text-align: center;
        width: 50%;
        z-index: 1;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: 0.25s ease-out;
        -moz-transition: 0.25s ease-out;
        -o-transition: 0.25s ease-out;
        transition: 0.25s ease-out;
        -webkit-backface-visibility: hidden;
    }

        .has-switch span.switch-left {
            border-radius: 30px 0 0 30px;
            background-color: #2A3542;
            color: #41cac0;
            border-left: 1px solid transparent;
        }

        .has-switch span.switch-right {
            border-radius: 0 30px 30px 0;
            background-color: #bdc3c7;
            color: #ffffff;
            text-indent: 7px;
        }

            .has-switch span.switch-right [class*="fui-"] {
                text-indent: 0;
            }

    .has-switch label {
        border: 4px solid #2A3542;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        float: left;
        height: 29px;
        margin: 0 -21px 0 -14px;
        padding: 0;
        position: relative;
        vertical-align: middle;
        width: 29px;
        z-index: 100;
        -webkit-transition: 0.25s ease-out;
        -moz-transition: 0.25s ease-out;
        -o-transition: 0.25s ease-out;
        transition: 0.25s ease-out;
        -webkit-backface-visibility: hidden;
    }

.switch-square {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -webkit-mask: url('../img/mask.png') 0 0 no-repeat;
    mask: url('../img/mask.png') 0 0 no-repeat;
}

    .switch-square > div.switch-off label {
        border-color: #7f8c9a;
        border-radius: 6px 0 0 6px;
    }

    .switch-square span.switch-left {
        border-radius: 6px 0 0 6px;
    }

        .switch-square span.switch-left [class*="fui-"] {
            text-indent: -10px;
        }

    .switch-square span.switch-right {
        border-radius: 0 6px 6px 0;
    }

        .switch-square span.switch-right [class*="fui-"] {
            text-indent: 5px;
        }

    .switch-square label {
        border-radius: 0 6px 6px 0;
        border-color: #41cac0;
    }

/*********************************************************+++*/
/*******ENCABEZADOD FIJOS DE TABLA              ***********+++*/
/*********************************************************+++*/

table.tableSection {
    display: table;
    width: 100%;
}

    table.tableSection thead, table.tableSection tbody {
        float: left;
        width: 100%;
    }

    table.tableSection tbody {
        overflow: auto;
        height: 450px;
    }

    table.tableSection tr {
        width: 100%;
        display: table;
        text-align: left;
    }

    table.tableSection th, table.tableSection td {
        width: 33%;
    }

/*********************************************************+++*/
/*******BORDEADO***********+++*/
/*********************************************************+++*/

.bordeado-negro {
    padding: 3px;
    border: solid 1px #000;
}


/*********************************************************+++*/
/*******BORDEADO***********+++*/
/*********************************************************+++*/

.heart {
    /*font-size: 152px;*/
    text-align: center;
    color: rgba(165, 25, 25, 1);
    padding: 0;
    margin: 0;
}

.pulse1 {
    -webkit-animation: pulse1 2s linear infinite;
    -moz-animation: pulse1 2s linear infinite;
    -ms-animation: pulse1 2s linear infinite;
    animation: pulse1 2s linear infinite;
}

@keyframes

"pulse1" {
    0%;

{
    color: rgba(165, 25, 25, 1);
}

90% {
    color: rgba(255,0,0,0.0);
}

100% {
    color: rgba(255,0,0,1.0);
}

}

@-moz-keyframes pulse1 {
    0% {
        color: rgba(165, 25, 25, 1);
    }

    90% {
        color: rgba(255,0,0,0.0);
    }

    100% {
        color: rgba(255,0,0,1.0);
    }
}

@-webkit-keyframes

"pulse1" {
    0%;

{
    color: rgba(165, 25, 25, 1);
}

90% {
    color: rgba(255,0,0,0.0);
}

100% {
    color: rgba(255,0,0,1.0);
}

}

@-ms-keyframes

"pulse1" {
    0%;

{
    color: rgba(165, 25, 25, 1);
}

90% {
    color: rgba(255,0,0,0.0);
}

100% {
    color: rgba(255,0,0,1.0);
}

}

.pulse2 {
    -webkit-animation: pulse2 1s linear infinite;
    -moz-animation: pulse2 1s linear infinite;
    -ms-animation: pulse2 1s linear infinite;
    animation: pulse2 1s linear infinite;
}

@keyframes

"pulse2" {
    0%;

{
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

50% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

}

@-moz-keyframes pulse2 {
    0% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }

    50% {
        -moz-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes

"pulse2" {
    0%;

{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

100% {
    -webkit-transform: scale(1);
    transform: scale(1);
}

}

@-ms-keyframes

"pulse2" {
    0%;

{
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

50% {
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

100% {
    -ms-transform: scale(1);
    transform: scale(1);
}

}


/******************************************************************/
/******ESPACIADO DE CELDAS *********************/
/******************************************************************/
.td_xsmall {
}

    .td_xsmall td {
        padding: 2px !important;
    }
/******************************************************************/
/******FLOTANTE DE ACCION*********************/
/******************************************************************/

.flotante_accion {
    width: 140px;
    /*right: -140px;*/
    margin:10px auto;
    left: -60px;
    width:200px;
    color:#fff;
    padding:10px 20px;
    background-color:#00ba8b;
    position: fixed;
    top: 50%;
    margin-top: -121px;
    z-index: 99999;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

    /* Safari */
-webkit-transform: rotate(-90deg);

/* Firefox */
-moz-transform: rotate(-90deg);

/* IE */
-ms-transform: rotate(-90deg);

/* Opera */
-o-transform: rotate(-90deg);

/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}





/****************************************************************/
/********FIXED HEADERS                          ******************/
/****************************************************************/

.fixed_headers {
  
  table-layout: fixed;
  border-collapse: collapse;
}
.fixed_headers th {
  text-decoration: underline;
}
.fixed_headers th,
.fixed_headers td {
  padding: 5px;
  text-align: left;
}
.fixed_headers td:nth-child(1),
.fixed_headers th:nth-child(1) {
  min-width: 200px;
}
.fixed_headers td:nth-child(2),
.fixed_headers th:nth-child(2) {
  min-width: 200px;
}
.fixed_headers td:nth-child(3),
.fixed_headers th:nth-child(3) {
  width: 350px;
}
.fixed_headers thead {
  background-color: #333;
  color: #FDFDFD;
}
.fixed_headers thead tr {
  display: block;
  position: relative;
}
.fixed_headers tbody {
  display: block;
  overflow: auto;
  width: 100%;
  height: 300px;
}
.fixed_headers tbody tr:nth-child(even) {
  background-color: #DDD;
}
.old_ie_wrapper {
  height: 300px;
  width: 750px;
  overflow-x: hidden;
  overflow-y: auto;
}
.old_ie_wrapper tbody {
  height: auto;
}


/***************************************************+***/
/***EL DIV DEL ALTO DE LA PANTALLA***/
/***************************************************+***/

.div-size-window{
    max-height: calc(100vh - 130px);
}


.controls {
    width: 130px;
}