﻿
/* STYLE - TELA ALL*/

.master-body {
    background: #c4c4c4;
    cursor:default;
}
::-webkit-scrollbar {
    width: 12px;
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 8px;
}
.modal-body::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

.master-wapper {
    display: grid;
    height: 100vh;
    grid-gap: 0px;
}







@media only screen and (max-width: 767px) {

    .master-wapper {
        grid-template-areas: "header" "aside" "navigate" "content" "footer";
        grid-template-columns: 1fr;
        grid-auto-rows: 40px 50px auto 80px;
    }

    /*CONTINUAR MOBILE*/

    .master-tela-weboff {
        display: none;
        background-color: #0a2c5b;
    }

    .master-tela-alert {
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #0a2c5b;
    }
}

@media only screen and (min-width: 768px) {

    

    .master-tela-moboff {
        display: none;
    }
}