* {
    font-family: verdana, sans-serif, helvica;
}

.full_hd {
    height: 100%;
    border: 1px solid lightgray;
    flex-grow: 1;

    box-sizing: border-box;
    position: relative;
}

.toggleRealTime {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #efefef;
    border: 1px solid #cfcfcf;
    z-index: 999;
    cursor: pointer;
}

.toggleRealTime.active {
    background-color: #91ffa6;
    border: 1px solid #55de6f;
}

.summary_tp {
    transition: 500ms ease;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 350px;
    margin-left: -350px;
    height: 100%;
    z-index: 100;
}

.summary_tp.active {
    margin-left: 0;
}

.summary_tp button {
    transition: 400ms ease;
    cursor: pointer;
}

.summary_tp button.toggle {
    font-size: 20px;
    line-height: 1;
}

.summary_tp.active button {
    transition: .5s;
}

.summary_tp .containerSummary {
    margin: auto;
    overflow: hidden;
}

.summary_tp .containerSummary .filter_tp {
    transition: .5s;
    margin-bottom: 0;
    overflow: hidden;
    height: 0px;
}

.summary_tp .containerSummary .filter_tp.active {
    margin-bottom: 20px;

    height: auto;
    height: max-content;
}

.summary_tp .containerSummary .filter_tp form {
    font-size: 13px;
}

.summary_tp .containerSummary .filter_tp form select {
    display: block;
    width: 100%;
    margin: auto;
    height: 22px;
}

.summary_tp .containerSummary .filter_tp form button {
    position: relative;
    top: auto;
    display: inline-block;
    right: 0;
}

.summary_tp .containerSummary .filter_tp form button[type="reset"] {
    background-color: red;
    color: white;
    border-color: red;
    margin-left: 10px;
}

.summary_tp .containerSummary .content {
    overflow: auto;
    height: 90%;
}

.summary_tp .containerSummary div.filter_tp.active+hr+.content {
    height: calc(100% - 140px);
}

.summary_tp .containerSummary .content ul.list_summary {
    font-size: 13px;
    padding: 0;
    list-style: none;
}

.summary_tp .containerSummary .content ul.list_summary li {
    list-style: circle;
    margin: 0 auto;
}

.summary_tp .containerSummary .content ul.list_summary li span {
    background-color: #008000;
    color: white;
    
    padding: 10px;
    border-radius: 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.summary_tp .containerSummary .content ul.list_summary li span.filter {
    background-color: #ff8484;
    color: white;
}

.summary_tp .containerSummary .content ul.list_summary li .btnNxtRes {
    width: max-content;
    min-width: 35px;
    height: 20px;
    display: inline-flex;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #e6e5e5;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    line-height: 0;
    background-color: #efefef;
    float: right;
    margin-right: 10px;
    margin-top: 1px;
    padding: 0px 2px;
}

.summary_tp .containerSummary .content ul.list_summary li .btnNxtRes:hover {
    text-decoration: none;
}

.summary_tp .containerSummary .content ul.list_summary li .btnNxtRes small.pn {
    background-color: black;
    display: inline-block;
    width: max-content;
    height: max-content;
    font-size: 12px;
    line-height: initial;
    color: white;
    padding: 1px 4px;
    margin-left: 5px;
    border-radius: 3px;
}

.summary_tp .containerSummary .content ul.list_summary.detail li.header marquee {
    text-align: center;
}

.summary_tp .containerSummary .content ul.list_summary.detail li span {
    background-color: transparent;
    text-align: right;
    display: inline;
    margin-left: 0px;
}

/* FIN Estilo paara los filtros y detalle  */

/* Inicio Footer */
.footer-tp {
    height: 5%;
    min-height: 25px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #e2e2e2;
    position: absolute;
    z-index: 9;
    margin: auto;
    top: auto;
    left: 0;
    bottom: 0;

}

.footer-tp .alerts-footer {
    height: 100%;
    /* border: 1px solid; */
    min-width: 200px;
    max-width: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-tp .alerts-footer .alert {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #1f1f1f;
    border-radius: 5px;
}

.footer-tp .alerts-footer .alert.active {
    cursor: pointer;
    box-shadow: 0px 0px 5px 2px green inset;
    animation: newAlert .8s;
}

@keyframes newAlert {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.footer-tp .alerts-footer .alert .badge,
.footer-tp .severity-counts-footer .cja-total .badge {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    content: "";
    margin-right: 10px;
}

.footer-tp .alerts-footer .alert .label,
.footer-tp .severity-counts-footer .cja-total .label {
    color: white;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: calc(100% - 50px);
    font-size: 12px;
    font-family: sans-serif;
}

.footer-tp .severity-counts-footer {
    height: 100%;
    /* border: 1px solid; */
    min-width: 200px;
    min-width: 200px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

.footer-tp .severity-counts-footer .cja-total {
    background-color: white;
    padding: 3px 10px;
    border-radius: 10px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 2px;
    cursor: pointer;
}

.footer-tp .severity-counts-footer .cja-total:hover {
    cursor: pointer;
    opacity: 0.6;
}

.footer-tp .severity-counts-footer .cja-total .badge {
    /* border: 1px solid; */
    display: flex;
    margin-right: 3px;
}

.footer-tp .severity-counts-footer .cja-total .label {
    color: black;
    max-width: inherit;
}




/**
----------------------------------------------------------------------------------------------------------------
        INICIO ||  ESTILOS DEL MODULO DE INFORMACION DE LA TP
----------------------------------------------------------------------------------------------------------------
 */

div.accordion .section label {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

div.accordion .section small {
    margin-right: 15px;
}

div.accordion .section small svg {
    width: 12px;
}

div.accordion .section .cja-children li.ligths-faults {
    display: flex;
    align-items: center;
    padding: 1px;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    padding-right: 40px;
}

div.accordion .section .cja-children li.ligths-faults b {}

div.accordion .section .cja-children li.ligths-faults .circle-fault {
    display: flex;
    width: 85px;
    justify-content: center;
    align-items: center;
    padding: 3px 0px;
    border-radius: 5px;
}

div.accordion .section .cja-children {
    height: 0px;
    display: block;
    overflow: hidden;
}

div.accordion .section .cja-children.active {
    height: max-content;
    font-size: 13px;
    background-color: white;
}

/**
----------------------------------------------------------------------------------------------------------------
        FIN ||  ESTILOS DEL MODULO DE INFORMACION DE LA TP
----------------------------------------------------------------------------------------------------------------
 */