/* 
    Created on : 29/09/2017, 13:44:42
    Author     : SHL
*/

.md-check-point
{
    background-color: #fafafa;
    font-size: 1em;
}

.md-check-point.altura_pequena { height: 35%; }

.md-check-point.altura_media { height: 75%; }

.md-check-point.altura_grande { height: 90%; }

.md-check-point.altura_tela { top: 0 !important; height: 100%; }

.md-check-point.largura_pequena { width: 35%; }

.md-check-point.largura_media { width: 75%; }

.md-check-point.largura_grande { width: 90%; }

.md-check-point.largura_tela { width: 100%; }

@media only screen and (max-width: 992px) {
    .md-check-point.largura_pequena { width: 90%; }

    .md-check-point.largura_media { width: 90%; }
}

@media only screen and (max-width: 600px) {
    .md-check-point.largura_pequena{ width: 100%; }

    .md-check-point.largura_media { width: 100%; }

    .md-check-point.largura_grande { width: 100%; }
}

/* ESTILOS DAS BARRAS DE CABECALHO */

.md-check-point .md-check-point-header
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 60px;
    padding-left: 2rem;
    font-size: 1.2rem;
    font-weight: 600;

    background: #fafafa;
    color: #000;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.md-check-point .md-check-point-content
{
    display: block;
    width: 100%;
    height: calc(100% - 120px);
    overflow-y: scroll;
    overflow-x: hidden;
}

.md-check-point .md-check-point-footer,
.md-check-point .barra_botoes
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-end;
    
    width: 100%;
    height: 60px;
    padding-right: 2rem;

    background: #fafafa;
    color: #000;
    -webkit-box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.14), 0 -1px 5px 0 rgba(0, 0, 0, 0.12), 0 -3px 1px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.14), 0 -1px 5px 0 rgba(0, 0, 0, 0.12), 0 -3px 1px -2px rgba(0, 0, 0, 0.2);
}

.md-check-point-debug-icone
{
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1rem;
    line-height: 0;
}

.md-check-point-debug-modal
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}

.md-check-point-debug-modal-backdrop
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.md-check-point-debug-modal-dialog
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1200px;
    height: 85%;
    max-height: calc(100vh - 40px);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fafafa;
    border-radius: 2px;
    overflow: hidden;
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
}

.md-check-point-debug-modal-dialog .barra_superior
{
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.md-check-point-debug-modal-dialog .icone_fechar
{
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    cursor: pointer;
}

.md-check-point-debug-modal-body
{
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.75rem 1rem 1rem;
    font-size: 0.85rem;
}
