body {
	min-height: 100vh;
	background-color: #eaeef3
 }
.menu-header {
	color: #FFF !important;
}
.sidebar {
    background-color: #222c3c;
    min-width: 250px;
    max-width: 250px;
    min-height: calc(100vh - 56px);
    transition: all 0.3s;
}
.sidebar ul li a, .sidebar ul li div{
    display: block;
    padding: 0.75rem 1rem;
    color: #c7cace;
    text-decoration: none;
}
.sidebar ul li a:hover, .sidebar ul .active a, .sidebar ul li div:hover, .sidebar ul .active div{
    color: #ecedee;
    background-color: #354358;
}

.sidebar ul ul a, .sidebar ul ul div{
    padding-left: 2.5rem;
    background-color: #1e2835;
    
}

.sidebar.toggled{
    display: none;
}


.sidebar [data-toggle="collapse"] {
    position: relative;
}
.sidebar [data-toggle="collapse"]:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1rem;
}
.sidebar [aria-expanded="true"] {
    background-color: #19222d;
}

.sidebar [aria-expanded="true"]:before {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1rem;
}

.content{
        width: 100%;
}

.titulo {
    font-size: 2.0rem !important;
}

.div-loading {
    position: absolute;
    top: 50vh;
    left: 50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(5);
}

.loading {
    animation: is-rotating 1s infinite;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    border-top-color: #007bff;
    height: 15px;
    width: 15px;
    margin: 2px;
}

@keyframes is-rotating {
    to {
      transform: rotate(1turn);
    }
  }

/* Dashboard */
div#est-container div.chart-pie {
    width: auto !important;
}


@media (min-width: 600px) {
    li.desativar {
        display: none;
    }
}

/* SCREN ROTATE */

.rotate-screen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    opacity: 0.9;
}

.rotate-screen div {
    background-color: #0d6dfdf4;
    height: 56vw;
    width: 80vw;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.rotate-screen img {
    max-width: 25vw;
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-direction: reverse;
    animation-duration: 3s;
    animation-delay: 1s;
    filter: invert(1);
}

.rotate-screen p {
    font-size: 1rem;
    color: white;
    font-weight: bold;
    margin-top: 20px;
}

@keyframes rotate {
    0% {
        transform: rotate(-90deg);
    }

    50% {
        transform: rotate(-90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@media screen and (orientation: landscape) {
    .rotate-screen {
        display: none!important;
    }
}
