
/** Custom BG Colors */
.bg-disabled {
    background-color: #e8ecef !important;
    opacity: 1;
}



/** CUSTOM LOGIN PAGE */

.login-page {
    align-items: center;
    background-color: #e9ecef;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-page .login-box .login-logo {
    background-color: #fff;
    padding: 15px 5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-bottom: -10px !important;
}

.login-page .login-box .card ,
.login-page .login-box .card .card-header {
    border: none;
    box-shadow: none;
}


.login-page .login-box .card-title {
    color: #2f528f;
    font-size: 1.5em;
    font-weight: bold;
}


.company_header_image{
    max-width: 80px;
    padding: 10px
}

/** FIELDSET CUSTOM */
fieldset legend{
    padding: 0 15px;
}

.not-allowed{
    cursor: not-allowed;
}


/*
* MATRIZ DE RISCO - CONFIGURAÇÃO DA TABELA
*/

/* Risco Muito Alto */
.matrix_risk_very-high{
    background-color: #d13f3f;
    color: #fff;
    border: none;
    transition: all 200ms ease-in;
}

.matrix_risk_text_color_very-high{
    color: #ff0800 !important;
}

/* Risco Alto */
.matrix_risk_high {
    background-color: #f07d24;
    color: #fff;
    border: none;
    transition: all 200ms ease-in;
}

.matrix_risk_text_color_high{
    color: #ff6702 !important;
}

/* Risco Médio */
.matrix_risk_medium {
    background-color: #ffdf7e;
    color: #333;
    border: none;
    transition: all 200ms ease-in;
}

.matrix_risk_text_color_medium{
    color: #ffc107 !important;
}


/* Risco Baixo */
.matrix_risk_low {
    background-color: #00cc00;
    border: none;
    transition: all 200ms ease-in;
    color: #fff;
}

.matrix_risk_text_color_low{
    color: #00cc00 !important;
}



/* Risco Muito Baixo */
.matrix_risk_very-low {
    background-color: #0170c1;
    color: #fff;
    border: none;
    transition: all 200ms ease-in;
}

.matrix_risk_text_color_very-low{
    color: #2698e9 !important;
}


.matrix_risk_legend {
    background-color: #d5dce4;
    border: none;
    transition: all 200ms ease-in;
}

.matrix_risk_probability-impact {
    background-color: #171717;
    color: #fff;
    border: none;
    transition: all 200ms ease-in;
}


/* TIMELINE TERCEIROS/PARCEIROS */
.timeline-altsource {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content:left;
    margin: 0;
    padding: 0;
}

.li {
    transition: all 200ms ease-in;
}

.status {
    margin-top: 24px;
    padding: 15px 40px 0 40px;
    display: flex;
    justify-content: center;
    border-top: 2px solid #D6DCE0;
    position: relative;
    transition: all 200ms ease-in;
    white-space: nowrap;
}

.status:before {
    content: "✓";
    color: #FFF;
    text-align: center;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 25px;
    border: 1px solid #ddd;
    position: absolute;
    top: -15px;
    left: 42%;
    transition: all 200ms ease-in;
}

.li p{
    padding: 0px 10px;
    font-size: 0.9em;
}

/*status complete*/
.li.complete .status {
    border-top: 2px solid #66DC71;
}

.li.complete .status:before {
    background-color: #66DC71;
    border: none;
    transition: all 200ms ease-in;
}

.li.complete .status h4 {
    color: #66DC71;
}

.li.complete .status p{
    background: #66DC71;
    color: #fff;
}

/* status actual*/
.li.complete .active {
    border-top: 2px solid #4484fb;
}

.li.complete .active:before {
    background-color: #4484fb;
    border: none;
    transition: all 200ms ease-in;
}

.li.complete .active p{
    background-color: #4484fb;
    color: #fff;
}

/* STATUS COLOR RISK */

/* Risco Muito Alto */
.li.very-high .status {
    border-top: 2px solid #ff3300;
}

.li.very-high .status:before {
    background-color: #ff3300;
    border: none;
    transition: all 200ms ease-in;
}

.li.very-high .status h4 {
    color: #ff3300;
}

.li.very-high .status p{
    background: #ff3300;
    color: #fff;
}

/* Risco Alto */
.li.high .status {
    border-top: 2px solid #ffc000;
}

.li.high .status:before {
    background-color: #ffc000;
    border: none;
    transition: all 200ms ease-in;
}

.li.high .status h4 {
    color: #ffc000;
}

.li.high .status p{
    background: #ffc000;
    color: #fff;
}

/* Risco Médio */
.li.medium .status {
    border-top: 2px solid #ffff00;
}

.li.medium .status:before {
    background-color: #ffff00;
    color: #333;
    border: none;
    transition: all 200ms ease-in;
}

.li.medium .status h4 {
    color: #ffff00;
}

.li.medium .status p{
    background: #ffff00;
    color: #333;
}


/* Risco Baixo */
.li.low .status {
    border-top: 2px solid #00cc00;
}

.li.low .status:before {
    background-color: #00cc00;
    border: none;
    transition: all 200ms ease-in;
}

.li.low .status h4 {
    color: #00cc00;
}

.li.low .status p{
    background: #00cc00;
    color: #fff;
}


/* Risco Muito Baixo */
.li.very-low .status {
    border-top: 2px solid #0070c0;
}

.li.very-low .status:before {
    background-color: #0070c0;
    border: none;
    transition: all 200ms ease-in;
}

.li.very-low .status h4 {
    color: #0070c0;
}

.li.very-low .status p{
    background: #0070c0;
    color: #fff;
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
    .timeline-document {
        list-style-type: none;
        display: block;
    }

    .li {
        transition: all 200ms ease-in;
        display: flex;
        width: inherit;
    }

    .timestamp {
        width: 100px;
    }

    .status:before {
        left: -8%;
        top: 30%;
        transition: all 200ms ease-in;
    }
}


/* CUSTOM TABLE REPORT */
.table-report{
    width: 100%;
    border-collapse: collapse;
}


/** Texto taxado */
.text-decoration-line-through {
    text-decoration: line-through;
}

/** MatrizRaci */
.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: left;
    max-height: 150px;
    width: 15px;
}

.matriz_raci_R {
    background-color: #c9edff;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}
.matriz_raci_A {
    background-color: #edffa8;
    font-weight: bold;
    text-align: center;
}
.matriz_raci_C {
    background-color: #facfd6;
    font-weight: bold;
    text-align: center;
}
.matriz_raci_I {
    background-color: #fff2b5;
    font-weight: bold;
    text-align: center;
}


.dropdown-menu-lg {
    max-width: 420px !important;
    min-width: 380px !important;
    padding: 0;
}


.callout a {
    color:#fff !important;
    text-decoration: none !important;
}



/** LOADING */
.modal-container-loader {
    display: none;
    justify-content: center !important;
    align-items: center !important;
    background-color: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    overflow: auto;
}

.modal-container-loader .img-gif {
    width: 60px;
}
